h1

mounting the cdrom

July 20, 2007

No auto detecting for my 700mb cd here. Here’s the unix guru’s way of doing it:

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

“-t auto”: “-t” is the flag which refers to the filetype, which in this case is “auto” which means , let linux do that automatically.
“/dev/cdrom”: implies what sort of device it is
“/mnt/cdrom”: tells the system where to mount it. You will be able to access the contents of your cdrom by opening this directory

dont forget to unmount the thing after you are done with it:

umount /mnt/cdrom

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.