Difference between revisions of "Thinkpad W510"
From Blue-IT.org Wiki
(Created page with "== Operation System == * Working on Ubuntu 12.04 LTS * Updated to Ubuntu 13.10 == Troubleshooting == === Ultrabay DVD drive == ==== Make the button less sensitive ==== The pr...") |
|||
Line 4: | Line 4: | ||
== Troubleshooting == | == Troubleshooting == | ||
− | === Ultrabay DVD drive == | + | === Ultrabay DVD drive === |
==== Make the button less sensitive ==== | ==== Make the button less sensitive ==== | ||
The problem is caused by udev | The problem is caused by udev |
Revision as of 11:27, 4 January 2014
Contents
Operation System
- Working on Ubuntu 12.04 LTS
- Updated to Ubuntu 13.10
Troubleshooting
Ultrabay DVD drive
Make the button less sensitive
The problem is caused by udev
sudo cp /lib/udev/rules.d/60-cdrom_id.rules /etc/udev/rules.d/.
Uncomment the containing ENV{DISK_EJECT_REQUEST}
sudo vim /etc/udev/rules.d/60-cdrom_id.rules
# media eject button pressed #ENV{DISK_EJECT_REQUEST}=="?*", RUN+="cdrom_id --eject-media $devnode", GOTO="cdrom_end"
Restart udev
sudo service udev force-reload sudo service udev restart
You should emediately see, that the button.
Lock the device button
Lock:
eject -i on /dev/sr0
Unlock:
eject -i off /dev/sr0
Toggle script:
#!/bin/bash DEVICE="/dev/sr0" if eject "${DEVICE}" then eject -i on "${DEVICE}" else eject -i off "${DEVICE}" fi