Udev manages the Linux /dev directory, and hooks userspace into kernel device events.
-1
votes
0answers
24 views
udev rule not working on Debian [closed]
Good morning !
I have created a udev rules which is supposed to mount a usb device, backup some datas et cleanup everything. I am actually working on a Debian server.
There is the information about ...
0
votes
0answers
27 views
Udev rules boot errors
TL;DR; Udev is showing a lot of errors during boot and it is pointing to a .rules file.
A little background: I recently upgraded an Ubuntu 5 server to Ubuntu 12. I performed a stepwise upgrade to ...
0
votes
0answers
10 views
Hide File System in XFCE Thunar
I am trying to hide File system and Removable media items in Thunar.
Adding /dev/sda1 to /etc/fstab and adding /etc/udev/rules.d/hide-partitions.rules file with
KERNEL=="sda1",ENV{UDISKS_IGNORE}="1"
...
-2
votes
0answers
41 views
/dev/.udev/db no longer available [closed]
I'm updating my question as it is a programming issue.
We have a native c library that uses libusb to access usb devices but we listen for changes on the /dev/.udev/db directory to determine whether ...
0
votes
0answers
13 views
Using udev to acquire printer details in Linux
I have a case where I am plugging in multiple USB printers, and there is no consistency in the naming/mapping of each printer. For example, when I connect two printers, they are assigned to ...
3
votes
1answer
70 views
Python program possibly causing filesystem errors?
Overview:
Hi. I have a python program that controls a motion sensor between the hours of 9-5. This program is running on a raspberry pi, stored on SD media with occidentals v2.1 Debian OS. The ...
2
votes
1answer
23 views
Getting live info from /dev/input
I am unsure if this is the correct place for this question. I am attempting to obtain the axis position values from a joystick /dev/input/js0 on my system. If I run jstest /dev/input/js0 it will give ...
2
votes
2answers
49 views
Finding only disk drives using pyudev
I'm looking to enumerate all hard disks on a computer using udev and specifically pyudev to enumerate everything:
import pyudev
context = pyudev.Context()
for device in ...
1
vote
2answers
169 views
COM port detection in Linux
Please let me know if there is any API, system call, function (in Linux) which I can use my C program to detect a COM port dynamically, i.e., whenever a USB modem dongle is inserted in the port I will ...
0
votes
1answer
71 views
libudev monitoring returns NULL pointer on Raspbian
I'm trying to port an application that was running before on an Ubuntu system to the Raspberry Pi, using Raspbian. The application should detect new USB flash drives. This is how the udev monitoring ...
0
votes
0answers
37 views
synclient doesn't work from udev rules
This script is used to detect inserting a mouse, and disable / enable the touchpad.
this is the udev rule that triggers the script:
ENV{DEVTYPE}=="usb_device", ACTION=="add", ...
0
votes
0answers
232 views
Piso S1 adb works but fastboot doesn't. Linux
lsusb of the device in developer mode (ADB connects fine).
Bus 002 Device 008: ID 2207:0010
Device Descriptor:
bLength 18
bDescriptorType 1
bcdUSB 2.00
...
0
votes
0answers
142 views
Find and mount a USB drive with automount turned off
I have a USB device plugged into an Ubuntu 12.04 system.
Automount is turned off, for various reasons.
I'd like create a program to find and mount this device, preferably in the
boot process. I ...
0
votes
0answers
117 views
Setting up udev rules to distinguish flash drive from usb hard drives
I have a NAS setup where my operating system (debian wheezy) is on a flash drive, specifically an 8GB SanDisk Cruzer Fit, and I have USB hard drives for offsite backups of varying makes, models, and ...
-1
votes
1answer
61 views
what is the udev rule to allow specific vendor thumb drive?
I need a udev rule so that it should detect the vendor of the USB pendrive, and allow only specific vendors, rejecting all others.
How to write such a rule ?
Where should the rules be placed ...
3
votes
1answer
115 views
How can my perl script react to arbitrary devices using UDev and not HAL?
I'd like to use a simple Perl script to make some configurations every time I connect e.g. my bluetooth headset. I tried using Net::DBus, but my OS/DE (Fedora 17, GNOME3) doesn't use HAL anymore.
I ...
3
votes
1answer
159 views
Activating a script using udev when power supply is connected/disconnected
I'm trying to get udev to run a couple of small scripts when I connect/disconnect the powersupply. I have the following code in /etc/udev/rules.d/50-caff.rules :
SUBSYSTEM=="power_supply", ...
0
votes
0answers
36 views
how to keep hotplugging without udev
According to my knowledge the main functions of udev are devices nodes creation and hotplugging management. I am planning to get rid of udev. I want to populate /dev manually using mknod to crate ...
2
votes
1answer
163 views
Linux, sysfs, usb sticks and usb hard drives
Is there a way to distinguish between USB sticks (flash memory) and USB hard drives via libudev / sysfs in Linux? If not, is there a way to query the hardware directly? Thank you.
0
votes
1answer
61 views
udevlib Does udevlib work with mdev
We have to enumerate usb devices on board. Can we build busybox with mdev instead of udev?
Can we also use udevlib functions in case we have mdev on board.
0
votes
1answer
131 views
udev ttyUSB change MODE
my program needs to access ttyUSB without root permission.
i change it with chmod 777 /dev/ttyUSB0 as you know when i reboot this permission changed by default.how to configure my udev rules.d for ...
4
votes
2answers
231 views
Need more than 32 USB sound cards on my system
I'm working on an educative multiseat project where we need to connect 36 keyboards and 36 USB sound cards to a single computer. We're running Ubuntu Linux 12.04 with the 3.6.3-030603-generic kernel.
...
0
votes
0answers
61 views
Finding the number of partitions of a block device in mips architecture
I want to find the number of partitions of a usb disk drive in mips architecture linux kernel as soon as the kernel detects the device and creates device mount point(/dev/sdX).
1) I can not use the ...
0
votes
1answer
198 views
Sample UDEV file for Stellaris Launchpad
I'm trying to get my Stellaris Launchpad to work with the Energia IDE.
I'm told to upload programs and to run the serial port I've got to create a udev entry.
I'm relatively new to linux (although ...
1
vote
1answer
321 views
What is the use of udevadm settle? [closed]
I have seen the of using udevadm settle command. What is the use of such a command in init scripts?
11
votes
1answer
349 views
How do I log data from my serial ports consistently?
I need to deal with two pieces of custom hardware which both send debugging data over two serial connections. Those serial connections go through two serial-to-USB converters. The serial-to-USB ...
1
vote
1answer
239 views
Compilation errors in RHEL 5 libudev.h No such file or directory
All,
I'm trying to compile some code that compiles in Ubuntu after getting the udev library from "apt-get". I am trying to get it to compile in RedHat 5 but am getting the following compile errors:
...
0
votes
0answers
202 views
Cross compiling libudev-dev
Does anyone has any experience in cross compiling libudev-dev for MIPSle architecture using the ELDK cross compiler?
I have managed to get it to the stage where I build libffi, glib but when I build ...
0
votes
1answer
130 views
passing arguments to shell script from udev rules file
In the rules file a script is executed by passing the arguments "LABEL" and "DEVNAME" for mounting
ACTION=="add", RUN+="/appmount/scripts/usb_mount.sh %E{ID_FS_LABEL} %E{DEVNAME}"
In the ...
1
vote
0answers
59 views
Hooking into kset->uevent_ops to get device notification
Before Linux kernel version 2.6.34,I used to hook into uevent_ops to get the device add/remove notification in init_module of my block device driver.
my_uevent_ops = kset->uevent_ops;
...
2
votes
1answer
254 views
Replacement for hal-get-property and hal-find-by-capability in udev?
I need to port a bash script which uses deprecated HAL tools like hal-get-property or hal-find-by-capability to udev. HAL states that HAL was merged into udev, but I couldn't find useful informations ...
0
votes
0answers
57 views
How to edit udev rules in Montavista?
I am using Montavista in embedded system(ARM). when I mount a USB stick, sometimes it is mounting on /dev/sda1 and sometimes on /dev/sdb1, and so on. But I want to fix the mount point as /dev/sda1. so ...
1
vote
0answers
137 views
udev and hotplugging [closed]
It may seem to be a simple question but i couldn't find answer to this:
Is there any functionality of udev except for handling hotplugging of devices. Most of the text says that udev also take care ...
1
vote
0answers
65 views
Linux - two devices writing to the same device node
Okay, I have two joysticks attached to my linux box and they show up as /dev/js0 and /dev/js1. My problem is, I have a third party application, (that I cannot change), that uses a joystick, and it ...
1
vote
1answer
113 views
Unit test python udev interaction
I've inherited some python code that writes a new '/etc/udev/rules.d' mapping file and then makes a subprocess call to udev to have it refresh its devices list:
call(['/sbin/udevadm', 'trigger', ...
1
vote
2answers
256 views
Pass ATTR{idVendor} as argument in udev script
I have a script which is run whenever a usb device by vendor 1004 is connected. The udev rule I am using works and looks like this.
SUBSYSTEM=="usb", ATTR{idVendor}=="1004", ...
0
votes
1answer
250 views
add udev rule for external display
I wrote a small shell script configuring attached external displays with xrandr.
# cat /home/didi/bin/monitor_autoswitcher.sh
#!/bin/bash
xrandr | grep "HDMI1 connected"
if [[ $? == 0 ]]; then
# ...
0
votes
1answer
255 views
anyone got android debug bridge on nikon s800c to linux host working?
OK, I have a brand new Nikon S800c android camera I want to develop a specialized camera app for, and I can't seem to get it to show up in an "adb devices" command. It is USB ID 04b0:018f. I ...
-1
votes
1answer
345 views
BusyBox: mdev command not found
I try to install BusyBox 1.20.2 on a embedded system with PowerPc.
I set all configurations to NO
make allnoconfig
started the configuration manager
make menuconfig
And just enabled mdev
Linux ...
1
vote
1answer
148 views
BusyBox: Error during make
I try to install BusyBox 1.20.2 on a embedded system with PowerPc. At first I want to try it with the default config.
So this are the commands
make defconfig
make
And this is the result:
...
0
votes
1answer
293 views
BusyBox: How can I replace the imple function of udev with mdev?
I run a smart Embedded Linux on a board and I want to create device files, for that I need udev. But Udev needs alot of other small programs or libs. So the question is:
How can I replace the imple ...
0
votes
0answers
101 views
Linux Error during make gobject-introspection-1.32.1
I want to install gobject-introspection-1.32.1 on my embedded Linux.
But during make this error message appear.
Do anybody now what to do?
-bash-3.2# make ...
0
votes
0answers
68 views
BusyBox: Can BB spare the installation of udev?
I found this lines
As it is a complete boot-strap system it will further replace the init
daemon and udev (or the latter-day systemd) using itself to be called
as init on startup and mdev at ...
2
votes
2answers
497 views
How to prevent all usb mass storages from mounting?
I want to prevent every kind of usb mass storage from mounting using udev rules.
Already i can detect all of usb mass storages connected to my system using following rule:
SUBSYSTEMS=="scsi", ...
1
vote
1answer
174 views
Linux libffi-3.0.11 installation issue
I try to install libffi-3.0.11 I followed that side
http://www.linuxfromscratch.org/blfs/view/svn/general/libffi.html
But I got this error message. How can I solve that?
make[3]: *** ...
0
votes
1answer
203 views
How to use libacl for udev?
I try to install udev, but that require libacl. The question is how install/include libacl? I thought it would be enough to download it and put it into the /lib directory. But No.
One Alternative ...
0
votes
1answer
91 views
udev crash after I mount an ext2 partition
I was programming a usb feature for our Embedded linux, I used udev to mount the partitions. and if there is a partition is EXT2 or EXT3, then when I unplug the usb disk, udev has a log come out, as ...
0
votes
0answers
139 views
Recognize device and udev equivalent for max os x
Alternative to udev functionality on OSX does not help me.
My question: How can I make my mac os x discover a device and configure the device node into a symbolic links?
In Linux, it will create a ...
0
votes
0answers
107 views
Minimal HID class requirements to get udev polling the status of a battery
I am building a simple battery powered Linux system and am adding a microcontroller to mop up some I/O and housekeeping duties. For the sake of simplicity this will be connected via USB.
One function ...
0
votes
0answers
90 views
udev not updating usb permissions and group
I am using ubuntu 10.04 LTS - Locid Lynx. I have a requirement to set specific group and permissions for any usb stick file/directories on mount. I have tried overwriting the udev rules. Here is what ...
