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
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
KDE Plasma 5.27 Beta is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.
-
Gnome 44 Now Has a Release Date
Gnome 44 will be officially released on March 22, 2023.
-
Nitrux 2.6 Available with Kernel 6.1 and a Major Change
The developers of Nitrux have officially released version 2.6 of their Linux distribution with plenty of new features to excite users.
-
Vanilla OS Initial Release Is Now Available
A stock GNOME experience with on-demand immutability finally sees its first production release.
-
Critical Linux Vulnerability Found to Impact SMB Servers
A Linux vulnerability with a CVSS score of 10 has been found to affect SMB servers and can lead to remote code execution.
-
Linux Mint 21.1 Now Available with Plenty of Look and Feel Changes
Vera has arrived and although it is still using kernel 5.15, there are plenty of improvements sure to please everyone.