Tagged Questions
Udev manages the Linux /dev directory, and hooks userspace into kernel device events.
8
votes
4answers
312 views
Adb stops detecting my phone after a while
I am developing for android on a linux machine and I have already created a udev rule for android and it works. After a while if I unplug the device and plug it back in again, adb doesn't recognize ...
8
votes
2answers
2k views
USB devices UDev and D-BUS
I am trying to get a list of currently plugged in USB devices in Ubuntu 10.10 and monitor changes that happen, like devices being plugged in or out using UDev and D-BUS. I'm fairly new to programming ...
7
votes
1answer
196 views
Linux: How to assign USB driver to device
This question is two-fold:
1- How do you manually detach a driver from a USB device and attach a different one? For example, I have a device that when connected automatically uses the usb-storage ...
5
votes
1answer
269 views
udev monitor is slow without polling
I tried udev as recommended (udevadm monitor). The VGA-Plug is reported after approx. two seconds. If I poll it, the change is reported almost instantly. What happens here?
5
votes
3answers
381 views
Create UNIX “special character” file
Suppose I want to create, in the spirit of /dev/zero, a file /dev/seven that produces the character '7' whenever it is read from. How should I go about doing something like this? Would I need to ...
5
votes
2answers
758 views
How to create a callback for “monitor plugged” on an intel graphics?
I've got an eeepc with an intel graphics. I'd like to hook a script to the event of a monitor plugged via VGA. How to do that?
4
votes
2answers
926 views
python udisks - enumerating device information
It's apparently possible to get a lot of info relating to attached disks using the udisks binary:
udisks --show-info /dev/sda1
udisks is apparently just enumerating the data which is available ...
4
votes
1answer
324 views
How does polling a file for changes work?
The problem
I expected the script below to print at most one event and then stop (it's written only to illustrate the problem).
#!/usr/bin/env python
from select import poll, POLLIN
filename = ...
3
votes
3answers
797 views
Ubuntu Linux Udev rules: Is it possible to run program written in C through udev rules?
I'm currently working on a project to run an program written in C when a USB device is plugged in. Is this possible with udev rules?
I've currently got it to run a Hello World script when I plug in ...
3
votes
3answers
2k views
How to get USB vendor and product info programmatically on Linux?
Using udev I have been able to get this information for a certain USB device:
idVendor: 13b1
idProduct: 0018
manufacturer:
product: USB 2.0 Network Adapter ver.2
serial: 00FFFF
Now I want to get ...
3
votes
1answer
673 views
udev ignore_device won't work if device already connected
I wasn't really sure if this was the right site to put this question on, but I put it here since this is sort of a programming question and I figured the SO crowd was the most Linux-oriented of the ...
2
votes
2answers
126 views
Bash script doesn't wait until commands have been properly executed
I am working on a very simple script but for some reason parts of it seem to run asynchronously.
singlePartDevice() {
# ...
2
votes
2answers
137 views
udev: device connected at boot time
I'm using udev to detect USB drive connection and disconnection on my Ubuntu 10.04 LTS x64 server. Everything works fine when USB devices are connected while the machine is running, but if one is ...
2
votes
2answers
160 views
How to detect or test on unix/linux dev node creation for usb flash drive insertion
I'm coding in C on a linux system. I want to insert a USB flash drive, let udev create the dev nodes (at /dev/sdc and /dev/sdc1, for example), and take an action only when /dev/sdc appears. What I've ...
2
votes
3answers
193 views
Linux: detect if an open file/device has been replaced/deleted
Assume the following situation under Linux:
A process is continuously reading from an USB-serial converter device (/dev/ttyUSB0). That device is suddenly unplugged and plugged in again (or is ...
2
votes
1answer
120 views
how to send command line arguments to a process through udev?
On detection of a USB device I'm trying to have udev start up a process and pass the serial number of the USB device as an argument to the process.
file:/etc/udev/rules.d/10-FTDI2232H-usb.rules
...
2
votes
1answer
775 views
Ejecting USB devices on linux
I'm using Udisks via dbus in python to unmount a usb device (in this case a Kindle), but I'd like to send the eject signal to it, as this kicks the Kindle back from USB mode into its usual interface.
...
2
votes
3answers
394 views
Bash script to detect when my USB is plugged in and to then sync it with a Directory
Is there a Bash script and/or daemon that I can write that will detect a specific USB drive and then sync that drive with a directory?
2
votes
2answers
424 views
listen for harware change events from the linux kernel or udev
I need to run some code on storage device mounting and unmounting.
How can i listen for these events on linux?
I was thinking on adding some udev rules to run some script (any know-how in this ...
2
votes
1answer
983 views
How do I use udev to find info about inserted video media (e.g. DVDs)
I'm trying to port an application from using HAL to using pure udev. It is written in python and will use the gudev library, though I would love to see examples in any language. I'm able to get all ...
2
votes
1answer
83 views
Is udev thread-safe?
I'd like to know if there are dangers with spawning multiple threads that each create their own udev context and start monitoring hardware changes. It would think that if each thread has its own udev ...
1
vote
1answer
182 views
Linux USB device path meaning? (need to distinguish USB-Serial converters)
I have several USB-serial converters (Prolific) attached to a USB hub. I can't find any udev information that allows me to distinguish these converters depending on the physical port they are ...
1
vote
1answer
45 views
udev pen drive filename length
I have a problem with mounting pen drive using udev. I am working in an arm development platform and installed udev successfully. My udev rules are as follow.
BUS=="usb", ID=="1-1", KERNEL=="sd?1", ...
1
vote
1answer
56 views
Embedded linux filename length
I am using an arm development platform. There I installed udev and it works perfect. But when I mount a pen drive and see the file content all files and folders with names having more than 8 chars ...
1
vote
1answer
434 views
libudev advice needed
Sirs,
Long time reader, first-time poster here.
Okay I am embarking on a programming project that will need to confirm device identity of removable media (e.g. usb thumb drives) before it will go on ...
1
vote
2answers
224 views
Getting Notified on “Ethernet cable plugged in” events in linux
I am writing a Python Application running on linux. I want to be able to register and be notified by the system if a network cable is plugged in/ out.
I am already using pyUdev (python bindings for ...
1
vote
3answers
137 views
Discover where are my USB speakers (device)
I'm running Debian Sid and I want to know where are my USB speakers in system. For example: When I plug my pen drive, dmesg shows where it is (sda, sdb, etc). But when I plug my USB Speakers, it ...
1
vote
2answers
517 views
How to run a shell script after a device is mounted using UDEV
I wanted to know how to run a script after a usb pen drive is inserted and auto-mounted
Till know i am able to run a script as soon as the device is inserted, however the mounting of the device takes ...
1
vote
1answer
292 views
What is the workflow for automount in Gnome 2.30?
I have a ASUS laptop with Fedora 13. My problem is that any USB storage I connect does not automount. I have other computer with Fedora 13 which does not have the problem.
I have not be able to find ...
1
vote
1answer
1k views
Get link speed programmatically?
I am writing an application that reports attributes of network devices on the local machine. I need the mac address, mtu, link speed and a few others. I'm using udev for this. I've already figured out ...
1
vote
2answers
511 views
How to support udev in a kernel module?
I'm porting a linux kernel module. It used to create a device file for itself (using dirty hacks with syscalls from kernelspace), but now I want to do this in udev. Where can I find documentation on ...
1
vote
1answer
398 views
Problems with blocking reads using libudev on Linux
We are using the following routine (on Linux, with libudev) to read data from a PIC microcontroller configured as a USB HID device. The data is sent only when a button connected to the PIC ...
1
vote
2answers
706 views
Alternative to udev functionality on OSX
I'm trying to create a custom file/check in check out script for external hardrives, however part of the script is from a Linux machine, which I have tested works fine, but uses udevinfo, OS X doesn't ...
1
vote
1answer
1k views
Script in udev rule doesn't run
I'm running Ubuntu 9.10 (Karmic Koala) on a laptop and would like NumLock to automatically toggle depending on whether my USB keyboard is plugged in (numlock on) or unplugged (numlock off).
To ...
1
vote
2answers
1k views
automatic renaming and numbering of nics using udev
I'm writing on an udev-rule to automatically rename and number NICs with specific MAC addresses.
The resulting rule should do nearly the same 75-persistent-net-generator.rules does (match first 3 ...
0
votes
0answers
18 views
How to automatically change the default audiocard when an (usb) audiocard is plugged in (ubuntu 11.10) [migrated]
I want to achieve the following: when an (usb) soundcard is pluggged in, it must be set as the default device.
I have created this local udev rule (/etc/udev/rules.d/99-local.rules:
...
0
votes
0answers
20 views
Taking input from user when usb device is plugged in
I am running a script when a USB device is plugged in using udev rules (RUN Command) and display a notification using notify-send.
I want it to prompt user to enter some inputs to the USB. How ...
0
votes
0answers
10 views
How to use libudev on android
As a part of low-level monitoring application, that needs to monitor some changes in sysfs I should use udev interface instead of inotify. It's pretty clear that most of android devices, and all ...
0
votes
0answers
16 views
How can I link some device (given by its device ID) with an specific firmware in linux? [migrated]
Imagine I have a new device which it's not working on Linux. I get its device ID with lsusb:
Bus 001 Device 003: ID1164:7efdYUAN High-Tech Development Co., Ltd
Imagine I know that this device will ...
0
votes
1answer
44 views
Who creates the “/dev/sdaX” node in the Linux filesystem? [closed]
I have doubts, who creates the node sd (SCSI Disk) under /dev?
I thought it was a kernel with usb driver in fact, but I have not found any documentation about this.
I just found that it may be to ...
0
votes
1answer
82 views
read usb serial code in bash using udevadm
I am trying to read usb unique id in bash using using udevadm command.
used command is:
udevadm info --query=all --name=/dev/sdc1
output is proper while using a regular usb storage,
E: ...
0
votes
1answer
125 views
Getting information on mounted drives in Linux with libudev
I use libudev to monitor storage devices (usb keys, etc) so that when they are modified I get a notification in my program. Libudev tells you whether or not a device has been added,removed,etc and ...
0
votes
1answer
63 views
How to identify devices with udev
I'd like to use libudev to watch for certain devices. Specifically, I want to monitor for removable storage: USB Hard Drives, USB Keys, SD cards, etc. The libudev API lets you find a device if you ...
0
votes
0answers
21 views
libudev strange behavior v1.7.2 onwards
I am facing a certain issue with libudev. I have written a listener thread that constantly keeps listening for devices connected over usb. I have used the libudev API udev_monitor_receive_device at ...
0
votes
0answers
51 views
mdev racing when creating and deleting device node
Recently, I used to mdev to replace udev. Comparing to udevd, mdev really save much memory usage. The configuration is as follow:
in /etc/mdev.conf, if the device matched against sd[a-z][0-9], the ...
0
votes
0answers
41 views
Mono application never terminates
I've written an application to run on Mono and be called by udev rules.
The application functions just fine on the console. Additionally, it works fine from a udev APP+= stanza. However, on a new ...
0
votes
1answer
119 views
how to get uuid of a device using udev
I want get the mount node of an usb mass-storage device, like /media/its-uuid
in pyudev, class Device has some general attributes, but not uuid or mount node.
how to do it
thanks help
0
votes
1answer
186 views
udev and usb framebuffer device
I want to get a fixed device-name for a certain USB Framebuffer device (DisplayLink). Using the vendor-ID I can get a match using a udev rule:
SUBSYSTEM=="usb", ATTRS{idVendor}=="17e9", GROUP="video"
...
0
votes
1answer
363 views
Create device symlink with udev based on device response, not udev device info
I have three different serial devices connected to three usb-serial converters (FTDI USB-RS232). If I connect them, I get the generic device names /dev/ttyUSBx as expected. When I try to write some ...
0
votes
0answers
247 views
How do I enable Emulate3Button in Ubuntu 10.10?
I'm used to have the simultaneous click of left and right button to act like the middle button, but I can't make this work in Ubuntu 10.10. I used to edit xorg.conf, but it seems that the ...