LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-22-2019, 09:12 AM   #1
Crb999
Member
 
Registered: Jan 2017
Location: West Coast Scotland
Distribution: Suse Linux 42.2 Now 15.1
Posts: 319

Rep: Reputation: Disabled
Libreoffice shows more printers that have been installed


Hi All,
=== openSUSE Leap
=== uname -r = 4.12.14-lp151.28.7-default
=== VERSION ="15.1"
=== ID="opensuse-leap"
=== Dell OptiPlex 780
=== X86-64
=== Intel Graphics Media Accelerator 950
=== Intel 4 Series Chipset Integrated Graphics Controller
=== Intel Gigabit Ethernet Controller
=== Intel(R) Core(TM)2 Quad CPU Q8400 @ 2.66GHz
=== 8Gb RAM
=== Intel SATA Controller [RAID mode]
=== 1 x 1Gb HD (Mirrored)
=== PIONEER DVD-RW DVR-219L
=== ipp://epson024f53.local:631/ipp/print EPSON WF-5110 Series
=== EPSON WF-5110 with driver EPSON WF-5110 Series, driverless, cups-filters 1.20.3

====================================================================

Since upgrading to LEAP 15.1, various problems exist.

LibreOffice, (LO), shows two printers whereas Yast, (with which I installed it), only shows one.

Only one of the 2 LO printers shown, prints, but there is no discrimination in the naming shown by LO and so I've learnt to pick the second one, which prints, but either does not receive the correct instructions from LO or is given incorrect instructions in that I always print from the front tray, but, if I do not load the rear feeder, all printing fails due to lack of paper.
I am specific about selecting the Front tray and usually only select the rear tray for thick paper.

When I print, LO tells me that I am printing 120 copies. I'm not, and when I'm desperate, and load the rear holder to get the job done, LO only prints the one copy despite telling me otherwise. That has changed, in earlier days it told me that 20 copies would be made, but weren't.

Often when trying to print from LO, the print dialogue fails to show any mounted printers!

Since 1995 I have been using the 'copy' function that Linux provides by highlighting the text, placing the cursor where I want it, and pressing the middle mouse button, hey presto.

It disappears, then it's there again and then it's gone! It's not funny.

This loss is not limited to LO, it's gone in other editors too.

Anyone else suffering this way?

All help gratefully received :-)

Regards

Chris
 
Old 11-23-2019, 03:10 AM   #2
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
You're best advised to separate issues that you're having into separate threads, but respect to your LO printer list...
Quote:
LibreOffice, (LO), shows two printers whereas Yast, (with which I installed it), only shows one.

Only one of the 2 LO printers shown, prints, but there is no discrimination in the naming shown by LO and so I've learnt to pick the second one, which prints,...
That is due to 'network printer autodiscovery' at work thanks to Avahi (AKA Bonjour). However, I don't know why apps don't just use the CUPS configured printers. I've seen a number of threads and bug reports that describe this issue (QT apps don't have this issue), and the workarounds described usually involve inhibiting avahi completely, or at the very least ensuring "enable-dbus=no" is set in /etc/avahi/avahi-daemon.conf

Here's one such old bug report
https://lists.debian.org/debian-user.../msg01030.html
and an example thread
https://forum.manjaro.org/t/unable-t...-printer/30263
 
Old 11-24-2019, 09:13 AM   #3
Crb999
Member
 
Registered: Jan 2017
Location: West Coast Scotland
Distribution: Suse Linux 42.2 Now 15.1
Posts: 319

Original Poster
Rep: Reputation: Disabled
Hi ferrari, thanks for your reply. It has not helped.

Firstly, it is not possible for me to tell which of the symptoms I've described is useful information to an expert while I am quite sure that the expert is more than capable of eliminating the chaff.

I've spent a few hours now trying to find out how to prevent avahi from ever starting, without success.

I have checked that "enable-dbus=no", but what I have is


Code:
#use-iff-running=no
#enable-dbus=yes
#disallow-other-stacks=no

which I have interpreted as enable-dbus=no!


Am I wrong? Should I change this explicitly to "enable-dbus=no"?


I would rather be inhibiting avahi completely, but, search though I might, I have not found a way to do this, (that I have understood.)


In Yast services, I set the starting of avahi to 'manual'. Rebooted but avahi still started.


So at the moment I have nothing to tell me that avahi is the source of my problems, but as I have nothing else, I have to stop it running completely so as to eliminate it, at the very least.


Now, please, how can I stop avahi from ever starting?


Regards


Chris
 
Old 11-24-2019, 11:43 AM   #4
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Quote:
I have checked that "enable-dbus=no", but what I have is

Code:
#use-iff-running=no
#enable-dbus=yes
#disallow-other-stacks=no
which I have interpreted as enable-dbus=no!

Am I wrong? Should I change this explicitly to "enable-dbus=no"?
The # character acts to comment out the line, so that the entries are just place-holders (and are there to show what the default settings are as well). So, yes you need to add (uncommented) like this
Code:
enable-debus=no
then restart avahi
Code:
sudo systemctl restart avahi-daemon
You may also need to restart the desktop as well.

If you really have no need for avahi (discovery of network services), then you can stop, disable, and mask it like this
Code:
sudo systemctl stop avahi-daemon
Code:
sudo systemctl disable avahi-daemon
Code:
sudo systemctl disable avahi-socket
Code:
systemctl mask avahi-daemon

Last edited by ferrari; 11-24-2019 at 11:44 AM.
 
Old 12-14-2019, 08:09 AM   #5
Crb999
Member
 
Registered: Jan 2017
Location: West Coast Scotland
Distribution: Suse Linux 42.2 Now 15.1
Posts: 319

Original Poster
Rep: Reputation: Disabled
No difference detected!

More symptoms encountered though.

I can't tell if they are connected in any way!

Anything highlighted under the cursor, in a terminal, could be pasted where ever I was, but no more. Nor can I use the time honoured controls carried through from Wordstar way back in the distant past, so, highlighting text and using the CTRL C function does not copy and CTRL V does not past. I can, from the pull down menu, use 'copy' and 'paste' where appropriate but this is a backward step.

All those functions work in a text document!
 
Old 12-14-2019, 02:12 PM   #6
ferrari
LQ Guru
 
Registered: Sep 2003
Location: Auckland, NZ
Distribution: openSUSE Leap
Posts: 5,803

Rep: Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140Reputation: 1140
Unlikely, avahi is only used for local network device discovery.
 
Old 01-03-2020, 07:43 AM   #7
Crb999
Member
 
Registered: Jan 2017
Location: West Coast Scotland
Distribution: Suse Linux 42.2 Now 15.1
Posts: 319

Original Poster
Rep: Reputation: Disabled
After the last upgrade, or perhaps the one before that, My Epson stopped working again.
I can print wirelessly from windoze and I can use suze to wirelessly print to another wifi epson printer as I could before, but now the WF 5110 ignores me!

I checked back over my discussions with ferrari in 2017 and have retraced every step, to no avail.

during trawling I came across the Open Suze Forum discussion between ferrari and busy penguin!

"Thread: Epson printer driver missing file (that isn't missing)"

I've worked right through that too. No luck!

so here are some outputs which I hope can help lead to clearing this matter up.

Code:
file /opt/epson-inkjet-printer-escpr/cups/lib/filter/epson-escpr-wrapper
/opt/epson-inkjet-printer-escpr/cups/lib/filter/epson-escpr-wrapper: directory
and
Code:
ldd /opt/epson-inkjet-printer-escpr/cups/lib/filter/epson-escpr-wrapper
ldd: /opt/epson-inkjet-printer-escpr/cups/lib/filter/epson-escpr-wrapper: not regular file
I see that, different to Busy Penguin, I have the

Code:
drwxr-xr-x 1 root root 102 Dec 27 13:33 epson-escpr-wrapper
It's a directory in which I have Epson-WF-5110_Series-epson-inkjet-printer-escpr.ppd

I have increased CUPS logging verbosity as suggested and having deleted the Cups log, I've sent a single line to the printer.

Here, in two lumps, are the head and tail of that log:
Code:
crb999@linux-ox1l:~> cat cupslog100head.txt      
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] CGI data ready to be sent.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
D [03/Jan/2020:12:58:03 +0000] [Client 62] Waiting for CGI data.
D [03/Jan/2020:12:58:03 +0000] [Client 62] con->http=0x5623e4bfb600
D [03/Jan/2020:12:58:03 +0000] [Client 62] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_CHUNKED, data_remaining=0, response=(nil)(), pipe_pid=26775, file=23
and the last 100

Code:
crb999@linux-ox1l:~> cat cupslog100tail.txt     
D [03/Jan/2020:13:05:24 +0000] [Client 43] Flushing write buffer.
D [03/Jan/2020:13:05:24 +0000] [Client 43] New state is HTTP_STATE_WAITING
D [03/Jan/2020:13:05:24 +0000] [Client 43] Waiting for request.
D [03/Jan/2020:13:05:24 +0000] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [03/Jan/2020:13:05:24 +0000] [Client 43] POST / HTTP/1.1
D [03/Jan/2020:13:05:24 +0000] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [03/Jan/2020:13:05:24 +0000] [Client 43] Read: status=200, state=6
D [03/Jan/2020:13:05:24 +0000] [Client 43] No authentication data provided.
D [03/Jan/2020:13:05:24 +0000] [Client 43] 2.0 Get-Printer-Attributes 3
D [03/Jan/2020:13:05:24 +0000] Get-Printer-Attributes ipp://localhost:631/printers/epsonwf5110series
D [03/Jan/2020:13:05:24 +0000] [Client 43] Returning IPP successful-ok for Get-Printer-Attributes (ipp://localhost:631/printers/epsonwf5110series) from localhost
D [03/Jan/2020:13:05:24 +0000] [Client 43] Content-Length: 1458
D [03/Jan/2020:13:05:24 +0000] [Client 43] cupsdSendHeader: code=200, type="application/ipp", auth_type=0
D [03/Jan/2020:13:05:24 +0000] [Client 43] con->http=0x5555a12ac340
D [03/Jan/2020:13:05:24 +0000] [Client 43] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1458, response=0x5555a12d6d10(IPP_STATE_DATA), pipe_pid=0, file=-1
D [03/Jan/2020:13:05:24 +0000] [Client 43] Writing IPP response, ipp_state=IPP_STATE_DATA, old wused=0, new wused=0
D [03/Jan/2020:13:05:24 +0000] [Client 43] bytes=0, http_state=0, data_remaining=1458
D [03/Jan/2020:13:05:24 +0000] [Client 43] Flushing write buffer.
D [03/Jan/2020:13:05:24 +0000] [Client 43] New state is HTTP_STATE_WAITING
D [03/Jan/2020:13:05:24 +0000] [Client 43] Waiting for request.
D [03/Jan/2020:13:05:24 +0000] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [03/Jan/2020:13:05:24 +0000] [Client 43] POST / HTTP/1.1
D [03/Jan/2020:13:05:24 +0000] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [03/Jan/2020:13:05:24 +0000] [Client 43] Read: status=200, state=6
D [03/Jan/2020:13:05:24 +0000] [Client 43] No authentication data provided.
D [03/Jan/2020:13:05:24 +0000] [Client 43] 2.0 CUPS-Get-Printers 4
D [03/Jan/2020:13:05:24 +0000] CUPS-Get-Printers
D [03/Jan/2020:13:05:24 +0000] [Client 43] Returning IPP successful-ok for CUPS-Get-Printers (no URI) from localhost
D [03/Jan/2020:13:05:24 +0000] [Client 43] Content-Length: 1094
D [03/Jan/2020:13:05:24 +0000] [Client 43] cupsdSendHeader: code=200, type="application/ipp", auth_type=0
D [03/Jan/2020:13:05:24 +0000] [Client 43] con->http=0x5555a12ac340
D [03/Jan/2020:13:05:24 +0000] [Client 43] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=1094, response=0x5555a1295eb0(IPP_STATE_DATA), pipe_pid=0, file=-1
D [03/Jan/2020:13:05:24 +0000] [Client 43] Writing IPP response, ipp_state=IPP_STATE_DATA, old wused=0, new wused=0
D [03/Jan/2020:13:05:24 +0000] [Client 43] bytes=0, http_state=0, data_remaining=1094
D [03/Jan/2020:13:05:24 +0000] [Client 43] Flushing write buffer.
D [03/Jan/2020:13:05:24 +0000] [Client 43] New state is HTTP_STATE_WAITING
D [03/Jan/2020:13:05:24 +0000] [Client 43] Waiting for request.
D [03/Jan/2020:13:05:24 +0000] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
D [03/Jan/2020:13:05:24 +0000] [Client 43] HTTP_STATE_WAITING Closing for error 32 (Broken pipe)
D [03/Jan/2020:13:05:24 +0000] [Client 43] Closing connection.
D [03/Jan/2020:13:05:24 +0000] cupsdSetBusyState: newbusy="Dirty files", busy="Dirty files"
I [03/Jan/2020:13:05:25 +0000] Expiring subscriptions...
D [03/Jan/2020:13:05:27 +0000] [Client 3] POST / HTTP/1.1
D [03/Jan/2020:13:05:27 +0000] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Dirty files"
D [03/Jan/2020:13:05:27 +0000] [Client 3] Read: status=200, state=6
D [03/Jan/2020:13:05:27 +0000] [Client 3] No authentication data provided.
D [03/Jan/2020:13:05:27 +0000] [Client 3] 2.0 Renew-Subscription 210
D [03/Jan/2020:13:05:27 +0000] Renew-Subscription /
D [03/Jan/2020:13:05:27 +0000] cupsdIsAuthorized: requesting-user-name="crb999"
D [03/Jan/2020:13:05:27 +0000] cupsdMarkDirty(----S)
D [03/Jan/2020:13:05:27 +0000] cupsdSetBusyState: newbusy="Active clients and dirty files", busy="Active clients and dirty files"
D [03/Jan/2020:13:05:27 +0000] [Client 3] Returning IPP successful-ok for Renew-Subscription (/) from localhost
D [03/Jan/2020:13:05:27 +0000] [Client 3] Content-Length: 106
D [03/Jan/2020:13:05:27 +0000] [Client 3] cupsdSendHeader: code=200, type="application/ipp", auth_type=0
I [03/Jan/2020:13:05:27 +0000] Expiring subscriptions...
D [03/Jan/2020:13:05:27 +0000] [Client 3] con->http=0x5555a12a0cb0
D [03/Jan/2020:13:05:27 +0000] [Client 3] cupsdWriteClient error=0, used=0, state=HTTP_STATE_POST_SEND, data_encoding=HTTP_ENCODING_LENGTH, data_remaining=106, response=0x5555a11fb430(IPP_STATE_DATA), pipe_pid=0, file=-1
D [03/Jan/2020:13:05:27 +0000] [Client 3] Writing IPP response, ipp_state=IPP_STATE_DATA, old wused=0, new wused=0
D [03/Jan/2020:13:05:27 +0000] [Client 3] bytes=0, http_state=0, data_remaining=106
D [03/Jan/2020:13:05:27 +0000] [Client 3] Flushing write buffer.
D [03/Jan/2020:13:05:27 +0000] [Client 3] New state is HTTP_STATE_WAITING
D [03/Jan/2020:13:05:27 +0000] [Client 3] Waiting for request.
D [03/Jan/2020:13:05:27 +0000] cupsdSetBusyState: newbusy="Dirty files", busy="Active clients and dirty files"
I [03/Jan/2020:13:05:28 +0000] Saving printers.conf...
I [03/Jan/2020:13:05:28 +0000] Saving job.cache...
I [03/Jan/2020:13:05:28 +0000] Saving subscriptions.conf...
D [03/Jan/2020:13:05:28 +0000] cupsdSetBusyState: newbusy="Not busy", busy="Dirty files"
I [03/Jan/2020:13:05:28 +0000] Expiring subscriptions...
I [03/Jan/2020:13:06:41 +0000] Expiring subscriptions...
D [03/Jan/2020:13:06:41 +0000] [Job 249] Unloading...
D [03/Jan/2020:13:06:41 +0000] [Job 250] Unloading...
D [03/Jan/2020:13:06:41 +0000] [Job 251] Unloading...
D [03/Jan/2020:13:06:41 +0000] [Job 252] Unloading...
D [03/Jan/2020:13:06:41 +0000] [Job 253] Unloading...
D [03/Jan/2020:13:06:41 +0000] [Job 254] Unloading...
D [03/Jan/2020:13:06:41 +0000] cupsdAddCert: Adding certificate for PID 0
D [03/Jan/2020:13:06:41 +0000] Closing client 1 after 300 seconds of inactivity.
D [03/Jan/2020:13:06:41 +0000] [Client 1] Closing connection.
D [03/Jan/2020:13:06:41 +0000] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
D [03/Jan/2020:13:06:41 +0000] Closing client 4 after 300 seconds of inactivity.
D [03/Jan/2020:13:06:41 +0000] [Client 4] Closing connection.
D [03/Jan/2020:13:06:41 +0000] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
D [03/Jan/2020:13:06:41 +0000] Report: clients=2
D [03/Jan/2020:13:06:41 +0000] Report: jobs=13
D [03/Jan/2020:13:06:41 +0000] Report: jobs-active=1
D [03/Jan/2020:13:06:41 +0000] Report: printers=2
D [03/Jan/2020:13:06:41 +0000] Report: stringpool-string-count=27786
D [03/Jan/2020:13:06:41 +0000] Report: stringpool-alloc-bytes=16608
D [03/Jan/2020:13:06:41 +0000] Report: stringpool-total-bytes=553272
I [03/Jan/2020:13:10:03 +0000] Expiring subscriptions...
D [03/Jan/2020:13:10:03 +0000] Closing client 2 after 300 seconds of inactivity.
D [03/Jan/2020:13:10:03 +0000] [Client 2] Closing connection.
D [03/Jan/2020:13:10:03 +0000] cupsdSetBusyState: newbusy="Not busy", busy="Not busy"
D [03/Jan/2020:13:10:03 +0000] Report: clients=1
D [03/Jan/2020:13:10:03 +0000] Report: jobs=13
D [03/Jan/2020:13:10:03 +0000] Report: jobs-active=1
D [03/Jan/2020:13:10:03 +0000] Report: printers=2
D [03/Jan/2020:13:10:03 +0000] Report: stringpool-string-count=27784
D [03/Jan/2020:13:10:03 +0000] Report: stringpool-alloc-bytes=16608
D [03/Jan/2020:13:10:03 +0000] Report: stringpool-total-bytes=553224
I'm not sure if they can be of any value but the whole log. for a single print failure is close to 1mb

Now, seeing that the epson wrapper is not supposed to be a directory must be the source of the problem however I only use yast to install so am somewhat confused.

I do admit to putting the Epson-WF-5110_Series-epson-inkjet-printer-escpr.ppd in lots of places, as that seems to be the file that the WF52110 needs. I'll strip them out when I know more.

HNY
 
Old 02-20-2021, 12:24 PM   #8
terryxela
Member
 
Registered: Dec 2006
Location: Denver, Colorado, USA
Distribution: SuSE 11.3
Posts: 127

Rep: Reputation: 17
It did it

Quote:
Originally Posted by ferrari View Post
The # character acts to comment out the line, so that the entries are just place-holders (and are there to show what the default settings are as well). So, yes you need to add (uncommented) like this
Code:
enable-debus=no
then restart avahi
Code:
sudo systemctl restart avahi-daemon
You may also need to restart the desktop as well.
Ferrari,

Thank you very much. In my case I had two printers with almost the same name, the only difference was dash/underline and despite I removed the one that did not work under cups still they showed up not only in LibreOffice but also in a couple of apps i run under crossover (wine).
After following your tips they are gone.
Again many thanks.
 
  


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
My LG Stylo 4 Has Been Hijacked by Remote Administrator and OS as Well as Kernel Have Been Modified LongDuckDong_69 Linux - Newbie 3 11-17-2019 03:41 PM
[SOLVED] RHEL8 udev & partprob Error: Partition(s):1,2,3.. /dev/sdc1 have been written, but we have been unable to inform the kernel of the change scofieldd Red Hat 5 11-08-2019 11:02 AM
LXer: More Raspberry Pi, Exterminating LibreOffice & More… LXer Syndicated Linux News 0 11-27-2015 07:01 AM
[SOLVED] Firefox print does only shows lpr and "to file", not other printers configged in cups deadeyes Linux - Desktop 3 09-29-2009 09:33 AM
recommendation on photo printers and general purpose printers raminolta Linux - Hardware 3 01-21-2004 12:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 02:39 PM.

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