LoginSignup
6
5

More than 5 years have passed since last update.

CentOS6.3上に、Firefox20をインストールする

Last updated at Posted at 2013-04-08

自動インストール

# wget -qO- https://gist.github.com/alingogo/5335285/raw | bash
  • 条件1: CentOS6.3
$ uname -a
Linux localhost.localdomain 2.6.32-279.14.1.el6.x86_64 #1 SMP Tue Nov 6 23:43:09 UTC 2012 x86_64 x86_64 x86_64 GNU/Linux
$ cat /etc/redhat-release
CentOS release 6.3 (Final)
  • 条件2: firefox
http://download.mozilla.org/?product=firefox-20.0&os=linux&lang=ja

手動インストール

  • yumで、最新のfirefoxをインストール
# yum install firefox
# tar zxvf firefox-20.X.X.X.tar.gz
# cp -frp ~/firefox /usr/local/
# mv /usr/bin/firefox{,.bak}
# ln -s /usr/local/firefox/firefox /usr/bin/.
  • 起動して、いろいろなエラーが出たので、以下のコマンドを実行する
yum install ld-linux.so.2
yum install libstdc++
yum install libstdc++.so.6
yum install libxul.so
yum install libpk-gtk-module.so libcanberra-gtk-module.so
6
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
5