Mount external hard drive in Ubuntu server
Insert external hard drive usb connector into the Ubuntu server usb port. Ubuntu server automatically detect the external hard drive as a usb device. Below is the example screenshot when ubuntu detected the external hard drive:
Attached devices:
Host: scsi1 Channel: 00 Id: 00 Lun: 00
Vendor: NECVMWar Model: VMware IDE CDR10 Rev: 1.00
Type: CD-ROM ANSI SCSI revision: 05
Host: scsi2 Channel: 00 Id: 00 Lun: 00
Vendor: VMware, Model: VMware Virtual S Rev: 1.0
Type: Direct-Access ANSI SCSI revision: 02
Host: scsi3 Channel: 00 Id: 00 Lun: 00
Vendor: Generic Model: USB Disk Rev: 9.02
Type: Direct-Access ANSI SCSI revision: 02
luzar@ubuntu:~$
Create a proper directory in Ubuntu server to mount the external hard drive. In this example, we create a directory named extdisk in /mnt directory:
luzar@ubuntu:~$ sudo mkdir /mnt/extdisk
[sudo] password for luzar:
luzar@ubuntu:~$ ls /mnt/
dvd extdisk usb win
Now we can mount the external hard drive with Linux mount command:
luzar@ubuntu:~$ sudo mount /dev/sdb /mnt/extdisk/
mount: you must specify the filesystem type
The external hard drive cannot be mounted. This happened when we mount a windows formatted external hard drive. We must specify the filesystem. Windows filesystem format is known as nsfs-3g in Linux. So we mount the external hard drive again with the complete command:
luzar@ubuntu:~$ sudo mount -t ntfs-3g /dev/sdb /mnt/extdisk/
NTFS signature is missing.
Failed to mount '/dev/sdb': Invalid argument
The device '/dev/sdb' doesn't have a valid NTFS.
Maybe you selected the wrong device? Or the whole disk instead of a
partition (e.g. /dev/hda, not /dev/hda1)? Or the other way around?
We still cannot mount the external hard drive. Again, we mount the external hard drive but this we change the device name from /dev/sdb to /dev/sdb1 as suggested by Ubuntu message above.
luzar@ubuntu:~$ sudo mount -t ntfs-3g /dev/sdb1 /mnt/extdisk/
luzar@ubuntu:~$ ls /mnt/extdisk/
ghost dell170l ghost mimos RECYCLER System Volume Information
luzar@ubuntu:~$
We successfully mounted the external hard drive this time. Now that the external drive has been mounted, we can use it as other directory in Ubuntu.
To unmount the external hard drive, we can use the Linux umount command like in the example below:
luzar@ubuntu:~$ sudo umount /mnt/extdisk/
[sudo] password for luzar:
luzar@ubuntu:~$
That's all.
when i do
ReplyDeletesudo mount -t ntfs-3g /dev/sdb1 /mnt/extdisk/
i get the error message:
mount: unknown filesystem type 'ntfs-3g'
any idea?
ok finally get around it but now when I try to write to the external harddrive it says No Space left on device
ReplyDeleteany idea!? it is frustrating!
the types of filesystems you can mount are listed in your /etc/filesystems file. If you "cat /etc/filesystems" you should see a list similar to this:
ReplyDeletecat /etc/filesystems
ext3
ext2
nodev proc
nodev devpts
iso9660
vfat
hfs
hfsplus
You probably need to mount it as vfat.
I think this comment thread is dead, but I get this:
ReplyDelete~$ sudo mount -t vfat /dev/sdb /mnt/extdisk/
mount: /dev/sdb: can't read superblock
What do I do about that?
I was able to mount my external drive by doing this.
ReplyDeletels /dev/sdb (press tab)
A list came up showing.
sdb sdb1 sdb5
I could not mount with sdb1 so I used sbd5 and that did it.
sudo mount -t ntfs-3g /dev/sdb5 /mnt/extdisk/
Try using the following command which will give you the device attributes:
ReplyDeletesudo blkid
After you know the type of the device you can use it in the sudo mount -t command
That did it for me! Thanks!
Delete