Package Details: brother-ql1100 2.1.4r0-2

Git Clone URL: https://aur.archlinux.org/brother-ql1100.git (read-only, click to copy)
Package Base: brother-ql1100
Description: LPR and CUPS driver for Brother QL-1100 label printer
Upstream URL: http://solutions.brother.com/linux/en_us/
Keywords: brother cups cupswrapper driver filter label lpr ppd printer ql-1100
Licenses: custom
Submitter: kbabioch
Maintainer: kbabioch
Last Packager: kbabioch
Votes: 2
Popularity: 0.000000
First Submitted: 2018-02-27 21:24 (UTC)
Last Updated: 2021-04-13 08:19 (UTC)

Latest Comments

1 2 Next › Last »

markstos commented on 2024-01-15 12:47 (UTC)

I had a problem with a blinking orange light when selecting the 6"x4" paper size when I wanted to print a 6"x4" label. But It seems the label size needs to be slightly larger. It appears going into CUPS and setting the paper size for the printer to 103x164mm worked. Or more precisely:

media=custom_103.6x164.34mm_103.6x164.34mm

gurtfrobe commented on 2021-12-17 09:19 (UTC)

@lkamp I've gotten it working!

The paper size was resetting back to an incorrect default even after saving the default options. The fix was to set the paper size through the CUPS interface and NOT the Printer Settings GUI.

You're a superstar!

gurtfrobe commented on 2021-12-17 09:08 (UTC)

@lkamp Ah interesting. I've tweaked paper size in a few places and am still getting issues. I'm using the 103x164mm roll, so I set that in both the System Settings -> Printers window as well as the dialog that popups up when you print something from say Okular.

It appears the printer thinks it's completing jobs as they get moved to "Completed Jobs" almost instantly. The "status message" column then reads "step0".

I feel like I've been dancing around the correct combination of settings all day now. Some more of your insight will hopefully get me over the line. Thanks!

lkamp commented on 2021-12-17 08:55 (UTC)

@gurtfrobe: The package is working fine for me. Have you checked that the paper size in your printer settings match with the labels that are in your printer? The QL-1100 detects the paper size and will throw an error if the print job does not match the installed paper size.

gurtfrobe commented on 2021-12-16 14:18 (UTC)

Just checking this package is currently working. I've just bought a QL-1100 and am having issues printing. Manjaro recognises the new printer, however when printing, the green power light instantly starts slow-flashing red.

kbabioch commented on 2021-04-13 08:20 (UTC) (edited on 2021-04-13 08:21 (UTC) by kbabioch)

@lkamp: Thank you for digging into this and fixing the package. I've just updated it (based on your input) and added you as "Contributor". Let me know if, it is (not) working or there are further issues.

lkamp commented on 2021-04-11 11:06 (UTC) (edited on 2021-04-11 11:07 (UTC) by lkamp)

I got it running, the PKGBUILD below works for me, it is basically copied from the package brother-ql720nw. Would be great if the maintainer could update the package.

# Maintainer: Karol Babioch <karol@babioch.de>
# Inspired by package brother-dcp130c

pkgname='brother-ql1100'
pkgver=2.1.4r0
pkgrel=1
pkgdesc='LPR and CUPS driver for Brother QL-1100 label printer'
url='http://solutions.brother.com/linux/en_us/'
arch=('i686' 'x86_64')
license=('custom')
depends='cups'
if [ "$CARCH" = 'x86_64' ]; then
  depends+=('lib32-glibc')
fi
install="$pkgname.install"
source=("http://download.brother.com/welcome/dlfp100574/ql1100pdrv-${pkgver/r/-}.i386.rpm"
        'LICENSE')
sha256sums=('4523ee178173b11f9a66bd31a1ef03ecf2d933a0900f3dfc2fc1ffab07fffd26'
            'cdd1955a9996bc246ba54e84f0a5ccbfdf6623962b668188762389aa79ef9811')

prepare()
{
  # Create necessary CUPS directories
  install -d "${srcdir}/usr/share/cups/model"
  install -d "${srcdir}/usr/lib/cups/filter"
  install -d "${srcdir}/usr/bin"

  # Locate cupswrapper script
  _cupswrapper=$(find "${srcdir}/opt/brother/PTouch/" -type f -name 'cupswrapper*')
  echo "cupswrapper: ${_cupswrapper}"

  # Locate lpdwrapper script / symlink
  _lpdwrapper=$(find "${srcdir}/opt/brother/PTouch/" -name "brother_lpdwrapper_*")
  echo "lpdwrapper: ${_lpdwrapper}"

  # Basename of lpdwrapper script
  _lpdwrapper_basename="$(basename "${_lpdwrapper}")"
  echo "lpdwrapper_basename: ${_lpdwrapper_basename}"

  # Get model name of driver based on name from lpdwrapper script (e.g. brother_lpdwrapper_ql720nw -> ql720nw)
  _model="${_lpdwrapper_basename##brother_lpdwrapper_}"
  echo "model: ${_model}"

  # Patch cupswrapper script
  sed -i '/^sleep/d' ${_cupswrapper}
  sed -i '/^echo lpadmin/d' ${_cupswrapper}
  sed -i '/^lpadmin/d' ${_cupswrapper}
  sed -i "s|/usr|${srcdir}/usr|g" ${_cupswrapper}
  sed -i "s|/opt|${srcdir}/opt|g" ${_cupswrapper}
  sed -i "s|/model/Brother|/model|g" ${_cupswrapper}
  sed -i 's|lpinfo|echo|g' ${_cupswrapper}

  # Remove potential symlink (from previous runs)
  rm -f "${srcdir}/usr/lib/cups/filter/${_lpdwrapper_basename}"

  # Invoke cupswrapper script
  export srcdir=${srcdir}
  ${_cupswrapper}

  # Patch resulting filter
  sed -i "s|${srcdir}||" "${_lpdwrapper}"

  # Remove unneeded script (i.e. /etc/printcap is managed by CUPS)
  rm $(find "${srcdir}" -type f -name 'setupPrintcap*')

  # Make symlink absolute
  rm "${srcdir}/usr/lib/cups/filter/${_lpdwrapper_basename}"
  ln -s "/opt/brother/PTouch/${_model}/cupswrapper/${_lpdwrapper_basename}" "${srcdir}/usr/lib/cups/filter/${_lpdwrapper_basename}"
}

package()
{
  # Install actual content
  cp -R "${srcdir}/usr" "${pkgdir}"
  cp -R "${srcdir}/opt" "${pkgdir}"

  # Set some file ownerships and permissions
  # infdir, e.g. /opt/brother/PTouch/ql720nw/inf/
  _infdir=$(find "${pkgdir}/opt/brother/PTouch/" -type d -name 'inf')
  chown root:lp ${_infdir}
  chmod 775 ${_infdir}
  # rcfile, e.g. /opt/brother/PTouch/ql720nw/inf/brql720nwrc
  _rcfile=$(find "${pkgdir}/opt/brother/PTouch/" -type f -name '*rc')
  chown daemon:lp ${_rcfile}
  chmod 664 ${_rcfile}

  # Handle licenses
  install -d "${pkgdir}/usr/share/licenses/${pkgname}"
  find "${pkgdir}" -type f -name 'LICENSE*.txt' -exec mv -t "${pkgdir}/usr/share/licenses/${pkgname}" {} +
}

lkamp commented on 2021-04-10 17:47 (UTC)

I am having troubles getting my printer to work with this. The package installs just fine and CUPS finds my printer, but I can't print. CUPS does not give me any error.

@aliasbody could you explain how you installed the RPM directly? I have not had any success so far.

Any help with getting a QL-1100 to run would be highly appreciated.

aliasbody commented on 2020-05-24 14:25 (UTC)

It seems to be related with the way the package is handled. I don't understand yet what it is, but when I install the rpm directly (without using this package) it works. I'll have a look and submit a request.

aliasbody commented on 2020-05-23 19:52 (UTC)

Still not working. Is there any missing library? It works on Ubuntu 20.04 when installing the required 32 libs (lib32ncurses5 and lib32stdc++6).