apt-get,dpkg not working in ubuntu20.4 [duplicate]
Solution 1:
sudo apt-get update && sudo apt-get upgrade
the commands before and after && are separate commands, so sudo
must be used by both commands.
sudo apt-get update && sudo apt-get upgrade
the commands before and after && are separate commands, so sudo
must be used by both commands.