我查看了所有其他帖子,但找不到提到的目录(~/.config/google-chrome/Default/Bookmarks
,它是一个 JSON 文件。)。作为 Ubuntu/Linux 的 2 天新手,我想知道最新版本中的位置是否已更改,如果没有,我如何找到指示的目录。我已以 root 身份登录并搜索该文件夹,但找不到它,尽管我从 html 文件导入了书签,所以我知道它们必须保存在某个地方。
答案1
如果您以 root 身份登录,则 ~ 将带您进入 root 的主目录。您可能需要查看 /home/USERNAME/.config/google-chrome/Default/
该文件名为“书签”。
将 USERNAME 替换为您的实际用户名。
另外,请记住,Ubuntu 与许多 Linux 发行版一样,文件和目录区分大小写。
题外话,您不应该以 root 身份登录。通常,大多数人sudo
在需要以 root 身份执行命令时都会使用。
[编辑回复评论]
如果您以 root 身份登录到终端,并且看到,bin, etc, lib, home, root etc.
则表示您位于驱动器的“根目录”。类似于 C:。
~
是当前用户主目录的快捷方式。由于您以 root 身份登录,因此执行cd ~
此操作将带您进入/root/
。但是,您的 Google Chrome 设置很可能存储在您的普通用户帐户下,该帐户位于/home/USERNAME
。
每当您看到.FOLDERNAME
时,就表示它被隐藏了。如果您这样做ls
,则文件夹将不会显示。
因此,无论您是以 root 身份还是用户身份登录,请执行以下操作:
cd /home
ls
#you will see a directory that is named your normal useraccount
cd USERACCOUNT
cd .config
cd google-chrome
cd Default
#you can then edit your Bookmarks file by using PICO, VI, GEDIT, etc
#(whichever editor you have installed)
gedit Bookmarks
or
sudo apt-get install nano -y && nano Bookmarks
#the above command will install nano (terminal based text editor)
#and then use nano to edit Bookmarks