Intranet 发表于 2009-08-10 10:50

FreeBSD mount.

  挂接移动硬盘:
  mount -t msdos /dev/da0s1 /mnt
  mount -t msdos /dev/da1s1 /mnt
  mount -t msdos /dev/daXsX /mnt
 
  光驱
  mount -t cd9660 /dev/acd0 /mnt
  mount -t cd9660 /dev/acd1 /mnt
  软盘
  mount -t msdos /dev/fd0 /mnt
  系统硬盘
  mount -t fat /dev/da0a1 /d

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/30/showart_2023077.html
页: [1]
查看完整版本: FreeBSD mount.