Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Samsung printer ml-2545

Writer Matthew Harrington

I can't find a driver for my Samsung ml-2545 monochrome printer that will work. I tried getting it from Samsung but when I install it it says:

missing file /usr/lib/cups/filter/rastertosplc

which is in my downloads folder but I can't get it into the /usr/lib/cups/filter/ folder. I am not good with terminal. Any ideas?

1

3 Answers

If I understand it correctly you need to do this in command line:

sudo cp ~/Downloads/rasterosplc /usr/lib/cups/filter/

I found this article to be helpful. In brief:

  • Running sudo /install.sh in the ULD (Unified Linux Driver) folder will do everything you need, bar one thing: If you try to add your printer straight away (as outlined in the Samsung manual), the error message missing file /usr/lib/cups/filter/rastertosplc that you saw will come up.
  • However, there should be a symbolic link called rastertospl (note the missing 'c') in that directory. If you move to the directory in your terminal and execute sudo ln -s rastertospl rastertosplc and then add the printer (see first point), everything should be fine (it got my Samsung ML 1675 to print immediately).

You just need to link /usr/lib/cups/filter/rastertosplc to rastertospl:

sudo ln -s rastertospl /usr/lib/cups/filter/rastertosplc

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy