1. 程式人生 > >linux進行檔案vim編輯時沒有退出檔案直接關閉出現E325: ATTENTION Found a swap file by the name "/usr/local/php/etc/.php.ini.swp"

linux進行檔案vim編輯時沒有退出檔案直接關閉出現E325: ATTENTION Found a swap file by the name "/usr/local/php/etc/.php.ini.swp"

E325: ATTENTION
Found a swap file by the name "/usr/local/php/etc/.php.ini.swp"
          owned by: root   dated: Thu Dec  6 14:26:44 2018
         file name: /usr/local/php/etc/php.ini
          modified: YES
         user name: root   host name: iZwz9il5d9pfak99wgsocxZ
        process ID: 31436 (still running)
While opening file "/usr/local/php/etc/php.ini"
             dated: Thu Dec  6 14:44:48 2018
      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 /usr/local/php/etc/php.ini
"
    to recover the changes (see ":help recovery").
    If you did this already, delete the swap file "/usr/local/php/etc/.php.in
-- More --

解決方法:

我們按回車進入vi編輯器輸入:q!退出vi編輯器,在終端輸入rm -f /usr/local/php/etc/.php.ini.swp回車,再一次進入vi編輯器發現以前的提示消失。

 

參考來源:https://www.linuxidc.com/Linux/2014-11/109165.htm