Reply To: [solved] Can’t Update Package Database?

Forum › Forums › General › Software › [solved] Can’t Update Package Database? › Reply To: [solved] Can’t Update Package Database?

#74363
seaken64
Member

    The Package Installer does not have all the possible packages you may want to install. If you use Synaptic you can hit the “Reload” button to update the database. The CLI_aptiX package manager also runs the updates for you. I tend to use the Terminal and type in:

    sudo apt update

    and then:

    sudo apt dist-upgrade

    or

    sudo apt dist-upgrade --fix-missing

    I do this once in awhile on my machines I used almost daily. On machines that have been sitting unused I do this immediately after boot up. As already said, I can read the screen in the terminal and decide if I want to proceed or abort and do some research first. If there are recommendation to use autoremove I go aherad and run, in the terminal:

    sudo apt autoremove

    I know there are some GUI tools available but I just feel more comfortable doing the updates and upgrades by terminal.

    Seaken64