$ apt-get install git
Category Archives: Linux
install google chrome ubuntu 11
1)Run the command below to add Linux-repository public key from Google..
wget -q -O – https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add –
2)Run the comman dsudo gedit /etc/apt/sources.list.d/google.list and paste the below given code
deb http://dl.google.com/linux/chrome/deb/ stable main
3)Run deb http://dl.google.com/linux/chrome/deb/ stable main
Install Komodo Edit Linux Ubuntu
Run the below given commands
1) sudo add-apt-repository ppa:mystic-mirage/komodo-edit
2) sudo apt-get update
3) sudo apt-get install komodo-edit
install rar in linux ubuntu
# apt-get install unrar
How to run a php file geany editor linux
You can runa php file by pressing F5 key
Linux command to list only files
ls -la |grep ^-
Linux command to list only directories
ls -la -d */
or
ls -la |grep ^d
Replace a string with another in vi editor
:%s/str1/$str2/g will replace all the occurance of str1 with str2
Go to a particular line VI Editor
Type the following
:45
vi editor show line number
Type any one of the following
set number or set nu