# 终端快速下载
wget https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US
# apt系
sudo apt --purge remove firefox
# 下载
sudo tar xjf firefox_dev.tar.bz2 -C /opt/
# 切换到家目录/你的主用户
sudo vim .bashrc
export PATH=/opt/firefox:$PATH
#保存并关闭 .bashrc 文件后,你需要通过以下命令使更改生效:
source ~/.bashrc
ln -s /opt/firefox/firefox /usr/local/bin/firefox
touch /usr/share/applications/firefox-developer.desktop
sudo vim /usr/share/applications/firefox-developer.desktop
[Desktop Entry]
Name=Firefox Developer
GenericName=Firefox Developer Edition
Exec=/usr/local/bin/firefox
Terminal=false
Icon=/opt/firefox/browser/chrome/icons/default/default48.png
Type=Application
Categories=Application;Network;X-Developer;
Comment=Firefox Developer Edition Web Browser
[Desktop Entry]
Name=Firefox Developer Edition
GenericName=Web Browser
Exec=/usr/bin/firefox-developer-edition-en-us-kbx %u
Icon=firefox-developer-edition
Terminal=false
Type=Application
MimeType=text/html;text/xml;application/xhtml+xml;application/vnd.mozilla.xul+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https;
StartupNotify=true
Categories=Network;WebBrowser;
Keywords=web;browser;internet;
Actions=new-window;new-private-window;
StartupWMClass=Firefox Developer Edition
[Desktop Action new-window]
Name=Open a New Window
Exec=/usr/bin/firefox-developer-edition-en-us-kbx %u
[Desktop Action new-private-window]
Name=Open a New Private Window
Exec=/usr/bin/firefox-developer-edition-en-us-kbx --private-window %u
sudo apt update
sudo apt install firefox-developer-edition-en-us-kbx
设置Firefox Developer Edition为默认浏览器:
默认自带包的操作系统可以实现如图所示
#2.下载安装包
[download](https://www.google.com/intl/en_in/chrome/dev/)
#3 新版kali再也不存在以前那些乱七八糟的bug 直接安装就可以了
sudo dpkg -i google-chrome-stable_current_amd64.deb
# 注意 apt也可以安装deb包 sudo apt install ./google-chrome-stable_current_amd64.deb
#注意按照包的id 选择自己需要的版本
新手学生不要尝试ubtable这类不稳定版本 很多报错非常无解 需要针对这个安装包的配置文件的路经等信息进行修改
#查看已安装的所有 Google Chrome 版本
dpkg --get-selections | grep -i chrome
# 普通删除
sudo apt-get remove google-chrome-unstable
# 完整删除
sudo apt-get purge google-chrome-unstable
sudo apt-get update
sudo apt install fcitx fcitx-googlepinyin
#(新机)出现蓝色背景板提示是否重启进程 选yes
reboot
#重启后就可切换google拼音输入法
#旧版必然不一样
#在左上角菜单栏输入 fcitx 添加中文
后期如有bug 请评论区留言 我会依次完善教学
└─$ sudo apt-get install fcitx-googlepinyin
[sudo] password for chen:
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.
sudo dpkg --configure -a
└─$ sudo apt-get install fcitx-googlepinyin
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
fcitx-googlepinyin is already the newest version (0.1.6-5).
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
libapache2-mod-php : Depends: libapache2-mod-php7.4 but it is not installable
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
apt --fix-broken install
# https://www.microsoft.com/en-us/edge/download/insider?form=MA13FJ
#1添加Microsoft产品密钥: 首先,你需要导入Microsoft的GPG公钥。你可以通过以下命令来添加Microsoft产品密钥:
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
#添加Microsoft Edge Dev软件源: 然后,你需要在sources.list文件中添加Microsoft Edge Dev的软件源。你可以通过以下命令来添加软件源:
echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" | sudo tee /etc/apt/sources.list.d/microsoft-edge-dev.list
sudo apt update
sudo apt install microsoft-edge-dev