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?
12 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.