Under XP all works. I made a directory /media/LaCie and tried to mount as:
mount -t ntfs /dev/sde /media/LaCie
But I get the error mess. "Can't find Superblock". What can have gone wrong?
Under XP all works. I made a directory /media/LaCie and tried to mount as:
mount -t ntfs /dev/sde /media/LaCie
But I get the error mess. "Can't find Superblock". What can have gone wrong?
Short summary and a few practical diagnostics and fixes that complement the replies from and and the final note by .
The symptom described (attempting to mount NTFS and no usable partition device appearing) is a common side effect when an external 2.5" drive does not get enough USB current to spin up. If the drive or its USB-to-SATA bridge never finishes initialization the kernel will not expose partition nodes, and mount attempts can produce misleading filesystem errors. The USB bus power limits are documented in USB specifications and background material (see Universal Serial Bus (USB) on Wikipedia).
Quick diagnostics to run before changing hardware:
lsusb
lsblk -o NAME,SIZE,FSTYPE,MOUNTPOINT,LABEL
sudo blkid
sudo fdisk -l
udevadm monitor --udev lsusb checks whether the device is visible on the USB bus. lsblk shows block devices and partitions. blkid / fdisk -l show partition types and UUIDs when present. udevadm monitor lets you watch kernel uevents while plugging the drive in.Fixes and best practices:
ntfs-3g) if read/write support is needed; see Debian ntfs-3g documentation. These checks explain why the mount error can be a red herring and give a short, reliable workflow to confirm enumeration vs filesystem problems.
Jump to Post— techniner 2Try:
mount -t ntfs /dev/sde1 /media/LaCie
Try:
mount -t ntfs /dev/sde1 /media/LaCie What you were essentially trying to do was mount the entire hard disk device onto your filesystem ( /dev/sde ). What you actually want to mount is the partition that contains your data -- this is most likely /dev/sde1 , as pointed out by techniner.
Here 's what I get:
[john@localhost ~]$ su
Password:
[root@localhost john]# mount -t ntfs /dev/sde /media/LaCie
mount: wrong fs type, bad option, bad superblock on /dev/sde,
missing codepage or other error
(could this be the IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
In some cases useful info is found in syslog - try
dmesg | tail or so
When I change to sde1 I got this:
[root@localhost john]# mount -t ntfs /dev/sde1 /media/LaCie
mount: special device /dev/sde1 does not exist
Other ideas ??
Problem solved!
It was the USB port who couldn't deliver enough current for the drive to work. I installed a simple usb hub and the problem was solved.
Thanks for your quick reactions on my help call.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.