October, 2009


22
Oct 09

How to access location specific themes in windows 7 ?

Windows 7 installs location specific theme based on the preference selected during installation. International themes are located in this path.

< Installed directory >:/windows/Globalization/MCT

Here < installed directory > could be C: or D: drive. In MCT folder you’ll find additional folders for additional regional themes. Folders are labeled as MCT-UK, MCT-AU etc. You can choose wallpaper and theme from respective region’s folder and enable it. MCT-CA has wallpaper and theme for CA region. You can click on CA.theme and enable the Canada specific theme. By double-clicking them you’ll add them in themes list.


21
Oct 09

How to run command prompt as administrator in windows 7 ?

Some operations in command prompt require admin privileges. So you require switching into admin mode. You can do so by following the steps below:

1. Go to start > type cmd.
2. Instead of hitting enter, you’ve to hit CTRL+SHIFT+Enter.
3. You’ll get the UAC dialog. After that you’ll get command prompt in administrator mode. (You can use CTRL+Y to quickly close the UAC in vista.)


20
Oct 09

How to see where package is installed in ubuntu?

On linux we use application installer like synaptic package manager or adept etc. We get no idea where in directories those applications are installed. You can check this using dpkg utility.

If you want to check where all the files of the package are located then use following command:

dpkg -L

For example, if package files for gparted to be found out then command will be :

dpkg –L gparted

This will list the files/folders where gparted and it’s dependent configuration files are listed.


19
Oct 09

How to list the disk space usage on ubuntu?

If you’re using ubuntu then you can use the GUI utility “Disk usage checker”. Or there is another way to check the disk space usage on ubuntu. You can use the df command on terminal. Whenever you want to list the disk space usage on ubuntu then type :

df -TH

This will list the disk space usage.


18
Oct 09

How to find the path of running applications in linux ?

If you’ve multiple running applications installed on system you might wonder sometimes that which version is running. To find out the path of the application, you can use “which” command then followed by the executable you would have run.

For example :

which svn

This will display the directory of the running version of svn. (Tested this on ubuntu, fedora and suse).