brian@brian:~$ sudo fdisk -l
Disk /dev/sda: 78.5 GB, 78518522880 bytes
255 heads, 63 sectors/track, 9546 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 9169 73649961 83 Linux
/dev/sda2 9170 9546 3028252+ 5 Extended
/dev/sda5 9170 9546 3028221 82 Linux swap / Solaris
Disk /dev/sdb: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
brian@brian:~$ sudo mkdir /media/xharddrive
brian@brian:~$ sudo chmod 777 /media/xharddrive
brian@brian:~$ sudo mount /dev/sdb /media/xharddrive
mount: you must specify the filesystem type
-
as you can see, I have an internal hard drive with a max of 78.5 GB storage and an external hard drive of about 120 GB. I used the correct logical name for the external hard drive in the final command I typed but still could not get the mount point working. Can someone tell me what's wrong?
Disk /dev/sda: 78.5 GB, 78518522880 bytes
255 heads, 63 sectors/track, 9546 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 9169 73649961 83 Linux
/dev/sda2 9170 9546 3028252+ 5 Extended
/dev/sda5 9170 9546 3028221 82 Linux swap / Solaris
Disk /dev/sdb: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
brian@brian:~$ sudo mkdir /media/xharddrive
brian@brian:~$ sudo chmod 777 /media/xharddrive
brian@brian:~$ sudo mount /dev/sdb /media/xharddrive
mount: you must specify the filesystem type
-
as you can see, I have an internal hard drive with a max of 78.5 GB storage and an external hard drive of about 120 GB. I used the correct logical name for the external hard drive in the final command I typed but still could not get the mount point working. Can someone tell me what's wrong?
Comment