up vote 4 down vote favorite
share [g+] share [fb]

My todler is continuosly pushing the cd/dvd button and trying to destroy the tray. I know it should be possible to let her life harder, disabling the eject button. How to do that? This is ubuntu (shouldn't matter) linux. See also the this related question.

And the same one as this one, but on windows

EDIT: this is Hardy

link|improve this question

62% accept rate
1  
This reminds me of a video of someone who had a script that continuously ejected and closed the disc drive. There was a string connecting the disk tray to a baby's rocker. And the cd drive just rocked the baby! – Jonno_FTW Nov 18 '09 at 16:14
@Jonno_FTW: A similar story comes from the German ubuntuusers-site. Someone created a 'benchmark' to measure how often the drive could open and close in a minute. Needless to say, somebody figured out how to do that via network and had some fun at work. – Bobby Jan 4 '11 at 9:43
feedback

5 Answers

up vote 1 down vote accepted

You might want to try this out...

http://www.poweradded.net/2009/09/cddvd-tray-lockunlock-under-linux.html

link|improve this answer
This is good, it works pretty well (the code is not robust, but I can improve it myself, if I'll never need) – Davide Dec 4 '09 at 4:54
feedback

At the command line

eject -i 1

To return to normal,

eject -i 0

Or you can software eject it using

eject

In all cases, you can add a device name if you have more than one ejectable device.

Apparently not all versions of eject seem to work

If you want to do it the hard way, then

sudo echo 1 > /proc/sys/dev/cdrom/lock
will work with any version of eject, because you're not using eject

link|improve this answer
Thanks, but it doesn't work for my OS: $ eject -i 1 eject: invalid option -- i $ eject --version eject version 2.1.5 by Jeff Tranter (tranter@pobox.com) – Davide Nov 18 '09 at 3:08
Grrr, comments don't align code snippet correctly, and cannot be edited! Let me try again: $ eject -i 1 results in eject: invalid option -- i - and you should be able to figure out the version from the other comment – Davide Nov 18 '09 at 3:10
Weird. $ eject -i 1 works fine for me in Karmic. Version 2.1.5. – regan Nov 18 '09 at 3:27
1  
If you want to do it the hard way, then <code><pre>sudo echo 1 &gt; /proc/sys/dev/cdrom/lock</pre></code> will work with any version of eject, because you're not using eject. – gorilla Nov 18 '09 at 14:08
@gorilla, you should add that as your own answer.. – quack quixote Nov 18 '09 at 15:28
feedback

Ubuntu's default automounter doesn't lock the CD/DVD try when it mounts an inserted disc. But if you mount the disc manually (say, with sudo), the tray should lock and stay locked until you dismount the disc.

So this process would accomplish what you want, without disabling other functionality, and you could even script it for quick access:

  1. Insert a disc,
  2. Run sudo umount /media/cdrom, then
  3. Run sudo mount /dev/cdrom /media/cdrom

Obviously, replace those paths and devices with ones your system uses.

link|improve this answer
Works, but it's inconvenient (actually I did know about that). Thanks for the answer, anyway. – Davide Dec 4 '09 at 4:53
feedback

A user left a comment on another question. The comment should have been a separate answer. I'm writing his suggestion here, since it might work for somebody (it doesn't in Hardy Haron) and might be more convenient than installing the code from my accepted question.

To lock:

sudo echo 1 > /proc/sys/dev/cdrom/lock

To unlock:

sudo echo 0 > /proc/sys/dev/cdrom/lock

Of course small shell scripts, possibly linked from the panel would be used.

link|improve this answer
feedback

You might want to try out cdctl. It's available here: http://cdctl.sourceforge.net/. This switch will accomplish what you want.

       -oS, --lockdoor=S
          Locks the eject button so the disc cannot be manually ejected.  Requires  kernel  ver‐
          sion 2.2.4 or newer.  Set S to 0 to unlock the drive, and to 1 to lock it.

I've used this for the last 10 years on Fedora, RHEL, CentOS but the package is available as a tarball and should be compilable on Ubuntu. NOTE: The package hasn't been updated in a while but it works fine. There's a patch available on gentoo's site that fixes a small issue so that it can be compiled with more recent kernels. The patch is available here:

sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch?revision=1.1

Once you've installed it you can use the command to lock the cd tray:

cdctl -o1

To unlock the tray:

cdctl -o0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.