Page 1 of 1

Older BBQ spins

Posted: Fri Oct 24, 2014 6:10 pm
by ivanovnegro
The recommended period between ISO birthday and first upgrade should be less than 3 months. Everything else, check the Upgrade Warnings section back, and don't waste your time asking anything else, because we don't know it.

In other words. If you are new to the grill, grab one of the *recent* releases. If you already use older spins, then you can upgrade as usual, always having an eye on upgrade warnings.

Do not bother us with breakages if you try to install a very old BBQ ISO. LinuxBBQ is a DIY distro, we do not support months old upgrade paths.

Check always the release notes before downloading blindly a LinuxBBQ ISO.

Re: Older BBQ spins

Posted: Thu Apr 16, 2015 3:22 pm
by machinebacon
"Outdated" releases are stored here: http://linuxbbq.com/bbs/viewforum.php?f=34

A little addition for those who still want the old shit :)

After installing and rebooting, run an update of the sources first:

Code: Select all

sudo apt-get update
then, grab yourself the new APT and dpkg

Code: Select all

sudo apt-get install --reinstall apt apt-utils dpkg
optionally, add apt-listbugs

Code: Select all

sudo apt-get install apt-listbugs
when this is done, you can do a full dist-upgrade

Code: Select all

sudo apt-get dist-upgrade
You might run into smaller problems during the upgrade of the packages. If so, try to resolve with

Code: Select all

sudo apt-get install -f
and then, try again

Code: Select all

sudo apt-get dist-upgrade

APT has a lot of bug reports, so before you bark up the wrong tree when your upgrade fails, check this: https://bugs.debian.org/cgi-bin/pkgrepo ... t=unstable

Re: Older BBQ spins

Posted: Thu Apr 16, 2015 9:52 pm
by rhowaldt
super useful, thanks for writing this.

i always wondered what the fuck the -f option exactly does that suddenly makes errors go away. i mean, if that is the default way of fixing apt errors, why doesn't apt just try that itself first anyway? or is it the exact working of that flag that i do not understand that makes it seem so strange to me? orrr is it just Debian being pro-choice?

Re: Older BBQ spins

Posted: Fri Apr 17, 2015 2:28 am
by machinebacon
IIUC, the -f flag tries an installation of a given package (or the next in the list on installable packages) without checking for dependency, allowing the package manager to proceed even if broken dependencies exist. The man page also mentions that dpkg (or dselect) could be used to remove conflicting package dependencies or to resolve this problem manually (dpkg -r or -i in this case).