Results 1 to 2 of 2
Hello,I've been trying to mount my 2 hard drives for a while now but i can't.
This is the output of my fdisk -l
Code:
Disk /dev/sda: 32.0 GB, 32017047552 ...
- 12-23-2010 #1Just Joined!
- Join Date
- Dec 2010
- Posts
- 1
(Crunchbang Linux) Can't mount hard drives
Hello,I've been trying to mount my 2 hard drives for a while now but i can't.
This is the output of my fdisk -l
and this is my fstabCode:Disk /dev/sda: 32.0 GB, 32017047552 bytes 255 heads, 63 sectors/track, 3892 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: 0x000c68ba Device Boot Start End Blocks Id System /dev/sda1 * 1 3729 29946880 83 Linux /dev/sda2 3729 3893 1316865 5 Extended /dev/sda5 3729 3893 1316864 82 Linux swap / Solaris Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes 255 heads, 63 sectors/track, 121601 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: 0x96901f90 Device Boot Start End Blocks Id System /dev/sdb1 1 121602 976759808 7 HPFS/NTFS Disk /dev/sdc: 1000.2 GB, 1000204886016 bytes 255 heads, 63 sectors/track, 121601 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: 0x96901f93 Device Boot Start End Blocks Id System /dev/sdc1 1 121602 976759808 7 HPFS/NTFS Disk /dev/sdf: 16.0 GB, 16011542528 bytes 32 heads, 63 sectors/track, 15512 cylinders Units = cylinders of 2016 * 512 = 1032192 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x61bc6631 Device Boot Start End Blocks Id System /dev/sdf1 * 1 15512 15636064+ 7 HPFS/NTFS
Also when i plug in a usb stick i can't access it until i use Thunar file manager as root because it gives me "Permission denied.User has no read/write access."Code:# /etc/fstab: static file system information. # # Use 'vol_id --uuid' to print the universally unique identifier for a # device; this may be used with UUID= as a more robust way to name devices # that works even if disks are added and removed. See fstab(5). # # <file system> <mount point> <type> <options> <dump> <pass> proc /proc proc defaults 0 0 # / was on /dev/sda1 during installation UUID=5c9b561f-620e-4f47-a4c9-d85d2e9f1b1d / ext3 errors=remount-ro 0 1 # swap was on /dev/sda5 during installation UUID=02c68c89-5565-44ba-87b3-6e032a1c92c0 none swap sw 0 0 /dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0 /dev/scd1 /media/cdrom1 udf,iso9660 user,noauto 0 0 /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 /dev/sdd1 /media/usb0 auto rw,user,noauto 0 0
I tried as root:
and thenCode:cd /media;mkdir hd2
but it gives me this:Code:mount /dev/sdb /media/hd2
I hope someone can help.ThanksCode:mount: you must specify the filesystem type
- 12-23-2010 #2Linux Newbie
- Join Date
- Dec 2009
- Posts
- 241
Try:
/dev/sdb is the HarddriveCode:sudo mount /dev/sdb1 /media/hd2
/dev/sdb1 the partition you wanna mount
The message you get is that the filesystem couldn't be detected, so it's asking wich to use ...
It couldn't be deteced because you try to mount the wrong device.


Reply With Quote