Bits and Bytes from Johnny Mac

Saturday, December 16, 2006

Beryl Workaround

As I noted in my previous post, I recently switched from FC5 to FC6. It was a very easy upgrade, and FC6 is most definitely worth it. The fonts are so much crisper, yum is way faster, and many things are generally just a little more polished than FC5.

One of the whizziest new features is the 3D desktop. This is enabled by use of OpenGL acceleration in the window manager. Very, very cool. Fedora encourages using Compiz as the window manager to get access to the eye candy.

This really tickled my fancy, so I kept digging into Compiz. As I looked more into Compiz, I found a fork of that project called Beryl. Perhaps I didn't dig deeply enough into Compiz, but one thing I didn't like was that there were almost zero configuration options and no plugins came with it by default.

Beryl, on the other hand, comes with all kinds of goodies. It is highly configurable, and it comes with all kinds of special effects by default. So I stuck with Beryl.

The only downer so far is that resuming from suspend does not work correctly. Everything on my laptop is functioning as expected except that the video does not resume cleanly. I can ssh in from another machine and restart beryl-manager at which point everything is fine. That's a simple enough workaround, but it's kind of annoying, and it doesn't work too well when I am moving my laptop from one network to another.

To work around this issue, I wrote a little perl script to act as a watchdog. I use this to launch beryl-manager in my session startup, and I modified my resume_video function in /etc/pm/functions-nvidia (part of pm-utils) to signal the watchdog. The watchdog then kills beryl (the window manager) and beryl-manager and restarts beryl-manager. This seems to work very reliably.

Hopefully we'll get a real fix soon. The behavior is kind of similar to the bad ole days when the nVidia driver was kind of wonky. I'm not 100% sure that it is Beryl. Compiz appears to exhibit the same behavior, but Metacity has no problem. Perhaps there's something flaky in the nVidia OpenGL code. However, since restarting Beryl fixes the issue, they have an opportunity to make life better for the user.

In any event, Beryl is well worth a little extra work. I'm never looking back!

Here's how to implement the watchdog workaround:
  • Download the watchdog script
  • tar xzvf beryl_watchdog.tar.gz
  • mv beryl_watchdog.pl <installation location> (e.g. ~/bin, /usr/local/bin)
  • Edit System->Preferences->More Preferences->Sessions->Startup Programs
  • Add beryl_watchdog.pl to the list of programs to start
  • Edit /etc/pm/functions-nvidia and add 'killall -USR1 beryl_watchdog.pl' as the last line in resume_video()
The net effect of all this is:
  • The watchdog script will be launched as part of the session startup
  • Upon resuming from suspend, the watchdog will get a USR1 signal
  • Upon receiving that signal the watchdog script will kill beryl and beryl-manager and relaunch beryl-manager
The last thing to note is that this only addresses Gnome usage. I'm not sure there is a problem under KDE. If the same problem does exist, the watchdog script may be useful, but the mechanics of including it in the session startup will differ.

This is a dirty little hack, but it is the difference between being able to use suspend plus Beryl and not. Hopefully this will be short-lived and I can delete this in a couple of months.

2 Comments:

  • Simple and great !

    If you have SElinux enabled, you are required to enable the hald context to send signals. So here's how to create the rule "berylwatchdog" manualy:

    # grep killall /var/log/messages | audit2allow -m berylwatchdog > berylwatchdog.te
    # checkmodule -M -m -o berylwatchdog.mod berylwatchdog.te
    # semodule_package -o berylwatchdog.pp -m berylwatchdog.mod
    # semodule -i berylwatchdog.pp

    Hope this will help.

    By Blogger Unknown, At 1/06/2007 07:28:00 AM  

  • I had the same problem with my nvidia driver and kubuntu (black screen with mouse when resuming).
    The watchdog script works fine but I found more stable and less annoying to write in /etc/modprobe.d/nvidia-kernel-nkc this single line : options nvidia NVreg_DeviceFileUID=0 NVreg_DeviceFileGID=33 NVreg_DeviceFileMode=0660 NVreg_SoftEDIDs=0 NVreg_Mobile=1

    And in /etc/X11/xorg.conf in device section this line: Option "ConnectedMonitor" "DFP"

    It's been 7 days I'm using it and I had no more black screen when resuming or switching consoles.

    IMHO, as beryl is stable enough, it is better to tell kde to use beryl as his default windows manager -> write KDEWM=/usr/bin/beryl-manager in /etc/environment.
    Remove all beryl autostart script in ~/.kde/Autostart.

    By Blogger Unknown, At 2/07/2007 05:05:00 AM  

Post a Comment

Subscribe to Post Comments [Atom]



<< Home