Here are some example of mount command:
- mount floppy - mount /dev/fd0
- mount floppy in a desired folder - mount /dev/fd0 /home/user/floppy
- mount cdrom - mount /dev/cdrom
- mount cdrom in a desired folder - mount /dev/cdrom /home/user/cdrom
- mount -o loop /home/user/image.iso /home/user/cdrom
For unmounting the device you will have to write the command umount and the location of the devices:
- umount /dev/fd0
- umount /dev/cdrom
- umount /home/user/image.iso
No comments:
Post a Comment