Installation
Prerequisites
For CAN and VCAN support, RemotiveBus requires SocketCAN to be installed on the host. SocketCAN provides CAN drivers as well as tooling to work with CAN networks.
Installation
- Debian/Ubuntu (apt)
- Red Hat/CentOS/Fedora (yum/dnf)
- Manual installation
curl -fsSL \
https://packages.remotivelabs.com/apt-repo-signing-key.gpg \
| sudo gpg --dearmor -o /usr/share/keyrings/remotivelabs-apt.gpg
echo "deb [signed-by=/usr/share/keyrings/remotivelabs-apt.gpg] \
https://packages.remotivelabs.com remotivelabs-apt main" \
| sudo tee -a /etc/apt/sources.list.d/remotivelabs.list
sudo apt update
sudo apt install remotivebusd
sudo tee /etc/yum.repos.d/remotivelabs.repo > /dev/null <<EOF
[remotivelabs]
name=Remotivelabs
baseurl=https://packages.remotivelabs.com/yum/remotivelabs-yum
enabled=1
EOF
sudo dnf install remotivebusd
To install RemotiveBus manually, download the desired version from:
https://releases.remotivelabs.com/#remotivebus/
This contains all variants of the package for both x86 and ARM architectures.
Once downloaded, it can be unpacked and installed by:
mkdir remotivebus
tar xvf remotivebus-VERSION.tar.gz -C remotivebus
cd remotivebus
make
cd ..
rm -rf remotivebus