From e70996d85bc1560c87f00dc22bef1f3a74eca7be Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Mon, 16 May 2022 16:47:08 +0300 Subject: [PATCH] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D1=8F?= =?UTF-8?q?=D0=B5=D1=82=20=D1=81=D1=82=D0=B0=D1=82=D1=8C=D1=8E=20=D0=BE=20?= =?UTF-8?q?=D1=81=D0=B5=D1=82=D0=B5=D0=B2=D0=BE=D0=BC=20=D1=81=D0=BA=D0=B0?= =?UTF-8?q?=D0=BD=D0=B5=D1=80=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/net-scanner-fedora-35/index.md | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 notes/net-scanner-fedora-35/index.md diff --git a/notes/net-scanner-fedora-35/index.md b/notes/net-scanner-fedora-35/index.md new file mode 100644 index 0000000..8b9f441 --- /dev/null +++ b/notes/net-scanner-fedora-35/index.md @@ -0,0 +1,45 @@ +--- +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 +``` +