Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
| kernel_messages [2018/04/09 08:20] – created beandog | kernel_messages [2018/04/09 08:22] (current) – beandog | ||
|---|---|---|---|
| Line 29: | Line 29: | ||
| Apr 9 02:19:36 tux kernel: Buffer I/O error on dev sr0, logical block 1610944, async page read | Apr 9 02:19:36 tux kernel: Buffer I/O error on dev sr0, logical block 1610944, async page read | ||
| </ | </ | ||
| + | |||
| + | When you put a disc in the drive, there' | ||
| + | |||
| + | You can see what udev is doing at ''/ | ||
| + | |||
| + | It's tiny and mostly self-explanatory, | ||
| + | |||
| + | < | ||
| + | # do not edit this file, it will be overwritten on update | ||
| + | |||
| + | ACTION==" | ||
| + | SUBSYSTEM!=" | ||
| + | KERNEL!=" | ||
| + | ENV{DEVTYPE}!=" | ||
| + | |||
| + | # unconditionally tag device as CDROM | ||
| + | KERNEL==" | ||
| + | |||
| + | # media eject button pressed | ||
| + | ENV{DISK_EJECT_REQUEST}=="? | ||
| + | |||
| + | # import device and media properties and lock tray to | ||
| + | # enable the receiving of media eject button events | ||
| + | IMPORT{program}=" | ||
| + | |||
| + | # ejecting a CD does not remove the device node, so mark the systemd device | ||
| + | # unit as inactive while there is no medium; this automatically cleans up of | ||
| + | # stale mounts after ejecting | ||
| + | ENV{DISK_MEDIA_CHANGE}=="? | ||
| + | |||
| + | KERNEL==" | ||
| + | |||
| + | LABEL=" | ||
| + | </ | ||
| + | |||
| + | It's the '' | ||
| + | |||
| + | The output is harmless. You can safely ignore it. | ||