我不小心删除了主文件夹中的一些文件夹(它们是空的)。我创建了一些新文件夹,但它们没有正确的图标等...我该如何逐步重新创建它们?
答案1
确定,恢复已删除的目录
编辑~/.config/user-dirs.dirs
,
gedit ~/.config/user-dirs.dirs
它应该看起来像这样:
# This file is written by xdg-user-dirs-update
# If you want to change or add directories, just edit the line you're
# interested in. All local changes will be retained on the next run
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
# absolute path. No other format is supported.
#
XDG_DESKTOP_DIR="$HOME/Desktop"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/Templates"
XDG_PUBLICSHARE_DIR="$HOME/Public"
XDG_DOCUMENTS_DIR="$HOME/Documents"
XDG_MUSIC_DIR="$HOME/Music"
XDG_PICTURES_DIR="$HOME/Pictures"
XDG_VIDEOS_DIR="$HOME/Videos"
如果失败,请安装并运行 Ubuntu Tweak
答案2
首先,尽快停止使用硬盘上的系统。您需要启动实时 CD 并尝试从那里恢复。
我使用 ext4 文件系统时,效果好坏参半,但请尝试依次使用 testdisk 和 photorec。两者都在存储库中,并且可以在实时会话中安装
sudo apt-get update
sudo apt-get install testdisk
然后从命令行运行 testdisk
# you might be able to run it as a user, but I would run it as root
sudo testdisk
这里有一步一步的教程,还有屏幕截图
http://www.cgsecurity.org/wiki/TestDisk:_undelete_file_for_ext2
如果失败,请尝试 photorec。
Photorec 是 testdisk 包的一部分,这里也有详细的介绍
http://www.cgsecurity.org/wiki/PhotoRec_Step_By_Step
如果失败,你可以尝试 extundelete
http://extundelete.sourceforge.net/
上次我尝试这样做时,并没有恢复我的文件。
祝你好运。