Ubuntu – Unable to mount DVD – Ubuntu 14.04

14.04dvdmount

I seldom use the DVD drive and this a 5 year old laptop. Today I load the DVD and it just keeps spinning but nothing mounts. After it spins and stops I checked:

dmesg | grep sr0

[ 1.738204] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw
xa/form2 cdda tray [ 1.738551] sr 1:0:0:0: Attached scsi CD-ROM sr0

I tried to manually mount with

sudo mount /dev/sr0

sudo mount /dev/cdrom

Then I checked:

mount | grep "/dev/sr"

It shows nothing.

The DVD is good and readable on my Windows machine.

Any ideas on how I can get it working?

Best Answer

I also couldn't mount movie DVDs, and was having this error:

~$ dmesg | grep sr0
VFS: busy inodes on changed media or resized disk sr0

The solution that worked for me was to edit /etc/fstab which I found in a mail-thread.

So, as described there, I edited the file, adding in the end the following line:

/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0

and then I had to restart, since fstab is loaded on system start.

Related Question