using 64bit Jammy
I am getting the following error message:-
sonyuser@SonyVaio:~$ sudo apt-get check
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: The package zoom needs to be reinstalled, but an archive for it can't be found.
I think that "zoom" in that error message ("E: The package zoom needs to be reinstalled, but an archive for it can't be found.") refers to the "Zoom Desktop Client for Linux". Assuming that's the case, I suggest that you download and install the latest version for Ubuntu from "Download Zoom for Linux | Zoom" - https://zoom.us/download?os=linux
Hi ricmarques
Thank you for your reply, I have tried that and get the following:-
"Software index is broken
this is a major failure of your software management system. Pleas check for broken packages with synaptic, check the file permissions and correctness of the file /etc/apt/sources.list and reload the software information with sudo apt-get update and sudo apt-get install -f"
Synaptic will not run, just comes up with zoom needs to be reinstalled.
I have done the following from the terminal:-
sonyuser@SonyVaio:~$ cat /etc/apt/sources.list
sonyuser@SonyVaio:~$ sudo apt-get update
Hit:1 Index of /ubuntu jammy InRelease
Hit:2 Index of /ubuntu jammy-updates InRelease
Hit:3 Index of /ubuntu jammy-security InRelease
Ign:4 Index of /stable/deb/ stable InRelease
Hit:5 Index of /ubuntu jammy-security InRelease
Hit:6 Index of /stable/deb/ stable Release
Reading package lists... Done
sonyuser@SonyVaio:~$ sudo apt-get install -f
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
E: The package zoom needs to be reinstalled, but an archive for it can't be found.
Still, in that discussion @mack87-dash replied to Michael Dooley to report that running the command sudo apt-get update --fix-missing solved the issue:
Hi ricmarques
Thank you for your continued help.
I tried the apt-get update --fix-missing & install which did not work.
But followed the dpkg configuration instructions in the "how to fix broken packages" which you gave me a link to, which did!
Everything appears to be working fine now.
Thank you very much for your help.
Thanks for reporting back I'm glad that you ended up solving your issue by following the instructions available in the "Fixing DPKG Configuration Issues" section of the "How to Fix Broken Packages in Linux - Make Tech Easier" article. By the way, was it enough to run the first command mentioned in that section to fix your issue:
" 1. Start by trying to force dpkg to reconfigure any broken or partially configured packages: sudo dpkg --configure -a
... OR did you also need to run the other commands from that section to fix your issue?
" 2. If that doesn’t solve the problem, take a more forceful approach. Start by listing any packages that dpkg marked as requiring a reinstall: sudo dpkg -l | grep ^..r
The above command will show you the packages that cause problems. For this next step, check and make sure that the packages marked for reinstall are really broken. Do asudo apt reinstalland pay attention to which packages fail to reinstall.
3. For each package that fails to reinstall, get the name and forcibly remove the broken package: sudo dpkg --remove --force-remove-reinstreq [package name]
4. Dpkg should now be clean. Do a cleanup with Apt: sudo apt clean && sudo apt update
You're welcome, duncan By the way, when you wrote "(...) on it's own did to fix it. (...)", I assume you meant to write "on it's own did NOT fix it. (...)" instead. Am I right?