search

Loading

Wednesday, March 7, 2012

Most useful ps commands in linux

One of the most used commands in linux to find about the running processes in linux is ps command and top command. There are many command line arguments that we can give to these commands to extract the exact information that we need. But it is a bit confusing, right? So here we are going to look for the most used command line arguments in the ps command.

1. ps -eflH

Saturday, March 3, 2012

How to hide a file or folder in Linux

This is a basic question that arises in the mind of the most new linux users. This can be easily achieved in linux. Its a matter of just adding a do in front of the file/folder name in linux.

For example, to hide a file called 'linux-tips.txt', we just need to add a dot in front of it. It will be like this.

.linux-tips.txt

You can use the mv command to do it in command line. The above can be done like this:

mv linux-tips.txt .linux-tips.txt

Once we add the dot infront of it, it won't be visible in 'ls' command. You can view the hidden files by using 'ls -a' command.

The same method works for folders also. 

Sunday, February 26, 2012

My favorite (and most used) Linux command line shortcuts

Linux terminal is one of my most used application. So it became necessary for me to master it. Even if we take a little bit of time for mastering the shortcuts, it will be really helpful in the long term.

Below are some of the my favorite and most used command line shortcuts which now I am using almost every time.

Saturday, June 11, 2011

How to completely remove an application and its settings in ubuntu

We can remove applications in ubuntu using apt-get remove command. But it will not completely remove an application. The installed files dependencies and the configurations will remain in the system. This will in future cause to the not needed dependencies and junk files which we are never going to use remain in the system and will eat up the hard disk space. So how to remove an application completely in ubuntu?

Wednesday, June 8, 2011

Creating app images in linux

I have blogged about the app images in this blog. They are very useful, especially if you do not have the root privilege or you do not want to mess up with your current settings.

So what if you want to create an app image for your favorite app that is not available in the portable linux apps site? There is a good how to created by the blogger tekkidd. He has also created a video tutorial for creating the app images.

You can read the tutorial here and watch the video here