- 论坛徽章:
- 0
|
看见文章,执行下列命令即可挂载FreeBSD的slice:
# mount -rt ufs -o ufstype=ufs2 /dev/hda9 /mnt/bsd/
或
# mount -t ufs -o ro,ufstype=ufs2 /dev/hda9 /mnt/bsd/
请看,我的
root@debian:/home/tiger# fdisk -l
WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sda: 160.0 GB, 160041885696 bytes
256 heads, 63 sectors/track, 19381 cylinders
Units = cylinders of 16128 * 512 = 8257536 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sda1 * 1 19382 156290903+ ee GPT
Disk /dev/sdb: 120.0 GB, 120034123776 bytes
255 heads, 63 sectors/track, 14593 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: 0x073a3c87
Device Boot Start End Blocks Id System
/dev/sdb1 1 1912 15358108+ c W95 FAT32 (LBA)
/dev/sdb2 1913 3736 14647296 7 HPFS/NTFS
/dev/sdb3 3736 14594 87213057 5 Extended
/dev/sdb5 14435 14594 1275904 82 Linux swap / Solaris
/dev/sdb6 3736 13462 78124032 83 Linux
/dev/sdb7 13462 14434 7809745+ 83 Linux
Partition table entries are not in disk order
root@debian:/home/tiger# mount -rt ufs -o ufstype=ufs2 /dev/sda1 /mnt
mount: wrong fs type, bad option, bad superblock on /dev/sda1,
missing codepage or helper program, or other error
In some cases useful info is found in syslog - try
dmesg | tail or so
请问,如何处理? |
|