Q. How do I copy files from a floppy disk to my hard disk. I am using a 1.44 MB floppy.
A. /dev/fd0 is your first floppy disk drive (/dev/fd1 is second and so on) under Linux. You need to use normal mount command. All files accessible in a Unix system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread out over several devices. The mount command serves to attach the file system found on some device to the big file tree.
a) First, login as root user
b) If you want to use MS-DOS or MS-Windows based fat file system (formatted floppy disk) type the following command:
# mkdir -p /mnt/floppy
# mount -t vfat /dev/fd0 /mnt/floppy
c) To access floppy disk go to /mnt/floppy directory:
# cd /mnt/floppy
d) Now use other commands such as ls, cp, mv and other commands to copy/move files.
e) To unmount (remove disk) floppy type command:
# sync
# cd /
# umount /mnt/floppy
Now you can remove floppy from disk drive.
To mount ext3/ext2 based floppy just use mount command without –t vfat option:
# mount /dev/fd0 /mnt/floppy
You should follow me on twitter here or grab rss feed to keep track of new changes.
Featured Articles:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop













{ 0 comments… add one now }