I am doing a Linux installation. I installed the system fine and am trying to change the vi /etc/hosts file. I have edited the file but am not sure how to save it.

I have --INSERT-- showing at the bottom.

link|improve this question
feedback

migrated from serverfault.com Jul 28 '10 at 15:47

This question came from our site for system administrators and desktop support professionals.

2 Answers

First press ESC so you get back to command mode, then do.

:x (quit and save)

or

:w
and
:q

or

:wq
link|improve this answer
3  
I believe you can also do :wq to save and quit in one command. – Grant Palin Jul 28 '10 at 14:48
@Grant Palin, That is correct. – Anders Jul 28 '10 at 14:52
feedback

You can also use the shortcut Shift-Z-Z from command mode (as Anders said, press Esc to exit Insert mode and return to Command mode) to save and exit to the command prompt.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown