This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
content/notes/net-scanner-fedora-35/index.md

46 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
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
```