PDA

View Full Version : Problem mounting Data harddisk of FreeNAS


iwonder
2009-02-22, 01:16 AM CST
I have a pc for learning. On which, I have winxp and fedora 10 on a 250G sata harddisk.
Recently, I installed FreeNAS on USB-key and added to this pc another 1T sata harddisk for main storage. This new harddisk is formatted by FreeNAS, option called UFS. I don't exactly know what format it is cause reading more just get me more confused about EFI/GPT/ufs/nfs/... at this moment. :confused:

My problem is when I boot Fedora 10, I can't mount the 1T sata. And so, no music. :(

I have created a directory /mnt/big and tried "mount"

[root@linux fs]# mount -t ufs /dev/sdb1 /mnt/big
mount: wrong fs type, bad option, bad superblock on /dev/sdb1,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so


Suggested reading or keywords for google are also very much welcome.
Many thanks


fyi
fdisk -l gives me the following

[root@linux fs]# fdisk -l

Disk /dev/sda: 251.0 GB, 251000193024 bytes
255 heads, 63 sectors/track, 30515 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xffc4ffc4

Device Boot Start End Blocks Id System
/dev/sda1 * 1 3060 24579418+ 7 HPFS/NTFS
/dev/sda2 29833 30515 5486197+ 7 HPFS/NTFS
/dev/sda3 3061 3085 200812+ 83 Linux
/dev/sda4 3086 29832 214845277+ f W95 Ext'd (LBA)
/dev/sda5 3086 3340 2048256 83 Linux
/dev/sda6 3341 5252 15358108+ 83 Linux
/dev/sda7 5253 5507 2048256 82 Linux swap / Solaris
/dev/sda8 5508 29832 195390531 7 HPFS/NTFS

Partition table entries are not in disk order

WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted.

Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
256 heads, 63 sectors/track, 121126 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Disk identifier: 0x073e7405

Device Boot Start End Blocks Id System
/dev/sdb1 1 121127 976762583+ ee GPT

Disk /dev/sdc: 8086 MB, 8086618112 bytes
255 heads, 63 sectors/track, 983 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x90909090

Device Boot Start End Blocks Id System
/dev/sdc1 * 1 8 64228+ a5 FreeBSD
/dev/sdc2 9 865 6882561 a5 FreeBSD
/dev/sdc3 866 983 943992 a5 FreeBSD

iwonder
2009-02-22, 12:26 PM CST
Strange that I steal a line from ubuntu and it works for read-only mode.

$ mount -t ufs -r -o ufstype=ufs2 /dev/sdb1 /mnt/big


p.s. I also installed the latest filesystem-xxxx.ppc.rpm found on rpmfind.net (search key: systemfile ufs), not sure if it is a must.