使用加密主目录编辑 MP3 标签

使用加密主目录编辑 MP3 标签

为什么 MP3 标签编辑器无法访问我的加密主目录?

我尝试过 EasyTAG、puddletag 和 MP3 Diags...

这似乎是一个权限问题,但 Banshee 可以毫无问题地播放/编辑我的音乐文件。

图像

图像

ls -ld / /home $HOME

drwxr-xr-x  25 root root  4096 Aug 22 12:23 /
drwxr-x--x   4 root root  4096 Sep 12  2012 /home
drwxr-x--x 102 matt matt 36864 Sep  1 11:47 /home/matt

script some.log
easytag
exit

演出:

Script started on Mon 02 Sep 2013 16:14:58 EDT
]0;matt@Latitude: ~matt@Latitude:~$ easytag
]0;matt@Latitude: ~matt@Latitude:~$ exit
exit

Script done on Mon 02 Sep 2013 16:15:33 EDT

答案1

在我看来,这似乎是权限问题。在我的系统上,

walt@squid:~(0)$ ls -ld / /home /home/walt
drwxr-xr-x 27 root root 4096 Dec 11 15:13 /
drwxr-xr-x 6 root root 4096 Feb 16 2013 /home
drwx------ 86 walt walt 24576 Dec 11 16:52 /home/walt

而你的是:

ls -ld / /home $HOME

drwxr-xr-x  25 root root  4096 Aug 22 12:23 /
drwxr-x--x   4 root root  4096 Sep 12  2012 /home
drwxr-x--x 102 matt matt 36864 Sep  1 11:47 /home/matt

我会通过以下方式修复此问题 sudo chmod o+r /home

我想指出的是,只有在您注销时,“加密主目录”才会显示为加密。当您登录时,它会(通过mount魔法)与解密版本叠加。如果您希望其他用户在您注销时处理您的文件,“加密主目录”将成为此问题的一部分。

相关内容