I'm new to linux and I know nothing about coding and using the terminal. I searched google for a way to connect Samsung M2020 printer to my computer running ubuntu but i didn't find. What should I do now?
4 Answers
Open gnome-terminal via Ubuntu dash or via shortcut ctrl+alt+t and paste following commands:
Download driver from Samsung site (link is dead, download the linux version from http://www.samsung.com/levant/support/model/SL-M2020/SAU)
wget 'http://org.downloadcenter.samsung.com/downloadfile/ContentsFile.aspx?CDSite=UNI_LEVANT&CttFileID=5999976&CDCttType=DR&ModelType=N&ModelName=SL-M2020&VPath=DR/201503/20150311160833703/ULD_v1.00.35.tar.gz'Unpack it
tar zxvf ULD_v1.00.35.tar.gzInstall driver, with sudo command you need to enter your root password.
sudo ./uld/install.shNow, you should be able to to add your printer via Printers program. Add it as network printer or simply plug it in via USB and it should work.
- 524
Download Linux driver: http://downloadcenter.samsung.com/content/DR/201510/20151028115008613/uld_v1.00.36_00.91.tar.gz
Go to http://localhost:631/admin to add the printer using cups web-based manager. Administration > add printer. Follow the steps until ending up with the question where to find the correct ppd file.
Now, extract the file downloaded in the first step and navigate using the cups admin panel's ppd browse button for the following file: ~/Downloads/samsungm2020_driver/noarch/share/ppd/Samsung_M2020_Series.ppd
Done.
Good Luck!
- 81
If you need a model which is slightly different from the M2020 (mine was M2026), the samsung printers support is now being done by hp.com: http://www8.hp.com/us/en/printers/samsung.html
for checking your model direct: https://support.hp.com/us-en/drivers/printers
- 214
Download the driver from this link, https://support.hp.com/us-en/drivers/selfservice/samsung-xpress-sl-m2010-laser-printer-series/16462586
Extract it to the home folder.
In terminal run
sudo su
sudo ./uld/install.sh
then when the printer is connected, Linux Mint will find drivers and install the printer, probably ubuntu is the same
Note: If the printer is already installed with wrong drivers you need to delete them first for this to work.
This just worked for me on 01/04/2024.
- 2,865