TECH INSIGHT
FOR THE
CURIOUS MIND

ping the universe, send your echo,
In the terminal of life, be the sudo.
exit the fear, reboot the cheer,
In the shell of existence,
hold your dreams near..

Join Newsletter

How to Remove index.php in Magento

Change few change, you will be able to do. Here are the following steps: 1. Change to ‘Yes’ at "Use Web Server Rewrites". Located in "Admin>System>Configuration>Web>Search Engine Optimization". 2.   Change to ‘Yes’ at "Use Web Server Rewrites". Located in "Admin>System>Configuration>Web>secure/Use Secure URLs in Frontend". 3. vi /yourdir/.htaccess Uncomment the statement: "RewriteBase /magento/" and change it … Read more

Basic Linux Commands

for move file —>  mv noldfile newfile to make new directory > mkdir dirname to put file into a new directory > mv textfile dirname/ to change file name > rm filename to view the text file …>>>>> less filename to add new user >>> useradd to del user >>> userdel username less command to … Read more

Installation of CentOS 5.8

http://mirrors.manchester.icecolo.com/centos/5.8/isos/x86_64/CentOS-5.8-x86_64-netinstall.iso http://mirror.rmg.io/centos/5.8/isos/i386/CentOS-5.8-i386-netinstall.iso Web site name: mirror.centos.org CentOS directory for i386: /centos/5/os/i386 or /centos/5.8/os/i386 CentOS directory for x86_64: /centos/5/os/x86_64 or /centos/5.8/os/x86_64

PasswordLess SSh Login

>ssh-keygen -t rsa (In Remote Machine) >ls /root/.ssh > id_rsa id_rsa.pub > cat id_rsa.pub >> authorized_keys > ls > id_rsa id_rsa.pub authorized_keys Now copy the id_rsa file into the $HOME/.ssh/ directory of the client machine. > ssh root@server_ip_address or Copy the id_rsa file into the any location of the client machine >ssh -i location/id_rsa root@server_ip_address

File Partition – Mount – Fdisk

In this post, I am writing how I do file partition and mounting in Linux. Step-1: check disk free by typing: df -h you will see disk and hardisk been used. if you want to add new disk fdisk -l now you will see, in any disk attached in your system fdisk /dev/your-new-disk enter m … Read more