Posted On April 1, 2019

How to fix outdated and unsupported Ubuntu versions

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to fix outdated and unsupported Ubuntu versions
rooty@FOGSERVER01$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 13.10
Release: 13.10
Codename: saucy

Ubuntu 13.10 (Saucy Salamander) was released on 17 October 2013 and its support will end in July 2014. However, some third-party drivers already installed on the system may not function if we upgrade this release to version 14.1 LTS.

sudo vim /etc/update-manager/release-upgrades
%s/prompt=normal/prompt=lts/gc
:wq

sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
vim /etc/apt/sources.list
%s/us.archive.ubuntu.com/old-releases.ubuntu.com/gc
%s/security.ubuntu.com/old-releases.ubuntu.com/gc
:wq

sudo apt-get update --fix-missing
sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup1
sudo cp /etc/apt/sources.list.backup /etc/apt/sources.list or sudo vim /etc/update-manager/release-upgrades
%s/old-releases.ubuntu.com/us.archive.ubuntu.com/gc
%s/old-releases.ubuntu.com/security.ubuntu.com/gc
If running into error with "E212: Can't open file for writing"
:w !sudo tee % > /dev/null

sudo apt-get update && sudo apt-get dist-upgrade
reboot

# Check version after reboot
cat /etc/lsb-release

# Install VNC
sudo iptables -A INPUT -p tcp --dport 5900 -j ACCEPT
sudo iptables -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Ubuntu Linux: Unable to Write to a Mounted Media

Issue: Unable to create an object in a certain mounted media directory Resolution: Discover mounted…

Kubernetes Container Deployment with NFS Persistent Volumes

Introduction: Update: we have provided a practical application of the knowledge conveyed in this article…

LAMPP: Change Apache Listening Port

Change Apache listening port:vim /opt/lampp/etc/httpd.confEdit line:Listen 80 (change to 8888)OPEN port 8888:vim /etc/sysconfig/iptables-A RH-Firewall-1-INPUT -m…