我正在考虑使用 GNU Icecat,但它似乎不在我可以使用的 ubuntu 存储库中apt-get install
。
他们的网站实际上没有任何自述文件。是否可以安装它以便软件通过定期更新apt-get update && apt-get upgrade
?
答案1
前往http://ftp.gnu.org/gnu/gnuzilla/并下载最新的软件包。
将其解压到您想要的位置。
在那里,您可能只需双击icecat
可执行文件即可启动浏览器,或者先尝试在该位置打开终端:
chmod +x icecat
要创建类似正常安装的浏览器的桌面文件:
使用gedit
文本编辑器:
sudo gedit /usr/share/applications/icecat.desktop
Exex=
然后粘贴此内容,并相应地更改以和开头的行Icon=
:
[Desktop Entry]
Name=Icecat Web Browser
Keywords=Internet;WWW;Browser;Web;Explorer
Exec=path/to/your/location/icecat %u
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=path/to/some/icecat.png
Categories=GNOME;GTK;Network;WebBrowser;
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;x-scheme-handler/chrome;video/webm;application/x-xpinstall;
StartupNotify=true
Actions=NewWindow;NewPrivateWindow;
保存、关闭,您应该在 Dash 或其他启动器中看到它,或者将其添加到面板等。
根据您的桌面环境和/或启动器:为了正确看到启动器中的图标,icecat.png
可能需要在适当的位置放置文件。
假设我们有一个名为 128x128 的文件icecat.png
(我们可以从类似的地方获取这里)。
转到该位置~/.local/share/icons/hicolor/128x128/apps/icecat.png
(或先创建它),然后再次sudo gedit /usr/share/applications/icecat.desktop
将必要的行更改为Icon=icecat
。
答案2
警告:如果您使用任何非官方存储库并从中安装软件
,则您需要自行承担风险。
好吧,无论如何,你都要自担风险:-)请看这里:
此链接向你展示如何搜索此类存储库:
https://launchpad.net/ubuntu/+ppas?name_filter=icecat&show_inactive=on
然后寻找:
→ gnuzilla icecat for 64bit
→https://launchpad.net/~brunoalexandremiguel/+archive/ubuntu/ppa
最后一个链接显示如何像以下命令一样添加此 icecat repo:
sudo add-apt-repository ppa:brunoalexandremiguel/ppa sudo apt-get 更新