Removable Storage

eject - eject removable media

$ eject	
	

usb flash

mount NTFS filesystem

sudo mount -t ntfs-3g /dev/sdb1 /mnt/usbflash/ -o force
		

CD / DVD

Mount an ISO file

To mount the ISO image file.iso to the mount point /media/cdrom use this :

$ mount -o loop -t iso9660 file.iso /media/cdrom			
			

create iso file from CD

$ dd if=/dev/cdrom of=isofile.iso
			

burner