1. 程式人生 > >開啟Vi編輯器出現E325: ATTENTION的解決方法

開啟Vi編輯器出現E325: ATTENTION的解決方法

當開啟Vi編輯器時出現以下的提示時不要著急
E325: ATTENTION
Found a swap file by the name "/etc/.profile.swp"
owned by: root  dated: Wed Jul 14 10:01:10 2010
file name: /etc/profile
modified: YES
user name: root  host name: zhaoyang-laptop
process ID: 1934
While opening file "/etc/profile"
dated: Thu Apr 29 20:18:30 2010
(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/profile"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file "/etc/.profile.swp"

to avoid this message.
"/etc/profile" 28 lines, 497 characters
Press ENTER or type command to continue
E325: ATTENTIONFound a swap file by the name "/etc/.profile.swp"          owned by: root  dated: Wed Jul 14 10:01:10 2010        file name: /etc/profile          modified: YES        user name: root  host name: zhaoyang-laptop        process ID: 1934While opening file "/etc/profile"            dated: Thu Apr 29 20:18:30 2010 (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/profile"    to recover the changes (see ":help recovery").    If you did this already, delete the swap file "/etc/.profile.swp"    to avoid this message."/etc/profile" 28 lines, 497 charactersPress ENTER or type command to continue  

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