Linux Setup
Install Playback and configure your Operator device on Linux distributions.
2 min read
Playback runs on most modern Linux distributions. You’ll need to set up permissions to allow non-root access to your Operator device.
System requirements
See the Downloads page for current system requirements.
Installation
- Download the Linux AppImage from our downloads page
- Make the AppImage executable:
chmod +x Playback.AppImage- Run the AppImage:
./Playback.AppImageSetting up device permissions
To use your Operator without root access, you’ll need to add udev rules and add your user to the appropriate groups.
Debian, Ubuntu, and derivatives
Add your user to the required groups:
sudo usermod -a -G dialout $USER
sudo usermod -a -G plugdev $USERCreate the udev rules file:
sudo nano /etc/udev/rules.d/99-epilogue.rulesAdd the following content:
# GB Operator
SUBSYSTEM=="usb", ATTR{idVendor}=="16d0", ATTR{idProduct}=="123D", MODE="0666"
# SN Operator
SUBSYSTEM=="usb", ATTR{idVendor}=="16d0", ATTR{idProduct}=="123E", MODE="0666"Reload the udev rules and reboot:
sudo udevadm control --reload-rules && sudo udevadm trigger
sudo rebootArch Linux and Manjaro
Install glibc and add your user to the uucp group:
sudo pacman -S glibc
sudo usermod -a -G uucp $USERThen restart your computer.
NixOS
In your /etc/nixos/configuration.nix:
- Add
plugdevanddialoutto yourusers.users.$USER.extraGroups - Add the udev rules to
services.udev.extraRules - Rebuild with
nixos-rebuild switch
Troubleshooting
Operator not detected?
- Make sure you’ve completed the udev rules setup above
- Verify you’ve logged out and back in (or rebooted) after adding groups
- Check that the device appears with
lsusb
Permission denied errors?
- Don’t run Playback with
sudo— this can cause audio issues with PulseAudio - Follow the udev rules setup to grant permissions to your regular user
AppImage won’t run?
- Make sure you’ve made it executable with
chmod +x - Some distributions may need FUSE installed:
sudo apt install fuse libfuse2
Still need help? Contact our support team

