Archive

Archive for the ‘Internet Browser’ Category

How to Clean Up Cookies and Remove Temporary Files in Windows XP

January 5, 2010 Leave a comment

cleanupw

In this tip we will show you how to remove cookies and temporary files that you won’t need anymore and speed up your Windows and free up some additional space.

What are Cookies? They are a text file that stores on your computer anytime you visit a site and they
track you do. This could slow your computers, because everytime you access a site, it takes time to download them.

What are Temporary Files? Temp Files are all the files or folders installed, opened or used by
administrator. This could take a lot of space, and is recommended to delete them.

Note: System Volume Information and Temp Files are the most affected by viruses and spyware. It is
recommended to have a good AntiVirus or a good AntiSpyware.

Read more…

How to Install Firefox 3.5 on Ubuntu

December 15, 2009 1 comment
    Install firefox 3.5.5.tar.gz2 on Linux Ubuntu (Tested on Ubuntu 9.10)

  1. Download the new version of firefox then save in /home
  2. We must remove the old version of firefox,
    if You don’t know the command of your firefox, We can check throught terminal:

    • Open terminal,
      type : fire then press tab to get suggestion from terminal.
      e.q.:

      firefox-3.5
    • remove firefox

      sudo apt-get remove firefox-3.5
  3. Rename plugins folder to make room for the real plugin

    sudo su
    cd /home

    extract firefox to /opt

    tar -jxvf firefox-3.5.5.tar.gz2 -C /opt
    cd /opt
    mv /opt/firefox/plugins/ /opt/firefox/plugins.backup
  4. Create a symbolic link plugins for firefox

    ln -s /usr/lib/xulrunner-addons/plugins/ /opt/firefox/plugins
  5. Create a new command of firefox, you can still run firefox via old shortcut of firefox

    dpkg-divert --divert /usr/bin/firefox.ubuntu --rename /usr/bin/firefox
  6. Make a symbolic link to the firefox, so the launcher will launch the new version of firefox

    ln -s /opt/firefox/firefox /usr/bin/firefox
  7. Run firefox

    firefox

    or You can run on Applications >> Internet >> Firefox Web Browser, if firefox shortcut there is no, you can create the new shortcut
    Right click >> Create Launcher
    Name : Firefox
    Command : firefox
    Comment : Web Browser of Mozilla Inc.

How to Install Firefox 3.5 on Linux

December 15, 2009 Leave a comment

Step 1 is to download Firefox 3.5 tarball from the Firefox site. Extract the Firefox 3.5 files from this tar ball and move them to an application directory of your choice. Anything like/home/user/apps/firefox35 (we will use this path as example in this post) or/usr/apps/firefox35 would work fine.

Step 2: Now since you already have Firefox 3.0.11 (or previous) installed, we will not be able to upgrade the older version with the newer version. So, we will create a new profile so that we can safely work in the Firefox 3.5 environment. To do that, create a launcher for the Firefox executable with the -P switch. The command section of the launcher will look something like:/home/user/apps/firefox35/firefox -P

Step 3 Run this executable now, Firefox 3.5 will start with the “Choose User Profile” option. Create a new profile and start having fun.

Do note that not all addons have been migrated to Firefox 3.5 yet, so you might have to miss out on some of your favorite addons for a while. Also, you will have to export your saved passwords and other configurations in the new profile (checkout addons that help you do that or else you will end up doing it manually).

If in case, even after creating a new profile you end up with Firefox 3.0.11 (or your previous version) use the –no-remote switch in your launcher. This switch helps by creating a completely new instance of Firefox, instead of connecting to an existing instance. Using this switch, then, you can keep both your old Firefox version and the sparkling new 3.5

Source : http://www.digimantra.com/firefox/install-firefox-35-linux/