如何在 Xubuntu 中更改默认用户文件夹位置?我有一个 Dropbox,我把所有文档和音乐都保存在上面。我想设置它,以便默认情况下我的所有文档和音乐都保存在 /home/sam/dropbox/Documents 和 /home/sam/dropbox/Music 中。
答案1
原则上,这很简单:将 Documents 文件夹和 Music 文件夹移至 Dropbox 文件夹。但是,某些应用程序会假定文件夹存在于 中~/home
,因此您应该在主文件夹中创建指向“真实”文件夹的链接。
您可以使用以下命令执行此操作:
ln -s ~/Dropbox/Documents ~/Documents
和
ln -s ~/Dropbox/Music ~/Music
(将文件夹移至 Dropbox 文件夹后)
这些链接就像是实际的文件夹一样,但文件将存储在 Dropbox 文件夹中。
在我看来,这是最优雅的方式。然而,还有一种更激进的方式来设置用户目录的默认路径:
mousepad ~/.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/Bureaublad"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/Sjablonen"
XDG_PUBLICSHARE_DIR="$HOME/Openbaar"
XDG_DOCUMENTS_DIR="$HOME/Documenten"
XDG_MUSIC_DIR="$HOME/Muziek"
XDG_PICTURES_DIR="$HOME/Afbeeldingen"
XDG_VIDEOS_DIR="$HOME/Video's"
我建议选择第一个选项,因为它可以满足您的描述,而无需更改默认设置。
答案2
或者,您也可以与现有文件夹一起设置新文件夹书签。或编辑书签。在我使用的 14.04 beta 中,它位于菜单栏中。在 13.10 中,我记得它位于设置中的搜索按钮旁边。