Last active
August 13, 2023 14:09
-
-
Save kleo/5319f858f752cdbfdc4b7fd6c1c9e0b3 to your computer and use it in GitHub Desktop.
Brother DCP-T310 printer install on Arch Linux notes
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
# Brother DCP-T310 printer install on Arch Linux notes | |
# install cups | |
yay -S cups | |
sudo systemctl enable cups.service | |
sudo systemctl start cups.service | |
sudo systemctl enable cups.socket | |
sudo systemctl start cups.socket | |
# install brother dcp-t310 drivers | |
yay -S brother-dcpt310 | |
yay -S lib32-gcc-libs # not included in brother-dcpt310 package. installation of this package fixed printing. reference https://bbs.archlinux.org/viewtopic.php?pid=2032282#p2032282 | |
sudo /opt/brother/Printers/dcpt310/cupswrapper/cupswrapperdcpt310 | |
# set as default printer on cups | |
# install brother scanner drivers | |
yay -S brscan4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment