zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    cv2.imwrite()指定图片存储路径问题
    fgets读取文件最后一行重复问题
    KEAZ128 时钟配置
    MinGW x64 for Windows安装
    [python] pygame安装与配置
    S32K144之时钟配置
    C/C++ scanf和gets 区别 , printf和puts区别
    堆排序
    约瑟夫问题
    Coursera 国内无法登陆问题
  • 原文地址:https://www.cnblogs.com/ccw869476711/p/10076712.html
Copyright © 2011-2022 走看看