zoukankan      html  css  js  c++  java
  • [转载]How to Install Firefox 33 on CentOS, Redhat and Other Linux Distributions

    FROM: http://tecadmin.net/install-firefox-on-linux/

    Firefox 33 has been released for Systems and Android on October 13, 2014 with various bug fixes and updates. Below is the list of few changes which is made in Firefox 33. Read more details about this release of Firefox.

    firefox-logo

    What’s New in Firefox 33

    • OpenH264 support available.
    • Improved search experience through the location bar.
    • Slimmer and faster JavaScript strings.
    • Support for connecting to HTTP proxy over HTTPS.
    • New CSP (Content Security Policy) backend.
    • and various bug fixes…

    This article will help you to install Firefox 33 on CentOS, RHEL Systems. This article will use Firefox 31 source code available for Linux systems, which doesn’t required any compilation etc. We need to just extract the archived file and start using it.

    Step 1: Download Firefox Archive

    Download the Firefox 33 source code as per your system platform using one of following set of commands.

    For 32-Bit Systems

    # cd /usr/local
    # wget http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/33.0/linux-i686/en-US/firefox-33.0.tar.bz2
    

    For 64-Bit Systems

    # cd /usr/local
    # wget http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/33.0/linux-x86_64/en-US/firefox-33.0.tar.bz2
    

    Step 2: Extract Archive

    Extract the downloaded archive file on your system using following command.

    # tar xvjf firefox-33.0.tar.bz2
    

    Step 3: Configure Firefox

    To install firefox we don’t need to make any installation, We just need to create a softlink of firefox binary file to systems bin directory to make it accessible from anywhere in system.

    # ln -s /usr/local/firefox/firefox /usr/bin/firefox
    

    Now start firefox using command line

     # firefox
    

    firefox-33

  • 相关阅读:
    SPI通信协议(SPI总线)学习
    编译内核提示mkimage command not found – U-Boot images will not be built
    Ubuntu samba服务搭建
    Ubuntu telnet服务搭建
    嵌入式 PPPD工具实现3G拨号实践以及工具PPPD和CHAT详解摘录
    helloworld模块
    shell脚本文件判断
    git入门教程
    ILI9341支持32*32点阵英文字符(stm32)
    tft英文8*32尺寸字符库
  • 原文地址:https://www.cnblogs.com/wmx3ng/p/4186348.html
Copyright © 2011-2022 走看看