Floppy Disk のフォーマット

2002.07.11

  1. フロッピーディスクのフォーマット
  2. [root@cocoa /]# fdformat /dev/fd0H1440
    両面, 80トラック , 18セクタ/トラック。合計容量 1440 kB。
    フォーマットします ... 終了
    照合します ... 終了
    [root@cocoa /]# mke2fs /dev/fd0
    mke2fs 1.18, 11-Nov-1999 for EXT2 FS 0.5b, 95/08/09
    Filesystem label=
    OS type Linux
    Block size=1024 (log=0)
    Fragment size=1024 (log=0)
    72 blocks (5.00%) reserved for the super user
    First data block=1
    1 block group
    8192 blocks per group, 8192 fragments per group
    184 inodes per group
    
    Writing inode tables: done
    Writing superblocks and filesystem accounting information: done 
    			

  3. マウントする
  4. 1: [root@cocoa /]# mount /mnt/floppy
    2: [root@cocoa /]# ls /mnt/floppy
    3: lost+found
    4: [root@cocoa /]# echo "This is Test" > /mnt/floppy/test.txt
    5: [root@cocoa /]# ls /mnt/floppy
    6: lost+found test.txt
    7: [root@cocoa /]# cat /mnt/floppy/test.txt
    8: This is Test
    9: [root@cocoa /]# umount /mnt/floppy/
    			
    行位置 内容
    1行名 FloppyDiskをマウントする
    2行名 内容を確認
    3行名 不良ファイル置場が作成される
    4行名 テストファイルを作成
    5行名 ディレクトリを確認
    6行名 作成されている
    7〜8行名 ファイルの内容を確認
    9行名 アンマウント

  5. /etc/fstab ファイル
  6. [root@cocoa /etc]# cat fstab
    LABEL=/                 /                       ext2    defaults        1 1
    LABEL=/boot             /boot                   ext2    defaults        1 2
    /dev/hda13              /dos                    vfat    defaults        0 0
    LABEL=/home             /home                   ext2    defaults        1 2
    /dev/cdrom              /mnt/cdrom              iso9660 noauto,owner,ro 0 0
    /dev/fd0                /mnt/floppy             auto    noauto,owner    0 0
    LABEL=/opt              /opt                    ext2    defaults        1 2
    LABEL=/tmp              /tmp                    ext2    defaults        1 2
    LABEL=/usr              /usr                    ext2    defaults        1 2
    LABEL=/usr/local        /usr/local              ext2    defaults        1 2
    LABEL=/var              /var                    ext2    defaults        1 2
    none                    /proc                   proc    defaults        0 0
    none                    /dev/pts                devpts  gid=5,mode=620  0 0
    /dev/hda12              swap                    swap    defaults        0 0