问题描述:
在linux下用vi或vim打开文件时
[root@honglingtech-data001 config]# vim server.properties
E325: ATTENTION
Found a swap file by the name ".server.properties.swp"
owned by: obd-data-dev dated: Tue Aug 3 18:18:21 2021
file name: /opt/module/kafka_2.11-2.4.1/config/server.properties
modified: YES
user name: root host name: honglingtech-data001
process ID: 11423
While opening file "server.properties"
dated: Tue Aug 3 18:25:18 2021
NEWER than swap file!
(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 server.properties"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file ".server.properties.swp"
to avoid this message.
Swap file ".server.properties.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:
问题原因:
原因是在此次vi或vim操作前有过一次使用vi或vim 操作Test.java文件时出现了异常中断,所以在当前目录下产生了一个.Test.java.swp文件,这个文件使用ls命令查看不能发现,使用ls -a命令查看可以知道Test.java.swp是一个隐藏文件。
注:以.开头的文件就是隐藏文件

问题解决:
想要不再有上面的警告提示,把该文件删除即可:
[root@honglingtech-data001 config]# rm .server.properties.swp
rm: remove regular file ‘.server.properties.swp’? y
[root@honglingtech-data001 config]#
在Linux环境中使用vim编辑文件时,如果之前编辑过程意外中断,可能会出现swapfile警告。这个问题是由于系统创建了一个隐藏的swapfile,导致再次编辑时的冲突。解决方法是确认是否需要恢复之前的编辑内容,或者直接删除swapfile以消除警告。通过输入`rm .server.properties.swp`命令,可以删除swapfile并继续编辑文件。
5376

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



