Search

Canon IP1980 printer via Linux Ubuntu 10.04

Posted in Linux,Server Related,Technology by jdam on Jul 7th, 2010

When I started using ubuntu, one of my dream for  an open source software like ubuntu is to become fully supported by all proprietary hardware manufacturer. I know that, it would take more time before it came to reality, the  way how things are working right now are thru contributions by different geeks, good hackers, advocates & enthusiasts via the world wide web.

I’LL make this tutorial very easy for anybody, I already compiled all the resources that you need. Recently I bought a new CanonIP1980 printer, then I tried to use it via Ubuntu 10.04 Linux OS. Here are the step by step process how to do it:

Step 1:

- Get all the source that you need, click here

- After downloading, extract the files & you will see libcupsys & iP1900 debian driver.- Just in case you need an alternative download for iP1900_debian_printer.tar, here is the link

http://software.canon-europe.com/products/0010647.asp

- Open your terminal or console.

- If your using ubuntu 9.04 or lower than that, there is also other alternative way to get libcupsys2, try to do:

$ sudo apt-get install libcupsys2

- Next go to folder you used to download the driver:
$ cd /path/to/your/folder

- Untar the dowloaded file:
$ tar -xf iP1900_debian_printer.tar

- You will now have 3 files on this folder (+ original tar downloaded file).
(In my case I’ve untargz the “tar.gz” file inside, but don’t think that this is necessary, how ever if you wanted or need to doit:
$ tar xvzf cnijfilter-common-3.00-1.tar.gz)

Step 2:

Then let’s install:

$ sudo dpkg -i *deb
- This will install the two deb packages included in the downloaded tar file that will install the proper drivers in the computer database.

- If your done installing, exit the terminal.

Step 3:

-Go to CUPS web manager using any of your favorite browser, run http://127.0.0.1:631

- In the page go to Admin and find the button that says “Find new printer” and then follow the assistant.

- After you complete the assistant, verify the printer properties by going to system->administration->printing->then right click the printer to show the properties.

You can run test print page to verify that its working, then if it works, CONGRATULATIONS!

Hope this helps someone. If you have troubles making the tutorial works just post your concern here, I will be glad to answer your question.

Watch out for my next post, for the part 2 of this tutorial its about how to print via your network & how to lower down print resolution via Ubuntu.

Share

LINUX: How To Install IonCube Loader

Posted in Linux,Server Related,Technology by jdam on Oct 9th, 2009

This is my share on Installing IonCube to your LAMP. If you are someone who uses technology on a regular basis you will know how beneficial it is to get advice where you can. An example of this would be if you were looking to buy a new smartphone, you may read some O2 UK iphone 4 reviews and look at websites for advice. Here are some helpful steps to follow:

(STEP 1)
# tar -zxvf ioncube_loaders_lin_x86.tar.gz
# cd ioncube

(STEP 2)
- copy the php ioncube to your server root
# cp ioncube-loader-helper.php
Go to: http://localhost/PATH_/ioncube-loader-helper.php

You should see something like this:

PHP Version ___
Operating System Linux
Threaded PHP No
php.ini file /usr/PATH_/php.ini
Required Loader ioncube_loader_lin_#.#.so

(STEP 3)
- make directory under /usr/local and paste the required .so
# cd /usr/local
# mkdir /ioncube
# cp ioncube_loader_lin_#.#.so /usr/local/ioncube

(STEP 4)
Edit php.ini file:
# gedit /etc/php5/apache2/php.ini
OR
# gedit /usr/local/lib/php.ini

- At the end of the code add this
zend_extension = /usr/local/ioncube/ioncube_loader_lin_#.#.so

Save and Exit

Restart the server by typing:
# /etc/init.d/httpd restart

(STEP 5)
To confirm that ioncube is fully working
Go to: http://localhost/PATH_/ioncube-encoded-file.php

You should see something like this:
This file has been successfully decoded. ionCube Loaders are correctly installed.

Share

Webmin: How to create FTP accounts

Posted in Server Related,Tutorials by jdam on Oct 5th, 2009

Log in to your webmin, make sure to use the user with all permisions or the super user account.

webmin_login
Next is click on “system” and then choose “users and groups”.
Click create a new user, enter your username, leave homedir in automatic, let webmin pick the user id, select as shell /bin/sh, click on “normal password” and choose a password, leave all other as webmin is offering, and ckick create.

webmin_ftp

Finally use any of your favorite ftp and you can now access to your FTP.

enjoy!
-Jdam

Share