--- title: Настройка сетевого сканера через Sane в Fedora 35 --- ## Устанавливаем Sane Ставим пакеты: ```bash sudo dnf install sane-backends sane-backends-drivers-scanners ``` ## Настраиваем сетевой сканер в /etc/sane.d/net.conf Необходимо добавить адрес хоста. В данном примере это будет `192.168.1.6`. Также можно настроить `connect_timeout`. ```toml # This is the net backend config file. ## net backend options # Timeout for the initial connection to saned. This will prevent the backend # from blocking for several minutes trying to connect to an unresponsive # saned host (network outage, host down, ...). Value in seconds. connect_timeout = 60 ## saned hosts # Each line names a host to attach to. # If you list "localhost" then your backends can be accessed either # directly or through the net backend. Going through the net backend # may be necessary to access devices that need special privileges. # localhost 192.168.1.6 ``` ## Отключаем ненужные бекенды в /etc/sane.d/dll.conf Файл `dll.conf` содержит бекенды, которые будут загружаться. Можно отключить ненужные, если они не будут использоваться. В данном примере оставим только сетевой сканер. Для простоты редактирования переименуем исходный файл в `dll.conf.orig` и создадим новый `dll.conf` c единственной строкой: ```toml net ```