惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
博客园 - 【当耐特】
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
C
Check Point Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
Y
Y Combinator Blog
IT之家
IT之家
T
Tailwind CSS Blog
月光博客
月光博客
Vercel News
Vercel News
V
V2EX
Engineering at Meta
Engineering at Meta
B
Blog
Stack Overflow Blog
Stack Overflow Blog
A
About on SuperTechFans
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
腾讯CDC
I
InfoQ

John Bokma's Hacking and Hiking

Failed to verify signature archive-contents.sig in Emacs Aquamacs 3.6 Hangs When Saving An Encrypted File PAR trouble How To Create a Bootable LibreELEC Installation using Mac OS Running pdflatex Using the Alpine Pandoc LaTeX Docker Image A Docker Image for Sass Timezones in Alpine Docker Containers A Tale of Three Docker Images Debugging a Perl Docker container Perl Time::Piece Unicode Issue Giving Docker Desktop for macOS a Second Chance Flashing another TP-Link TL-WDR4300 with OpenWrt firmware Rehousing two tarantulas Getting started with the Perl version of tumblelog on Ubuntu 18.04 LTS A visit to Avonturia De Vogelkelder Flashing a TP-Link TL-WDR4300 with OpenWrt firmware Mounting a VDI File in a Different VirtualBox Guest Wireless Headless Raspberry Pi - John Bokma A Matter of Time - John Bokma Hand coding an RSS 2.0 feed in Python RFC #822 and RFC #3339 dates in Perl RFC #822 and RFC #3339 dates in Python Hand coding an RSS 2.0 feed in Perl Nav Element with no Heading Rewriting CommonMark Nodes in Perl "right" this time
Setting up a Brother AirPrinter on Ubuntu
John Bokma · 2026-09-08 · via John Bokma's Hacking and Hiking

September 9, 2026

In the early afternoon I set up a Brother HL-L2350DW AirPrinter on Ubuntu 26.04 LTS as follows.

sudo apt update
sudo apt install cups avahi-daemon
sudo systemctl enable --now cups avahi-daemon

After I had installed the required packages I verified that the Brother laserprinter could be found on the WiFi network:

lpinfo -v | grep -F ipp:
network ipp://Brother%20HL-L2350DW%20series._ipp._tcp.local/

However, when I tried to print a buffer from Emacs I got the following message:

/usr/bin/lpr: Error - No default destination

Checking with lpstat -p -d confirmed this: no default destination was set:

printer Brother_HL_L2350DW_series is idle.  enabled since Mon 07 Sep 2026 01:36:
35 PM CEST
no system default destination

I used lpadmin to fix this as follows:

sudo lpadmin -d Brother_HL_L2350DW_series

Note how the name must be exactly as reported by lpstat in order for this to work.

Next, I used lpstat -d to verify the previous command was successful:

system default destination: Brother_HL_L2350DW_series

Finally, now I could print a buffer from Emacs via WiFi to the Brother HL L2350DW.