Installing Canon Color imageCLASS MF8380Cdw Drivers in Ubuntu 12.10
Solution 1:
I just setup this exact printer on 2 Ubuntu 64-bit 12.04 desktops. Here's the documentation that I wrote, hope this also works on 12.10.
Go to the below link and download the Linux driver in
~/Downloads
http://www.usa.canon.com/cusa/consumer/products/printers_multifunction/color_laser_multifunction/color_imageclass_mf8380cdw#DriversAndSoftwareUntar the tar.gz file downloaded at ~/Downloads/Linux_UFRII_PrinterDriver_V250_us_EN.tar.gz
Assuming that a 64 bit machine is being used,
cd
to~/Downloads/Linux_UFRII_PrinterDriver_V250_us_EN/64-bit_Driver/RPM
.-
Create a symbolic link for 64-bit drivers:
ln -s /usr/lib /usr/lib64
(NOTE: There may be an existing
lib64
directory there already and this will prevent the symbolic link from working correctly. Backup/move the directory to an alternate location before creating the symbolic link) -
Install alien (if needed):
sudo apt-get install alien dpkg-dev debhelper build-essential
-
Convert the RPM files to ".deb"
sudo alien -k -c cndrvcups-common-us-2.50-1.x86_64.rpm sudo alien -k -c cndrvcupsuf2us-2.50-1.x86_64.rpm
-
Install drivers
sudo dpkg -i cndrvcups-common-us-2.50-1.x86_64.deb sudo dpkg -i cndrvcupsuf2us-2.50-1.x86_64.deb
Go to System Settings -> Printing and remove the Canon printer (if it's there)
Click on Add and expand Network Printer. Select Canon MF8300C (IP_ADDRESS). Click on Forward and then Apply. Click Cancel on the test page screen.
Right-click the new Canon printer -> Properties.
Where is shows 'Make and Model' press 'Change'
Select 'Provide PPD file'
Navigate to
/etc/cups/ppd/Canon-MF8300C-UFRII-LT.ppd
and press OpenSelect 'Use the new PPD as is' -> Apply
Restart the cups service
/etc/init.d/cups restart
Test the printer.
Solution 2:
I've used this post more times than I can count. But good news, this has become much, much simpler (at least with Ubuntu 16.04 and Canon's 3.31 driver package).
Instructions:
-
Download driver package from here on the Canon website
-
Extract the package:
cd ~/Downloads tar -xvzf linux-UFRII-drv-v331-usen.tar.gz```
-
cd
to the new package directory and runinstall.sh
cd linux-UFRII-drv-v331-usen ./install.sh
-
Install your printer using steps borrowed from Earl's answer:
- Go to System Settings > Printing and remove the Canon printer (if it's there)
- Click on Add and expand Network Printer.
- Select Canon MF8300C (IP_ADDRESS).
- Click on Forward and then Apply.
- Try to print a test page.