📜  删除 google chrome linux - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:36:54.449000             🧑  作者: Mango

删除 Google Chrome Linux - Shell-Bash

在 Linux 操作系统中,删除 Google Chrome 浏览器可以使用 Shell-Bash 命令行工具。本篇文章将向您介绍如何使用 Shell-Bash 在 Linux 系统中删除 Google Chrome 浏览器。

步骤 1 - 检查 Google Chrome 版本

在删除 Google Chrome 之前,您需要确定当前的 Google Chrome 版本号。您可以在 Chrome 浏览器地址栏键入以下命令来查看版本号:

chrome://version

通过该命令可以查看当前的 Google Chrome 版本号,比如:

Google Chrome 96.0.4664.93
步骤 2 - 删除 Google Chrome

要删除 Google Chrome,您需要使用以下 Shell-Bash 命令:

sudo apt remove google-chrome-stable

以上命令将删除 Google Chrome 稳定版本,如果您安装的是其他版本,请替换相应的名称。

步骤 3 - 删除配置文件和数据

除了卸载应用程序之外,您还应该删除配置文件和数据,以确保完全删除 Google Chrome。

首先,删除用户配置文件:

rm -rf ~/.config/google-chrome/

接下来,删除用户数据目录:

rm -rf ~/.cache/google-chrome/

注意: 这将删除您的所有 Google Chrome 用户数据,包括书签、历史记录和扩展程序等。请在操作之前备份这些文件。

结论

本文介绍了如何使用 Shell-Bash 命令删除 Google Chrome 浏览器及其相关配置文件和数据。如果您需要重新安装 Google Chrome,请下载适用于您的 Linux 版本的 Google Chrome 安装程序并按照安装向导操作即可。