I am using 14.04 on HP630 Laptop for around 2 months now. From the beginning I have noticed that I get a kind of clicking noise from cd/dvd rom drive every 15 to 30 seconds even though the drive is empty.
I am sure the OS is sniffing the drive for any cd or dvd. Though the noise is very mild I can hear it every now and then.
Now how do I stop it and resolve the issue. I am sure every time it searches the drive the pivot motor rotates and the lens moves up and down. By this the physical wear and tear of the drive will be faster and the life comes down considerably, added to increased power consumption of the system.
Kindly help me.
Prasad G R
This behavior is called "polling", and is most likely caused by
udisks
.Try:
udisks --inhibit-polling /dev/sr0
(replace/dev/sr0
with the name of your device, if necessary.)If it helps, you can ask
udisks
to permanently stop polling the device with audev
rule like this:Create a file such as
/etc/udev/rules.d/99-no-polling.rules
and add the above rule to it, replacingYOUR_DEVICE_MODEL
with the actual model string.To find your model number, look at the output of
udisks --show-info /dev/sr0
.The side effect is that you'll need to mount the optical media manually afterwards.