Difference between revisions of "udev"

From Noah.org
Jump to navigationJump to search
m (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…')
 
 
Line 3: Line 3:
 
== Ubuntu and the error, "udevinfo: command not found" ==
 
== 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:
+
Ubuntu wraps the `udevinfo` command in the `udevadm` 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:
 
<pre>
 
<pre>
 
udevinfo -a -p $(udevinfo -q path -n /dev/ttyUSB0)
 
udevinfo -a -p $(udevinfo -q path -n /dev/ttyUSB0)

Latest revision as of 13:10, 28 April 2011


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

Ubuntu wraps the `udevinfo` command in the `udevadm` 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)