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

相关推荐
A小辣椒2 天前
TShark:Wireshark CLI 功能
linux
A小辣椒2 天前
TShark:基础知识
linux
AlfredZhao2 天前
OCI 明明分配了 200G 系统盘,为什么 df 只看到 30G?
linux·oci
AlfredZhao3 天前
vi 删除指定范围的行,不用再反复按 dd
linux·vi
用户9718356334663 天前
银河麒麟 KY10 申威(SW64) 安装 nginx-1.16.1-2.p01.ky10.sw_64.rpm 详细步骤
linux
猪脚踏浪3 天前
linux 拷贝文件或目录到指定的位置
linux
摇滚侠4 天前
Linux CentOS7 rpm 安装 MySQL 5.7
linux·运维·mysql
bush44 天前
嵌入式linux学习记录十四、术语
linux·嵌入式
载数而行5204 天前
Linux 11 动态监控指令top
linux
不会C语言的男孩4 天前
Linux 系统编程 · 第 8 章:进程基础
linux·c语言