Skip to content

Instantly share code, notes, and snippets.

@alhoo
Last active July 4, 2022 17:58
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alhoo/4f6b32a9d9ad7f07869e4a0d72d6e6bb to your computer and use it in GitHub Desktop.
Save alhoo/4f6b32a9d9ad7f07869e4a0d72d6e6bb to your computer and use it in GitHub Desktop.
Install Xerox Phaser 6010N on Ubuntu 64bit 16.04 and 18.04
# Xerox Phaser 6010N
Xerox Phaser 6010N on Ubuntu 64bit 16.04, 18.04 and 20.04
```bash
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 libcupsimage2:i386
# Download the [.DEB driver](https://www.support.xerox.com/support/phaser-6010/downloads/enus.html?operatingSystem=linux&fileLanguage=en) that Xerox supplies.
sudo dpkg -i xerox-phaser-6000-6010_1.0-1_i386.deb
sudo apt-get -f install
sudo apt-get install libcupsimage2:i386
# Test and verify no errors appear in
tail -f /var/log/cups/error_log | grep -i error
```
@hudtorrent
Copy link

hudtorrent commented Nov 6, 2020

Thank you!
I wasted quite some time looking for a solution without success.
It worked just fine!
Just a point. I am using Debian 10.6. It seems that 'sudo apt-get install lib32stdc++6:i386' does not working and is not necessary.

@alhoo
Copy link
Author

alhoo commented Aug 9, 2021

Same seems to hold for ubuntu 20.04: "lib32stdc++6:i386" is not needed or even available. I updated the gist to reflect this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment