Tag Archives: Linux
4 Ways To Search For Files Using The Terminal
Posted on 20. Apr, 2009 by Nikhil Sheth.
1) find : To search for files on the command line you can use the command “find”. The following is syntax for the “find” command:
find path criteria action
“path” – The section of the files system to search (the specific directories and all the sub directories). If nothing is specified the file system below [...]
Continue Reading
Creating Bash Aliases
Posted on 05. Mar, 2009 by Nikhil Sheth.
What is an alias?
An alias is basically a shortcut for a command you place in your ~/.bashrc file. Aliases cut down on typing and can save you from having to look up a command.
Aliases are set up near the bottom of the of the .bashrc file. You’ll see a commented-out section that indicates where [...]
Continue Reading
Command Line Kung Fu Developer
Posted on 04. Mar, 2009 by Nikhil Sheth.
Want to become a Linux guru, or just look like one? Then visit Command-Line-Fu.
Command-Line-Fu is the place to record those command-line gems that you return to again and again.All commands can be commented on and discussed. Voting is also encouraged so the best float to the top.
You can subscribe to the feeds or follow the [...]
Continue Reading
Running CrossOver Chromium under Ubuntu
Posted on 15. Oct, 2008 by Nikhil Sheth.
Installing CrossOver Chromium on Ubuntu
To install Crossover Chromium issue the following commands in the terminal window (Application-> Accessories -> Terminal):
Note: The package downloaded below is for 32bit version of the CrossOver Chromium , Codeweavers has released 64 bit version too. You can download 64bit version from this page.
wget http://media.codeweavers.com/pub/crossover/chromium/cxchromium_0.9.0-1_i386.deb
AND
sudo dpkg -i cxchromium_0.9.0-1_i386.deb
CrossOver Chromium should [...]
