-
-
Notifications
You must be signed in to change notification settings - Fork 1
Arch Linux Scanner Configuration
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to scanner configuration on Arch Linux, including SANE setup, scanner drivers, and scanning applications.
Install packages:
# Install SANE
sudo pacman -S sane
# Install frontend
sudo pacman -S sane-airscanDetect scanner:
# List scanners
scanimage -L
# Test scan
scanimage > test.pnmInstall drivers:
# Install drivers
sudo pacman -S sane-airscan
# For specific scanners
# Check: https://wiki.archlinux.org/title/SANEEdit config:
# Edit SANE config
sudo vim /etc/sane.d/dll.confInstall Simple Scan:
# Install Simple Scan
sudo pacman -S simple-scan
# Launch
simple-scanInstall XSane:
# Install XSane
sudo pacman -S xsane
# Launch
xsaneInstall gscan2pdf:
# Install gscan2pdf
sudo pacman -S gscan2pdf
# Launch
gscan2pdfCheck connection:
# List USB devices
lsusb | grep -i scanner
# Check SANE
scanimage -L
# Check permissions
ls -l /dev/bus/usb/Fix permissions:
# Add user to scanner group
sudo usermod -aG scanner username
# Log out and back inThis guide covered SANE installation, scanner drivers, scanning applications, and troubleshooting.
- Arch Linux Printer Configuration - Printers
- Arch Linux Hardware Detection - Hardware
- ArchWiki SANE: https://wiki.archlinux.org/title/SANE
This guide is based on the ArchWiki. For the most up-to-date information, always refer to the official ArchWiki.