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
-
Arch Linux 2023.12.01 Released with a Much-Improved Installer
If you've ever wanted to install Arch Linux, now is your time. With the latest release, the archinstall script vastly simplifies the process.
-
Zorin OS 17 Beta Available for Testing
The upcoming version of Zorin OS includes plenty of improvements to take your PC to a whole new level of user-friendliness.
-
Red Hat Migrates RHEL from Xorg to Wayland
If you've been wondering when Xorg will finally be a thing of the past, wonder no more, as Red Hat has made it clear.
-
PipeWire 1.0 Officially Released
PipeWire was created to take the place of the oft-troubled PulseAudio and has finally reached the 1.0 status as a major update with plenty of improvements and the usual bug fixes.
-
Rocky Linux 9.3 Available for Download
The latest version of the RHEL alternative is now available and brings back cloud and container images for ppc64le along with plenty of new features and fixes.
-
Ubuntu Budgie Shifts How to Tackle Wayland
Ubuntu Budgie has yet to make the switch to Wayland but with a change in approaches, they're finally on track to making it happen.
-
TUXEDO's New Ultraportable Linux Workstation Released
The TUXEDO Pulse 14 blends portability with power, thanks to the AMD Ryzen 7 7840HS CPU.
-
AlmaLinux Will No Longer Be "Just Another RHEL Clone"
With the release of AlmaLinux 9.3, the distribution will be built entirely from upstream sources.
-
elementary OS 8 Has a Big Surprise in Store
When elementary OS 8 finally arrives, it will not only be based on Ubuntu 24.04 but it will also default to Wayland for better performance and security.
-
OpenELA Releases Enterprise Linux Source Code
With Red Hat restricting the source for RHEL, it was only a matter of time before those who depended on that source struck out on their own.