I'm currently trying to add and remove packages from the ubuntu 22.04 ISO, and upon trying to remove firefox, I get this:
root@cubic:~# apt remove firefox
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package 'firefox' is not installed, so not removed
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
after this, I tried installing neofetch as a test, which resulted in this:
root@cubic:~# apt install neofetch -y
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: Unable to locate package neofetch
I am using the standard ubuntu 22.04 desktop ISO from canonicals site, and I have very little experience with cubic. I have watched tutorials on cubic for older versions of linux, but after trying the same process with their version the problems are unchanged. Any ideas would be great Thanks!
firefox
in 22.04 is provided by a snap, not a deb, so apt cannot see it.neofetch
is in the universe packet of the Ubuntu repositories; ensure that you have universe enabled. – user535733 May 11 '22 at 20:40