Saturday, November 6, 2010

Ubuntu 10.10, new Linux experience

Ubuntu 10.10 bring absolutely new experience of usability with much better multimedia/game experiencing. Since wine1.2 has full support most popular game such as World of Warcraft, it runs perfectly on my pc

PPStream moreover has released the first offical version for Linux, I have been expected this more than 3 years already.

Chinese Telecommunication moreover released MiguMusic Player, which is a free online streaming music player based on Java & QT4, it is the first Chinese online music player for Linux

The future, Linux has been launched many years yet sucks at the user desktop due to lacking of satisfactory software runs on it. However, more & more software company start to aware the grown of Linux users & the potential market, the Linux desktop is predictably becoming stronger though there is a quite far away between it rival – Windows !!! yet we all expecting.

Wednesday, November 3, 2010

Integrate open source secureimage library with CodeIgniter

Heres how:
1.) Download the open source securimage library from:
http://www.phpcaptcha.org/.

2.) Copy the library in your codeigniter’s application/library folder.

3.) Create a function in your codeigniter’s controller’s class (example index)

 function securimage() {$this->load->library('securimage');$img = new Securimage();$img->show(); // alternate use:  $img->show('/path/to/background.jpg');}

4.) In the view where you will place the captcha, insert this line:

<img src="<?=site_url('index/securimage')?>" alt='captcha' />

site_url() – gives the base url with index.php in the end
index – controller
securimage – is the function

Monday, November 1, 2010

Build mini home server with sheevaplug

If you are reading this artile, probably you are looking for a mini home server, it doesn’t need to be powerful yet can do the most usual task such as http server, ftp, ssh, torrent download client, svn, git server. it should be small & quiet. This article introduce a new way of building a mini home linux server with Sheevaplug, a robust Linux ARM.

Sheevaplug cames with 1.2G cpu & 512 ram plus 512 flash storage, the release date was March 2009 so it is not a new product, I received it immediately after it released, & have been using it for quite a while.

There are a lot of article introduces to install another Linux such as debian, fedora on Sheevaplug, & install the OS to a external harddrive, yet I’m lazy :), I wanna do something simple really, I dont wanna alter the boot to make things complicate as I believe technology is to make the life easier :D.

So what can sheevaplug brings to us, as far as I testing, in its 512MB internal memory, you can install following softwares

nginx
php5 & some externsions such as curl, gd2
mysql server 5
torrentflux
samba server
pureftpd
sendmail
python

With these software, you can do a lot of things with your imagination.
A Bittorrent Client, a Samba Server stores your media file, host a personal blog such as wordpress or any php based web application.

The installation is really simple, Sheevaplug official released UBUNTU came with aptitude command

$aptitude php5 nginx mysql-server-5 pureftpd torrentplux samba

Now you will have used around 420MB of the flash disk, there are still 50MB free space left, I will strongly recommend use an external harddisk to store your data files. Currently I’m using an 120 GB USB external harddisk which was bought in 2003.

  1. Format your USB external harddisk.
    $mkfs.ext3 /dev/sda1
  2. Create a directory /mnt/usb.
    $mkdir /mnt/usb
  3. Mount USB drive.
    $mount -t /dev/sda1 /mnt/usbln -s /data /mnt/usb
  4. Add it in rc.local
    mount -t /dev/sda1 /mnt/usb

Now you have the usb dirve which is mounted in /mnt/usb & link to /data, then you can alter the configure file for mysql,nginx,pure-ftpd data & log files in to /data/mysql, /data/logs/nginx etc.

Finally, you obtain a full running nignx+php+fastcgi+mysql+pureftpd+torrentflux running in a sheevaplug, only used its 420mb internal flash drive.