<?xml version="1.0"?>
<?xml-stylesheet href="http://bskahan.etria.com/rss2.css" type="text/css"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:xhtml="http://www.w3.org/1999/xhtml"
     version="2.0">

    <channel>

        <title>Convene - How-To</title>
        <link>http://ngoinabox.mahiti.org/howtos</link>
        <description>Installation | Troubleshooting and more on Ubuntu Linux
</description>

        <generator>Plone 2.0</generator>
        <!-- TODO
        <lastBuildDate>Mon, 30 Sep 2002 11:00:00 GMT</lastBuildDate>
        <copyright>Copyright 1997-2002 Dave Winer</copyright>
        <docs>http://backend.userland.com/rss</docs>
        <category domain="Syndic8">1765</category>
        <managingEditor>dave@userland.com</managingEditor>
        <webMaster>dave@userland.com</webMaster>
        -->

        <!-- TODO: Should there be an individual image associatable with each
        Weblog object?  I think so... -->
        <image>
            <url>http://ngoinabox.mahiti.org/logo.jpg</url>
			<title>How-To</title>
			<link>http://ngoinabox.mahiti.org/howtos</link>
        </image>

        
            
                <item>
                    <title>cc avenue payment integration in Django</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/02/09/cc-avenue-payment-integration-in-django</link>
                    <dc:creator>rajeev</dc:creator>

                    <description>                        
						<h2>Payment gateway integration with ccavenue for the Django web framework.

Author :Charantej  (charantej.s@mahiti.org)</h2>
						<div>Here is the code :
<div>&nbsp;</div>
<div>&nbsp;<a title="ccavenue payment integration in Django" class="internal-link" href="../../../../../ccavenue.pdf">payment gateway source code(python)</a></div>
</div>
                    </description>

                    
                        <category>source code</category>
                    

                    <pubDate>2010-02-09T14:41+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Change permission for only folders</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/23/change-permission-for-only-folders</link>
                    <dc:creator>mahitiAdmin</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<p><span dir="ltr"><strong>find . -type d -exec chmod 0755 {} \;</strong><br />(similiar to)<br /><strong>chmod -R u+rwX,go+rX .</strong></span></p>
</div>
                    </description>


                    <pubDate>2010-01-23T12:03+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Configuring Asterisk and Celliax with Centos5.3</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/configuring-asterisk-and-celliax-with-centos53</link>
                    <dc:creator>mahitiAdmin</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<p>These are the steps followed for installing Celliax with Asterisk</p>
<p>Step1: Install all Dependencies</p>
<p>&nbsp;&nbsp; #&nbsp; yum -y upgrade<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install "Development Tools"<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y group install "Development Tools"<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y groupinstall "Development Tools"<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y search ncurses<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install ncurses.i386 ncurses-devel.i386 php-ncurses.i386<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y search termcap<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install libtermcap.i386 libtermcap-devel.i386<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install kernel-devel<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install gcc gcc-c++<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install kernel-xen-devel<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install mlocate lynx tar wget nmap bzip2 mod_ssl crontabs vixie-cron<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install unixODBC unixODBC-devel libtool-ltdl libtool-ltdl-devel<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install mysql-connector-odbc<br />&nbsp;&nbsp;&nbsp; #&nbsp; vim /etc/odbcinst.ini<br />&nbsp;&nbsp;&nbsp; #&nbsp; yum -y install mysql mysql-devel mysql-server <br />&nbsp;&nbsp;&nbsp; #&nbsp; init 6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (restart system)</p>
<p>Step 2: Install Asterisk and Dahdi</p>
<p>&nbsp;&nbsp;&nbsp; #&nbsp; cd /usr/src/<br />&nbsp;&nbsp;&nbsp; #&nbsp; ls<br />&nbsp;&nbsp;&nbsp; #&nbsp; wget http://downloads.digium.com/pub/asterisk/asterisk-1.4-current.tar.gz <br />&nbsp;&nbsp;&nbsp; #&nbsp; wget http://downloads.digium.com/pub/asterisk/asterisk-addons-1.4-current.tar.gz <br />&nbsp;&nbsp;&nbsp; #&nbsp; wget http://downloads.digium.com/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz <br />&nbsp;&nbsp;&nbsp; #&nbsp; tar zxf asterisk-1.4-current.tar.gz <br />&nbsp;&nbsp;&nbsp; #&nbsp; tar zxf asterisk-addons-1.4-current.tar.gz <br />&nbsp;&nbsp;&nbsp; #&nbsp; tar zxf dahdi-linux-complete-current.tar.gz <br />&nbsp;&nbsp;&nbsp; #&nbsp; mv dahdi-linux-complete-2.2.0.2+2.2.0/ dahdi-linux<br />&nbsp;&nbsp;&nbsp; #&nbsp; mv asterisk-1.4.27.1/ asterisk-1.4.27<br />&nbsp;&nbsp;&nbsp; #&nbsp; cd dahdi-linux<br />&nbsp;&nbsp;&nbsp; #&nbsp; make all <br />&nbsp;&nbsp;&nbsp; #&nbsp; make install <br />&nbsp;&nbsp;&nbsp; #&nbsp; make config<br />&nbsp;&nbsp;&nbsp; #&nbsp; chkconfig dahdi on <br />&nbsp;&nbsp;&nbsp; #&nbsp; service dahdi start<br />&nbsp;&nbsp;&nbsp; #&nbsp; cd /usr/src/asterisk-1.4.27/<br />&nbsp;&nbsp;&nbsp; #&nbsp; make clean <br />&nbsp;&nbsp;&nbsp; #&nbsp; ./configure<br />&nbsp;&nbsp;&nbsp; #&nbsp; make menuselect <br />&nbsp;&nbsp;&nbsp; #&nbsp; make <br />&nbsp;&nbsp;&nbsp; #&nbsp; make install<br />&nbsp;&nbsp;&nbsp; #&nbsp; make samples<br />&nbsp;&nbsp;&nbsp; #&nbsp; make progdocs<br />&nbsp;&nbsp;&nbsp; #&nbsp; make config <br />&nbsp;&nbsp;&nbsp; #&nbsp; chkconfig asterisk on<br />&nbsp;&nbsp;&nbsp; #&nbsp; asterisk -vvvvvvvvvvvvvvvvvvvc<br />&nbsp;&nbsp;&nbsp; #&nbsp; service asterisk start<br />&nbsp;&nbsp;&nbsp; #&nbsp; cd /usr/src/asterisk-addons-1.4.9/<br />&nbsp;&nbsp;&nbsp; #&nbsp; make clean <br />&nbsp;&nbsp;&nbsp; #&nbsp; ./configure <br />&nbsp;&nbsp;&nbsp; #&nbsp; make menuselect<br />&nbsp;&nbsp;&nbsp; #&nbsp; make <br />&nbsp;&nbsp;&nbsp; #&nbsp; make install<br />&nbsp;&nbsp;&nbsp; #&nbsp; make samples <br />&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp; mysql -u root -p<br />&nbsp;&nbsp;&nbsp; #&nbsp; /etc/init.d/mysqld start<br />&nbsp;&nbsp;&nbsp; # &nbsp;mysql -u root -p<br />&nbsp;&nbsp; &nbsp;# &nbsp;init 6 <br />&nbsp;&nbsp; &nbsp;#&nbsp; asterisk -r</p>
<p>Step 3: Download and Compile Celliax</p>
<p>To build celliax on Linux you need to install ALSA-dev libs<br /><br />You can do it on Debian/Ubuntu with:<br /># apt-get install libasound2-dev<br />You can do it on Fedora/CentOS with:<br /># yum --nogpgcheck -y install alsa-lib-devel<br /><br /># cd /usr/src<br /># wget http://www.gsmopen.org/sites/default/files/chan_celliax.tgz<br /># tar xvf chan_celliax.tgz<br /># cd chan_celliax<br /># make clean<br /># make<br /><br />--edit and copy celliax.conf in the asterisk configuration<br />directory<br />--copy ciapalo (or your program that accepts text in stdini) in<br />the location defined in celliax.conf (sms_receiving_program)<br />--edit modules.conf and put noload in front of *BOTH* chan_oss.so<br />AND chan_alsa.so AND chan_console.so<br />--copy asound.conf in /etc/asound.conf</p>
<p>For more info refer README of chan_celliax</p>
<p>&nbsp;</p>
<p>Thats it restart asterisk and u have celliax working !!!</p>
</div>
                    </description>


                    <pubDate>2010-01-22T19:29+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Installing Festival and setting voice to female</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/installing-festival-and-setting-voice-to-female</link>
                    <dc:creator>mahitiAdmin</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<div dir="ltr">First you need to install festival package<em><br /><br /># aptitude install festival festival-freebsoft-utils</em><br /><br />In a terminal:<br /> <br />Test festival:<br /><em># echo  "Hello World"| festival --tts</em><br /><br />To copy to wav:<br /><em># echo "Hello World" | text2wave -o Hello_World.wav</em><br /><br />To read man pages of cron:<br /><em>#man cron | festival --tts</em><br /><br />To read a saved file:<br /><em>#festival --tts snort-usage.odt</em><br /><br />To change voice to a female:<br /><br /><em>#cd /usr/share/festival/voices/english</em><br /><br /><em>#wget http://festvox.org/packed/festival/latest/festvox_cmu_us_slt_arctic_hts.tar.gz</em><br /><em>#tar xvf festvox_cmu_us_slt_arctic_hts.tar.gz</em><br /><em>#mv festival/lib/voices/us/cmu_us_slt_arctic_hts</em> .<br /><br />Check if the female voice is loading<br /><br /><em>#festival</em><br />
<div>Festival Speech Synthesis System 1.95:beta July 2004<br />Copyright (C) University of Edinburgh, 1996-2004. All rights reserved.<br />For details type `(festival_warranty)'<br /><em>festival&gt; (voice_cmu_us_slt_arctic_hts)&nbsp;&nbsp;&nbsp; &lt;== Set Voice<br /></em></div>
<div>&nbsp;cmu_us_slt_arctic_hts<em><br /></em></div>
<div><em>festival&gt; (SayText "this is a test text for demo") &lt;== </em>Hear the voice<em><br /></em>&nbsp;#&lt;Utterance 0xb7216598&gt;<em><br />festival&gt; </em><br /><br /></div>
If it works,<br />
<div>PHPAGI for asterisk uses text2wave which is a script based on Festival.<br /><br />text2wave can be set to the voice using <br />
<div><em>#text2wave -eval "(voice_cmu_us_slt_arctic_hts)"</em><br /><br />so a wrapper script is created in /usr/local/bin/text2wave<br /><em>#!/bin/bash<br />/usr/bin/text2wave -eval "(voice_cmu_us_slt_arctic_hts)" "$@"<br /></em><br />this script will give sometimes "Segmentation fault"<br />so a replacement of text2wave is taken from <a href="http://www.google.com/url?q=http%3A%2F%2Firlp.kc6hur.net%2Fdownloads%2Ftext2wave&amp;sa=D&amp;sntz=1&amp;usg=AFrqEzdVN3TnRhOUoptEjmQxFb6tzo-fYw">http://irlp.kc6hur.net/downloads/text2wave</a>
<br />and copied to /usr/bin<br />(this one is bug-fixed version)<br /><br />You have a successfully change the voice!<br />phew!<br /><br />Ref:<br /><a href="http://www.google.com/url?q=http%3A%2F%2Ffestvox.org%2Fpacked%2Ffestival%2Flatest%2F&amp;sa=D&amp;sntz=1&amp;usg=AFrqEze0Hor_hJpkL9EozXTrT4uBjvpIqQ">http://festvox.org/packed/festival/latest/</a><br /><a href="http://www.google.com/url?q=http%3A%2F%2Fforums.debian.net%2Fviewtopic.php%3Ff%3D16%26t%3D40548&amp;sa=D&amp;sntz=1&amp;usg=AFrqEzfDu03GnmbXM55dHkLDIpeZDJevaw">Debian User Forums • View topic - Festival Text to Speech</a></div>
</div>
</div>
</div>
                    </description>


                    <pubDate>2010-01-22T19:07+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Dumping SQLite Database</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/dumping-sqlite-database</link>
                    <dc:creator>mahitiAdmin</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<p>The command to dump a sqlite database from a .db file in terminal</p>
<p>$ sqlite3 database.db .dump &gt; filename.sql</p>
<p>If you are in Ubuntu, you can install the gui for sqlite: sqlite-browser</p>
</div>
                    </description>


                    <pubDate>2010-01-22T19:04+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>To see which os is running and last reboot date</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/to-see-which-os-is-running-and-last-reboot-date</link>
                    <dc:creator>mahitiAdmin</dc:creator>

                    <description>                        
						<h2>Some system commands for Linux</h2>
						<div>
<p>$&nbsp; cat /etc/issue -----------------------&gt; To see the version of os<br />$&nbsp; who -b&nbsp;&nbsp;&nbsp;&nbsp; ---------------&gt; To see the last reboot<br />$ last reboot --------------&gt; last shutdown<br />$ last shutdown ------------&gt; last shutdown<br />$ last ---------------------&gt; It will gives all last userlog with IP, system reboot time.<br />$&nbsp; last publico -a ----------------------&gt; only display the history for a given user.</p>
</div>
                    </description>


                    <pubDate>2010-01-22T18:59+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>System starts in low graphics mode(3d disabled)</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/system-starts-in-low-graphics-mode3d-disabled</link>
                    <dc:creator>rajeev</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<p>Since Ubuntu comes with open source drivers in a default installation,Nvidia drivers have to be installed later.</p>
<p>For NVIDIA card owners:</p>
<p>Install the drivers from a terminal window with the command :</p>
<p>sudo apt-get install nvidia-glx-185 (pressing tab will auto complete all the package names)</p>
<p>Restart system.</p>
<p>Or&nbsp;</p>
<p>You could try installing graphically from System&gt;administration&gt;Hardware drivers</p>
<p>&nbsp;</p>
</div>
                    </description>


                    <pubDate>2010-01-22T12:41+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Steps to install the zabbix server on ubuntu</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/21/steps-to-install-the-zabbix-server-on-ubuntu</link>
                    <dc:creator>rajeev</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<h2><strong>Prerequisites to install zabbix server:</strong></h2>
<p>&nbsp;</p>
<h2>&nbsp;&nbsp;&nbsp; Intended for Zabbix 1.6.5 on Ubuntu Feisty Fawn 7.04<br />
      &nbsp;&nbsp;&nbsp; Install pre-requisites:<br />
      &nbsp;&nbsp;&nbsp; Apache<br />
      &nbsp;&nbsp;&nbsp; MySQL-Server<br />
      &nbsp;&nbsp; &nbsp;PHP5<br />
      &nbsp;&nbsp; &nbsp;Net-Snmp libraries</h2>
<p>&nbsp;&nbsp;&nbsp;$ sudo aptitude install build-essentials mysql-server php5 php5-gd snmp &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; libsnmp9-dev&nbsp;&nbsp;&nbsp;&nbsp; snmpd</p>
<p>&nbsp;<span style="color: rgb(0, 0, 0);" class="Apple-style-span"><strong>1 - Make the zabbix user and group:**</strong></span></p>
<p>&nbsp;&nbsp;&nbsp; $ sudo adduser zabbix</p>
<p>
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;enter in new password</p>
<p>
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;confirm</p>
<p>
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;use the remaining defaults.</p>
<p>Add zabbix to the admin group</p>
<p>$ sudo adduser zabbix admin</p>
<p><span style="color: rgb(0, 0, 0);" class="Apple-style-span"><strong>2 - Download and Untar the sources:</strong></span></p>
&nbsp;&nbsp;&nbsp;&nbsp;
<p>$su - zabbix</p>
<p>
      &nbsp;&nbsp;&nbsp; $ wget http://internap.dl.sourceforge.net/sourceforge/zabbix/zabbix-1.4.tar.gz</p>
<p>
      &nbsp;&nbsp;&nbsp; $ tar zxvpf zabbix-1.4.tar.gz</p>
<p>&nbsp;<span style="color: rgb(0, 0, 0);" class="Apple-style-span"><strong>3 - Create a zabbix database and populate it:</strong></span></p>
&nbsp;&nbsp; &nbsp;&nbsp;<span class="Apple-style-span">$ mysql -u root -p</span>
<p>
      &nbsp;&nbsp;&nbsp; $ create database zabbix;</p>
<p>
      &nbsp;&nbsp;&nbsp; $ quit;</p>
<p>&nbsp;&nbsp;$ mysql -u root zabbix -p &lt; /home/zabbix/zabbix-1.4/create/schema/mysql.sql</p>
&nbsp;$ mysql -u root zabbix -p &lt; /home/zabbix/zabbix-1.4/create/data/data.sql
<p>&nbsp;</p>
<h3><strong>4 - Configure, compile and install the server:</strong></h3>
<p>&nbsp;&nbsp;&nbsp;$ cd zabbix-1.4/</p>
<p>
      &nbsp;&nbsp;&nbsp; $ ./configure --prefix=/usr --with-mysql --with-net-snmp \</p>
<p>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; --enable-server --enable-agent &amp;&amp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp;$ make</p>
<p>
      &nbsp;&nbsp;&nbsp; $ sudo checkinstall</p>
<p>&nbsp;<span style="color: rgb(0, 0, 0);" class="Apple-style-span"><strong>5 - Prepare the rest of the system:</strong></span></p>
&nbsp;&nbsp; &nbsp; &nbsp;<span class="Apple-style-span">$ sudo nano /etc/services</span>
<p>&nbsp;&nbsp;Add at the end:</p>
<p>&nbsp;&nbsp;zabbix_agent 10050/tcp # Zabbix ports</p>
<p>&nbsp;zabbix_trap 10051/tcp</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp;Save and exit.</p>
<p>
      &nbsp;&nbsp;&nbsp; $ Sudo mkdir /etc/zabbix</p>
<p>
      &nbsp;&nbsp;&nbsp; $ sudo chown -R zabbix.zabbix /etc/zabbix/</p>
<p>
      &nbsp;&nbsp;&nbsp; $ cp misc/conf/zabbix_* /etc/zabbix/</p>
<p>&nbsp;&nbsp;&nbsp;Edit /etc/zabbix/zabbix_agentd.conf:</p>
<p>
      &nbsp;&nbsp;&nbsp; $ nano /etc/zabbix/zabbix_agentd.conf</p>
<p>&nbsp;Make sure that the Server parameter points to the server
address, for the agent that runs on the server it is like this:</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Server=127.0.0.1</p>
<p>&nbsp;Edit /etc/zabbix/zabbix_server.conf:</p>
<p>&nbsp;nano /etc/zabbix/zabbix_server.conf</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp;For small sites this default file will do, however if you are
into tweaking your config for your 10+ hosts site, this is the place.</p>
<p>&nbsp;&nbsp; Change this:</p>
<p>
      &nbsp;&nbsp; &nbsp;# Database password</p>
<p>
      &nbsp;&nbsp; &nbsp;# Comment this line if no password used</p>
<p>&nbsp;DBPassword=Secret</p>
<p>&nbsp;Start the server :</p>
<p>&nbsp;zabbix_server</p>
<p>&nbsp;Start the client:</p>
<p>&nbsp;zabbix_agentd &amp;</p>
<p>&nbsp;</p>
<h3><strong>6 - Configure web interface:</strong></h3>
&nbsp;&nbsp;&nbsp;
<p> $ mkdir /home/zabbix/public_html</p>
<p>
      &nbsp;&nbsp;&nbsp; $ cp -R frontends/php/* /home/zabbix/public_html/</p>
<p>&nbsp;Edit /etc/apache2/sites-enabled/000-default:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; $ sudo nano /etc/apache2/sites-enabled/000-default</p>
<p>&nbsp;Work into file:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; Alias /zabbix/ /home/zabbix/public_html/</p>
<p>
      &nbsp;&nbsp; &nbsp;&lt;Directory /home/zabbix/public_html&gt;</p>
<p>
      &nbsp;&nbsp; &nbsp;AllowOverride FileInfo AuthConfig Limit Indexes</p>
<p>
      &nbsp;&nbsp; &nbsp; Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec</p>
<p>
      &nbsp;&nbsp; &nbsp;&lt;Limit GET POST OPTIONS PROPFIND&gt;</p>
<p>
      &nbsp;&nbsp; &nbsp;Order allow,deny</p>
<p>
      &nbsp;&nbsp; &nbsp;Allow from all</p>
<p>
      &nbsp;&nbsp; &nbsp;&lt;/Limit&gt;</p>
<p>
      &nbsp;&nbsp; &nbsp;&lt;LimitExcept GET POST OPTIONS PROPFIND&gt;</p>
<p>
      &nbsp;&nbsp; &nbsp;Order deny,allow</p>
<p>
      &nbsp;&nbsp; Deny from all</p>
<p>
      &nbsp;&nbsp;&nbsp; &lt;/LimitExcept&gt;</p>
<p>
      &nbsp;&nbsp; &nbsp;&lt;/Directory&gt;</p>
<p>&nbsp;Save and exit.</p>
<p>&nbsp;Make php.ini adjustments:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; $ sudo nano /etc/php5/apache2/php.ini</p>
<p>&nbsp;Change the following values:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; max_execution_time = 300 ; Maximum execution time of each script, in seconds</p>
<p>
      &nbsp;&nbsp; &nbsp;date.timezone = America/Kentucky/Louisville</p>
<p>
      &nbsp;&nbsp; &nbsp;(use this url to find your correct timezone format: http://us3.php.net/manual/en/timezones.php )</p>
<p>&nbsp;Restart Apache:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp; $ sudo /etc/init.d/apache2 restart</p>
<p>&nbsp;Now point your browser to:</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; http://&lt;servername or ip&gt;/zabbix/</p>
<p>&nbsp;1. Introduction</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; read and click Next</p>
<p>&nbsp;2. License Agreement</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Read, check 'I Agree', click Next</p>
<p>&nbsp;3. Check of Pre-Requisites</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Fix any problems, click retry. Click Next when all pre-requisites are OK.</p>
<p>&nbsp;4. Configure DB Connection</p>
<p>&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Enter appropriate settings and click Test Connection.</p>
<p>
      Click Next when OK.</p>
<p>&nbsp;5. Pre-Installation Summary</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Verify installation settings, click Next.</p>
<p>&nbsp;6. Install</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Click Save Configuration file and save to machine.</p>
<p>
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Copy zabbix.conf.php to /home/zabbix/public_html/conf/zabbix.conf.php</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; One way to do this from a desktop machine (requires ssh installed):</p>
<p>
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;scp zabbix.conf.php zabbix@&lt;serverip&gt;:/home/zabbix/public_html/conf/</p>
<p>&nbsp;Click Retry and click Next when OK.</p>
<p>&nbsp;7. Finish</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Click Finish to complete installation.</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Your New Zabbix install will now be shown.</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; Log in with username: Admin</p>
<p>
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;No Password</p>
<p>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; First go to the tab Configuration and then Hosts.</p>
<p align="left">&nbsp;&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp; Now create a host-group, see that you can give it some templates,
e.g: Application.MySQL, Host.SNMP, Host.Standalone, Host.Unix.<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Then some hosts:<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Select your host-group and use Link with Template Host.Unix<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Now a lot of triggers are imported and the game begins.<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Go to the monitoring tab and watch the latest values roll in.</p>
<p align="left">&nbsp;</p>
<p align="left">
<strong>Installing agent </strong>:</p>
<p align="left">
      Download the server package and install only the agent</p>
<p align="left">
 ./configure --enable-agent</p>
<p align="left">
make<br />
      &nbsp;$ sudo checkinstall</p>
<p align="left">
sudo nano /etc/services<br />
      &nbsp;&nbsp;&nbsp; Add at the end:<br />
      &nbsp;&nbsp;&nbsp; zabbix_agent 10050/tcp # Zabbix ports<br />
      &nbsp;&nbsp; &nbsp; zabbix_trap 10051/tcp</p>
<p align="left">&nbsp;</p>
<div id="sites-canvas-bottom-panel">
<div id="COMP_page-subpages">&nbsp;</div>
<div id="COMP_page-attachments" class="sites-canvas-bottom-no-items">
<div id="sites-attachment-wrapper" class="sites-canvas-bottom-panel-wrapper">
<h3>
<p>$ mkdir /home/zabbix/public_html</p>
<p>&nbsp;&nbsp; &nbsp;$ cp -R frontends/php/* /home/zabbix/public_html/</p>
<p>&nbsp;</p>
<p>Edit /etc/apache2/sites-enabled/000-default:</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp;$ sudo nano /etc/apache2/sites-enabled/000-default</p>
<p>&nbsp;</p>
<p>Work into file:</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp;Alias /zabbix/ /home/zabbix/public_html/</p>
<p>&nbsp;&nbsp; &nbsp;&lt;Directory /home/zabbix/public_html&gt;</p>
<p>&nbsp;&nbsp; &nbsp;AllowOverride FileInfo AuthConfig Limit Indexes</p>
<p>&nbsp;&nbsp; &nbsp; Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec</p>
<p>&nbsp;&nbsp; &nbsp;&lt;Limit GET POST OPTIONS PROPFIND&gt;</p>
<p>&nbsp;&nbsp; &nbsp;Order allow,deny</p>
<p>&nbsp;&nbsp; &nbsp;Allow from all</p>
<p>&nbsp;&nbsp; &nbsp;&lt;/Limit&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&lt;LimitExcept GET POST OPTIONS PROPFIND&gt;</p>
<p>&nbsp;&nbsp; &nbsp;Order deny,allow</p>
<p>&nbsp;&nbsp; Deny from all</p>
<p>&nbsp;&nbsp; &nbsp;&lt;/LimitExcept&gt;</p>
<p>&nbsp;&nbsp; &nbsp;&lt;/Directory&gt;</p>
<p>&nbsp;</p>
<p>Save and exit.</p>
<p>&nbsp;</p>
<p>Make php.ini adjustments:</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp;$ sudo nano /etc/php5/apache2/php.ini</p>
<p>&nbsp;</p>
<p>Change the following values:</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp;max_execution_time = 300 ; Maximum execution time of each script, in seconds</p>
<p>&nbsp;&nbsp; &nbsp;date.timezone = America/Kentucky/Louisville</p>
<p>&nbsp;&nbsp; &nbsp;(use this url to find your correct timezone format: http://us3.php.net/manual/en/timezones.php )</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Restart Apache:</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp;$ sudo /etc/init.d/apache2 restart</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Now point your browser to:</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;http://&lt;servername or ip&gt;/zabbix/</p>
<p>&nbsp;</p>
<p>1. Introduction</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;read and click Next</p>
<p>&nbsp;</p>
<p>2. License Agreement</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Read, check 'I Agree', click Next</p>
<p>&nbsp;</p>
<p>3. Check of Pre-Requisites</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Fix any problems, click retry. Click Next when all pre-requisites are OK.</p>
<p>&nbsp;</p>
<p>4. Configure DB Connection</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Enter appropriate settings and click Test Connection.</p>
<p>Click Next when OK.</p>
<p>&nbsp;</p>
<p>5. Pre-Installation Summary</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Verify installation settings, click Next.</p>
<p>&nbsp;</p>
<p>6. Install</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Click Save Configuration file and save to machine.</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Copy zabbix.conf.php to /home/zabbix/public_html/conf/zabbix.conf.php</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;One way to do this from a desktop machine (requires ssh installed):</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;scp zabbix.conf.php zabbix@&lt;serverip&gt;:/home/zabbix/public_html/conf/</p>
<p>&nbsp;</p>
<p>Click Retry and click Next when OK.</p>
<p>&nbsp;</p>
<p>7. Finish</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Click Finish to complete installation.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Your New Zabbix install will now be shown.</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;Log in with username: Admin</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;No Password</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;First go to the tab Configuration and then Hosts.</p>
<br /></h3>
<p align="left">
&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp; &nbsp;Now create a host-group, see that you can give it some templates,
e.g: Application.MySQL, Host.SNMP, Host.Standalone, Host.Unix.<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Then some hosts:<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Select your host-group and use Link with Template Host.Unix<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Now a lot of triggers are imported and the game begins.<br />
<br />
      &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;Go to the monitoring tab and watch the latest values roll in.</p>
<p align="left">&nbsp;</p>
<p align="left">
<strong>Installing agent </strong>:</p>
<p align="left">
      Download the server package and install only the agent</p>
<p align="left">
 ./configure --enable-agent</p>
<p align="left">
make<br />
      &nbsp;$ sudo checkinstall</p>
<p align="left">
sudo nano /etc/services<br />
      &nbsp;&nbsp;&nbsp; Add at the end:<br />
      &nbsp;&nbsp;&nbsp; zabbix_agent 10050/tcp # Zabbix ports<br />
      &nbsp;&nbsp; &nbsp; zabbix_trap 10051/tcp</p>
<p align="left">&nbsp;</p>
<div id="sites-canvas-bottom-panel">
<div id="COMP_page-subpages">&nbsp;</div>
<div id="COMP_page-attachments" class="sites-canvas-bottom-no-items">
<div id="sites-attachment-wrapper" class="sites-canvas-bottom-panel-wrapper">
<h3>
<a href="javascript:;">
<span class="sites-attachment-icon"></span>
</a><a href="javascript:;"><strong></strong></a></h3>
</div>
</div>
</div>
<h3><a href="javascript:;"><strong></strong></a></h3>
</div>
</div>
</div>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3></h3>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3></h3>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
                    </description>

                    
                        <category>Installation</category>
                    

                    <pubDate>2010-01-21T20:13+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Installation of karl3 in ubuntu</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/21/installation-of-karl3-in-ubuntu</link>
                    <dc:creator>rajeev</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<h1>Download and Installation</h1>
<p>As of the 3.0 release, KARL is relatively straightforward for both
developers and evaluators to download and install.  In particular,
there is <strong>no installation for Windows</strong>. See the <a href="http://www.google.com/url?q=http%3A%2F%2Fkarlproject.org%2Ffaq.html&amp;sa=D&amp;sntz=1&amp;usg=AFrqEzfdkJlJwQD27XgH72OZU0w4IZgbEw"><em>FAQ</em></a> for
an explanation and suggestion.</p>
<div>
<p>Note</p>
<p>Note: The most up-to-date installation information is in the
<a href="http://www.google.com/url?q=http%3A%2F%2Fdev.karlproject.org%2Fdevguide%2Finstallation.html&amp;sa=D&amp;sntz=1&amp;usg=AFrqEzcDMbk8dMaPtImRGWccdviHEmNVtw">developer installation page</a>
and the README.txt that comes in the software.</p>
</div>
<div>
<h2><a name="TOC-Prerequisites-for-Evaluation"></a>Prerequisites for Evaluation</h2>
<p>To get KARL running quickly as an evaluation, you can skip many of the steps
used in deployment. Before getting started, make sure you have the following
setup.</p>
<ol><li><strong>Python 2.5.x</strong>. While you can use a Python package installed by your
system, we HIGHLY recommend that you build your own Python. Make sure you
include SSL support in the Python.</li><li><strong>Subversion</strong>. You need a way to check out the KARL software from the
repository and keep it up to date.</li><li><em>virtualenv</em> (optional but recommended). Use Python’s easy_install to
install virtualenv and isolate it from changes in your Python
configuration.</li><li><em>Converters</em> (optional but recommended). Indexing content in PDF,
Word, etc. requires some add-on packages. Look in the software’s
README.txt for more detail. This is optional and can be done
after an installation of KARL.</li></ol>
</div>
<h2><a name="TOC-Installation-for-the-Impatient"></a>Installation for the Impatient</h2>
<p>Want to see what’s involved before reading the <a href="http://www.google.com/url?q=http%3A%2F%2Fdev.karlproject.org%2Fdevguide%2Finstallation.html&amp;sa=D&amp;sntz=1&amp;usg=AFrqEzcDMbk8dMaPtImRGWccdviHEmNVtw">developer installation
instructions</a>
or the README.txt? Here are the immediate steps to get a running
KARL.</p>
<ol><li>svn co http://osi.agendaless.com/bfgsvn/karlsample/trunk/ karl3</li><li>cd karl3</li><li>/path/to/your/python/bin/virtualenv --no-site-packages .</li><li>bin/python ./bootstrap.py</li><li>bin/buildout -U</li><li>Wait a number of minutes while lots of work is done.</li><li>download and install repoz.bfg.formish.<br /></li><li>bin/supervisord</li><li>Visit in your browser: <a href="http://www.google.com/url?q=http%3A%2F%2Flocalhost%3A6543%2F&amp;sa=D&amp;sntz=1&amp;usg=AFrqEzeFrq32Q0Zx3mpeHLi5fxiT_hG7Zg">http://localhost:6543/</a>
and login as username admin and password admin</li><li>When finished: bin/supverisorctl shutdown</li></ol>
</div>
                    </description>


                    <pubDate>2010-01-21T20:00+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Webalizer Report Generating</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/webalizer-report-generating</link>
                    <dc:creator>mahitiAdmin</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<div dir="ltr">
<p><em><strong>Step 1:  </strong>login
to the particular website server (eg. Mahiti.org at 192.168.x.x)</em></p>
<p>&nbsp;</p>
<p>$
ssh username@hostname</p>
<p>&nbsp;</p>
<p><em><strong>Step 2: </strong>
After loggen in to above server, go to apache2 folder as below:</em></p>
<p>&nbsp;</p>
<p>$
cd /var/log/apache2</p>
<p>&nbsp;</p>
<p><em><strong>Step 3: </strong>
execute below command to open all access.log files and find the
mentionded website (mahiti.org) in all the 	access.log files and
store in a file (linweb)</em></p>
<p>&nbsp;</p>
<p>$cat
access.log access.log.1 | grep mahiti.org &gt;&gt; linweb</p>
<p>&nbsp;</p>
<p><em><strong>Step 4: 	</strong>create
a script file to sort the linweb file</em></p>
<p>the final file will be in jumbled time format. Webalizer stops when it reaches todays date.&nbsp; As a result dont forget to sort the final file so that the webalizer analyzes all the entries<em><br /></em></p>
<p>&nbsp;</p>
<p>$sudo
vi sort.sh</p>
<p>&nbsp;</p>
<p><em><strong>Step 5: 	</strong>copy
the below text into newly created (sort.sh) script file then save &amp;
exit.</em></p>
<p>&nbsp;</p>
<p><em>#!/bin/sh
<br />if [ ! -f $1 ]; <br />then <br />echo "Usage: $0 " <br />exit
<br />fi <br />echo "Sorting $1" <br />sort -t ' ' -k 4.9,4.12n
-k 4.5,4.7M -k 4.2,4.3n -k 4.14,4.15n -k 4.17,4.18n -k 4.20,4.21n $1
&gt; $1.sorted </em></p>
<p>&nbsp;</p>
<p><em><strong>Step 6: 	</strong>to
see the content of the file (linweb) type the below command, which is
still not sorted.</em></p>
<p>&nbsp;</p>
<p>$
vi linweb</p>
<p>$
ls -l</p>
<p>&nbsp;</p>
<p><em><strong>Step 7: 	</strong>run
the following command to change the permission level of sort.sh file.</em></p>
<p>&nbsp;</p>
<p>$
chmod 775 sort.sh</p>
<p>&nbsp;</p>
<p><em><strong>Step 8: 	</strong>run
the following command to sort the linweb file.</em></p>
<p>&nbsp;</p>
<p>$
./sort.sh linweb</p>
<p>&nbsp;</p>
<p><em><strong>Note: 	</strong>the
above command will create a file a sorted file as below.</em></p>
<p>&nbsp;</p>
<p>linweb.sorted</p>
<p>&nbsp;</p>
<p><em><strong>Step 9: 	</strong>to
see the sorted contents in the linweb file </em></p>
<p>&nbsp;</p>
<p>$
vi linweb.sorted</p>
<p>&nbsp;</p>
<p><em><strong>Step 10: </strong>to
generate a webalizer report  run the following command.</em></p>
<p>&nbsp;</p>
<p>$
webalizer linweb.sorted</p>
<p>$
ls -ltr</p>
<p>&nbsp;</p>
<p><em><strong>Step 11:	</strong>run
the following three commands only if webalizer application is not
installed on your computer. If 	already installed then go to step 12
directly from step 10.</em></p>
<p>&nbsp;</p>
<p>$
sudo aptitude update</p>
<p>$
sudo aptitude install webalizer</p>
<p>$
webalizer linweb.sorted</p>
<p>&nbsp;</p>
<p><em><strong>Step 12:</strong>	create
a folder to store the webalizer report.</em></p>
<p>&nbsp;</p>
<p>$
sudo mkdir lin</p>
<p>&nbsp;</p>
<p><em>Step
13: run the following webalizer command to generate &amp; store the
webalizer report into newly created folder (lin)</em></p>
<p>&nbsp;</p>
<p>$
webalizer linweb.sorted  -o lin/</p>
<p>&nbsp;</p>
<p><em><strong>Step 14:	</strong>go
to new (lin) folder and see the contents stored (there will be around
five files)</em></p>
<p>&nbsp;</p>
<p>$
cd lin</p>
<p>$
ls</p>
<p>&nbsp;</p>
<p><em><strong>Step 15:	</strong>run
the following command to see the webalizer report index.</em></p>
<p>&nbsp;</p>
<p>$
lynx index.html<strong> </strong></p>
<p>&nbsp;</p>
<p><em><strong>Step 16:	</strong>now
copy the newly created folder (i.e lin) to your computer for futher
use.</em></p>
<p>&nbsp;</p>
<p>$
sudo scp -r lin <a href="mailto:user@hostname">user@hostname</a>:/location/location/location/.</p>
<p>&nbsp;</p>
<p><em style="color: rgb(255, 0, 0);"><strong>Note: Here "linweb" &amp; "lin" are the just examples only, you can use any name you want.</strong></em></p>
<p>&nbsp;</p>
</div>
</div>
                    </description>


                    <pubDate>2009-07-22T19:15+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Printing</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/printing</link>
                    <dc:creator>rajeev</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<p><span style="color: rgb(0, 0, 0);" class="Apple-style-span">
</span></p>
<div class="titlepage">
<div>
<div>
<h2 style="color: rgb(90, 51, 32);" class="title">Printing</h2>
</div>
</div>
</div>
<p>Most printers will be automatically supported by Ubuntu. The&nbsp;<span class="application"><strong>Printer Configuration</strong></span>&nbsp;application allows you to add printers, as well as modify their settings. You can also use this application to share the printer with other computers on a network, disable the printer, or restart it.</p>
<div title="Local Printing" class="section">
<div class="titlepage">
<div>
<div>
<h3 style="color: rgb(90, 51, 32);" class="title"><a id="local" style="color: rgb(217, 13, 25);"></a>Local Printing</h3>
</div>
</div>
</div>
<p>A local printer is one which is directly connected to your computer (as opposed to a network printer, discussed in the following section).</p>
<p>To setup a new local printer, plug your printer into your computer and power it on. Most printers will automatically be detected and configured. Once detected, a printer icon will appear in the notification area and after waiting a few moments, you should get a popup with the text&nbsp;<em class="guilabel">Printer added</em>.</p>
<p>If your printer was not detected after a few moments, then you will need to follow these steps:</p>
<div class="procedure">
<ol class="procedure" type="1"><li title="Step 1" class="step">
<p>Obtain the model name of your printer.</p>
</li><li title="Step 2" class="step">
<p>Ensure the printer is turned on.</p>
</li><li title="Step 3" class="step">
<p>Choose&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenu">System</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">Administration</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">Printing</span></p>
</li><li title="Step 4" class="step">
<p>Click&nbsp;<span class="guibutton"><strong>New Printer</strong></span>.</p>
</li><li title="Step 5" class="step">
<p>Your printer should be automatically detected. If so, simply click&nbsp;<span class="guibutton"><strong>Forward</strong></span>&nbsp;and then&nbsp;<span class="guibutton"><strong>Apply</strong></span>.</p>
</li><li title="Step 6" class="step">
<p>Finally, you can enter in a description and location for your printer.</p>
</li></ol>
</div>
<p>If your printer was not automatically detected, you can try to select the port and printer driver manually. Some printers need further setup. Search the databases at&nbsp;<a style="color: rgb(217, 13, 25);" class="ulink" href="http://www.linuxprinting.org/" target="_top">LinuxPrinting.org</a>&nbsp;or check the&nbsp;<a style="color: rgb(217, 13, 25);" class="ulink" href="https://wiki.ubuntu.com/HardwareSupportComponentsPrinters" target="_top">Ubuntu Wiki Printer page</a>&nbsp;for information on your printer.</p>
</div>
<div title="Network Printing" class="section">
<div class="titlepage">
<div>
<div>
<h3 style="color: rgb(90, 51, 32);" class="title"><a id="network" style="color: rgb(217, 13, 25);"></a>Network Printing</h3>
</div>
</div>
</div>
<p>You can also configure your Ubuntu system to send print jobs to a remote print server. Remote printers are hosted somewhere on a network. To configure a remote printer:</p>
<div class="procedure">
<ol class="procedure" type="1"><li title="Step 1" class="step">
<p>Obtain the model name of your printer.</p>
</li><li title="Step 2" class="step">
<p>Ensure the printer is turned on.</p>
</li><li title="Step 3" class="step">
<p>Choose&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenu">System</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">Administration</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">Printing</span></p>
</li><li title="Step 4" class="step">
<p>Choose&nbsp;<span class="guibutton"><strong>New Printer</strong></span>.</p>
</li><li title="Step 5" class="step">
<p>If your printer is directly connected to a Windows machine on your network, choose&nbsp;<em class="guilabel">Windows Printer via SAMBA</em>. Otherwise, select the protocol your printer uses to communicate.</p>
</li><li title="Step 6" class="step">
<p>Insert the details of the network printer and click&nbsp;<span class="guibutton"><strong>Forward</strong></span>.</p>
</li><li title="Step 7" class="step">
<p>Select the printer model and then click&nbsp;<span class="guibutton"><strong>Apply</strong></span>.</p>
</li><li title="Step 8" class="step">
<p>Finally, you can enter in a description and location for your printer.</p>
</li></ol>
</div>
<div title="Note" class="note">
<table summary="Note">
<tbody>
<tr>
<td align="center" rowspan="2" width="25"><strong><br /></strong></td>
<th align="left"></th>
</tr>
<tr>
<td align="left">
<p><strong>If you do not know the protocol or details of your network printer, you should consult your network administrator.</strong></p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div title="Testing a Printer" class="section">
<div class="titlepage">
<div>
<div>
<h3 style="color: rgb(90, 51, 32);" class="title"><a id="testing" style="color: rgb(217, 13, 25);"></a>Testing a Printer</h3>
</div>
</div>
</div>
<p>To check if your printer works correctly:</p>
<div class="procedure">
<ol class="procedure" type="1"><li title="Step 1" class="step">
<p>Choose&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenu">System</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">Administration</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">Printing</span></p>
</li><li title="Step 2" class="step">
<p>Right click on the printer's name in the list.</p>
</li><li title="Step 3" class="step">
<p>Click&nbsp;<span class="guibutton"><strong>Properties</strong></span>.</p>
</li><li title="Step 4" class="step">
<p>Under the&nbsp;<em class="guilabel">Settings</em>&nbsp;tab, Click&nbsp;<span class="guibutton"><strong>Print Test Page</strong></span>. A page will then be printed if your printer is working correctly.</p>
</li></ol>
</div>
</div>
<div title="How can I check the ink levels of my printer?" class="section">
<div class="titlepage">
<div>
<div>
<h3 style="color: rgb(90, 51, 32);" class="title"><a id="printer-inklevels" style="color: rgb(217, 13, 25);"></a>How can I check the ink levels of my printer?</h3>
</div>
</div>
</div>
<p>To find out how much ink is left in your printer, follow the instructions which apply to your printer:</p>
<div class="itemizedlist">
<ul class="itemizedlist" type="disc"><li class="listitem">
<p><span class="strong"><strong>Hewlett-Packard (HP) printers:</strong></span>&nbsp;Press&nbsp;<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>F2</strong></span>, type&nbsp;<strong class="userinput"><code>hp-toolbox</code></strong>&nbsp;and click&nbsp;<span class="guibutton"><strong>Run</strong></span>. Select the&nbsp;<em class="guilabel">Supplies</em>&nbsp;tab in the HP Device Manager window which appears to view a summary of ink levels.</p>
</li><li class="listitem">
<p><span class="strong"><strong>Epson and some Canon printers:</strong></span>&nbsp;Install the&nbsp;<a style="color: rgb(217, 13, 25);" class="ulink" href="apt:mtink" target="_top">mtink</a>&nbsp;package and click&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenu">Applications</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">Accessories</span>&nbsp;→&nbsp;<span style="color: rgb(109, 76, 7);" class="guimenuitem">mtink</span>&nbsp;to check your ink levels.</p>
</li><li class="listitem">
<p><span class="strong"><strong>Some other Epson and Canon printers:</strong></span>&nbsp;Install the&nbsp;<a style="color: rgb(217, 13, 25);" class="ulink" href="apt:inkblot" target="_top">inkblot</a>&nbsp;package, press&nbsp;<span class="keycap"><strong>Alt</strong></span>+<span class="keycap"><strong>F2</strong></span>, type&nbsp;<strong class="userinput"><code>inkblot</code></strong>&nbsp;and click&nbsp;<span class="guibutton"><strong>Run</strong></span>. A printer icon will appear in the notification area on the top panel; click it to view ink levels.</p>
</li></ul>
</div>
<p>For printers from other manufacturers, the best chance of viewing ink levels for your printer in Ubuntu is to install an official Linux printer driver from your manufacturer if one exists.</p>
<p>&nbsp;</p>
<p><img src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" alt="http://creativecommons.org/licenses/by-sa/3.0/" /></p>
<p>This how to is directly pasted from the official ubuntu documentation wiki.</p>
<p>Thanks to the Ubuntu wiki contributors.</p>
</div>
<p>&nbsp;</p>
</div>
                    </description>


                    <pubDate>2009-03-22T15:05+00:00</pubDate>
                </item>
            
        
        
            
                <item>
                    <title>Installing Ubuntu</title>
                    <link>http://ngoinabox.mahiti.org/howtos/archive/2010/01/22/installing-ubuntu</link>
                    <dc:creator>rajeev</dc:creator>

                    <description>                        
						<h2></h2>
						<div>
<div>&nbsp;</div>
<div><span style="color: rgb(0, 0, 0);" class="Apple-style-span">
<p class="line874">There are many common ways to install and run Ubuntu. You can run Ubuntu:<span id="line-8" class="anchor"></span></p>
<ul><li>as your sole operating system (single booting).<span id="line-9" class="anchor"></span></li><li>in addition to another operating system (dual booting).<span id="line-10" class="anchor"></span></li><li>
<p class="line862">within your existing operating system (virtualization).&nbsp;<span id="line-11" class="anchor"></span></p>
</li><li>from your CD disc drive, using the Live CD.<span id="line-12" class="anchor"></span></li><li>
<p class="line862">in addition to Windows, using Window's Boot Manager, via the&nbsp;Wubi&nbsp;installation<span id="line-13" class="anchor"></span><span id="line-14" class="anchor"></span><span id="line-15" class="anchor"></span></p>
</li></ul>
<p class="line867"><em>NOTE: Prior to installing Ubuntu, it is recommended that you back up your computer. If things do go wrong there are a number of options to get help listed on&nbsp;<a style="color: rgb(217, 13, 25);" class="http" href="http://www.ubuntu.com/support">http://www.ubuntu.com/support</a></em><span id="line-16" class="anchor"></span><span id="line-17" class="anchor"></span></p>
<p class="line867">&nbsp;</p>
<h2 id="Acquiring Ubuntu" style="color: rgb(90, 51, 32);">Acquiring Ubuntu</h2>
<p class="line874">To acquire Ubuntu, you can order a free CD from Canonical or purchase a CD or DVD from a distributer&nbsp;<span id="line-21" class="anchor"></span>You can also download and burn the image to a CD or DVD. You can download the Ubuntu installer from Canonical. Downloading the installer requires a blank CD or DVD, and a CD or DVD burner that is capable of burning disc images.<span id="line-22" class="anchor"></span><span id="line-23" class="anchor"></span></p>
<p class="line874">To download Ubuntu:<span id="line-24" class="anchor"></span><span id="line-25" class="anchor"></span></p>
<ol type="1"><li>
<p class="line862">Using your web browser, navigate to&nbsp;<a style="color: rgb(217, 13, 25);" class="http" href="http://www.ubuntu.com/getubuntu/download">http://www.ubuntu.com/getubuntu/download</a><span id="line-26" class="anchor"></span></p>
</li><li>Select Desktop Edition, and then click Ubuntu 9.04.<span id="line-27" class="anchor"></span></li><li>In the Choose a download location near you menu, select the location closest to you.<span id="line-28" class="anchor"></span></li><li>Click Begin Download. A pop up window opens, prompting you where to run or save the file.<span id="line-29" class="anchor"></span></li><li>In Internet Explorer, click Run to automatically open the installation file in a CD burning utility or click Save to save the file to your disk. In Mozilla Firefox, select Open with to open the installation file in a CD burning utility or select Save File to save the file to your disk.<span id="line-30" class="anchor"></span><span id="line-31" class="anchor"></span></li></ol>
<p class="line862">After downloading the Ubuntu installation CD image, you need to burn it to a CD or DVD. That meeans ,burn the iso file as an image,and not as data cd .<strong>Do not&nbsp;</strong>&nbsp;extract the iso. file.<span id="line-33" class="anchor"></span></p>
<p class="line874">To burn the installation disk to a CD or DVD:<span id="line-34" class="anchor"></span></p>
<ol type="1"><li>Place a recordable CD or DVD into your CD/DVD drive.<span id="line-35" class="anchor"></span></li><li>Load an application that is capable of burning .ISO image files to CDs or DVDs.<span id="line-36" class="anchor"></span></li><li>Using your CD and DVD writing program, copy the disk image to your blank CD or DVD.<span id="line-37" class="anchor"></span><span id="line-38" class="anchor"></span><span id="line-39" class="anchor"></span></li></ol>
<p class="line867">&nbsp;</p>
<h2 id="To Install Ubuntu" style="color: rgb(90, 51, 32);">To Install Ubuntu</h2>
<span id="line-40" class="anchor"></span>
<p class="line874">Ubuntu can be installed with the graphical CD. Make sure that your computer is set to boot from a CD before a hard drive.<span id="line-41" class="anchor"></span><span id="line-42" class="anchor"></span></p>
<ol type="1"><li>Insert the Ubuntu disc into your CD drive.<span id="line-43" class="anchor"></span></li><li>
<p class="line862">Start or restart your computer. The Language screen appears. <span id="line-45" class="anchor"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install1Language.png" alt="Install1Language.png" /></span></p>
</li><li>
<p class="line862">Select your desired language and press&nbsp;<strong>Enter</strong>. The startup window appears.&nbsp;<span id="line-47" class="anchor"></span></p>
<p class="line862"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install2StartUp.png" alt="Install2StartUp.png" /></p>
</li><li>
<p class="line862">Select&nbsp;<strong>Install Ubuntu</strong>&nbsp;and press&nbsp;<strong>Enter</strong>. The Welcome window appears.&nbsp;<span id="line-49" class="anchor"></span></p>
<p class="line862"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install3Welcome.png" alt="Install3Welcome.png" /></p>
</li><li>
<p class="line862">From the taskbar, choose your preferred language. Click&nbsp;<strong>Forward</strong>. The Where are you? window appears.&nbsp;<span id="line-51" class="anchor"></span></p>
<p class="line862"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install4WhereAreYou.png" alt="Install4WhereAreYou.png" /></p>
</li><li>
<p class="line862">From the Selected city box, choose your closest location. Click&nbsp;<strong>Forward</strong>. The Keyboard layout window appears.&nbsp;<span id="line-53" class="anchor"></span></p>
<p class="line862"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install5Keyboard.png" alt="Install5Keyboard.png" /></p>
</li><li>
<p class="line862">Select your keyboard layout. To test if you have chosen the correct layout, enter characters in the text box. Click&nbsp;<strong>Forward</strong>. The Prepare disk space window appears.<span id="line-54" class="anchor"></span></p>
</li><li>
<p class="line862">If you want to install Ubuntu over your entire hard drive, then Select&nbsp;<strong>Guided – use entire disk</strong>&nbsp;and select the hard drive that you want to install Ubuntu. Click&nbsp;<strong>Forward</strong>. The Who are you? window appears.&nbsp;<span id="line-56" class="anchor"></span></p>
<p class="line862"><em>WARNING: Installing Ubuntu on your entire hard disk will erase all data that is currently on the drive.</em></p>
</li></ol>
<p class="line867"><span id="line-58" class="anchor"></span></p>
<p class="line874">OR<span class="Apple-style-span"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install7DiskSingleBoot.png" alt="Install7DiskSingleBoot.png" /></span></p>
<ol type="1" start="8"><li>
<p class="line862">If you want to install Ubuntu on a single partion&nbsp;Select&nbsp;<strong>Guided – resize.</strong>&nbsp;In the New partition size area, drag the area between the two partitions to create your desired partition sizes.</p>
<p class="line862"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install8DiskDualBoot.png" alt="Install8DiskDualBoot.png" /></p>
<p class="line862">&nbsp;Click&nbsp;<strong>'Forward</strong>. The Who are you? window appears.<span id="line-61" class="anchor"></span><span id="line-62" class="anchor"></span></p>
</li><li class="gap">In the What is your name? field, enter your name.<span id="line-65" class="anchor"></span><br /></li><li class="gap"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install9WhoAreYou.png" alt="Install9WhoAreYou.png" /></li><li>In the What name do you want to use to log in? field, enter a login name.<span id="line-67" class="anchor"></span></li><li>In the Choose a password to keep your account safe field, enter a password in both text boxes.<span id="line-68" class="anchor"></span></li><li>In the What is the name of your computer? Field, enter a name to identify your computer.<span id="line-69" class="anchor"></span></li><li>
<p class="line862">If you are the only user and wish to avoid the login screen, check&nbsp;<strong>Log in automatically</strong>&nbsp;(optional).<span id="line-70" class="anchor"></span></p>
</li><li>
<p class="line862">Click&nbsp;<strong>Forward</strong>. The Ready to install window appears.<span id="line-71" class="anchor"></span><span id="line-72" class="anchor"></span></p>
<p class="line891"><img src="https://help.ubuntu.com/community/GraphicalInstall?action=AttachFile&amp;do=get&amp;target=Install10ReadyToInstall.png" alt="Install10ReadyToInstall.png" /></p>
<p class="line891">Verify that the language, layout, location, and personal information are correct and click&nbsp;<strong>Install</strong>. The installation wizard begins.</p>
</li><li>
<p class="line862"><span id="line-74" class="anchor"></span></p>
</li><li>When the installation wizard finishes, the installation complete window appears.<span id="line-75" class="anchor"></span>
<p class="line862">Click&nbsp;<strong>Restart now</strong>&nbsp;to restart your computer. Ubuntu is now installed.&nbsp;<span id="line-79" class="anchor"></span></p>
<div>&nbsp;<img src="http://i.creativecommons.org/l/by-sa/3.0/88x31.png" alt="http://creativecommons.org/licenses/by-sa/3.0/" /></div>
<div>&nbsp;</div>
<div>Entire content is pasted from the official Ubuntu documentation wiki site.All credit goes to the Ubuntu wiki contributors.</div>
</li></ol>
</span></div>
</div>
                    </description>


                    <pubDate>2008-01-22T12:15+00:00</pubDate>
                </item>
            
        
    </channel>
</rss>
