Last active
June 12, 2024 21:22
-
-
Save alhoo/4f6b32a9d9ad7f07869e4a0d72d6e6bb to your computer and use it in GitHub Desktop.
Install Xerox Phaser 6010N on Ubuntu 64bit 16.04 and 18.04
This file contains hidden or 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
# 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 | |
``` |
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
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.