• 0 Posts
  • 25 Comments
Joined 1 年前
cake
Cake day: 2024年6月22日

help-circle

  • No. It will boot the previous kernel, but the user experience will be at least suboptimal if some packages have already been removed during the upgrade, but the upgrade stopped at some point because a downloaded package was corrupt, leaving lots of dependent packages unconfigured. In case networking doesn’t work, it’s also inconvenient to manually download the affected package on another machine and transfer it with a usb stick onto the computer to restart the upgrade.





  • Yes, in this command one liner, the system should not power off when the update took too long.

    Or is yes somehow supposed to take care of this?

    No, yes is simply answering all questions asked during the update procedure (start upgrade, replace config files, restart services) with “yes”.


  • MSI files are actually comparable to Linux packages, from what I understand, in that the program that does the installing (and which gets root/admin permissions for that) comes with the OS itself.

    Neat. I’ve always wondered why e.g. 7zip is distributed as both, MSI and exe installer. Now that makes somewhat sense to me.











  • @fluckx@lemmy.world

    dpkg doesn’t resolve dependencies (that’s a feature of apt) which means that if you install a Debian package with dpkg, you’ll have to manually install all dependencies first, and they won’t be marked as automatically installed

    Usually installing a manually downloaded package and its dependencies works like this:
    # dpkg -i package-file.deb
    # apt-get -f install

    So apt-get can be used to install missing dependencies afterwards while marking them as automatically installed.