如何清除节奏盒的音乐数据库?我把很多音乐都引进了节奏盒。现在我想让Rhythmbox忘记我导入的所有东西。
发布于 2011-08-08 20:28:16
关闭Rhythmbox并删除~/.local/share/rhythmbox/rhythmdb.xml
中的Rhythmbox数据库。
如果还希望Rhythmbox忘记库路径(它自动查找音乐的目录),则需要从dconf中删除它们:
gsettings set org.gnome.rhythmbox.rhythmdb locations "['file:///dev/null']"
然后,您可以在Edit -> Preferences -> Music
下的Rhythmbox中设置新路径。
(请注意
gsettings reset org.gnome.rhythmbox.rhythmdb locations
无法正常工作,因为Rhythmbox会尝试“智能”,并将主目录用作默认值。使用上面的/dev/null
可以防止这种情况;或者,您可以使用gsettings set
直接设置库路径)。
https://askubuntu.com/questions/56328
复制相似问题