LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

remote-viewer

View remote virtual machine displays

TLDR

Connect to a SPICE server
$ remote-viewer spice://[host]:[port]
copy
Connect to a VNC server
$ remote-viewer vnc://[host]:[port]
copy
View a remote desktop using a virt-viewer file
$ remote-viewer [path/to/connection.vv]
copy
Connect in fullscreen mode
$ remote-viewer -f spice://[host]:[port]
copy
Connect with a custom window title
$ remote-viewer -t "[My VM]" spice://[host]:[port]
copy
Connect with a specific zoom level
$ remote-viewer -z [150] spice://[host]:[port]
copy

SYNOPSIS

remote-viewer [options] [URI|file]

DESCRIPTION

remote-viewer is a simple remote display client that supports SPICE and VNC protocols. It can connect to remote virtual machines or physical systems displaying their graphical output.Connection parameters can be specified via URI on the command line or through a virt-viewer configuration file. The configuration file supports additional parameters like host, port, TLS settings, username, and password.

PARAMETERS

-f, --full-screen

Start in fullscreen mode.
-t TITLE, --title TITLE
Set the window title.
-z PCT, --zoom= PCT
Zoom level of the display window in percentage.
-v, --verbose
Display information about the connection.
--spice-controller
Use the SPICE controller to initialize the connection.
-h, --help
Display help.
-V, --version
Display version number.

INSTALL

sudo apt install virt-viewer
copy
sudo dnf install virt-viewer
copy
sudo pacman -S virt-viewer
copy
sudo apk add virt-viewer
copy
sudo zypper install virt-viewer
copy
nix profile install nixpkgs#virt-viewer
copy

CAVEATS

Requires appropriate client libraries for the connection protocol (SPICE, VNC). Display quality depends on network bandwidth.

HISTORY

Part of virt-viewer, providing remote display tools for virtual machine management, commonly used with libvirt and QEMU/KVM.

SEE ALSO

Copied to clipboard
Kai