マウントの仕方

注意

  1. ネットワークマウント
    # modprobe nfs
    # mount -t nfs sayama:/usr/share/localhost/uchida /mnt/nfs
    NFSサーバーがアクセスを許可しているか否かは、NFSサーバー の/etc/exports に記述されています。
  2. DOSのパーティション
    # modprobe vfat
    # mount -t vfat /dev/hda1 /dosc
  3. NTFS (WindowsNT のファイルシステム)
    # mount -t ntfs -o umask=666 /dev/sda5 /dosd
  4. メモリーカード
    # mount -t ext2 /dev/hde /usr5
    ハードの状況により、# mount -t ext2 /dev/hdc /usr5 となります。
  5. SCSI接続のCDロム
    # modprobe isofs
    # mount -t iso9660 /dev/scd0 /mnt/cdrom
  6. 内蔵のCDロム
    # mount -t iso9660 /dev/hdc /mnt/cdrom
    ハードの状況により、# mount -t iso9660 /dev/hdb /mnt/cdrom となります。
  7. パラレルポートに接続したZIPドライブ
    # modprobe ppa
    # mount -t ext2 /dev/sda /mnt/zip
  8. SCSI接続のMO
    # 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日更新