aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Dessaux2022-10-20 22:39:20 +0200
committerJulien Dessaux2022-10-20 22:39:20 +0200
commitdb2fd2176ec606018a30b72a431c1ac6600ee48f (patch)
treef283cd002d6fa677564f38343c3d6320dcba2e31
parentFixed css scrollbar gutters (diff)
downloadwww-db2fd2176ec606018a30b72a431c1ac6600ee48f.tar.gz
www-db2fd2176ec606018a30b72a431c1ac6600ee48f.tar.bz2
www-db2fd2176ec606018a30b72a431c1ac6600ee48f.zip
added scanner article
-rw-r--r--content/blog/gentoo/scanner.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/content/blog/gentoo/scanner.md b/content/blog/gentoo/scanner.md
new file mode 100644
index 0000000..e46cbab
--- /dev/null
+++ b/content/blog/gentoo/scanner.md
@@ -0,0 +1,39 @@
+---
+title: How to setup a Fujitsu Scansnap S1300i on Gentoo Linux
+description: My installation notes
+date: 2022-10-20
+tags:
+- Gentoo
+- linux
+---
+
+## Introduction
+
+I just got myself a document scanner in order to digitalise some documents before I lose them for good. The linux setup required some google-fu so here is a report of what I had to do to get it working.
+
+## Installation notes
+
+I did not need to change anything to my kernel configuration, that was nice!
+
+I installed the following new packages (the `SANE_BACKEND` variable should be added to your `make.conf`):
+```sh
+SANE_BACKENDS="epjitsu" emerge media-gfx/sane-backends media-gfx/simple-scan -q
+```
+
+Your user should be in the `scanner` and `usb` groups:
+```sh
+gpasswd -a <username> scanner
+gpasswd -a <username> usb
+```
+
+A `fujitsu` `SANE_BACKEND` exists, but it is a trap, you really need the `epjitsu` one. Simple-scan is a simple gnome application which is very simple to use. I first tried xsane but it was not user friendly at all!
+
+## The tricky part
+
+Nothing worked at this stage, the scanner was not detected by neither `simple-scan` nor `scanimage -L`, but `sane-find-scanner` could see it just fine. That is because we are missing a firmware which can be found on the [web archive](https://web.archive.org/web/20190217094259if_/https://www.josharcher.uk/static/files/2016/10/1300i_0D12.nal). Download this file then put it as root in `/usr/share/sane/epjitsu/`:
+```sh
+mkdir -p /usr/share/sane/epjitsu/
+mv /home/julien/Downloads/1300i_0D12.nal /usr/share/sane/epjitsu/1300i_0D12.nal
+```
+
+If you already plugged your scanner before copying this firmware file, unplug it then plug it again and everything should now work. Just launch `simple-scan` and enjoy your scanner!