Zolved community solution Createarticle_iconnew articleEditarticle_iconedit article

How to install Flock browser on Ubuntu

Installation of Flock on Ubuntu is easy, which we will learn in this article.

  • Go to Applications > Internet > Firefox Web Browser

             
  • Enter the Url http://brentroos.com/2006/07/24/install-flock-on-ubuntu/ and download the Flock tar file on Ubuntu desktop.

        
  • Go to Applications > Accessories > Terminal

                
  • Browse to the folder where the tar file was downloaded and install it using the command

         $ sudo tar -c /opt -xzvf flock-*.linux-i686.tar.gz
               
               
  • To create a symbolic link

         $ sudo ln -s /opt/flock/flock /usr/bin/flock
         
         
  • To create a menu entry

         $ sudo gedit /usr/share/applications/Flock.desktop

         

  • Opens Flock.desktop file in the editor. Copy and paste the given code and save.

        [Desktop Entry]
        Comment=Flock Web Browser
        Exec=flock
        GenericName=Flock Web Browser
        Icon=/opt/flock/icons/mozicon128.png
        Name=Flock
        Path=
        StartupNotify=true
        Terminal=0
        TerminalOptions=
        Type=Application
        X-KDE-SubstituteUID=false
        X-KDE-Username=
        Categories=Network;Application;

       
  • To start Flock browser go to Applications > Internet > Flock

          
  • Opens Flock browser as shown

                       
copyright © 2008, IPTouch, Inc.

 

 

Comments
  • Posted by: xactly_4581 at 18 Feb 05:53 permalink
    I was going through the setup, and one thing to note, /usr/bin/flock contains a binary for manageing file locking mechanisms under linux.. so if you do see that the ln -s fails, do not overright that binary,, it's kinda bad to do that. ;) solution, use an alternate name like i did, "mozflock"