Difference between revisions of "Installing Drivers for the Cannon mp250 All-In-One Printer/Scanner"

From FreekiWiki
Jump to navigation Jump to search
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
INSTALLING THE PRINTER:
+
This is a multi-step process.  The printer and scanner must be installed separately from each other.
  
# ensure printer is plugged in and attached to computer
+
==Installing the Printer==
# Download mp250 printer driver from: http://support-au.canon.com.au/contents/AU/EN/0100236101.html
+
 
# uncompress file
+
# Plug the printer in to power and the computer.
 +
# [http://support-au.canon.com.au/contents/AU/EN/0100236101.html Download mp250 Printer Driver]
 +
# Uncompress file
 
# cd into directory
 
# cd into directory
# run install.sh
+
# Run
# follow prompts
+
install.sh
 +
 
 +
Then Follow prompts
  
NOW FOR THE SCANNER:
+
==Installing the Scanner==
  
# download mp250 scangear driver from: http://support-au.canon.com.au/contents/AU/EN/0100237401.html
+
# [http://support-au.canon.com.au/contents/AU/EN/0100237401.html Download mp250 Scangear Driver]
# follow these instructions:
+
# Follow these instructions:
# Open a terminal and In you terminal copy the following command:
+
# Run :
 
        
 
        
 
         sudo apt-get install libusb-dev build-essential
 
         sudo apt-get install libusb-dev build-essential
Line 18: Line 22:
 
This will install some required packages for the scanner
 
This will install some required packages for the scanner
  
Now we need to get the sane backend, we will do this via git. If you don’t already have git installed on your pc, run the following command in your terminal
+
Now we need to get the sane backend, we will do this via git. If you don’t already have git installed on your computer, run the following command
  
 
         sudo apt-get install git-core
 
         sudo apt-get install git-core
 +
 +
===Sane Backend===
  
 
Now we will need to fetch the sane backend by running the following command:
 
Now we will need to fetch the sane backend by running the following command:
Line 28: Line 34:
 
This will download the sane backend into the sane-backend folder within your home folder.
 
This will download the sane backend into the sane-backend folder within your home folder.
  
Once the download is finished you will notice that it is an uncompiled package, meaning that it will have to be compiled manually. Don’t worry, as it is quite a simple process to compile and install a package. Firstly move into the downloaded folder:
+
===Compiling the Backend===
 +
 
 +
Once the download is finished you will notice that it is an uncompiled package, meaning that it will have to be compiled manually. Don’t worry, as it is quite a simple process to compile and install a package.  
 +
 
 +
First move into the downloaded folder:
  
 
         cd sane-backends
 
         cd sane-backends
  
No we can run the configuration of the package with the following command:
+
Now we can run the configuration of the package with the following command:
  
 
       ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
 
       ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var
Line 45: Line 55:
  
 
         sudo make install
 
         sudo make install
 +
 +
===Post Installation===
  
 
The scanner is now installed, however the permissions still need to be set. To set the permissions we will create a new file that will allow usage of the scanner. In the terminal, open Gedit:
 
The scanner is now installed, however the permissions still need to be set. To set the permissions we will create a new file that will allow usage of the scanner. In the terminal, open Gedit:
Line 56: Line 68:
  
 
Save the file as <code>/etc/udev/rules.d/40-scanner-permissions.rules</code>
 
Save the file as <code>/etc/udev/rules.d/40-scanner-permissions.rules</code>
 
  
 
Your PIXMA MP250 scanner is now installed. You can now go do Applications->graphics and use simple scan or XSane to scan.
 
Your PIXMA MP250 scanner is now installed. You can now go do Applications->graphics and use simple scan or XSane to scan.
  
 
[[Category: Tech support]]
 
[[Category: Tech support]]

Latest revision as of 11:32, 13 October 2011

This is a multi-step process. The printer and scanner must be installed separately from each other.

Installing the Printer

  1. Plug the printer in to power and the computer.
  2. Download mp250 Printer Driver
  3. Uncompress file
  4. cd into directory
  5. Run
install.sh

Then Follow prompts

Installing the Scanner

  1. Download mp250 Scangear Driver
  2. Follow these instructions:
  3. Run :
       sudo apt-get install libusb-dev build-essential

This will install some required packages for the scanner

Now we need to get the sane backend, we will do this via git. If you don’t already have git installed on your computer, run the following command

       sudo apt-get install git-core

Sane Backend

Now we will need to fetch the sane backend by running the following command:

        git clone git://git.debian.org/sane/sane-backends.git

This will download the sane backend into the sane-backend folder within your home folder.

Compiling the Backend

Once the download is finished you will notice that it is an uncompiled package, meaning that it will have to be compiled manually. Don’t worry, as it is quite a simple process to compile and install a package.

First move into the downloaded folder:

       cd sane-backends

Now we can run the configuration of the package with the following command:

      ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var

Once the configuration is complete we are now ready to compile the package by entering the following command into the terminal:

       make

This process may take a while

Last step now is to install the package that was compiled in the previous step, note this last step requires the sudo (super user) command :

       sudo make install

Post Installation

The scanner is now installed, however the permissions still need to be set. To set the permissions we will create a new file that will allow usage of the scanner. In the terminal, open Gedit:

       sudo gedit

Once Gedit is opened, copy and paste the following text into the empty gedit file

SUBSYSTEM==”usb”, ENV{DEVTYPE}==”usb_device”, MODE:=”0666″
SUBSYSTEM==”usb_device”,MODE:=”0666″

Save the file as /etc/udev/rules.d/40-scanner-permissions.rules

Your PIXMA MP250 scanner is now installed. You can now go do Applications->graphics and use simple scan or XSane to scan.