I have a Xerox Versalinkc600 network printer and Xerox Debian package printer driver installer, which I have downloaded. How do I (step by step) install the printer driver?
Asked
Active
Viewed 56 times
1 Answers
0
You can install local DEB packages using the dpkg
tool, and you do so by running the following command:
sudo dpkg -i <packagename>.deb
Make sure to replace <packagename>
with the actual name of the package.
There is also a chance you may get dependency errors the first time you run this. If so, run sudo apt --fix-broken install
, and then re-run the dpkg
command and the package will install fine.

Daniel M.
- 1,903
-
Thank you Daniel, This worked great. Now, How do I install the printer in cups? – Robert Cooperman May 08 '20 at 18:39
-
If you are using Ubuntu, then go to Settings -> Printers and set everything there. – Pilot6 May 08 '20 at 19:02
dpkg
. – Pilot6 May 08 '20 at 18:19deb
file inNautilus
should open it in Ubuntu Software. There you should be able to see an Install button. – user68186 May 08 '20 at 18:35