Last active
January 23, 2025 07:11
-
-
Save notdodo/660a2a67b9bc8a815ba537530137636a to your computer and use it in GitHub Desktop.
Install a printer on Arch Linux with cups using command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
################################################################ | |
# Install a printer on Arch Linux with cups using command line # | |
# Used for a HP PSC 1510 with default driver # | |
################################################################ | |
sudo pacman -S cups | |
sudo systemctl start org.cups.cupsd | |
sudo systemctl status -l org.cups.cupsd | |
# If errors are shown add yourself to 'lp' group | |
sudo gpasswd -a ${USER} lp | |
sudo systemctl restart org.cups.cupsd | |
sudo systemctl status -l org.cups.cupsd | |
# If errors are shown again add yourself to 'lpadmin' group | |
sudo gpasswd -a ${USER} lpadmin | |
sudo systemctl restart org.cups.cupsd | |
# Find if your device is connected and found by the system | |
lsusb | |
# Find the URI | |
sudo lpinfo -v # | |
# Find if a driver for your device is installed | |
lpinfo -m | |
# Create a print queue with URI and driver | |
sudo lpadmin -p HP_PSC_1510 -E -v "usb://HP/PSC%201500%20series?serial=MY61DD31P90498&interface=1" -m drv:///sample.drv/deskjet.ppd | |
# Set as default | |
lpoptions -d HP_PSC_1510 | |
# Set A4 Page | |
lpoptions -p HP_PSC_1510 -o PageSize=A4 | |
# Enable printing | |
sudo cupsenable HP_PSC_1510 | |
sudo cupsaccept HP_PSC_1510 | |
# Restart!! | |
sudo systemctl restart org.cups.cupsd | |
# Test printer | |
lpr test.txt | |
# List other options | |
lpoptions -p HP_PSC_1510 -l |
I had to download and install SAMSUNG drivers from the AUR and then followed your guide! Works like a charm! Thank you!
Thanks a lot, I even didn't know if the driver was installed, I am using Sumsung M2020.
There is a small error on line 43.
sudo cupaccept HP_PSC_1510
is incorrect.
It should read:
sudo cupsaccept HP_PSC_1510
Thank you @shwaybotx. It's fixed now
Wow, that was quick! Thanks Edoardo. I was following it step by step and
encountered an error. When I looked it over I saw the mistake.
A very helpful guide, btw.
…On Mon, Jul 15, 2019 at 7:13 AM Edoardo Rosa ***@***.***> wrote:
Thank you @shwaybotx <https://github.com/shwaybotx>. It's fixed now
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<https://gist.github.com/660a2a67b9bc8a815ba537530137636a?email_source=notifications&email_token=AGHKLV5LAPMTKV2GBEAYIH3P7RSWFA5CNFSM4IDWCZMKYY3PNVWWK3TUL52HS4DFVNDWS43UINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAFVKGI#gistcomment-2970724>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGHKLV56RIPO2O6SFY45QI3P7RSWFANCNFSM4IDWCZMA>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
THANK YOU!!!!!!!!!!!!!!!!!!
Why was this so hard to figure out? lmao
Thank you google for your amazing google search that brought me to this random github submission and thank you edoz90 for writing this. I have a small feeling this was for yourself xD. If it was, be happy you helped someone else out