注意
- マウントポイントは、最初に作成して下さい。
# mkdir /mnt/nfs
# mkdir /mnt/zip
# mkdir /mnt/mo
# mkdir /usr3
# mkdir /dosc
# modprobe nfs
# mount -t nfs sayama:/usr/share/localhost/uchida /mnt/nfs
NFSサーバーがアクセスを許可しているか否かは、NFSサーバー の/etc/exports に記述されています。
# modprobe vfat
# mount -t vfat /dev/hda1 /dosc
# mount -t ntfs -o umask=666 /dev/sda5 /dosd
# mount -t ext2 /dev/hde /usr5
ハードの状況により、# mount -t ext2 /dev/hdc /usr5 となります。
# modprobe isofs
# mount -t iso9660 /dev/scd0 /mnt/cdrom
# mount -t iso9660 /dev/hdc /mnt/cdrom
ハードの状況により、# mount -t iso9660 /dev/hdb /mnt/cdrom となります。
# modprobe ppa
# mount -t ext2 /dev/sda /mnt/zip
# mount -t ext2 /dev/sda /mnt/mo
Windows で初期化した、MOを読むには、
# modprobe vfat
# mount -t vfat /dev/sda /mnt/mo
1.3 GB のMOの初期化とマウント
# mkfs -t ext2 -b 2048 /dev/sda
# mount -t ext2 /dev/sda /mnt/mo
2000年11月4日更新