Speed up your work with Bash aliases

Whether you like or not Terminal in Linux, it's very useful and sometimes necessary. So, to speed up your work you can use "aliases" for commonly used commands. For example: when I type "aa", "apt-get install" is executed.

To enable "aliases" it's very simple, just follow these steps:

1. with your favorite editor open .bashrc (located in your home directory)

2. add this line

aliases xx="command"

3. open terminal and execute this command:

source ~/.bashrc

You can add as many aliases as you want but every time you need to reload bash with "source ~/.bashrc".

If you want to use aliases for the commands that can be executed only by root, edit .bashrc from your root directory, and execute "source ~/.bashrc" as root.

Read more...

Move the Firefox sidebar to the right

First you have to find userChrome.css file. This file is located in your profile folder:

C:\Documents and Settings\your profile\Application Data\Mozilla

Now open userChrome-example.css and enter these lines:

/* Display the sidebar in opposite side */
#browser {
-moz-box-direction: reverse;
}

Finally Save that file as userChrome.css and close it.

Read more...

How to fix missing Avast icon from system tray

This is a common problem with Avast Free Antivirus. Honestly I don't know the reason for this behavior, but the easiest solution is to repair Avast installation through Add/Remove program.

  1. Open Control Panel
  2. Click on Add or Remove Programs
  3. Locate Avast and select repair

If this doesn't help, maybe you can try to reinstall Avast.

Read more...

How to disable the Windows XP Splash Screen

1. Click on Start, then Run

2. In the Run box type: msconfig

3. Click on the BOOT.INI tab

4. Now check this option:

/NOGUIBOOT

5. Click OK and Restart your PC

6. After restart you'll see this message:


7. Check "Don't show this message or launch the System Configuration Utility when Windows start" and click OK

Read more...

How To Disable the Automatic Restart on System Failure in Windows XP

By default Windows XP restarts immediately after important error. This is not very useful, because you can't see error message for troubleshooting.

To disable this function follow these steps:

1. Right-click on My computer and then Properties

2. Now click Advanced tab

3. In the Startup and Recovery area click on the Settings button.

4. In the System Failure area uncheck Automatically restart

5. Click OK, then OK again and that's it

Read more...

How To Disable Taskbar Button Grouping in Windows XP and Windows Vista

1. Right-click on the Taskbar

2. Then click on Properties in the pop up menu

3. Now in the Taskbar apperances uncheck :

Group similar taskbar buttons checkbox.

4. Finally click Apply and OK.

Read more...

How To Disable Error Reporting in Windows XP

1. Click on Start and then Control Panel.

2. Click on the Performance and Maintenance link then in the bottom of the window click on the System icon.

And if you use Classic View just click on System icon

3. In the System Properties window, click on the Advanced tab.

4. Near the bottom of the window, click on the Error Reporting button.

5. Now check Disable Error Reporting button

6. Click OK and that's it.

Read more...

How to disable Windows Messenger

To completely disable Windows Messenger perform the following steps:

1. Click Start >> Run

2. In the Run box, type gpedit.msc to open the Group Policy editor.

3. In the left pane, under Local Computer Policy | Computer Configuration, expand Administrative Templates and then Windows Components.

4. Double click Windows Messenger.

5. Now in the right pane double click the policy:

Do not automatically start Windows Messenger initially
and click the Enabled option.

Then double click the policy:
Do not allow Windows Messenger to be run
and click the Enabled option.

Read more...