适用于 Oracle Linux 的 Web 浏览器

适用于 Oracle Linux 的 Web 浏览器

我正在使用 Oracle Linux 作为开发机器。我正在寻找 Web 浏览器,但似乎找不到它们:

$ rpm -qa | grep -i web
pywebkitgtk-1.1.6-3.el6.x86_64
webkitgtk-1.2.6-5.el6.x86_64
kurdit-unikurd-web-fonts-20020502-6.el6.noarch
$ rpm -qa | grep -i browser

我尝试安装 Chrome、Chromium、Opera 和 Dillo,但是:

$ sudo yum install chrome
Loaded plugins: refresh-packagekit, security
Setting up Install Process
No package chrome available.
Error: Nothing to do
$ sudo yum install chromium
Loaded plugins: refresh-packagekit, security
Setting up Install Process
No package chromium available.
Error: Nothing to do
$ sudo yum install opera
Loaded plugins: refresh-packagekit, security
Setting up Install Process
No package opera available.
Error: Nothing to do
$ sudo yum install dillo
Loaded plugins: refresh-packagekit, security
Setting up Install Process
No package dillo available.
Error: Nothing to do

有谁知道有哪些浏览器可用(除此之外lynx,这对我来说使用起来很痛苦)?

答案1

已安装的 Oracle Linux Web 浏览器名为征服者,您可以在“应用程序 -> Internet 菜单”中找到它。

否则,当您正确设置 yum 后,您可以发出:

sudo yum install firefox

答案2

铬:

您还可以在 Oracle Linux Release 7 上安装 Chromium(感觉像 Google Chrome),如下所示:

sudo yum install chromium --enablerepo=ol7_developer_EPEL

谷歌浏览器:

您还可以通过创建以下/etc/yum.repos.d/google-chrome.repo包含内容的 repo 文件来安装 Google Chrome:

[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64
gpgkey=https://dl.google.com/linux/linux_signing_key.pub
gpgcheck=1
enabled=1

现在像这样安装 Google Chrome:

sudo yum install google-chrome

相关内容