Ubuntu系统 使用与开发 常见异常与解决办法

1.误删除Ubuntu家目录下系统自带文件夹如Desktop、Downloads等

在开发过程中,不小心在终端中把当前用户的Desktop、Downloads、Music等文件夹删除。
解决措施:
通过修改 ~/.config/user-dirs.dirs 中的XDG_DESKTOP_DIR来重新指定系统文件夹:

# 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/Template"
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"

如果在家目录下不存在这些文件夹,可以在终端中执行mkdir xxx创建相应文件夹,再重启即可匹配到相应系统文件夹。

发布了70 篇原创文章 · 获赞 312 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/CUFEECR/article/details/104148395
今日推荐