Big Cat to the Rescue
Charly's Column – Tiger VNC
Sys admin columnist Charly enumerates the computers in his household and makes it clear that commuting between them would be an unreasonable burden on his personal energy balance. Instead he lets a tiger go the distance for him.
My powerful Linux workstation is in my study up in the attic, because its fan would unnecessarily heat up my living room. The family PC is quiet; it's in the small hobby corner along with a couple of half-finished Lego sets, a few Raspberry Pis, a laptop, and a MIDI controller, which I dabble with for relaxation. Then there are the two small test servers in the storeroom next to the kitchen where I try out software before I write about it.
SSH prevents me from burning too many calories when running between the dispersed machines. But if I want to show a host's whole desktop, then it's time for Virtual Network Computing (VNC). To access all of these machines, I recently checked out Tiger VNC [1]. On the workstation in my study, I typed the following command for quick installation:
sudo apt install tigervnc-standalone-server tigervnc-xorg-extension
In /etc/vnc.conf
, I replaced the
$vncStartup = "/etc/X11/Xvnc-session";
line with
$vncStartup = "$ENV{HOME}/.vnc/xstartup";
and saved the file from Listing 1 in the Ohm/.vnc
directory. vncpasswd
sets a VNC password, which should not be identical to that of the user. Now I can choose whether the user can only watch from a distance or actually do something.
Listing 1
xstartup
01 #!/bin/sh 02 # Start Desktop 03 [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup 04 [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources 05 vncconfig -iconic & 06 dbus-launch --exit-with-session gnome-session &
This completes everything on the server side. I fired up the VNC server by typing vncserver
(without sudo
; root rights are not required). It launched, but I only saw a Connection refused
when trying to connect. What's going on? The output from lsof | grep LISTEN
sheds light on the subject. The VNC server has only bound to localhost
. I stop the server with vncserver -kill
. The man page, which you only read when something goes wrong, provides the solution:
vncserver :1 -localhost no
Now the server accepts connections on all interfaces. Time to move on to the clients.
Tigers, Everywhere
I installed the Tiger VNC client on all my Linux computers by typing
sudo apt install tigervnc-viewer
The server connection is opened with:
xtigervncviewer -SecurityTypes VncAuth,TLSVnc -passwd /home/<charly>/.vnc/passwd <10.0.0.54>:1
Of course, you need to adapt the IP address to match your own server.
From the selection of clients [2], I tried the macOS version on the living room laptop. (My favorite audio tool is unfortunately not available for Linux.) However, the macOS Tiger doesn't convince me. Since VNC is widespread, an alternative was quickly found; Chicken [3] was swapped in as a replacement (Figure 1). Another handful of calories that I don't have to waste by moving my legs.
Infos
- Tiger VNC: https://tigervnc.org
- Tiger VNC Clients: https://bintray.com/tigervnc/stable/tigervnc/1.9.0
- Chicken: https://sourceforge.net/projects/chicken/
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.
-
Latest Cinnamon Desktop Releases with a Bold New Look
Just in time for the holidays, the developer of the Cinnamon desktop has shipped a new release to help spice up your eggnog with new features and a new look.