3

After an update a few months ago, the taskbar on the desktop disappeared and was replaced with a flashing grey bar.

I am running Jessie and am getting the following errors when running an update:

sub process returned with error code (1)
dependency problems
xserver not configured yet

and several other error messages relating to x-server components not being configured or present.

How do I sort this lot? I'd rather not reinstall because I've got a LAMP setup for local testing of websites and don't want to have to set it all up again.

I have looked at this page, but it is not relevant, looking in /etc/group pi is in the audio group.

Jacobm001
  • 11,898
  • 7
  • 46
  • 56
user1977132
  • 131
  • 3
  • Thanks for the answers which have eventually come in. I ended up reinstalling with a new image so I can't test anyone's answers. Unfortunately this means I can't mark anybody's answer as correct. Sorry. – user1977132 Apr 18 '16 at 13:12

3 Answers3

2

Try adding dtparam=audio=on to /boot/config.txt by fzinken

electron1979
  • 121
  • 11
1

As per this page, it could in fact be an audio problem so I suggest instead:

sudo usermod -a -G audio <your_user>

At any rate, that's what worked for me.

Pi Hard
  • 11
  • 4
  • Thanks for the suggestion. I eventually ended up reinstalling with a new image so I can't test your idea. I guess this means I can't mark your answer (or anybody else's) as correct. Sorry. – user1977132 Jan 07 '16 at 06:03
0

I was having this problem with QEMU and Raspbian Wheezy (fully upgraded), and eventually solved removing the following block from ~/.config/lxpanel/LXDE-pi/panels/panel:

Plugin {
        type=volumealsa
        Config {
        }
}

Probably this is caused by an audio problem, because QEMU says:

dsound: Could not initialize DirectSoundCapture
dsound: Reason: No sound driver is available for use, or the given GUID is not a valid DirectSound device ID
Robert Hume
  • 175
  • 1
  • 1
  • 8