Linux环境配置

在进行Linux环境编辑的时候,当时编辑会话的时候突然退出了,进来再配置/etc/profile出错了

报错代码

E325: ATTENTION
Found a swap file by the name ".profile.swp"
          owned by: root   dated: Mon Oct 30 15:28:44 2023
         file name: /etc/profile
          modified: YES
         user name: root   host name: Linux2
        process ID: 63520
While opening file "profile"
             dated: Mon Oct 30 11:15:53 2023

(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 profile"
    to recover the changes (see ":help recovery").
    If you did this already, delete the swap file ".profile.swp"
    to avoid this message.
"profile" 88L, 2187C
Press ENTER or type command to continue

错误代码大概翻译

E325:注意
找到名为".profile.swp"的交换文件
所有者:root日期:Mon Oct 30 15:28:44 2023
文件名称:/etc/profile
修改:是的
用户名:root主机名:Linux2
进程ID: 63520
打开文件profile时
日期:2023年10月30日星期一11:15:53

(1)另一个程序可能正在编辑同一个文件。如果是这样的话,
注意不要出现相同的两个不同实例
文件时进行更改。退出,或者谨慎地继续。
(2)这个文件的编辑会话崩溃。
如果是这种情况,使用":recover"或"vim -r profile"
要恢复更改(请参阅“:help recovery”)。
如果您已经这样做了,请删除交换文件".profile.swp"。
避免此消息。
“型材”88L, 2187C
按ENTER或输入命令继续

这个错误信息是Vim编辑器提示的,它说明在编辑/etc/profile文件时发生了异常或错误。具体而言,这个错误信息显示了一个交换文件(swap file),它是Vim在编辑/etc/profile时自动创建的。

这个交换文件的存在意味着有另外一个程序正在编辑同一个文件,或者之前编辑该文件的Vim会话崩溃了,但还留下了交换文件。为了避免冲突,Vim提醒您要注意:

  1. 如果确信没有其他程序正在编辑该文件,请按 “ENTER” 或输入命令以继续编辑。
  2. 如果该文件之前的Vim会话崩溃了,请使用 ":recover" 命令或运行 "vim -r profile" 命令来恢复文件中未保存的修改。如果您已经执行了这个操作,那么请删除交换文件 ".profile.swp",以避免再次出现此错误消息。

因此,在这种情况下,您可以尝试按 “ENTER” 键来继续编辑,或者使用:recover命令或运行"vim -r profile"命令来恢复文件中未保存的修改。如果您确定不需要保存之前的修改,请直接删除交换文件,例如使用命令rm -f /etc/.profile.swp

你可能感兴趣的:(bug总结,ssh,linux,centos)