解决方案:
使用
sudo mkdir -p /root/.local/share/命令创建目录: /root/.local/share
这两天捣腾Ubuntu11.10的时候,想要把sources.list换成中国地区捣更新源时出现以下警告信息:
(gedit:1962): Gtk-WARNING **: Attempting to store changes into `/root/.local/share/recently-used.xbel', but failed: 创建文件“/root/.local/share/recently-used.xbel.FLBFBW”失败:没有那个文件或目录
(gedit:1962): Gtk-WARNING **: Attempting to set the permissions of `/root/.local/share/recently-used.xbel', but failed: 没有那个文件或目录
(gedit:1962): Gtk-WARNING **: Attempting to store changes into `/root/.local/share/recently-used.xbel', but failed: 创建文件“/root/.local/share/recently-used.xbel.7808AW”失败:没有那个文件或目录
(gedit:1962): Gtk-WARNING **: Attempting to set the permissions of `/root/.local/share/recently-used.xbel', but failed: 没有那个文件或目录
(gedit:1962): Gtk-WARNING **: Attempting to store changes into `/root/.local/share/recently-used.xbel', but failed: 创建文件“/root/.local/share/recently-used.xbel.QC1OBW”失败:没有那个文件或目录
(gedit:1962): Gtk-WARNING **: Attempting to set the permissions of `/root/.local/share/recently-used.xbel', but failed: 没有那个文件或目录从字面意思上可以知道,gedit想要保存信息到/root/.local/share/recently-used.xbel文件里,但是没有成功。那我们看看到底有没有这个文件夹:
sudo ls -d /root/.local/share/
显示结果发现,没有。因此我们的解决方案是:创建需要的文件夹 /root/.local/share/
sudo mkdir -p /root/.local/share/再用gedit编辑,发现警告消失,ok。
本文介绍了解决Ubuntu系统中gedit编辑器出现的一系列警告信息的方法。通过使用sudo mkdir -p /root/.local/share/命令创建指定目录,可以消除与文件权限和存储相关的错误。

982

被折叠的 条评论
为什么被折叠?



