WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Dymo Labelwriter 550 Turbo  (Read 82 times)

Offline bohfoitoch

  • Newbie
  • *
  • Posts: 6
Dymo Labelwriter 550 Turbo
« on: October 17, 2024, 03:49:11 AM »
Does anyone know if a Dymo Labelwriter 550 Turbo functions in Tinycore 15 x64 in collaboration with cups.
With a Labelwriter 450 this works for years.
But I can't get it to work with a Dymo 550.

Offline Juanito

  • Administrator
  • Hero Member
  • *****
  • Posts: 14760
Re: Dymo Labelwriter 550 Turbo
« Reply #1 on: October 17, 2024, 04:47:34 AM »
What does the cups log say?

Offline bohfoitoch

  • Newbie
  • *
  • Posts: 6
Re: Dymo Labelwriter 550 Turbo
« Reply #2 on: October 17, 2024, 08:30:38 AM »
This is the logging after "Print a test page" in cups.

Code: [Select]
I [17/Oct/2024:14:29:08 +0200] [Client 54] Started "/usr/local/lib/cups/cgi-bin/printers.cgi" (pid=6721, file=15)
I [17/Oct/2024:14:29:08 +0200] [Job ???] Request file type is application/vnd.cups-pdf-banner.
I [17/Oct/2024:14:29:08 +0200] [Job 4] Adding start banner page "none".
I [17/Oct/2024:14:29:08 +0200] [Job 4] Adding end banner page "none".
I [17/Oct/2024:14:29:08 +0200] [Job 4] File of type application/vnd.cups-pdf-banner queued by "anonymous".
I [17/Oct/2024:14:29:08 +0200] [Job 4] Queued on "labelwriter" by "anonymous".
I [17/Oct/2024:14:29:08 +0200] [Job 4] Started filter /usr/local/lib/cups/filter/bannertopdf (PID 6722)
I [17/Oct/2024:14:29:08 +0200] [Job 4] Started filter /usr/local/lib/cups/filter/pdftopdf (PID 6723)
I [17/Oct/2024:14:29:08 +0200] [Job 4] Started filter /usr/local/lib/cups/filter/gstoraster (PID 6724)
I [17/Oct/2024:14:29:08 +0200] [Job 4] Started filter /usr/local/lib/cups/filter/rastertolabel (PID 6725)
I [17/Oct/2024:14:29:08 +0200] [Job 4] Started backend /usr/local/lib/cups/backend/usb (PID 6726)
I [17/Oct/2024:14:29:08 +0200] [Client 54] Symlinks such as "/usr/local/share/doc/cups/cups.css" are not allowed.
I [17/Oct/2024:14:29:09 +0200] [Job 4] Job completed.
I [17/Oct/2024:14:29:10 +0200] [Client 55] Started "/usr/local/lib/cups/cgi-bin/printers.cgi" (pid=6728, file=13)
I [17/Oct/2024:14:29:10 +0200] [Client 55] Symlinks such as "/usr/local/share/doc/cups/cups.css" are not allowed.

    [Edit]: Added code tags.  Rich
« Last Edit: October 17, 2024, 10:24:31 AM by Rich »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11530
Re: Dymo Labelwriter 550 Turbo
« Reply #3 on: October 17, 2024, 10:22:32 AM »
Hi bohfoitoch
Please use  Code Tags  when posting commands and responses seen in a terminal. To use  Code Tags  click on the  #  icon
above the reply box and paste your text between the  Code Tags  as shown in this example:

Quote
[code][   36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[   36.176536] pcm512x 1-004d: Failed to get supplies: -517
[   36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517[/code]

It will appear like this in your post:
Code: [Select]
[   36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[   36.176536] pcm512x 1-004d: Failed to get supplies: -517
[   36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517

Code Tags  serve as visual markers between what you are trying to say and the information you are posting. They also preserve
spacing so column aligned data displays properly. Code tags also automatically add horizontal and or vertical scrollbars
to accommodate long lines and listings.

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11530
Re: Dymo Labelwriter 550 Turbo
« Reply #4 on: October 17, 2024, 10:23:18 AM »
Hi bohfoitoch
The only things that stand out to me are this:
...
Code: [Select]
I [17/Oct/2024:14:29:08 +0200] [Job ???] Request file type is application/vnd.cups-pdf-banner. ...
though I don't know if that's a problem.

And this:
Quote
Code: [Select]
I [17/Oct/2024:14:29:08 +0200] [Client 54] Symlinks such as "/usr/local/share/doc/cups/cups.css" are not allowed.
 ----- Snip -----
I [17/Oct/2024:14:29:10 +0200] [Client 55] Symlinks such as "/usr/local/share/doc/cups/cups.css" are not allowed.
There have instances where symlinks have caused problems.

You can replace the symlink with the actual file like this:
Code: [Select]
FILE="/usr/local/share/doc/cups/cups.css"; [ -L "$FILE" ] && sudo busybox cp "$(readlink "$FILE")" "$FILE"
See if that helps or changes what cups reports.