Skip to main content

Updating Debian install with latest security fixes

 

Debian 11: 11.2 released With Updates For Bugs & Security Issues - Including Log4j

Debian announced the second point release of its stable distribution Debian 11 on 18th Dec 2021.

as per Debian news,This point release mainly adds corrections for security issues, along with a few adjustments for serious problems.

so to make sure this update is installed on system we need to run below update commands.

if you are frequently checking for updates its already installed via Debian security channel if its mentioned in apt sources list.

Running only update command does not show any updates.

below commands retrieved and installed updates for me.

but looks like security updates were already installed by me earlier and running this command only updated firefox-esr from 78.x to 91.4 version.

Sudo apt update && sudo apt full-upgrade

always ensure your browser is updated to latest and also have firewall enabled for basic filtering of attacks.


Comments

Popular posts from this blog

Debian 11 Bullseye setup for home user.

    Debian 11 bullseye post install. Why Debian? I Choose Debian because i like to use an independent Distribution. Debian runs smooth on my personal laptop and it makes me nostalgic. i have tried a huge list of Distro’s but always came back for Debian as it runs smooth on my laptop’s hardware.

MSSQL Server + Azure Data Studio Install Using AUR

  Hi Everyone, Last Post i documented how i installed Arch Linux the easy way using the archinstall script. This time i will show how i installed SQL Server and server studio on linux. sql server is easy to install in Arch by using AUR- Arch User repository. I recommend using YAY tool to handle the installation of AUR packages as its easy. before that Ensure the base-devel package group is installed  pacman -S --needed base-devel Now i will show you how to install a AUR Package. First visit AUR site and search for a package, it will auto complete package name parallely when you start typing. here i will show a demo using a neofetch package install from AUR. Next Click to copy the git link. Installing Package manually needs 3 steps, Acquire Build Packages. Run makepkg. Install the setup file. below is the terminal output for s...