8

i can't find how to install and use the labelwriter 450 and it's urgent. i print for my job 50 to 100 labels per week.

i don't know what to do, i just went to ubuntu from windows 8.1.1.

I tried with wine but still doesn't work.

kailor
  • 162
  • 1
  • 2
  • 9

5 Answers5

11

14.04 and later

Open the terminal and type:

sudo apt install printer-driver-dymo
karel
  • 114,770
rew
  • 404
10

To install Dymo 450 LabelWriter on Debian Systems - Ubuntu, Raspibian, you might need first: (helped me to compile drivers, advice from : http://ubuntuforums.org/showthread.php?t=1502581 )

sudo apt-get install libcups2-dev libcupsimage2-dev gcc g++

Then you want to do install dymo linux sdk (both links work at 2016-05-14):

Then you unpack it, compile and install driver:

./configure
make
sudo make install

Later I've added driver via cups web interface like any other driver, choosing right ppd file. (example project : https://www.hmazter.com/2013/05/raspberry-pi-printer-server-for-labelwriter and another: https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd ).

Finally, I share via network Dymo 450 LabelWriter(s) attached to Ubuntu and Raspibian with other Linuxes (including Archlinux) and I've found that to make printing via network (e.g. ipp:// and ipps:// ) to work, I need to schedule printing (of pdf, png, whatever) add -o raw to lpr command. You will see example of -o raw in https://gist.github.com/gwpl/6d6c1457b4d1f6b778917a2f7c3c57fd and https://askubuntu.com/a/748035/31300 .

Finally references for installing and using Dymo 450 under Linux:

7

You need to get the correct drivers for CUPS, the Linux printing system. As far as I can tell, you can download them here:

https://dymo.custhelp.com/app/answers/detail/a_id/101/~/dymo-drivers-and-downloads#lw_linux

  • you may also find the discussion here useful: http://ubuntuforums.org/showthread.php?t=861781 – Nick Veitch Jul 20 '14 at 12:02
  • CUPS driver installation could not be enough: "The printer setup requires an appropriate PostScript Printer Definition (PPD) file. Unfortunately, this seems not to be part of the installation package. For this reason, we need to download the CUPS driver provided by Dymo. This is currently version 1.4.0, which can be downloaded here. Afterwards the archive needs to be extracted. The model file is part of it and should be copied to the default model folder of CUPS." quote from https://www.baitando.com/it/2017/12/12/install-dymo-labelwriter-on-headless-linux where there are all the needed steps – marcocassisa Jul 18 '20 at 10:48
4

The answer by Grzegorz kinda works, but there is an issue in the official DYMO sources which prevents it from building on the latest version of CUPS. I found a patch on this Ubuntu forum post which contains the fix for it.

The post's instructions were:

git clone https://aur.archlinux.org/dymo-cups-drivers.git

Then copy that files inside the folder of driver, and finally:
* patch -Np1 -i cups-ppd-header.patch
* ./configure
* make
* sudo make install 

Basically, several files are missing this line, which makes it impossible to build:

#include <cups/ppd.h>

I made the change against the official version 1.4.0.5 copy of the source and put it in a repository for others to use: https://github.com/Kyle-Falconer/DYMO-SDK-for-Linux

3

Just FYI: If you need a label printer, do not buy a DYMO from this point in time onwards.

I have contacted their customer support and although not properly mentioned on their website, they have stopped supporting Linux as of this point in time.

rew
  • 404
  • They have a "if it works, it works, but if it fails, we won't fix it", policy with respect to the Labelwriter 450. That's what fuels the printer-driver-dymo package. For the other Dymo (the part I can see doesn't have a model nr), we have contacted them and got he "you're on your own" reply.... – rew Sep 03 '20 at 14:18
  • 1
    Any alternatives? – Daniel Doherty May 02 '21 at 13:18
  • No, I don't know. I bought a ZJ9200 that advertized: "with Linux support". That statement was a mistake. They pointed me to android drivers and stuff like that. (Android is linux, right? ... In a way, yes, but not really....) I've made a driver for that myself. It is in a "works for me" state. Not yet a CUPS driver where it is integrated into the printing system. – rew May 03 '21 at 14:34