Tagged Questions

0
votes
1answer
17 views

auto permissions on udev’d device files?

This is a dupe from SuperUser.com . Folks over there weren't smart enough or willing to help me out; maybe it's more a programmer question than an administrator one: I have an a …
0
votes
1answer
28 views

Handling HAL implementation: storage.cdrom.write_speeds

device.get('storage.cdrom.write_speeds') This returns HAL list of ints, like: [4284, 2342, 1202, 800] How should these be handled, to recieve writing speed? Or better, how doe …
2
votes
2answers
254 views

HAL - how to monitor audio output on a mac

There is an application called wiretap available at http://www.ambrosiasw.com/utilities/wiretap/ This application can record the system audio. I would like to be able to do the s …
0
votes
0answers
119 views

enable/disable device driver using HAL and DBus

I want to write a python code using HAL to get for a certain "udi" the info. about the device driver, and to enable/disable this device driver.
1
vote
1answer
117 views

Disable GNOME’s automount with Python

Hi, I need to stop GNOME/Nautilus from automagically mounting new devices and partitions as they appear to the system. How can I accomplish this in python?
2
votes
5answers
241 views

Creating a network driver

I'm pretty much a total idiot when it comes to writing hardware drivers, however I'm fairly decent at C/C++. I have a for fun project I want to work on that is attempting to use a …
2
votes
2answers
86 views

Find a HAL object based on /dev node path

Hi, I'm using python-dbus to interface with HAL, and I need to find a device's UDI based on it's path in the /dev hierarchy. So given a path such as /dev/sdb, I want to get a val …
2
votes
1answer
70 views

Unit testing for D-Bus and HAL?

How does one test a method that does some interactions with the local D-Bus (accessing a HAL object)? Results of tests will differ depending on the system that the test is run on …
1
vote
2answers
53 views

How to mark a device in a way that can be retrived by HAL but does not require mounting or changing the label.

I'm trying to find a way to mark a USB flash device in a way that I can programmaticly test for without mounting it or changing the label. Are there any properties I can modify a …
4
votes
1answer
309 views

When do hal properties get updated

I'm calling GetProperty on a org.freedesktop.Hal.Device from my handler during a PropertyNotified signal. I'm only calling GetProperty on properties that have been added or change …