การอ่าน/เขียน Floppydisk
การที่จะติดต่อ กับ
Floppy disk เพื่อทำการอ่านหรือเขียน
ข้อมูลจะต้องทำการ mount
เพื่อติดต่อกับอุปกรณ์นั้น ไปไว้ยัง directory ใดๆ ก็ได้ แต่ควรจะเป็น directory ว่างๆ
การ Mount Linux diskettes ใช้คำสั่ง
[root@localhost /]# mount /dev/fd0 /mnt
หรือ
[root@localhost /]# mount -t ext2 /dev/fd0 /mnt
การ Mount DOS diskettes ใช้คำสั่ง
[root@localhost /]# mount -t msdos /dev/fd0 /mnt
หรือ
[root@localhost /]# mount -t vfat dev/fd0 /mnt
หลังจาก ทำการ mount แล้ว
ให้ย้ายไปที่ /mnt โดยใช้คำสั่ง cd /mnt
ใช้คำสั่ง ls เพื่อดู files
แล้วทำการ copy files ไปยัง directory
ที่ต้องการ ส่วนการเขียน files ลง
disk ให้ทำการ copy files ที่ต้องการ ไปยัง
directory /mnt
การยกเลิกการ Mount ให้ออกจาก /mnt ก่อน
แล้วใช้คำสั่ง
[root@localhost /]# umount dev/fd0
|