0

I was trying to instal joe editor on my newly created VM Ubuntu but it fails.

buntu@ubuntu:~/Desktop$ sudo apt-get install -y joe
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package joe
ubuntu@ubuntu:~/Desktop$

1 Answers1

3

Joe is part of the universe repository, so you will need to first enable that via the console:

sudo add-apt-repository universe

Once this is done, update apt:

sudo apt update 

Now you can install Joe:

sudo apt install joe 
matigo
  • 22,138
  • 7
  • 45
  • 75
  • Ign:4 http://archive.ubuntu.com/…ntu groovy InRelease Ign:5 http://archive.ubuntu.com/…ntu groovy-updates InRelease Ign:6 http://security.ubuntu.com/…ntu groovy-security InRelease Err:7 http://archive.ubuntu.com/…ntu groovy Release 404 Not Found [IP: 91.189.88.152 80] Err:8 http://archive.ubuntu.com/…ntu groovy-updates Release 404 Not Found [IP: 91.189.88.152 80] Err:9 http://security.ubuntu.com/…ntu groovy-security Release 404 Not Found [IP: 91.189.91.39 80] Reading package lists... Done E: The repository 'http://archive.ubuntu.com/…ntu groovy Release' no longer – user1642683 Jan 25 '22 at 13:57
  • Some error copied above occurs. – user1642683 Jan 25 '22 at 13:57
  • 2
    Umm … Groovy Gorilla is an EOL release of Ubuntu. You’ll need to use 18.04, 20.04, or 21.10 if you would like to install packages – matigo Jan 25 '22 at 14:00
  • Can I update my instalation or shall I undergoe the heavy path with installing my Ubuntu ? – user1642683 Jan 25 '22 at 14:03
  • It’s no longer possible to upgrade from 20.10, so you’ll need to download a supported ISO from Ubuntu.com and follow the same steps as you did earlier today to build the VM. Consider it practise – matigo Jan 25 '22 at 14:10