博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ubuntu卸载和安装firefox33
阅读量:5914 次
发布时间:2019-06-19

本文共 1604 字,大约阅读时间需要 5 分钟。

hot3.png

之前是用的包管理器装的,位置

cyper@cyper-pc:~/Downloads$ ls -l `which firefox`
lrwxrwxrwx 1 root root 25 Jun  9 06:08 /usr/bin/firefox -> ../lib/firefox/firefox.sh
cyper@cyper-pc:~/Downloads$ 

卸载
cyper@cyper-pc:~/Downloads/java_soft$
sudo apt-get remove --purge firefox
[sudo] password for cyper: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages were automatically installed and are no longer required:
  python-markdown retext-wpgen
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED:
  firefox* firefox-globalmenu* firefox-gnome-support*
说明:apt-get remove --purge package表示删除包,包括删除配置文件等
下载并安装
cd ~/Downloadswget http://ftp.mozilla.org/pub/mozilla.org/firefox/releases/33.1.1/linux-x86_64/en-US/firefox-33.1.1.tar.bz2tar -xjvf firefox-33.1.1.tar.bz2sudo rm -rf /opt/firefox* #这步可选sudo mv firefox /opt/firefox33.1sudo ln -sf /opt/firefox33.1/firefox /usr/bin/firefox

tar: x表示解压,v表示verbose, j表示格式为bzip2, f指定归档文件

ln: s表示软链接,f表示如果目标文件存在,强制替换.

然后我们可以直接在命令行输入firefox启动浏览器了

查看新位置

cyper@cyper-pc:~/Downloads/java_soft$ ls -l `which firefox`

lrwxrwxrwx 1 root root 24 Nov 17 23:27 /usr/bin/firefox -> /opt/firefox33.1/firefox
cyper@cyper-pc:~/Downloads/java_soft$ 

快速启动
新建一个应用程序,命令是firefox %u
图标指向 /opt/firefox33.1/browser/icons/mozicon128.png
解释%u的意思:
Write the command "firefox %U" and press ok (you need "%U" so you can load URLs that are non-local files),
还是不懂%u什么意思,去掉%u也正常。who knows?

参考:http://www.itworld.com/article/2695595/enterprise-software/install-firefox-30-in-ubuntu-14-04.html

转载于:https://my.oschina.net/uniquejava/blog/345730

你可能感兴趣的文章
Apache HBase 2.1.3 发布,分布式数据库
查看>>
微信端H5开发整体解决方案
查看>>
Python之retrying
查看>>
OWASP 10 大 Web 安全问题在 JEE 体系完全失控
查看>>
洛谷 P1640 BZOJ 1854 [SCOI2010]连续攻击游戏
查看>>
如何理解Unity组件化开发模式
查看>>
util.promisify 的那些事儿
查看>>
未来黑科技公司完成亿元Pre-B轮融资,已和宝马达成合作
查看>>
三篇文章了解 TiDB 技术内幕 - 谈调度
查看>>
EqualLogic PS6000:戴尔的突破、机遇和挑战
查看>>
【转】TIOBE 12 月排行榜:古老的 C 和后起之秀 Kotlin,谁是年度编程语言之王?...
查看>>
【DG】DG的3种保护模式
查看>>
[20150107]关于print_table.txt
查看>>
Chrome 如何知道网站启用了SPDY 协议?
查看>>
8天玩转并行开发——第五天 同步机制(下)
查看>>
一次性关闭所有的Activity
查看>>
运算符 - PHP手册笔记
查看>>
二维数组的认识及其表示元素的两种方式
查看>>
LINUX下DNS的查看和配置
查看>>
分布式事务系列(1.2)Spring的事务体系
查看>>