| การอ่าน/เขียนจาก Partition Windows95
หรือ Dos 
มีวิธีการเหมือนกันกับ
    การอ่าน จาก floppy diskให้สร้าง directory
    /mnt/dosdisk หรือเลือกdirectory อื่นๆ ที่ว่าง
    เพื่อทำการ mount ไปยัง directory นั้น
 [root@localhost /]# mkdir /mnt/dosdisk
 
 จากนั้นทำการ mount
 
 [root@localhost /]# mount -t msdos /dev/hda2 /mnt/dosdisk
 or
 [root@localhost /]# mount -t vfat /dev/hda2 /mnt/dosdisk
 
 การ mount แบบ vfat คือการ mount
    เพื่ออ่านชื่อไฟล์ แบบ long filesname
 /dev/hda2 คือ partition windows95 ที่ต้องการ mount
    เพื่ออ่าน/เขียนข้อมูล
 
  
  |