Ubuntu下载安装chrome浏览器

方法一:wget下载并安装

1、创建文件夹存安装包

bash 复制代码
cd /root/Downloads
mkdir chrome

2、下载安装包到文件夹内

bash 复制代码
wget -c 'https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb' -P /root/Downloads/chrome

3、安装

bash 复制代码
cd chrome
sudo dpkg -i google-chrome-stable_current_amd64.deb

4、安装成功

方法二:apt install安装

bash 复制代码
sudo apt update
sudo apt-get install -f
# 安装
sudo apt install google-chrome-stable
# 移除
sudo apt purge google-chrome-stable

参考链接

https://blog.51cto.com/u_15531854/8884646

相关推荐
s_daqing5 分钟前
ubuntu(arm)安装redis
linux·redis·ubuntu
林鸿群13 分钟前
ubuntu 26.04 安装mysql-server
linux·mysql·ubuntu
betazhou17 分钟前
rsync使用案例分析
linux·运维·服务器·rsync·同步数据
安静的技术开发者1 小时前
Linux Ubuntu学习笔记
linux·ubuntu
geshifei1 小时前
Sched ext回调1——init_task (linux 6.15.7)
linux·ebpf
晚风予卿云月2 小时前
【Linux】自动化构建—make/Makefile
linux·自动化·make/makefile
脑子进水养啥鱼?2 小时前
Linux find 命令
linux·运维
梓䈑2 小时前
【Linux系统】实现线程池项目(含日志类的设计)
linux·服务器·c++
Xiaok10182 小时前
解决GitHub双重认证问题:使用Chrome插件Authenticator
chrome·github·2fa
EverydayJoy^v^3 小时前
RH124简单知识点——第8章——配置和保护SSH
linux·运维·ssh