• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
seegatesite header

Seegatesite.com

Seegatesite.com - Programming Tutorial , Sharing , How and Learn Together

  • TOOLS
    • Bootstrap Navbar Online Generator
    • Customize Sidebar Menu Bootstrap 3
    • Bootstrap Demo
  • ADVERTISE
  • CATEGORIES
    • Android
    • Blogging Tips
    • Database
    • CSS
    • Info Gadget
    • Javascript
    • Linux
    • PHP
    • Various
    • WordPress
  • Q&A
  • PHP
  • JAVASCRIPT
  • JQUERY
  • ANGULAR
  • WORDPRESS
  • SEO
  • REACT
🏠 » Linux » [SOLVED] EPSON L3110 Imagescan Ubuntu Can’t Save The Image Or Lost After Being Saved

[SOLVED] EPSON L3110 Imagescan Ubuntu Can’t Save The Image Or Lost After Being Saved

By Sigit Prasetya Nugroho ∙ May 4, 2019 ∙ Linux ∙ 7 Comments

Share : TwitterFacebookTelegramWhatsapp

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

  • 1 Installing Epson L3110 Ubuntu 16.04 (32-bit) / (64-bit) Printers and Scanners
    • 1.1 Installing the Epson L3110 Printer Driver
    • 1.2 Installing Epson L3110 Scanner
  • 2 Repairing the Ubuntu Imagescan Application

Installing Epson L3110 Ubuntu 16.04 (32-bit) / (64-bit) Printers and Scanners

Installing the Epson L3110 Printer Driver

Epson L3110 Ubuntu Driver Min

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

Epson L3110 Printer And Scanner Driver For Linux Ubuntu Min

Download the driver according to the Linux version you have

Epson L3110 Printer Driver Ubuntu Deb File Min

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.

Download Epson L3110 Scanner Driver Ubuntu Min

Select Package Download Page. Then choose the version you have.

How To Install Epson Scanner For Ubuntu Min

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

Imagescan No Device Found How To Repair It Min

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.

Another Linux Related Post :

  • How To Record Screen With GIF Format On Ubuntu
  • How to Install Printer Canon G2010 In Ubuntu 16.04 And 18.04
  • 3 Best Scripting Editor For Linux Programmer
  • The Advantages And Weaknesses Of Using Linux For Office Agencies
  • Which linux distro is most suitable for offices? Check out my reviews
  • How To Install PPTP VPN Manager On Ubuntu 14.04 And 16.04 Via Terminal

Avatar for Sigit Prasetya Nugroho

About Sigit Prasetya Nugroho

This site is a personal Blog of Sigit Prasetya Nugroho, a Desktop developer and freelance web developer working in PHP, MySQL, WordPress.

Reader Interactions

Comments

  1. Avatar for LauraLaura says

    December 27, 2019 at 3:56 pm

    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!

    Reply
  2. Avatar for NicolasNicolas says

    February 5, 2020 at 3:05 pm

    TANQUEEEEEEEEEEEEEEEEEEEEEEEEEEEEe

    Reply
  3. Avatar for CarlosCarlos says

    March 17, 2020 at 4:24 pm

    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.

    Reply
  4. Avatar for JesuJesu says

    April 25, 2020 at 7:40 pm

    Sigit,

    thank you so much. It solved the issue on my father’s Ubuntu 18.04 and EPSON ET-2600.

    Best regards,
    Jesu.

    Reply
  5. Avatar for ToniToni says

    June 17, 2020 at 10:29 am

    Thanks, this helped a lot!

    Instead of the additional .sh-Skript you also can place the command directly in the .desktop file using bash:

    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)

    Reply
    • Avatar for ToniToni says

      June 17, 2020 at 10:34 am

      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 using bash:


      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)

      Reply
      • Avatar for Sigit Prasetya NugrohoSigit Prasetya Nugroho says

        June 17, 2020 at 11:02 am

        you’re welcome

        Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload CAPTCHA.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

Welcome to my Home,

Avatar for Sigit Prasetya NugrohoThis site is a personal Blog of Sigit Prasetya Nugroho, a Desktop developer and freelance web developer working in PHP, MySQL, WordPress.



Popular Articles

Checked checkbox AdminLTE Bootstrap in Jquery

November 4, 2014 By Sigit Prasetya Nugroho 7 Comments

Simple create date format validation with jqueryUI

December 21, 2014 By Sigit Prasetya Nugroho Leave a Comment

Create Simple Progress Bar for Fake Online Generator with Jquery

January 10, 2015 By Sigit Prasetya Nugroho Leave a Comment

22+ Coolest Free Jquery Plugin For Premium Theme

October 3, 2015 By Sigit Prasetya Nugroho Leave a Comment

Easy Build Your Anti Copy Paste Plugin

October 6, 2015 By Sigit Prasetya Nugroho Leave a Comment

Popular Tags

adminlte (15) adsense (13) adsense tips (4) affiliate amazon (13) amazon (12) Android (8) angular (16) angular 4 (12) angular 5 (4) asin grabber (3) Bootstrap (27) codeigniter (5) create wordpress theme (5) crud (8) css (6) free wordpress theme (7) google adsense (4) imacros (4) increase traffic (6) jquery (34) laravel (10) laravel 5 (5) learn android (5) modal dialog (5) mysql (6) nodeJs (4) optimize seo (4) pdo (6) php (30) plugin (53) pos (7) Publisher Tips (5) react (3) Reactjs (7) SEO (37) theme (17) tutorial angular (5) tutorial angular 4 (6) tutorial javascript (10) tutorial javascript beginners (4) twitter (3) widget (3) wordpress (18) wordpress plugin (13) XMLRPC (5)




  • About
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions

©2021 Seegatesite.com