大家好,欢迎来到IT知识分享网。
提示:记得点赞加关注哦!
目录
问题描述
提示:这里描述linux中遇到的问题:
例如:Linux打开文件报错E325解决方法
E325: ATTENTION
Found a swap file by the name "/etc/.hosts.swp"
owned by: root dated: Thu Jul 9 07:57:44 2020
file name: /etc/hosts
modified: YES
user name: root host name: 192.168.106.128
process ID: 113594 (still running)
While opening file "/etc/hosts"
dated: Thu Jul 9 07:34:35 2020
(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 /etc/hosts"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file "/etc/.hosts.swp"
to avoid this message.
Swap file "/etc/.hosts.swp" already exists!
原因分析:
这个错误的的原因是上次打开文件后未正常关闭,留下了一个文件名加.swp后缀的文件(隐藏文件)。删除这个.swp文件便能正常打开 文件了
解决方案:
查看所有文件(包括隐藏文件):ll -a
删除命令:(文件所在文件夹执行)
rm -rf .hosts.swp
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/23502.html