You are not logged in.
Hi,
my prblem is, that I want to start pulseaudio as a system wide daemon on a headless server. the configuration files (/etc/pulse/default.ps daemon.conf and system.pa) are the default ones. i also added root to the pulse-access group.
could it be that there's a missing daemon in rc.conf that pa needs?
this is my daemon array:
(syslog-ng netfs hal crond net-profiles sshd acpid alsa samba mpd pulseaudio avahi-daemon)
thankful for any help
greets
Offline
It would be helpful if you posted error messages.
Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.
Offline
I would if there were any. it just says FAIL if I run
sudo /etc/rc.d/pulseaudio startperhaps you know where to look for error messages of pulseaudio?
Offline
First thing to do is actually run pulseaudio as root rather than using the rc.d script. Then you can run it with whatever verbosity you like, "-vvvv" is normally best.
I think pulseaudio is already running for you though, check with ps -e | grep pulse. Its probably running as your user and has control of your soundcard.
Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.
Offline
so now i did what you suggested: the output of sudo pulseaudio -vvv shows several red lines:
E: module-console-kit.c: Unable to contact D-Bus system bus: org.freedesktop.DBus.Error.FileNotFound: Failed to connect to socket /var/run/dbus/system_bus_socket: Datei oder Verzeichnis nicht gefunden
E: module.c: Failed to load module "module-console-kit" (argument: ""): initialization failed.
E: main.c: Module load failed.
E: main.c: Module load failed.
E: main.c: Konnte Daemon nicht initialisieren.i hope this will help
Offline
Do you have dbus running?
Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.
Offline
DBus did not run. but if i add it to the daemon-array in rc.conf pulseaudio shows the following messages when i run it as root:
E: module-console-kit.c: GetSessionsForUnixUser() call failed: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.ConsoleKit was not provided by any .service files
E: module.c: Failed to load module "module-console-kit" (argument: ""): initialization failed.
E: main.c: Module load failed.
E: main.c: Module load failed.
E: main.c: Konnte Daemon nicht initialisieren.Offline
ok the thing with consolekit made me think that i should install hal. this solved my problem. now everything runs as it should.
thanks ngoonee for your help
Offline
You MAY be able to get it working without hal (I don't use HAL) by using module-udev-detect instead of module-hal-detect, I think.
Allan-Volunteer on the (topic being discussed) mailn lists. You never get the people who matters attention on the forums.
jasonwryan-Installing Arch is a measure of your literacy. Maintaining Arch is a measure of your diligence. Contributing to Arch is a measure of your competence.
Griemak-Bleeding edge, not bleeding flat. Edge denotes falls will occur from time to time. Bring your own parachute.
Offline
yes indeed it works without hal but it needed consolekit which is a dependency of hal. i noticed that and uninstalled hal again and just installed consolekit. I also needed to comment the following line in /etc/pulse/system.pa:
load-module module-volume-restore table="/var/pulse/volume-restore.table"to get it finally to work.
Offline