Security Patches & Updates |
|
| Automated Update Systems |
|
| Linux Installers |
|
| Linux Security Patches |
|
| Apple Patches |
|
| BSD Patches |
|
| SGI Patches |
|
| Sun Patches |
|
| HP, Compaq - Digital |
|
| Microsoft Patches |
|
| Debian Updates |
===============
Updating Debian
===============
#
#
debian# vi /etc/apt/sources.list
#
#
# Characters from ToyStory:
#
# 1.1 == Buzz
# 1.2 == Rex
# 1.3 == Bo
# 2.0 == Hamm
# 2.1 == Slink
# 2.2 == Potato
# 3.0 == Woody
# 3.1 == Sarge
# 3.x == Sid ( unstable )
#
#
# For Woody
#
# deb http://security.debian.org/debian-security woody/updates main contrib non-free
# deb http://security.debian.org/debian-non-US woody/non-US main contrib non-free
# deb http://security.debian.org woody/updates main contrib non-free
#
#
# For Sarge ( aka stable )
#
deb http://security.debian.org/debian-security sarge/updates main contrib non-free
deb http://security.debian.org/debian-non-US sarge/non-US main contrib non-free
deb http://security.debian.org sarge/updates main contrib non-free
#
#
# For Etch ( aka testing )
#
# deb http://secure-testing.debian.net/debian-secure-testing etch/security-updates main contrib non-free
# deb-src http://secure-testing.debian.net/debian-secure-testing etch/security-updates main contrib non-free
#
#
# end of Security updates
#
debian# apt-get dist-upgrade
debian# apt-get update
debian# apt-get upgrade
|
| Redhat Update |
===============
Updating Redhat
===============
#
# As a registered Redhat user
#
#
# -- or patching manually --
#
redhat# mount Update_Server:/Redhat_Patches /mnt/Patches
redhat# cd /mnt/Patches
redhat# for a in *
> do
> rpm -Uvh --nodeps --force $a
> done
redhat#
|