Results 1 to 10 of 22
I can't mount my usb drive since upgrading from 8.04 to 10.04. I have tried
sudo apt-get install ntfsprogs
Which was installed, then
sudo ntfsfix /dev/sdb1
The message I got ...
- 09-19-2010 #1Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
ubuntu 10.4- USB won't mount
I can't mount my usb drive since upgrading from 8.04 to 10.04. I have tried
Which was installed, thensudo apt-get install ntfsprogs
The message I got was thissudo ntfsfix /dev/sdb1
Sometimes I get this message when I first put the drive in.Failed to determine whether /dev/sdb1 is mounted: No such file or directory.
Mounting volume... Error opening partition device: No such file or directory.
Failed to startup volume: No such file or directory.
FAILED
Attempting to correct errors... Error opening partition device: No such file or directory.
FAILED
Failed to startup volume: No such file or directory.
Volume is corrupt. You should run chkdsk.
About a minute later, I receive this one.DBus error org.gtk.Private.RemoteVolumeMonitor.Failed: An operation is already pending
Not sure what any of this means, but there is nothing wrong with the drives. I have 4 external hard drives and I receive the same message from all of them. On the other hand, sometimes it doesn't even recognize the hard drive at all. Any help would be appreciated.Error mounting: mount exited with exit code 13: ntfs_attr_pread_i: ntfs_pread failed: Input/output error
Failed to read $AttrDef, unexpected length (-1 != 2560).
Failed to mount '/dev/sdc1': Input/output error
NTFS is either inconsistent, or there is a hardware fault, or it's a
SoftRAID/FakeRAID hardware. In the first case run chkdsk /f on Windows
then reboot into Windows twice. The usage of the /f parameter is very
important! If the device is a SoftRAID/FakeRAID then first activate
it and mount a different device under the /dev/mapper/ directory, (e.g.
/dev/mapper/nvidia_eahaabcc1). Please see the 'dmraid' documentation
for more details.
- 09-19-2010 #2
- 09-19-2010 #3Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
- 09-19-2010 #4
Of course this does not exist since it only was an example. You have to replace /mnt/mountpoint with that directory you want to use as mountpoint.
- 09-19-2010 #5Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
- 09-19-2010 #6
Then please first read this: How to mount partitions and filesystems in Linux
- 09-19-2010 #7Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
- 09-19-2010 #8
Again, you can't use these paths directly. They're all just examples. Here /dev/fd0 is the path to a floppy device file but your device is /dev/sdb1 as you've aready figured out. The mountpoint path also has to exist therefore you have to create such a directly first.
- 09-19-2010 #9
You need to create a mount point first, name it anything you like:
Now, try to mount it.Code:sudo mkdir /mnt/USB
This is all assuming that /dev/sdb1 is a valid device. You can look at the output ofCode:sudo mount /dev/sdb1 /mnt/USB
To see all partitions on the system.Code:sudo fdisk -l
I do not respond to private messages asking for Linux help, Please keep it on the forums only.
All new users please read this.** Forum FAQS. ** Adopt an unanswered post.
- 09-19-2010 #10Just Joined!
- Join Date
- Sep 2010
- Posts
- 13
When I typed sudo mkdir /mnt/USB in terminal, I received this message:
When I entered sudo mount /dev/sda1 /mnt/USBmkdir: cannot create directory `/mnt/USB': File exists
I received this
Yet, It doesn't show up on my computer anywhere. Did I do it right?mount: according to mtab, /dev/sda1 is already mounted on /mnt/USB


Reply With Quote
