Newbie Ubuntu user here, currently running 18.04. I haven't had any issues with the kernel until now.
I had to unplug and move my PC out of the room whilst cleaning, and when I plugged everything back in and booted it up, the desktop, login screen and such were all zoomed in, as if I was set to a resolution of 640 x 480. I tried going into the resolutions option menu, but the drop-down has nothing in it. I assumed my video cards needed an update, but every attempt has resulted in a "command not found" output from the terminal. What am I doing wrong?
Edit: To clarify, all that I have done was the following: I shut down my PC, unplug it following its complete shutdown, plug everything back in and turn it on. It started with the 640 x 480 resolution on its own, with seemingly no user input. I made no changes to the system before this procedure, and in an attempt to fix it, I entered the following command line into the terminal
sudo apt-get-update
Which resulted in an output of
apt-get-update: command not found [like this][2]
Will do, and apologies about the missing information. Still new to all of this.
– QuantumPizza Jul 26 '20 at 02:17sudo apt-get-update
is not a valid command. You should usesudo apt update
followed bysudo apt upgrade
to complete system updates. For these two commands, you can also useapt-get
instaed ofapt
, butapt
is more user friendly. Please let us know if this helps resolve your issue – Nmath Jul 26 '20 at 03:02