RealVNC on Ubuntu 13.04 Raring Ringtail

I just spent a few hours getting the free version RealVNC working in Ubuntu 13.04 Raring Ringtail (Beta 2). Here are the steps that I needed to take:

  1. Disable the X Server Render extension. Copy /etc/vnc/config to /etc/vnc/config.custom and add
    -extension RENDER
  2. Create a custom xstartup file. Copy /etc/vnc/xstartup to /etc/vnc/xstartup.custom and make the following changes:
    • Remove the line
      [ -x /etc/vnc/xstartup.custom ] && exec /etc/vnc/xstartup.custom
    • Add "gnome-fallback" to the list of valid sessions by replacing
      for SESSION in "ubuntu-2d" "2d-gnome"; do

      with

      for SESSION in "ubuntu-2d" "2d-gnome" "gnome-fallback"; do
    • Add to the top of the file:
      unset XDG_RUNTIME_DIR

I found it necessary to unset XDG_RUNTIME_DIR because I could not figure out a way to guarantee the directory it points to actually exists. When the directory did not exist I experienced 100% CPU utilization bugs in indicator-datetime-service and gnome-settings-daemon.

Briefly, the XDG_RUNTIME_DIR variable and directory that it points to are managed by a PAM module in libpam-xdg-support. When jsmith logs in over SSH, the PAM module creates a directory /run/users/jsmith and increments a session count stored in /run/users/.jsmith.lock. When jsmith later logs out, the session count is decremented. When the session count reaches zero the directory is deleted. Since RealVNC does not appear to use the PAM session machinery, there is no way to guarantee that the session count remains positive if only a VNC session is active.

6 thoughts on “RealVNC on Ubuntu 13.04 Raring Ringtail

  1. Hello Bradley,

    unset XDG_RUNTIME_DIR does not seem to do the trick to me.

    I added it after the #!/bin/sh line in the /etc/vnc/xstartup.custom file without luck. Any advice?

    Thanks!

  2. Thanks for the help Brad,

    Still no luck. I have gnome-session-fallback and etc/vnc/xstartup.custom executable. I am also using your xstartup.custom script.

    This is in a 13.04 ubuntu server.

    Some questionable quirks:
    -I also need to have a xstartup file in ~/.vnc for the gnome-session-fallback to show up. I use the same /etc/vnc/xstartup.custom file.
    -I uninstalled indicator-datetime-service but of course, that solution does not work with gnome-settings-daemon.

    Any help would be greatly appreciated.

    Cheers

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s