cnhnln 发表于 2005-7-14 13:14:25

linux下挂载ufs分区

http://ufs-linux.sourceforge.net/ufs2/README.txt

http://www.bsdforum.org/forums/showthread.php?s=&postid=148970#post148970

==============================================================================================

freebsd
localhost:~# fdisk -l /dev/hda

Disk /dev/hda: 120.0 GB, 120000000000 bytes
255 heads, 63 sectors/track, 14589 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   IdSystem
/dev/hda1   *         1      3032    24354508+   7HPFS/NTFS
/dev/hda2            3033      4308    10249470   a5FreeBSD
/dev/hda3            4309       14589    82582132+   fW95 Ext'd (LBA)
/dev/hda4               1         1         0    0Empty
/dev/hda5            4309      4961   5245191    7HPFS/NTFS
/dev/hda6            4962      5744   6289416    7HPFS/NTFS
/dev/hda7            5745      6397   5245191    7HPFS/NTFS
/dev/hda8            6398       10699    34555783+   7HPFS/NTFS
/dev/hda9         10700       11976    10257471   83Linux
/dev/hda10          11977       13253    10257471   83Linux
/dev/hda11          13254       14524    10209276   83Linux
/dev/hda12          14525       14589      522081   82Linux swap / Solaris

localhost:~# dmesg |grep bsd
hda2: <bsd: hda13 hda14 >

localhost:~# mount -r -t ufs -o ufstype=ufs2 /dev/hda13 /mnt/freebsd/
fstab
/dev/hda13      /mnt/freebsd    ufs    defaults,ro,ufstype=ufs2   0       0

==============================================================================================

solaris

localhost:~# fdisk -l /dev/hdb

Disk /dev/hdb: 60.0 GB, 60022480896 bytes
255 heads, 63 sectors/track, 7297 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot      Start         End      Blocks   IdSystem
/dev/hdb1            2042      7297    42218820    fW95 Ext'd (LBA)
/dev/hdb2   *         1      2041    16393104   bfSolaris
/dev/hdb5            2042      4032    15992676    bW95 FAT32
/dev/hdb6            4033      6347    18595206    7HPFS/NTFS
/dev/hdb7            6348      7297   7630843+   7HPFS/NTFS

localhost:~# dmesg |grep solaris
hdb2: <solaris: [s0] hdb8 [s1] hdb9 [s2] hdb10 [s7] hdb11 >

localhost:~# mount -r -t ufs -o ufstype=sunx86 /dev/hdb8 /mnt/solaris/

fstab
/dev/hda13      /mnt/solaris    ufs    defaults,ro,ufstype=sunx86   0       0

fakeroot 发表于 2005-7-14 13:21:30

两个硬盘180G :roll:

cnhnln 发表于 2005-7-14 13:30:29

好眼力阿 :mrgreen:

月下刀客 发表于 2005-7-14 14:35:54

命令行呢? :lol:

cnhnln 发表于 2005-7-14 21:15:48

命令行呢? :lol:
没好好看帖子吧 8)

月下刀客 发表于 2005-7-14 21:24:50

:oops::oops:

3N哥哥也是经常转贴不看贴滴 :mrgreen:


如果有中文目录/文件名可以正常显示吗?(贴上没有说到,固有一问) :twisted:

cnhnln 发表于 2005-7-14 21:39:19

不知道,ufs里还没建过中文目录和文件
页: [1]
查看完整版本: linux下挂载ufs分区