to safe xorg,conf file

Screenshot from 2020-08-28 17-52-03.png


Change Driver to scfb and want to safe it but dont know how. Try esc+w, esc+x but it dont seems to work.
New to this and want to use freebsd but first install it on KVM to understand it.

Thnk
Rover
 
You can switch to a different/easier editor, ee, if you are unfamiliar with vi syntax. ;D
To save it, you probably want to switch to root (with su, or something similar).
 
Assuming the editor is vi, which is not really clear, you can try the following in command mode (if not sure whether you are in command or edit mode, just press ESC first).
Code:
:w                     To write the file.
:q                     To exit the editor
:q!                    To exit the editor discarding any changes.
ZZ                     To save the current file and exit the editor
 
Assuming the editor is vi, which is not really clear, you can try the following in command mode (if not sure whether you are in command or edit mode, just press ESC first).
Code:
:w                     To write the file.
:q                     To exit the editor
:q!                    To exit the editor discarding any changes.
ZZ                     To save the current file and exit the editor

Thanks working.:)
 
Back
Top