LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 09-09-2019, 08:57 PM   #1
byebyemrgates
Member
 
Registered: Nov 2017
Location: Blue Mountains, Australia!
Distribution: Mint 20, Ubuntu 20
Posts: 164

Rep: Reputation: Disabled
Question Need help troubleshooting printing


Using Linux Mint 19. Trying to install Epson Aculaser C1100 printer on USB - tried different drivers but can not print a test page.
Found this page:
http://download.ebz.epson.net/dsc/du...9a0998b32b66dd
But not sure what to do...
Downloaded the tar.gz file, then tried adding PPD from a file in "printers" gui. But still no luck
Any suggestions? Cheers!

Last edited by byebyemrgates; 09-10-2019 at 03:43 AM.
 
Old 09-09-2019, 09:29 PM   #2
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,341
Blog Entries: 28

Rep: Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145
I looked at the Epson webpage for this printer. They do not seem to offer a Linux driver.

It might help if you were to list the drivers you have tried.
 
Old 09-09-2019, 09:50 PM   #3
byebyemrgates
Member
 
Registered: Nov 2017
Location: Blue Mountains, Australia!
Distribution: Mint 20, Ubuntu 20
Posts: 164

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by frankbell View Post
I looked at the Epson webpage for this printer. They do not seem to offer a Linux driver.

It might help if you were to list the drivers you have tried.
Please have a look at that page I listed above.
http://download.ebz.epson.net/dsc/du...9a0998b32b66dd
also see http://download.ebz.epson.net/man/linux/laser.html
It seems to provide a download. and that gave me a bunch of files, including a PPD file. I added that; but when printing a test page it gave me an error "filter failed", and when I click "diagnose it says:

"printer Epson ... requires pstoalc1100.sh program but it is not currently installed.
It is one of the files that came in that download

here are the files I downloaded:
Code:
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ ls *
aclocal.m4             COPYING                    mkinstalldirs
alc1100                EAPL.en.txt                NEWS
alc1100_lprwrapper.sh  EAPL.ja.txt                option.conf
AUTHORS                Epson-ALC1100-filter.spec  pstoalc1100.sh
ChangeLog              INSTALL                    README
config.h.in            install-sh                 README-alc1100
config.log             Makefile.am                README-alc1100-CUPS
configure              Makefile.in
configure.ac           missing

ppd:
Epson-AL-C1100-fm3.ppd
So, latest:
So after some research:
1. tried to run "configure", got message "C compiler cannot create executables"
found this solution: sudo apt install libc6-dev
after that got message: please install CUPS or fix your $PATH
found this solution: sudo apt-get install libcups2-dev libcupsimage2-dev
2. after that tried to run configure and make install (found that direction here :https://www.gedda.info/?p=132
here is the result; but I still get message:"printer Epson ... requires pstoalc1100.sh program but it is not currently installed.
Code:
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ sudo ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking for C compiler default output... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables... 
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ANSI C... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking for a BSD-compatible install... /usr/bin/install -c
checking for gawk... (cached) gawk
checking for rpmbuild... no
./configure: line 2792: rpm: command not found
checking for cups-config... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ sudo make install
make[1]: Entering directory '/home/bekor/Downloads/Epson-ALC1100-filter-1.2'
/bin/bash ./mkinstalldirs /usr/local/bin
 /usr/bin/install -c pstoalc1100.sh /usr/local/bin/pstoalc1100.sh
 /usr/bin/install -c alc1100_lprwrapper.sh /usr/local/bin/alc1100_lprwrapper.sh
make  install-exec-hook
make[2]: Entering directory '/home/bekor/Downloads/Epson-ALC1100-filter-1.2'
/bin/bash ./mkinstalldirs /usr/local/bin
/usr/bin/install -c ./alc1100 /usr/local/bin
/bin/bash ./mkinstalldirs /usr/local/etc/epkowa/alc1100
mkdir -p -- /usr/local/etc/epkowa/alc1100
/usr/bin/install -c -m 644 ./option.conf /usr/local/etc/epkowa/alc1100
/bin/bash ./mkinstalldirs /usr/share/cups/model
/usr/bin/install -c -m 644 ./ppd/Epson-AL-C1100-fm3.ppd /usr/share/cups/model
make[2]: Leaving directory '/home/bekor/Downloads/Epson-ALC1100-filter-1.2'
make[1]: Nothing to be done for 'install-data-am'.
make[1]: Leaving directory '/home/bekor/Downloads/Epson-ALC1100-filter-1.2'
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ sudo /etc/init.d/cups restart
[ ok ] Restarting cups (via systemctl): cups.service.
finally, following some othher guide:
Code:
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ sudo ln -s /usr/local/bin/pstoalc1100.sh /usr/bin/pstoalc1100.sh
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ sudo ln -s /usr/local/bin/alc1100 /usr/bin/alc1100
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ sudo ln -s /usr/local/bin/alc1100_lprwrapper.sh /usr/bin/alc1100_lprwrapper.sh
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$ sudo /etc/init.d/cups restart
[ ok ] Restarting cups (via systemctl): cups.service.
bekor@Linux1:~/Downloads/Epson-ALC1100-filter-1.2$
Now , when I try printing test page nothing happens at all...

Last edited by byebyemrgates; 09-10-2019 at 12:56 AM.
 
Old 09-10-2019, 07:05 AM   #4
byebyemrgates
Member
 
Registered: Nov 2017
Location: Blue Mountains, Australia!
Distribution: Mint 20, Ubuntu 20
Posts: 164

Original Poster
Rep: Reputation: Disabled
Question

Latest:
ran this:



Code:
apt-get install ia32-libs
found here:http://dev-random.net/fixing-libld-l...-or-directory/
now can print test page! and even - image file like .png
BUT - not pdf or .odt files

HELP PLEASE

Last edited by byebyemrgates; 09-10-2019 at 09:31 AM.
 
Old 09-10-2019, 10:03 AM   #5
byebyemrgates
Member
 
Registered: Nov 2017
Location: Blue Mountains, Australia!
Distribution: Mint 20, Ubuntu 20
Posts: 164

Original Poster
Rep: Reputation: Disabled
Finally!
copied all the files I downloaded to /usr/bin/
and it worked!
what a trip...
posting this for others who may have the issue...
 
Old 09-10-2019, 06:55 PM   #6
frankbell
LQ Guru
 
Registered: Jan 2006
Location: Virginia, USA
Distribution: Slackware, Ubuntu MATE, Mageia, and whatever VMs I happen to be playing with
Posts: 19,341
Blog Entries: 28

Rep: Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145Reputation: 6145
Thanks for the update.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
How to install Epson AcuLaser C1100 on OpenSuse 11.4 yaarappa Linux - Hardware 5 08-10-2011 05:51 PM
Printing Problem in 11.2 - all was well in 11.0 [Epson AL C1100] dave_in_duckville Linux - Hardware 2 12-03-2009 01:46 AM
Problem printing in 11.2 via Samba to Epson AL C1100 dave_in_duckville Linux - Newbie 0 11-26-2009 09:52 AM
[SOLVED] How do I set up Epson AcuLaser C1100 on OpenSuse 11 yaarappa Linux - Hardware 2 09-17-2008 08:37 AM
Epson AcuLaser C1000 Printer Setup eirbyte Linux - Hardware 1 02-22-2005 03:34 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 04:11 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration