2

While trying to mount my hard drive to copy all the necessary data from my broken drive to this one, I got an error saying:

# mount -t ntfs /dev/sda1 /mnt/dominik/
fuse: mount failed: Device or resource busy

This is my fdisk -l if that helps.

# fdisk -l
Disk /dev/sda: 640.1 GB, 640135028736 bytes
255 heads, 63 sectors/track, 77825 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x70000000
   Device Boot      Start         End      Blocks   Id  System
/dev/sda1               1       77826   625130496    7  HPFS/NTFS

And just to let you know I can see this partition in Computer but when I try to access it I get this error

enter image description here

enzotib
  • 96,093
Patryk
  • 9,416

3 Answers3

1

Solve for me :

sudo apt-get purge multipath-tools

say yes

then

sudo reboot

;)

1

I suspect that /dev/sda1 is already mounted under /media/ACER. Nautilus automatically mounts partitions when selecting it on the left side. You cannot mount a partition multiple times (leaving out --bind mounts).

Lekensteyn
  • 178,446
0

If you had the USB drive connected before you booted try disconnecting it and reconnecting to the booted system and it should auto mount.

Col
  • 164