Free/Libre Open Source Software


18
Jun 10

mplayer: “Failed to open VDPAU…”

powered by WordPress Multibox Plugin v1.3.5

The cause why you get this error when starting mplayer is that it chooses the “vdpau” output video driver as default. To change this one you have to change/add some lines in your config. file of mplayer. This may lie in /etc/mplayer or ~/.mplayer. Add this line to your config. file or alter the string behind the equal sign to your video driver:


vo=x11

You may also use your output video driver here, like xv for example. The nouveau video driver didn’t work for my part, but I think that X11 is in some way the “referrer” for it. To find out your driver use the command lsmod.


2
Jun 10

GNOME Power Manager prevents login

If you’ll ever get this warning message at the login screen of your Ubuntu

Install problem! The configuration defaults for GNOME Power Manager have not been installed correctly. Please contact our computer administrator.

do not panic! There is still hope. ;) It’s possible that it got something to do with the GNOME Power Manager or it is much more simple, like in my case: there is not enough space left on your /home partition. Just delete a few files and you should be able to login again. If this doesn’t work out, invest your time in the gnome-power-manger package and it’s configuration.

Here a discussion Launchpad about the issue.


17
Feb 10

“Not enough memory in target location” while upgrading Maemo 5

Should solve the problem:


$ apt-get clean # Need to be root

6
Dec 09

Server Crash / Linux-Magazine: Special issue about the Kernel of GNU/Linux

Hi

I’m sorry for the elusiveness of the blog and the server. Now all is running fine again. One blog post has been deleted and can’t be recovered. It was a small one about the heart of GNU/Linux – the kernel. I mentioned that a special issue of the Linux-Magazine has been published about the topic (211 pages). The book/magazine is in German language and can be bought here (also more information).

Greetings,

Prometheus


15
Oct 09

NVidia 185 driver couldn’t be activated (Ubuntu – Karmic Koala)

After I installed the graphic drivers I've done a reboot and ended up with a blank screen (black).
Booting from a Live CD and editing the /etc/X11/xorg.conf file was the fastest way the fix this.
You have to alter the Driver entry of line 12 from nvidia to nv. Save and reboot.
Section "Screen"
 Identifier    "Default Screen"
 DefaultDepth    24
EndSection

Section "Module"
 Load    "glx"
EndSection

Section "Device"
 Identifier    "Default Device"
 Driver    "nvidia"
 Option    "NoLogo"    "True"
EndSection

After this I was back Online and I've executed this command:

sudo dpkg-reconfigure nvidia-185-kernel-source

It [dpkg-reconfigure] reconfigures packages after they've already been configured and installed.
Reboot and afterwards it should work properly.

More information:

[1] Google Results on: activate nvidia 185 driver ubuntu
[2] Ubuntu Launchpad - jockey does not correctly install nvidia 185 driver
[3] Ubuntu Launchpad - xorg: failed to load module "nvidia"

Cheers,
Prometheus