udev

From Noah.org
Revision as of 13:10, 28 April 2011 by Root (talk | contribs) (Created page with 'Category:Engineering == Ubuntu and the error, "udevinfo: command not found" == Ubuntu wraps the `udevinfo` command in the `adevadm` command. Anywhere you see a `udevinfo` c…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search


Ubuntu and the error, "udevinfo: command not found"

Ubuntu wraps the `udevinfo` command in the `adevadm` command. Anywhere you see a `udevinfo` command-line just replace it with `udevadm info`, including all the same options. For example, the following `udevinfo` command:

udevinfo -a -p $(udevinfo -q path -n /dev/ttyUSB0)

becomes this:

udevadm info -a -p $(udevadm info -q path -n /dev/ttyUSB0)