LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Hardware (https://www.linuxquestions.org/questions/linux-hardware-18/)
-   -   Trying to access external HDD - "I/O error (remote)" (https://www.linuxquestions.org/questions/linux-hardware-18/trying-to-access-external-hdd-i-o-error-remote-4175460879/)

Schreiberling 05-06-2013 06:58 AM

Trying to access external HDD - "I/O error (remote)"
 
Hi!
I'm trying to access an external harddrive, which shows up in Linux (Knoppix & Suse), but upon trying to access the files I get this error message with an "I/O error (remote)" or something like that. Any ideas?
Thanks!

jdkaye 05-06-2013 07:39 AM

Have you used the "mount" command to mount the drive? If so, what was the form of that command?
jdk

Schreiberling 05-06-2013 07:43 AM

I think it was something like mnt /dev/sda1 /media/sda1 - as root. I have to say though, it should work without commands, because the harddrive showed up in the file browser and should be mounted automatically.

onebuck 05-06-2013 09:19 AM

Member Response
 
Hi,
Quote:

Originally Posted by Schreiberling (Post 4945886)
I think it was something like mnt /dev/sda1 /media/sda1 - as root. I have to say though, it should work without commands, because the harddrive showed up in the file browser and should be mounted automatically.

Correct command for that device as root would be;
Code:

mount /dev/sda1 /media/sda1
You can do a 'man mount' to see options.

Schreiberling 05-09-2013 06:05 PM

Quote:

Originally Posted by onebuck (Post 4945946)
Hi,


Correct command for that device as root would be;
Code:

mount /dev/sda1 /media/sda1
You can do a 'man mount' to see options.

Yes, and then I get that "Remote I/O error" message. Same thing with the GUI version (by clicking on "mount"). I wonder what this means!

jdkaye 05-09-2013 11:54 PM

Quote:

Originally Posted by Schreiberling (Post 4948170)
Yes, and then I get that "Remote I/O error" message. Same thing with the GUI version (by clicking on "mount"). I wonder what this means!

That the external disk damaged? Either physically or the file system. Are you able to check that on another system?
jdk

Schreiberling 05-10-2013 05:01 AM

Quote:

Originally Posted by jdkaye (Post 4948310)
That the external disk damaged? Either physically or the file system. Are you able to check that on another system?
jdk

I'm afraid not, as Windows treats the external hard-drive as an unformatted drive. I would tend to think there's more you can get out of your hard-drive than a mere error message, even if it's broken?

AwesomeMachine 05-10-2013 05:13 AM

Remote I/O error is an NFS error. Is the ext. drive directly connected to the Linux box, or is it attached to another machine? If you know a little about Linux, you can install "strace" and do

su -c 'strace mount /dev/sda1 /media/sda1'

and just read the end of the stack trace. Sometimes you can find at least some clue to where the error is actually coming from, or what specifically is causing it. I have faith in you. Just do your best, and if you're like me, say a prayer, "Pleeeease let this thing mount!"


All times are GMT -5. The time now is 09:29 AM.