unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: George myglc2 Clemmer <myglc2@gmail.com>
To: help-guix <help-guix@gnu.org>
Subject: Is there a way to disable pulseaudio on a headless server?
Date: Mon, 12 Feb 2018 14:16:41 -0500	[thread overview]
Message-ID: <86bmgu81d2.fsf@gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 570 bytes --]

Is there a way to disable pulseaudio on a headless server?

My server is generting errors like ...

messages:4985:27:Feb 12 09:12:37 localhost pulseaudio[12243]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.ServiceUnknown: The name org.bluez was not provided by any .service files

debug:345077:27:Feb 12 09:12:37 localhost pulseaudio[12243]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.ServiceUnknown: The name org.bluez was not provided by any .service files

Config attached. TIA - George


[-- Attachment #2: sys.scm --]
[-- Type: application/octet-stream, Size: 2882 bytes --]

;; GuixSD headless server w/Avahi & nss
(use-modules (gnu))
(use-service-modules networking ssh)
(use-service-modules virtualization) ; libvirt-service-type
(use-service-modules dbus)           ; dbus
(use-service-modules admin mcron)    ; rottlog-service-type
(use-service-modules  avahi)         ; avahi-service avahi (avahi-browse) nss-mdns
(use-service-modules  virtualization);libvirt-service-type
(use-package-modules
 admin                ;
 base                 ; glibc-utf8-locales
 certs
 cups
 disk
 emacs
 freeipmi
 linux                 ; mdadm
 networking            ; openvswitch
 virtualization        ; qemu virt-manager
 rsync
 screen
 ssh
 version-control       ; git
 wget
 xorg                  ; xauth
 )
(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (kernel-arguments '("console=ttyS1,115200"))
  ;; RAID1 root: NVMe M.2 SSD + 2 HDs
  (bootloader (grub-configuration
	       (target "/dev/nvme0n1")
	       (terminal-outputs '(console))
	       (terminal-inputs '(serial console))
	       (serial-speed 115200)
	       ))
  (initrd (lambda (file-systems . rest)
	    (apply base-initrd file-systems
		   #:extra-modules '("raid1")
		   rest)))
  (mapped-devices (list (mapped-device
			 (source '("/dev/nvme0n1p1" "/dev/sda1" "/dev/sdb1"))
			 (target "/dev/md3")
			 (type raid-device-mapping))))
  (file-systems (cons (file-system
			(title 'device)
			(device "/dev/md3")
			(mount-point "/")
			(type "ext4")
			(dependencies mapped-devices))
		      %base-file-systems))
  (swap-devices '("/dev/nvme0n1p2" ))
  (users (cons* (user-account
		 (name "g1")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm" "libvirt"))
		 (home-directory (string-append "/home/" name)))
		%base-user-accounts))
  (packages (cons*
	     cups
	     emacs-no-x-toolkit
	     emacs-guix
	     emacs-zenburn-theme
	     freeipmi
	     git
	     glibc-utf8-locales
	     gnu-make
	     mdadm
	     magit
	     nss-certs
	     openssh
	     openvswitch           ;  networking
	     parted
	     qemu
	     rsync
	     screen
	     smartmontools
	     tree
	     virt-manager
	     wget
	     xauth
	     %base-packages))
  (name-service-switch %mdns-host-lookup-nss)
  (services (cons*
	     (service rottlog-service-type)
	     (dhcp-client-service)       ;needed for multicast
	     (avahi-service)
	     (dbus-service)
	     (ntp-service)
	     (service openssh-service-type
		      (openssh-configuration
		       (x11-forwarding? #t)))
	     (agetty-service
	      (agetty-configuration (tty "ttyS1")
				    (baud-rate "115200")))
	     (service libvirt-service-type ; virt-manager
		      (libvirt-configuration
		       (unix-sock-group "libvirt")
		       (tls-port "16555")))
	     (service openvswitch-service-type
		      (openvswitch-configuration
		       (package openvswitch)))
	     %base-services))
  )

             reply	other threads:[~2018-02-12 19:16 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-12 19:16 George myglc2 Clemmer [this message]
2018-02-12 19:40 ` Is there a way to disable pulseaudio on a headless server? Leo Famulari
2018-02-12 20:28   ` George myglc2 Clemmer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=86bmgu81d2.fsf@gmail.com \
    --to=myglc2@gmail.com \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).