How do I set default printer in my Bash shell under CentOS Linux or FreeBSD unix desktop operating systems?
CUPS is default printing system for Unix and Linux systems. It provides many ways to set the default printer destination. The “LPDEST” and “PRINTER” environment variables are consulted first for the default printer.
Syntax
The syntax is as follows:
export PRINTER=printer-Name-Here
Linux / Unix: Bash Set Default Printer
Open a terminal and edit ~/.bashrc file, enter:
$ vi ~/.bashrc
Set default printer to sales_hplj_1536:
export PRINTER=sales_hplj_1536
OR
PRINTER=sales_hplj_1536 export PRINTER
Save and close the file. Relogin into your account and print a test page using lp* commands such as lp, lpr, lpq, and lprm.
$ cat testfile.txt | lp
OR print ls command man page:
$ zcat /usr/share/man/man1/ls.1.gz | groff -man -Tps | lpr
Linux / Unix: CSH / TCSH Set Default Printer
Edit ~/.cshrc, enter:
$ vi ~/.cshrc
Set default printer to lab_hp8500:
setenv PRINTER lab_hp8500
Save and close the file. Relogin your account and print a test page using standard Unix lp* commands.
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 0 comments... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |