Everything you need to download, install, and run Remote Commander on 64-bit Linux, on one page.
Two formats are provided: a portable AppImage and a Debian/Ubuntu .deb. No developer tools required.
Download from the official Releases page and grab the ...AppImage (any distro) or the ...deb
(Debian/Ubuntu):
👉 https://github.com/RonBulaon/remoteCommander/releases/latest
Or download the latest build straight from the terminal (no need to know the version):
# AppImage:
curl -fsSL https://api.github.com/repos/RonBulaon/remoteCommander/releases/latest \
| grep -o '"browser_download_url": *"[^"]*\.AppImage"' | cut -d'"' -f4 \
| xargs -n1 curl -fL -O
# …or the .deb — swap the extension:
curl -fsSL https://api.github.com/repos/RonBulaon/remoteCommander/releases/latest \
| grep -o '"browser_download_url": *"[^"]*\.deb"' | cut -d'"' -f4 \
| xargs -n1 curl -fL -Osudo apt install -y libfuse2 # AppImage needs FUSE (Debian/Ubuntu; Fedora: sudo dnf install fuse)
chmod +x ./*.AppImage
./*.AppImage # double-click also works in a file managerThe .deb is named like remotecommander_<version>_amd64.deb (Debian lowercases/strips the name).
The leading ./ is required — without it, apt treats the filename as a repo package name and
fails with "Unable to locate package."
sudo apt install ./remotecommander_*_amd64.deb # or: ./*.debThen launch Remote Commander from your applications menu (or run remotecommander in a terminal).
These work immediately, with nothing else to install:
- SSH terminal · SFTP file transfer · Remote file editor
- Web console (built-in browser) · VNC (the remote host must run a VNC server)
- Local terminal
Saved passwords: for the system keyring (instead of an encrypted-file fallback), install
sudo apt install -y libsecret-1-0 gnome-keyring(Fedora:sudo dnf install libsecret gnome-keyring).
Only if you'll use remote desktop (RDP) or VPN. (Debian/Ubuntu apt shown; Fedora dnf noted.)
sudo apt install -y guacd # Ubuntu/Debian
# …or run it in Docker on any distro:
docker run -d --name guacd -p 4822:4822 guacamole/guacdsudo apt install -y freerdp2-x11 # provides xfreerdp; Fedora: sudo dnf install freerdpYou only need one RDP path — guacd or FreeRDP.
sudo apt install -y openvpn # Fedora: sudo dnf install openvpn
sudo apt install -y wireguard-tools # provides wg-quick; Fedora: sudo dnf install wireguard-toolsRequired for in-app VPN Connect: the app runs these as sudo -n …, so add a passwordless-sudo rule:
sudo visudo -f /etc/sudoers.d/remote-commander
# add (adjust the username and paths from `which openvpn wg-quick pkill`):
youruser ALL=(root) NOPASSWD: /usr/sbin/openvpn, /usr/bin/wg-quick, /usr/bin/pkillwhich openvpn ; which wg-quick ; which xfreerdp ; which guacd || docker psNo in-app auto-update yet — update manually by re-downloading the newer build (the same step 1 above):
- AppImage: delete the old
.AppImage, drop in the new one, andchmod +x ./*.AppImage(it's a single self-contained file). .deb: install the newer package over the old one —sudo apt install ./remotecommander_*_amd64.debupgrades it in place. No need to uninstall first.
Your profiles, credentials, and workspaces in ~/.config/remotecommander/ are preserved across updates.
- AppImage: just delete the
.AppImagefile. .deb:sudo apt remove remotecommander(confirm the exact name withdpkg -l | grep -i remote).
Saved profiles live in ~/.config/remotecommander/ — delete that folder to remove them too.