How to install Joomla using XMAPP?


Step1. First download the XAMPP software from http://www.apachefriends.org/en/xampp-windows.html. Then install  the XAMPP software correctly.


 Step2. Open the XAMPP control panel from start menu. A new window will be open. Then click all the start button & finally click the admin button of MySql. Create a new data base. Here data base name dtest.
 

Read More......

Two simple suggestions to improve Ubuntu

Everyone seems to know that you don’t upgrade Ubuntu straight away but rather wait one month so that major bugs can be fixed. If that’s acceptable, then my first simple suggestion is for the update manager to not prompt the user to upgrade until the stable release has been out for a month (or whatever time frame works. It could even be dynamically flagged when ready).

Read More......

Create Simple Lan in Linux



root@localhost~# cd /etc/sysconfig/network-scripts + press enter + vi ifcfg-eth0 + a new page will be open + press i + write 192.168.168.1 beside IPADDR= + write 255.255.255.0 beside NETMASK= press :x + press enter + service network restart + press enter

Now for test write below line

root@localhost~# ping 192.168.168.2 (another pc ip) + enter


Reply from pc for correct configuration

Reply from 192.168.168.2 bytes 32 time= 80ms TTL 128
Reply from 192.168.168.2 bytes 32 time= 80ms TTL 128

Read More......

Linux Commands

Terminate from text mode to graphical mode:

root@localhost~#vi /etc/inittab + Press Enter + a new page will be open + press i + you can see a text line ‘id:3:initdefault’ + replace 3 by 5 + press :x + reboot

Terminate from graphical mode to text mode:

Mouse right button click + open new terminal + root@localhost~# STARTX + press enter

Read More......

Linux Commands

i = insert or write
Esc = for visiting mode
:x = save and force
:q = not save but force
:w = only save
Reboot = for restart
Shutdown -h now= for shutdown

Read More......