Citando uma resposta por esmail no askubuntu, isso deve funcionar da mesma forma no sistema operacional elementar também:
I'm currently storing the sub-folders of my home (e.g.
~/Documents
,~/Music
) on an NTFS filesystem and it appears to be working fine a few months in.As an example, here's how to host your
~/Documents
in your Windows profile folders on an NTFS partition:
- First make sure you have the NTFS partition set to automount so it's accessible to the system each boot.
- Move any files that might have accumulated in
~/Documents
over to the NTFS partition (e.g.mv ~/Documents/* /mnt/winblows/Users/Username/Documents/
).
Faça backup dos seus dados antes e / ou tente uma execução a seco antes de trabalhar com seus dados reais. É melhor prevenir do que remediar.
- Now delete the
~/Documents
directory and create a link to that NTFS folder in its place namedDocuments
(e.g.ln -s mnt/winblows/Users/Username/Documents Documents
).
Você precisa executar o comando ln -s
enquanto seu diretório de trabalho atual é ~.
Note: You might have to make ensure your
~/.config/user-dirs.dirs
is in sync with the folder locations you've chosen (I did). See this answer for more details. Also, be careful to note the actual locations of your Windows user profile directories as these vary from version to version.
Minha nota: Eu tive uma configuração semelhante por algum tempo, onde eu vinculei certas pastas de configuração à partição do Windows para que, por exemplo, o Pidgin e o Thunderbird compartilhassem a mesma configuração em dual boot. A ligação funcionou muito bem, mas como as versões do programa são muitas vezes diferentes para o Windows e o Linux, por vezes, as configurações ficam confusas.