用vim编辑文件时出现E325: ATTENTION错误的解决方法

当用vim编辑一个文件时出现下列错误

[[email protected] ~]# vim /usr/local/msmtp/etc/msmtprc

E325: ATTENTION
Found a swap file by the name "/usr/local/msmtp/etc/.msmtprc.swp"
          owned by: root   dated: Thu May 22 15:47:09 2014
         file name: /usr/local/msmtp/etc/msmtprc
          modified: YES
         user name: root   host name: zabbix.clvn.com.cn
        process ID: 3122
While opening file "/usr/local/msmtp/etc/msmtprc"
             dated: Thu May 22 15:44:52 2014

(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/msmtp/etc/msmtprc"
    to recover the changes (see ":help recovery").
    If you did this already, delete the swap file "/usr/local/msmtp/etc/.msmtprc.swp"
    to avoid this message.

Swap file "/usr/local/msmtp/etc/.msmtprc.swp" already exists!
[O]pen Read-Only, (E)dit anyway, (R)ecover, (D)elete it, (Q)uit, (A)bort:

解决方法:

方法一、可以在上面出现的提示中按D,将临时文件删除掉

方法二、

[[email protected] ~]# cd /usr/local/msmtp/etc
[[email protected] etc]# ls -a
.  ..  msmtprc  .msmtprc.swp

[[email protected] etc]# rm -rf .msmtprc.swp

用vim编辑文件时出现E325: ATTENTION错误的解决方法

时间: 2024-10-24 19:16:08

用vim编辑文件时出现E325: ATTENTION错误的解决方法的相关文章

Ubuntu下配置Sublime到Dash board 以及 VI/VIM编辑文件时无权限保存的问题

[1]Ubuntu下配置Sublime到Dash board Ubuntu是个好系统,Sublime Text 是个好编辑器. 下载&安装 个人习惯喜欢到官网下载软件,http://www.sublimetext.com/2 选择合适的包下载回来的格式是.tar.bz2格式,需要进行解压. 1. 解压: tar -xvf Sublime\ Text\ 2.0.2.tar.bz2 2.为了在Terminal的任何位置都能执行./sublime_text文件,将解压后他的目录保存到环境变量$PATH

MVC.Net:对MVC5部署时出现403.14错误的解决方法

当我们部署MVC5到IIS 7的时候,有时会出现403.14的错误,如下图: 对于这个错误的解决方法就是在应用程序的web.config的system.webServer节点中加入这一句: <modules runAllManagedModulesForAllRequests="true"></modules> 如下例: <system.webServer> <!-- 此行必须有,否则IIS7无法启动 --> <modules ru

ASP.NET输出PNG图片时出现GDI+一般性错误的解决方法

偶原来的用ASP.NET生成验证码图片时用的是JPG格式,今天想把它改成PNG格式的,结果就出现GDI+一般性错误,查了N久资料,才发现解决的办法,对分享此解决办法的网友深表感谢 Response.Clear();Response.ContentType = "image/PNG";img.Save(Response.OutputStream, ChartFormat.Png);竟然出现异常,是GDI+一般性错误.但是如果格式是Response.ContentType = "

【原创】关于QT Creator编译程序时遇到几个错误的解决方法

1.mainwindow.obj:-1: error: LNK2019: 无法解析的外部符号 "public: __thiscall QwtPlot::QwtPlot(class QWidget *)" ([email protected]@[email protected]@@@Z),该符号在函数 "public: void __thiscall Ui_MainWindow::setupUi 这样的错误: 解决方法:1.执行  创建--->执行qmake 2.没有添加

linux下vi或vim编辑文件时提示Found a swap file by the name的原因及解决方法

在linux下用vi或vim打开test.java文件时 [[email protected] test]# vi test.java 出现了如下信息: E325: ATTENTION     Found a swap file by the name ".test.java.swp"             owned by: root   dated: Wed Dec  7 13:52:56 2011         file name: /var/tmp/Test.java  

Ubuntu16.04 使用sudo cat EOF 编辑文件,提示Permission denied错误的解决办法

一.执行命令报错 在Ubuntu16.04下,使用如下命令,修改hosts主机文件,居然提示权限错误: [email protected]:~$ sudo cat <<EOF > /etc/hosts127.0.0.1 localhost192.168.1.101 master1192.168.1.102 worker1192.168.1.103 worker2192.168.1.104 worker3EOF-bash: /etc/hosts: Permission denied[ema

ios 开发中 --做登陆注册时编译出现的错误和解决方法

这种问题,通常出现在添加第三方库文件或者多人开发时. 这种问题一般是找不到文件而导致的链接错误. 我们可以从如下几个方面着手排查. 1.以如下错误为例,如果是多人开发,你同步完成后发现出现如下的错误. 这个是使用CocoaPods下载的BmobSDK 实现注册时出现的错 解决方法:(图示) Undefined symbols for architecture armv7: "_OBJC_CLASS_$_MyPageLogViewController", referenced from:

elasticsearch启动时提示内存不足错误的解决方法

修改 jvm空间分 cd到elasticsearch目录 vim config/jvm.options 修改: -Xms2g -Xmx2g 为 -Xms256m -Xmx256m 本人主机内存为1G 原文地址:https://www.cnblogs.com/dbSyk/p/10090774.html

Myeclipse开发环境下文件中出现的提示错误与解决方法:The import javax.servlet cannot be resolved?

1.开发工具:MyEclipse 2.右击项目  >>  Build Path  >>  Add External Archives (Tomcat  >>  lib  >>  servlet -api.jar)  如图1: 图1 3.打开  >>  servlet -api.jar 4.完成