「vi」がすでに開いているとレポートしたときにファイルを開く方法は?


10

何らかの理由で、を編集しようとするvi .profileと、ターミナルで、編集モードの.profileがすでにあることを通知され続けます。

E325: ATTENTION
Found a swap file by the name ".profile.swp"
          owned by: smaranh   dated: Fri Apr  6 09:46:45 2012
         file name: ~smaranh/.profile
          modified: YES
         user name: smaranh   host name: ubuntu
        process ID: 4394
While opening file ".profile"
             dated: Fri Apr 27 10:35:32 2012
      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 .profile"
    to recover the changes (see ":help recovery").
    If you did this already, delete the swap file ".profile.swp"
    to avoid this message.
".profile" 23 lines, 713 characters
Press ENTER or type command to continue

そのため、上記のメッセージが表示していたプロセスを強制終了しようとしましたが、引き続き表示されNo such processます。

次にps -ef | grep 4394、この出力を使用して取得しました。

smaranh   3491  3375  0 10:08 pts/3    00:00:00 grep --color=auto 4394

だから私は試しましたkill -9 3491が、それでも私に与えましたNo such process。何が悪いのかわからないのですか?

すでに開いているものを閉じるにはどうすればよい.profileですか?

回答:


16

これは古いエディタであり、おそらくエディタがクラッシュしたか、強制終了されたために残っています。安全に消去できます。

rm .profile.swp

1
.profileファイルの元のコンテンツはまだ残っていますか?
Sam007 2012年

1
いいえ。編集した回答を確認してください。
SirCharlo、2012年

@ Sam007申し訳ありません。私の間違い。私はちょっと眠くなっています...
エリックカルバリョ

@EricCarvalho常にrmコマンドに注意してください!!
SirCharlo 2012年

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.