Hot tips to get the best of Linux in 2008

Sometimes you can have a frozen window, and there are two fast ways to solve this problem without turning off your computer or restarting it. The first is the traditional key combination of Ctrl + Alt + Backspace.

Linux

Wallpaper from Deviant Art

LinuxPowerful.OpenSource.Secure (Can you name the Distro’s in the Picture?)

At the onset of this new year - 2008 - I would like to share some Linux tips with you. It won’t matter which version are you using because I’ll talk mostly about the Linux Console. Most common windows user will probably feel the console in Linux to be a little intimidating, nevertheless when the time comes, you’ll notice that it is the best way to be highly productive.

Read, practice the following instructions to get yourself comfortable with Linux;

1. Avoid out of the session or close the terminal with the command Ctrl+D

  • set -o ignoreeof Enable Ctrl+D
  • set +o ignoreeof Disable Ctrl+D

2. The Alias — We introduce a command with an alias, and the shell will recode it with its value. For example, whether we define an alias this way: alias buscar=”find. -name”, when we input commands in the line buscar name_file the shell will execute find. -name name_file and will seek the file we ask starting in the current path.

Alias name_of_the_alias="command_which_will_execute_the_alias".

To disable an alias use the command unalias: unalias name_of_de_alias. If you want to see the alias defined in the system just write: alias.

3. Most recently used commands — Execute the following instruction in the console:

history|awk '{print $2}'|awk 'BEGIN {FS="|"} {print $1}'|sort|uniq -c|sort -rn|head -10

The history command shows a list of all recently executed commands. You can use the arrow keys to navigate the next and previous commands.

Tux4. Kill all the process in a determined application — This command will be very useful when you are running programs which tend to drag on the system resources. Open terminal and type: ps aux c. It will show you a complete list of running processes. The first column contain the user owner of the process, the second one is the PID of the process and if we jump to the last column we will see the name of the application which belong to each processes. If the application you want to kill is, for example, Firefox, then it would be: ps aux c | grep firefox and then write kill -9. The next time you do a ps aux c | grep firefox, this program shouldn’t appear anymore.

5. Get the basic system information — There are some commands you can use to determine basic information of your machine such as kernel version, hardware information and others. The following command lines shows what they’ll return when executed;

$ cat /proc/version  = "It returns a full string of information"
$ uname -m = "The result of the machine's number"
$ uname -r = "Show the version of the kernel"
$ uname -n = "Returns the local domain name"
$ uname -s = "Will show the system name"
$ uname -p = "It tells you the type and name of the processor"
$ uname -a = "Will show all the information above and also the date and time of the system"

6. Use the Calendar — With the following commands you can have different views and displays of the Calendar in the different versions of Linux.

cal -3 = "Simply display the calendar"
cal 1 2008 = "This command display a calendar of a particular month of the year"
date -d fri = "Display the date of the next on the current or next week"
date --date='25 Dec' +%A = "Tell you which day will be Christmas this year"

7. Disk Space — Having sufficient and optimized disc space is something vital for good performance of your system. In the case of Linux, here are the different ways to optimize your storage space and display information of your hard disc.

df -h = "This command display the free disc space"
fdisk -l = "Very similar to Windows environment show you the partitions of the disc"
ls -lSr = "Display the all the files and the biggest last"
du -s * | sort -k1,1rn | head = "Show top disc users in the current directory"

8. Set Operations — In Linux you can make operations with files quickly. Test the following commands which help you a lot to manipulate files.

LANG=C sort file1 file2 | uniq" = "Make the union of unsorted files"
LANG=C sort file1 file2 | uniq -d = "Intercept unsorted files"
LANG=C comm file1 file2 | sed 's/^\t*//' = "Union of sorted files"
LANG=C comm -3 file1 file2 | sed 's/^\t*// = "Symmetric difference of sorted files"

9. Text Manipulation — Manipulation of text is another very important aspect of the work. Let’s see some of this in Linux.

sed -n 's/.*<title>\(.*\)<\/title>.*/\1/ip;T;q' = "Extract title from an HTML page"
sed -n '10,20p;20q' = "Print lines from 10 to 20"
sed ':a; /\\$/N; s/\\\n//; ta' = "Concatenate lines between \"
sed 's/[ \t]*$//' = "Remove trailing spaces from lines"
sed 's/string1/string2/g' = "Replace string1 with string2"

10. Searching of Files — Faster method to search for almost anything under a Linux platform.

alias l='ls -l --color=auto'page" = "Make a quick  listing of directories"
ls -lrt = "List files by date"
find -name '*.[ch]' | xargs grep -E 'expr' "Search 'expr' in the current directory and below"
find -type f ! -perm -444 = "Find files not readable by all"
locate -r 'file[^/]*\.txt' = "Search cached index for names"

11. Frozen Windows — Sometimes you can have a frozen window, and there are two fast ways to solve this problem without turning off your computer or restarting it. First, you can try the traditional key combination of Ctrl + Alt + Backspace.

The other way is a little more complicated than the previous one but is more efficient. Hit Ctrl + Alt + F2 to jump to the virtual console. Then log in with your user name, password and type the following:

ps -ax | grep startx

This executed command will provide you the PID of your Xserver. Then kill it with the next command

kill -9 PID_Number

If you want return to your first console, just press Alt + F1.

12. Remote Execution — With the service “rexec” you can have remote execution, very useful when you are working on a network environment. The user using this service must authenticate with a user name and password.


Don't like it? There are lots of published articles, pick a random one.

oCricket

Hector Nicolas posted this article on Fri, Jan 4th, 2008 at 7:40 pm
Categorized under Featured, Technology and has the following tags

Prev Article: Do Venture Capitalists fund a company with an intent to steal

Next Article: Java creator, James Gosling does his part of Flash Bashing


Possibly Related Articles

Archives: Visit the Archives for more articles.

Comments Post Yours

There are 15 responses so far. You can follow any responses to this entry through the RSS feed. You can leave a response, or trackback from your own site.

  1. Nice list of commands. Even for an experienced Linux user they make a good reference.

  2. For a frozen window, why wouldn’t you just do a Ctrl+Alt+Esc and click on the frozen window?

    You like doing things the difficult way, eh? ;)

  3. Set operations is good one. I had used Linux for 3 yrs till 2005. It was a good experience. These commands will be useful.

  4. Isn’t “rexec” quite dangerous to use in the real world as it transmits your password un-encrypted, better to use ssh or something encrypted.

    But interesting list, thanks

  5. Awesome. So many of these commands, I’m familiar with, but I can never recall them when I need them most. It’s nice to have a whole bunch of useful ones on one page to bookmark. Thanks.

  6. I would suggest to use xkill instead to kill a dead/frozen window. xkill has been around since the beginning of xwindows, and still works very well now.

  7. Tips from somebody who suggest “kill -9″ ???

    DON’T USE kill -9 !!!

    kill -9 abort a program and can be very dangerous!!

    Davide

  8. Use join instead of comm and you don’t need the sed.

  9. Havent used linux for a while to be fair but this is useful.

    And i have to agree with davide using kill 9 killed me too! ive learnt from that mistake i hope dont do it!

  10. You just ripped this off from:
    http://www.pixelbeat.org/cmdline.html

    Then you added some of your own “wisdom”
    like `kill -9` and `rexec`. laughable.

  11. @Brady
    I don’t think Hector (the author of this article) needed to copy from you. He is a Linux System Engineer working for a reputed company and the commands are perhaps what most *nix user would know.

    Btw, you got a good printable version out there and I hope other readers will like it. (Yours is a good resource and I don’t needed to moderate your link nor your text.) :-)

  12. Ctrl+Alt+Esc and click on the frozen window works for me to kill iceweasel when it freezes.
    Then to restart it I also have to do:
    ps -ef | grep iceweasel
    then I kill the number of the iceweasel/firefox/bin process.

    “kill 2209″ for example, then I can restart iceweasel without having to reboot.

  13. ConcernedFellowBlogger January 24th, 2008 at 11:00 pm 13

    Your copyrighted content has been stolen:

    http://googit.blogspot.com/2008/01/hot-tips-to-get-best-of-linux-in-2008.html

  14. Well, you can’t really help and this isn’t the first case. There are lots of blog scrappers. This one seems to be copying everything blatantly.

  15. Hello

    Instead of ps | grep , you can use pgrep which does pretty much the same in shorter… then use pkill which will signal the matching processes.

    Cheers,

    Stephane

Post yours

Sidenotes

Quick notes, scribbles, somehow related to this website and to what I do. Or perhaps I'm just plain lazy to make them into a full article.

Why NBC dumped Silverlight for Flash?

The Olympics online were a joint production between NBC and Microsoft, and an opportunity for Microsoft to build a user base for Sillverlight, its new media player. But Flash has a much larger installed base ...6th Sep, 2008

Cappuccino

The guys from 280 North did it again. Earlier, it was the awesome Keynote on the Web -- 280 Slides. Now, its -- Cappuccino -- an open source framework that makes it easy to build ...6th Sep, 2008

Amazon WS Start-Up Challenge - Win $100,000 in Prizes

With the 2008 AWS Start-Up Challenge, Amazon Web Services (AWS) is searching for the next hot start-up that is leveraging AWS to build its infrastructure and business. The grand prize is $100,000 ($50,000 in cash, ...3rd Sep, 2008

The Twitter Song: You're No One If You're Not On Twitter

Here is the awesome Twitter Song from Ben Walker. [audio:http://audio.brajeshwar.com/you-are-no-one-if-you-are-not-on-twitter.mp3] If you enjoy this, you might like to watch The Rise and Fall of Twitter. You're No One If You're Not On Twitter (Lyric) You're no one if you're ...26th Aug, 2008

Download Series AA Equity Financing Documents from Y Combinator

Y Combinator and Wilson Sonsini Goodrich & Rosati announced the Series AA Equity Financing Documents. Their goal is to make angel funding rounds for startups easier for both sides. While they may not be suitable for ...23rd Aug, 2008

View the Sidenotes Archive

Play the Penguin Game

Recommended

  • Forum Oinam’s technical discussion forum where developers and designers can discuss all technical topics.
  • My Special Job My Special Job is a place where you can look for your weird necessities, strangely superb employees, when your need are more of those hackers, geeks, and ultimate rockstars in the Internet Technology.
  • ActionScript 3.0 Reference Flash/Flex ActionScript 3.0 Reference.
  • Downloads All downloads, Free and Open Source.
  • oCricket oCricket is about Cricket and people enthusiastic about it.
  • Not Safe for Work Ever clicked a link and felt embarrassed with the content in front of your co-workers? Ever caught unaware because the funny link your friend sent was a little beyond funny? Let’s minimize that with NSWF.
  • Oinam The official conglomerate of the Oinam related companies, institutes and holdings.

Download free Brajeshwar Wordpress Theme

Brajeshwar

Brajeshwar I firmly believe in keeping things simple, easy for users and I envison pushing the technical envelop time and again for the betterment of viable commercial and practical applications. More about me.

Brajeshwar Personal Identity Portal powered by VeriSign Labs

Brajeshwar's affinity with Adobe

My Photos

More photos on Flickr

Member of 9rules Network

Since its inception on 11th June, 2001, "Brajeshwar" has 851 Articles and 5,953 comments, contained within 20 categories and 1,186 tags.