您的位置:首页 > 运维架构 > Linux

Vi编辑异常退出解决

2016-06-21 22:46 441 查看
一次不小心在vi编辑器中异常退出导致下次进来的时候出现下面信息

E325: ATTENTION
Found a swap file by the name ".my.cnf.swp"
owned by: root   dated: Tue Jun 21 22:42:20 2016
file name: /etc/my.cnf
modified: YES
user name: root   host name: VM_67_180_centos
process ID: 30244
While opening file "my.cnf"
dated: Tue Jun 21 22:36:20 2016

(1) Another program may be editing the same file.  If this is the case,
be careful not to end up with two different instances of the same
file when making changes.  Quit, or continue with caution.
(2) An edit session for this file crashed.
If this is the case, use ":recover" or "vim -r my.cnf"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file ".my.cnf.swp"
to avoid this message.
"my.cnf" 146L, 4727C
Press ENTER or type command to continue


[root@VM_67_180_centos etc]# ls -a


发现里面多了个隐藏文件.my.cnf.swp

删除该文件再次打开就没有警告了 ^_^

[root@VM_67_180_centos etc]# rm .my.cnf.swp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  vi-Linux