Sicherheitsupdates
Heute hab ich auf dem System ein paar Sicherheitsupdates eingespielt.
Unter OpenBSD geht man dabei wie folgt vor:
Die Kernel und Systemsourcen müssen nach /usr/src/ runtergeladen und entpackt werden:
# ftp ftp://ftp.openbsd.org/pub/OpenBSD/4.3/src.tar.gz
# ftp ftp://ftp.openbsd.org/pub/OpenBSD/4.3/sys.tar.gz
System Sourcen entpacken
# mv src.tar.gz /usr/src
# cd /usr/src
# tar -xvzf src.tar.gz
Kernel Sourcen entpacken
Kernel Sourcen entpacken
# mv src.tar.gz /usr/src
# cd /usr/src
# tar -xvzf src.tar.gz
Patches einspielen
Patches einspielen
# mkdir /usr/src/patches
# cd /usr/src/patches
# ftp ftp://ftp.openbsd.org/pub/OpenBSD/patches/4.3.tar.gz
# tar xvfz 4.3.tar.gz
# head patches/4.3/common/001_openssh.patch
Apply by doing:
cd /usr/src
patch -p0 < 001_openssh.patch
cd /usr/src
patch -p0 < 001_openssh.patch
And then rebuild and install file:
cd usr.bin/ssh
make obj
make cleandir
make depend
make
cd usr.bin/ssh
make obj
make cleandir
make depend
make
make install
Beim den restlichen Patches verfährt man genauso, bzw. muss die jeweilige Ausgabe von "head" beachten.
Neuen Kernel übersetzen
# cp /bsd /bsd.old
# cd /usr/src/sys/arch/i386/conf/
# config GENERIC
Don’t forget to run "make depend" cd ../compile/GENERIC
# make clean && make depend && make && make install
Comments
Display comments as Linear | Threaded
Das Transplantier on :
Endlich mal ein Update … ich hatte schon ernsthafte Sicherheitsbedenken und wollte mich an eine Firma meines Vertrauens wenden ;-)
Grüße
Das Transplantier 8-)