Error when starting Nemu on ArchLinux
Closed this issue · 2 comments
In terminal, when I write "nemu" to run it, it shows the following:
cfg: /usr/bin/remote-viewer: No existe el fichero o el directorio
I checked and I don't have the "remote-viewer" package in the /usr/bin path.
It seems that nemu didn't install the package "libvirt-vnc-viewer" and when I try to install it manually by AUR it throws error
I'd like to try nemu but I don't know what else I could do if the package I need is not available through my distro.
Hi. nemu supports two graphical protocols: VNC and SPICE.
By default nemu uses SPICE: .config/nemu/nemu.cfg
[viewer]
# default protocol (1 - spice, 0 - vnc)
spice_default = 1
You can install any vnc-client (tigervnc
for example has a vnc client) and setup nemu to use it. Example:
[viewer]
# default protocol (1 - spice, 0 - vnc)
spice_default = 0
# vnc client path.
vnc_bin = /usr/bin/vncviewer
# vnc client args (%t - title, %p - port)
vnc_args = :%p
# spice client path
spice_bin = /dev/null
It worked wonders, a thousand thanks, it was easier than I thought it'd be! :)