How do I mount CD-ROM at /media/cdrom0?

I'm trying to install a game of mine using POL (PlayOnLinux), but the CD-ROM must be mounted at /media/cdrom0. Instead, it is being mounted at /media/(diskname). Is there a way I can fix this?

1

2 Answers

First Unmount it:

sudo umount /media/(diskname) 

Then mount it where you want:

mount -t auto /dev/cdrom /media/cdrom0 

I think there is another (easier) solution to your problem: just make a symbolic link:

sudo mkdir /media/cdrom0
sudo ln -s /media/(diskname) /media/cdrom0 
4

You can use a bind mount. It allows you to have more than one mount point for a device. For instance, sudo mount -o bind /media/dvd0 /media/cdrom0 would make /media/cdrom0 identical to /media/dvd0.

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like