Linux Lite Forums
Unable to use Brother scanner - Printable Version

+- Linux Lite Forums (https://www.linuxliteos.com/forums)
+-- Forum: Hardware - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=6)
+--- Forum: Printing and Scanning (https://www.linuxliteos.com/forums/forumdisplay.php?fid=25)
+--- Thread: Unable to use Brother scanner (/showthread.php?tid=7373)



Unable to use Brother scanner - jack action - 09-18-2020

I'm using an all-in-one printer scanner (MFC-9120CN) where the printer works but the scanner is not found by any scanning program. Even after installing the proper drivers from the Brother website. I had the problem with LL4 and LL5.

The problem is that the needed files are stored in /usr/lib64/sane and should be (also?) found in /usr/lib/sane. The solution is to create the directory and put a link for each file in /usr/lib64/sane in the new directory, like so (tested in LL5):

Code:
sudo mkdir /usr/lib/sane
sudo ln -s /usr/lib64/sane/libsane-brother3.so /usr/lib/sane/libsane-brother3.so
sudo ln -s /usr/lib64/sane/libsane-brother3.so.1 /usr/lib/sane/libsane-brother3.so.1
sudo ln -s /usr/lib64/sane/libsane-brother3.so.1.0.7 /usr/lib/sane/libsane-brother3.so.1.0.7

Here's a reference for this solution. Some extra steps or other methods are explained, but they're most likely useless or worst (like copying the files to the new directory).