I am trying to install Java via the terminal using the guide How to Install Oracle Java JRE on Ubuntu Linux.
Everything went perfectly fine until "Step 11: Save the /etc/profile file and exit":
I spent maybe 30 minutes figuring out what ^
means (apparently Ctrl), but I cannot understand how that guy called the save command where you can choose yes
and no
.
I did try ^O
, but I didn't get the same result as he did. How can I fix this problem?
Ctrl + X will quit the editor and you will be asked if you want to save your changes. If you do, press Y for
Yes
.Ctrl + O should also work, since that means to save the file, but you won't be asked "Save modifier buffer ? " because you already told
nano
to save.One can save changes via Ctrl+O which actually means Write Out while editing a file through
nano
:Where
^
means Ctrl.Note : You'll also have to press Enter to overwrite the existing file if it exists.
With the image shown right now you can save just pressing "Y" for yes. To know what key combinations you need to do just check the White square besides the action, which are as follow:
I am using CTRL + S to save and CTRL + X to quit.