Lately some really bad things have been happening with my computer, having to do with lack of icons and all kinds of bad things going with my graphical interface. All the bad things in the appeal are accompanied by a certain disability of my terminal. I'm using 12.04 with Gnome Classic view with no effects.
Let's have a sudo apt-get update
.
I get sudo: apt-get: command not found
message. And it is the way it goes with all my apt-get
commands.
What can it mean? How to fix this, especially concerning all the other problems I'm experiencing?
locate apt-get
should turn up/usr/bin/apt-get/
. If not, see if the file is actually there. Then check the $PATH:echo $PATH
. Tell us what you find. – Jos Jul 03 '14 at 18:37/usr/bin/
completely empty? In that case, your only option is to reinstall Ubuntu. Or is there just no file apt-get? Then download and manually install the apt package, as follows: look at your /etc/apt/sources.list to find the correct mirror, then go to that mirror, to the pool/main/a/apt/ directory, download the correct .deb file for your architecture, and install it withsudo dpkg -i apt-xxx.deb
. – Jos Jul 03 '14 at 18:59apt
? Googleapt-get
vsapt
. – Mohammad Kholghi Aug 22 '19 at 06:48