Scanners: Difference between revisions
imported>Ciil No edit summary |
imported>HLandau No edit summary |
||
| Line 1: | Line 1: | ||
==Installing scanner support== | |||
Scanner support is provided by the SANE library. To enable scanner support, amend <tt>/etc/nixos/configuration.nix</tt>: | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
{ | { | ||
... | |||
hardware.sane.enable = true; | hardware.sane.enable = true; | ||
}</syntaxhighlight> | ... | ||
} | |||
</syntaxhighlight> | |||
{{evaluate}} | |||
== | ==Testing scanner support== | ||
To | To determine if your scanner is supported by SANE: | ||
<syntaxhighlight lang="console"> | |||
$ scanimage -L | |||
</syntaxhighlight> | |||
= | If you can only see scanners when running as root, try adding the user to the <tt>scanner</tt> or <tt>lp</tt> groups: | ||
<syntaxhighlight lang="console"> | |||
$ sudo usermod -a -G scanner,lp username | |||
</syntaxhighlight> | |||
==Supported backends== | |||
See the [http://www.sane-project.org/sane-supported-devices.html Supported Devices] page to see if your scanner is supported. Some backends are proprietary and are not installed by default; see below. | |||
Note | Note: The detection of installed backends by SANE depends on the <tt>LD_LIBRARY_PATH</tt> environment variable, which is set at login. You will need to logout and back in again for backend changes to take effect after <tt>nixos-rebuild switch</tt>. | ||
=== HP | ===HP=== | ||
<syntaxhighlight lang="nix">hardware.sane.extraBackends = [ pkgs.hplipWithPlugin ];</syntaxhighlight> | <syntaxhighlight lang="nix">hardware.sane.extraBackends = [ pkgs.hplipWithPlugin ];</syntaxhighlight> | ||
=== Epson === | ===Epson=== | ||
If your scanner is listed as supported by the <tt>epkowa</tt> backend: | |||
If your scanner is listed as supported by the epkowa backend : | |||
<syntaxhighlight lang="nix">hardware.sane.extraBackends = [ pkgs.epkowa ];</syntaxhighlight> | <syntaxhighlight lang="nix">hardware.sane.extraBackends = [ pkgs.epkowa ];</syntaxhighlight> | ||
=== SnapScan firmware === | ===SnapScan firmware=== | ||
Many scanners require firmware blobs which can be downloaded from the website of the scanner or extracted from the drivers they provide. Once you have the appropriate firmware you need to tell SANE where to find it in your configuration.nix: | Many scanners require firmware blobs which can be downloaded from the website of the scanner or extracted from the drivers they provide. Once you have the appropriate firmware you need to tell SANE where to find it in your configuration.nix: | ||
| Line 39: | Line 51: | ||
}</syntaxhighlight> | }</syntaxhighlight> | ||
=== Brother === | ===Brother=== | ||
Brother currently provides four | Brother currently provides four different scanner backends for various generations of its scanners. The newest (brscan4) is supported as a loadable submodule in NixOS. It can be activated by importing the appropriate file into <tt>/etc/nixos/configuration.nix</tt>: | ||
<syntaxhighlight lang="nix">{ | <syntaxhighlight lang="nix">{ | ||
... | |||
imports = [ | imports = [ | ||
<nixpkgs/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix> | <nixpkgs/nixos/modules/services/hardware/sane_extra_backends/brscan4.nix> | ||
./hardware-configuration.nix | ./hardware-configuration.nix | ||
]; | ]; | ||
... | |||
}</syntaxhighlight> | }</syntaxhighlight> | ||
| Line 52: | Line 66: | ||
<syntaxhighlight lang="nix">{ | <syntaxhighlight lang="nix">{ | ||
... | |||
hardware = { | hardware = { | ||
sane = { | sane = { | ||
| Line 63: | Line 78: | ||
}; | }; | ||
}; | }; | ||
... | |||
}</syntaxhighlight> | }</syntaxhighlight> | ||
In some cases, configuration changes may not take effect until after a reboot. | |||
==GIMP support== | |||
To enable support for scanning in GIMP: | |||
<ol> | |||
<li>You need to install a special version of xsane, which you can enable by amending <tt>/etc/nixos/configuration.nix</tt> as follows: | |||
<syntaxhighlight lang="nix">{ | <syntaxhighlight lang="nix">{ | ||
... | |||
nixpkgs.config.packageOverrides = pkgs: { | nixpkgs.config.packageOverrides = pkgs: { | ||
xsaneGimp = pkgs.xsane.override { gimpSupport = true; }; | xsaneGimp = pkgs.xsane.override { gimpSupport = true; }; | ||
}; | }; | ||
}</syntaxhighlight> | ... | ||
}</syntaxhighlight></li> | |||
<li>Rebuild: <syntaxhighlight lang="console">$ sudo nixos-rebuild switch</syntaxhighlight></li> | |||
<li>Finally, you will need to manually create a symlink: | |||
<syntaxhighlight lang="console">$ ln -s /run/current-system/sw/bin/xsane ~/.gimp-2.8/plug-ins/xsane</syntaxhighlight> | |||
</li></ol> | |||
==Network scanning== | |||
Currently (2017-08-16) the SANE backend does not support overriding according to {{issue|17411|nixpkgs issue #17411}}. The workaround for this is to download [https://raw.githubusercontent.com/michalrus/dotfiles/d943be3089aa436e07cea5f22d829402936a9229/.nixos-config.symlink/modules/sane-extra-config.nix michaelrus's sane-extra-config.nix], copy it to <code>/etc/nixos/sane-extra-config.nix</code> and import it in <code>/etc/nixos/configuration.nix</code> as follows: | |||
<syntaxhighlight lang="nix">{ | |||
... | |||
imports = [ | |||
... | |||
./sane-extra-config.nix | |||
<syntaxhighlight lang="nix">{ ... | ... | ||
]; | |||
... | ... | ||
hardware.sane.extraConfig."magicolor" = '' | hardware.sane.extraConfig."magicolor" = '' | ||
net 10.0.0.30 0x2098 | net 10.0.0.30 0x2098 | ||
''; # | ''; # Magicolor 1690mf | ||
... | |||
}</syntaxhighlight> | }</syntaxhighlight> | ||
== | ==See also== | ||
===Scanner firmware files=== | |||
* [https://sites.google.com/site/rameyarnaud/media/books/agfa-scanners-with-linux Agfa Snapscan e40] | * [https://sites.google.com/site/rameyarnaud/media/books/agfa-scanners-with-linux Agfa Snapscan e40] | ||
* [https://download.tuxfamily.org/xcfaudio/ Misc Agfa Snapscan] | [https://ipfs.io/ipfs/QmZJ2SfpfYUAS23TujhcdLpTox1SW3Dw3MoCej9GAfs4ya IPFS mirror] | * [https://download.tuxfamily.org/xcfaudio/ Misc Agfa Snapscan] | [https://ipfs.io/ipfs/QmZJ2SfpfYUAS23TujhcdLpTox1SW3Dw3MoCej9GAfs4ya IPFS mirror] | ||
[[Category:Configuration]][[Category:Hardware]] | |||