Friday, September 4, 2009

Mount and Unmount a CD in Linux

Mount:

mount -t auto /dev/cdrom /mnt/cdrom

Unmount:
umount /mnt/cdrom

In case of 'device is busy' when unmounting, try the 'lazy' unmount:
umount -l /mnt/cdrom

No comments:

Post a Comment