Installing Viam Server on Linux Systems
The viam-server is distributed as an AppImage. The AppImage is a single, self-contained binary that should run on any Linux system with the correct CPU architecture, with no need to install any dependencies (excepting FUSE as detailed in the troubleshooting section at the end). MacOS users will need to follow the installing viam-server on macOS guide. Windows and 32-bit systems are not supported.
Installation Instructions
In short, you’ll download the file, make it executable, and run its self-install option to set it up as a system service. If you don’t want to run it as a service, just run it. It’s simply an executable binary.
URLs
Stable:
Latest:
Detailed Steps
Determine the CPU architecture (x86_64 or aarch64) of the target device by running uname -m on the command line. (Raspberry Pi and Jetson boards are aarch64 and most desktops and laptops are x86_64.)
Choose which URL to download from the list above. Run the following command (with the correct URL) to both download it and rename it to “viam-server” for ease of use:
curl -o viam-server http://packages.viam.com/apps/viam-server/viam-server-latest-aarch64.AppImage
Make the file executable by running:
chmod 755 viam-server
To run viam-server, you have two options:
Running Directly from the Command Line
To run viam-server directly from the command line, you can use the following command, replacing “myconfig” with the name of your configuration file. sudo is necessary on a Pi to access GPIO pins, and it may be necessary in other cases depending on hardware permissions.
sudo ./viam-server -config myconfig.json
To connect this instance of viam-server with a Viam app robot, the contents of

Installing as a System Service
This is more common when setting up viam-server on a Raspberry Pi or something that will essentially only be turned on when you want to use the robot, so you want viam-server to start every time on boot.
The following command will create a systemd service file at /usr/local/bin/viam-server (regardless of the previous filename.) Run the following command:
sudo ./viam-server --aix-install
To connect this viam-server with a Viam app robot, navigate to your robot page on https://app.viam.com. At the top right of the SETUP tab, click COPY VIAM-SERVER CONFIG and paste it into
Start the service by running:
sudo systemctl start viam-server
The service is an AppImage and will check for updates and self-update automatically each time the service is started. Self-updates can take a couple of minutes, so the service may sometimes take a moment to start while this runs. You can disable this by commenting out the ExecPre line (the one with –aix-update on it) in the service file.
Controlling the System Service
After setting up the system service above, the AppImage binary will be located at
To control the systemd service (viam-server) use the following commands:
- Start:
sudo systemctl start viam-server - Stop:
sudo systemctl stop viam-server - Enable (start automatically after boot):
sudo systemctl enable viam-server - Disable:
sudo systemctl disable viam-server- Note this disables the at-boot startup, but does not stop any currently-running service.
- View logs:
sudo journalctl --unit=viam-server- If the robot is able to connect with the Viam app, logs can be viewed in the Logs tab at https://app.viam.com.
If you want to run the binary directly, be sure to stop the service first, then run sudo /usr/local/bin/viam-server path/to/my/config.json. Note that on a Raspberry Pi, viam-server must always run as root in order to access the DMA subsystem for GPIO.
Updates
Channels
There are two main channels for updates. If you download a file for one of them, its self-update function will only look for updates from that particular channel. That is to say, “latest” will get a lot of updates, and “stable” will get them less frequently.
Latest
This is updated on every merge to the main branch of the Viam Server.
Stable
Updates will be far less frequent.
Version-specific
Lastly, there are also version-specific channels. If you download a file that has an explicit version in the name (e.g. viam-server-v0.1.2-aarch64.AppImage) then it will only check for updates against that exact version, effectively never updating. As such, installs of a specific version should generally be avoided, and this “channel” only exists for troubleshooting/archival purposes.
Update Methods
Manual / Service-based
These app images have a built in self-update feature. To update manually, just run the file with “–aix-update” as the only argument. Ex: sudo viam-server --aix-update
When installed as a system service, this will be run automatically each time the service is started.
Disable Service-based Updates
If you want to DISABLE automatic updates from the service file, just comment out the following line in /etc/systemd/system/viam-server.service with a pound sign (#) so that it looks like this:
# ExecStartPre=-/usr/local/bin/viam-server --aix-update
Fallback (Redownload)
Lastly, if all else fails, or you ever encounter any issues, you can simply just replace the file (usually /usr/local/bin/viam-server) with a newly downloaded copy. No need to reinstall the system service typically (unless the new version includes an update to the service file), but no harm in doing so either.
Troubleshooting
SquashFS Errors
Looks like this…
Feb 10 13:11:26 hydro3-pi viam-server[933]: Something went wrong trying to read the squashfs image.
Feb 10 13:11:26 hydro3-pi viam-server[933]: open dir error: No such file or directory
The update process may have been interrupted and left a corrupt file. Simply redownload the new file as instructed above.
FUSE Errors
FUSE (Filesystem-in-Userspace), is included in almost all modern Linux distributions by default. (The one real exception is that it doesn’t work (by default) due to security restrictions within Docker containers.) For more information on troubleshooting FUSE-related issues (including Docker workarounds) see here: I get some errors related to something called “FUSE” — AppImage documentation