Have you ever experienced a failure to scan images on Epson using Imagescan software? The picture lost after being saved. I experienced it a while ago that my Imagescan could not run properly on Ubuntu 16.04. After surfing the internet, I finally found a solution to fix Imagescan that could not save the scan results. Check out the following short tutorial
Installing a printer scanner on Ubuntu is different from Windows, especially Epson printers! If you have used sane to install the scanner is the right solution. But often using Sane is also unsuccessful for scanning images. Several steps must be taken so that everything goes well.
Table of Contents
Installing Epson L3110 Ubuntu 16.04 (32-bit) / (64-bit) Printers and Scanners
Installing the Epson L3110 Printer Driver
My Epson l3110 printer connected to Ubuntu version 16.04 (64-bit). For the Epson L3110 driver installation I got it on the site http://download.ebz.epson.net/dsc/search/01/search/searchModule
Download the driver according to the Linux version you have
Caution: If you are using the 32-bit version of Ubuntu, make sure you install “lsb” first using the following command
1 | sudo apt-get install lsb |
Install the printer as usual. The next step is to install a scanner.
Installing Epson L3110 Scanner
Download the scanner driver as shown above.
Select Package Download Page. Then choose the version you have.
Until this stage, you have successfully installed the Epson L3110 printer and scanner on Ubuntu. Next is to improve the Epson Imagescan application that cannot save the scanned document/image lost after being rescued.
Repairing the Ubuntu Imagescan Application
I found this solution on the Linux forum; the problem comes from Differences in locale settings. You must run an Imagescan application with English settings. Run the command below in the console/terminal so that Imagescan runs normally
1 | LC_ALL=en_US.UTF8 imagescan |
If the Epson Imagescan application fails to save the scanned document, run it with English settings.
Create a shortcut to run the image scan application with English settings.
Create a shell script with the name ImageScanWork.sh in the /usr/local/bin folder with the following command
1 | sudo vim /usr/local/bin/ImageScanWork.sh |
and fill in the following code
1 2 | #!/bin/sh LC_ALL=en_US.utf8 /usr/bin/imagescan scan |
Create an executable script with the following command
1 | sudo chmod +x /usr/local/bin/ImageScanWork.sh |
Create a shortcut on the desktop
If you use Lubuntu, please use the following command on the terminal to create a shortcutCreate an executable script with the following command.
1 | lxshortcut -o ~/Desktop/ |
then fill in the “command” with the code
1 | /usr/local/bin/ImageScanWork.sh |
For Ubuntu use the following command
1 | gedit ~/Desktop/Scanner.desktop |
Then fill in the following script
1 2 3 4 5 6 7 8 9 10 | [Desktop Entry] Version=1.0 Type=Application Name=Image Scan Comment= Exec=/usr/local/bin/ImageScanWork.sh Icon=scanner Path= Terminal=false StartupNotify=false |
Reference: https://forums.linuxmint.com/viewtopic.php?t=217894
Thus, my brief tutorial on how to solve the Epson Imagescan fails to save the image after a scanned document.
Thank you! it works perfectly. I had found the solution about changing the language but it didn’t work in two different lines. (changing language and running program)
Great tutorial!
TANQUEEEEEEEEEEEEEEEEEEEEEEEEEEEEe
Excelent, it works perfect. I had the problem that imagescan (in ubuntu) doesn’t saves the file, in the scan process the file appears temporarily in the file system, but when finished the file is missing so scan was not possible. After reading this post related to the local settings, i solved the problem, and the scan works perfect.
Sigit,
thank you so much. It solved the issue on my father’s Ubuntu 18.04 and EPSON ET-2600.
Best regards,
Jesu.
Thanks, this helped a lot!
Instead of the additional .sh-Skript you also can place the command directly in the
.desktop
file usingbash
:Exec=bash -c “LC_ALL=en_US.utf8 imagescan scan”
For Ubuntu 18.04 i had to write “LANG” instead of “LC_ALL”:
Exec=bash -c “LANG=en_US.utf8 imagescan scan”
(I’m using ImageScan 3.62.0 from Epson)
Aaah wordpress replaced the double quotation marks to curly ones! Here’s another try:
——————–
Thanks, this helped a lot!
Instead of the additional .sh-Skript you also can place the command directly in the
.desktop
file usingbash
:Exec=bash -c "LC_ALL=en_US.utf8 imagescan scan"
For Ubuntu 18.04 i had to write “LANG” instead of “LC_ALL”:
Exec=bash -c "LANG=en_US.utf8 imagescan scan"
(I’m using ImageScan 3.62.0 from Epson)
you’re welcome
Thanks a lot, it worked fine in Mint 20.1 Ulyssa (Ubuntu 20.04.1).
Thank you, I had this problem in imagescan.
And I had another similar problem in simple-scan, I couldn’t set brightness and contrast.
Both problems solved setting the command in the menu:
bash -c “LC_ALL=en_US.utf8 simple-scan”
Thanks again
Thank you very much. This is indeed a very helpful information.
All the best
Jens