Showing posts with label upgrade. Show all posts
Showing posts with label upgrade. Show all posts

Sunday, November 22, 2020

Ubuntu upgrade notes 20.04 20.10

 
 
note that at do-release-upgrade, there will be a long pause, then an "are you sure prompt" that has to be responded to to complete.  Then some goods will be downloaded and another response required.
 
Upgrade will proceed after that.
 
 
$ sudo apt update
$ sudo apt upgrade
$ sudo apt dist-upgrade 
$ sudo apt autoremove
 
 Configure the release upgrader. Open and edit the
/etc/update-manager/release-upgrades file and ensure that the Prompt variable is set to normal.
 
 [DEFAULT]
# Default prompting behavior, valid options:
#
#  never  - Never check for a new release.
#  normal - Check to see if a new release is available.  If more than one new
#           release is found, the release upgrader will attempt to upgrade to
#           the release that immediately succeeds the currently-running
#           release.
#  lts    - Check to see if a new LTS release is available.  The upgrader
#           will attempt to upgrade to the first LTS release available after
#           the currently-running one.  Note that this option should not be
#           used if the currently-running release is not itself an LTS
#           release, since in that case the upgrader won't be able to
#           determine if a newer release is available.
Prompt=normal

$ sudo do-release-upgrade

Reboot the Ubuntu system.
 
 
-
 
--30--

Tuesday, September 1, 2020

Reconfigure upgrade on Ubuntu

 

auto upgrade can be configured on or off by reconfiguring the package

 sudo dpkg-reconfigure unattended-upgrades

 https://i.stack.imgur.com/N8LXx.png

 

 Specify NO and save, the python program will be reconfigured off.

https://askubuntu.com/questions/851444/configuring-unattended-upgrades-which-option-to-select 


--30--

Monday, December 16, 2019

How to disable Mozilla Firefox upgrading.


Keep Mozilla Firefox from upgrading, edit profile - prefs.js

if the following isn't present in some form, add this line to stop upgrading.

user_pref("app.update.enabled", false);

Used to stop from upgrading past point where reference feature was killed by Mozilla bad design decision.

https://www.technipages.com/enable-disable-automatic-updates-in-firefox


--30--

Tuesday, November 26, 2019

Raspbian upgrade process and notes


Upgrade Raspbian releases
https://www.raspberrypi.org/documentation/raspbian/updating.md


sudo apt update
sudo apt full-upgrade 


Check Raspberry pi release
https://www.meccanismocomplesso.org/en/how-to-for-raspberry-checking-the-raspbian-version-update-upgrade/

cat /etc/os-release

make sure lsb_release is installed

sudo apt-get -y install lsb_release
lsb_release -a

--30--

Monday, May 6, 2019

ipfire upgrade notes 111 to 121 then to current

ipfire 2.19 111 backup to create ISO is broken.

One needs to patch /usr/local/bin/backupiso to point at a new subdomain.  They changed the subdomain for the downloads from download.ipfire.com to downloads.ipfire.com, and didn't leave the old subdomain for older backups.

the ipf file is created w/o problem, but it's always good to have a testable iso to use before embarking on any big upgrade.

topic on the forum:

Resolving download.ipfire.org fails - 'unknown host'

https://forum.ipfire.org/viewtopic.php?f=27&t=19579&p=111171&hilit=backupiso#p111171



--30--

Thursday, April 20, 2017

support for ancient ubuntu releases


I've got a couple of machines that probably won't upgrade nicely, and the "gee why can't you upgrade them" comments are useless.  The ones I had were appliance downloads popular at the time I obtained them, and there was not the usual trail of how they were built accompanying them.

since one is my email archive I will continue to run it till SMTP POP3 and IMAP protocols die without any update.

Here is a link which worked for my oldest version, hardy, which is Ubuntu 8.  The date of the release is to probably 2006 maybe earlier.

https://superuser.com/questions/339537/where-can-i-get-the-repositories-for-old-ubuntu-versions

Here is the most useful answer (including the useless suggestion to update). 

**********************

Your system is End-of-Line (EOL), therefore not officially supported. Unless you have a good reason for sticking with 9.04, upgrade to a newer version. 16.04 is the next long-term supported release for Ubuntu, which will continue to receive updates.
To access old Ubuntu repositories, take a look at http://old-releases.ubuntu.com/.
There is also an official Ubuntu documentation for EOL upgrades
They say you should be able to access your packages by putting the following into /etc/apt/sources.list. Important: Change CODENAME to your distribution's code name, e.g. jaunty.


## EOL upgrade sources.list
# Required
deb http://old-releases.ubuntu.com/ubuntu/ CODENAME main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-updates main restricted universe multiverse
deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-security main restricted universe multiverse

# Optional
#deb http://old-releases.ubuntu.com/ubuntu/ CODENAME-backports main restricted universe multiverse
 
 
Just run apt-get update and you can use them.