bookmark_borderInstalling Linux kernel 6.0 on Ubuntu 22.10

Hello,

In this week’s feature highlight, we look at How to Install Linux kernel 6.0 on Ubuntu 22.10

Kernel is central component of an operating system that manages operations of computer and hardware. It basically manages operations of memory and CPU time. It is core component of an operating system. Kernel acts as a bridge between applications and data processing performed at hardware level using inter-process communication and system calls.

Step 1 – Update your system

First, Update the system … Read More

bookmark_borderInstalling Docker On Ubuntu 22.10

Hello,

In this week’s feature highlight, we look at How to Install Docker On Ubuntu 22.10

What is docker?

Docker is basically a container engine that uses the Linux Kernel in order to create containers on top of an operating system. Which is used to create, deploy and run the applications.

Install Docker

Install the docker using the apt package manager.

apt install docker.io docker-compose

Start and enable the docker

systemctl enable --now docker

Check Docker service

systemctl status docker
Read More

bookmark_borderInstalling Webmin on Ubuntu 22.10

Hello,

In this week’s feature highlight, we look at How to Install Webmin on Ubuntu 22.10

Webmin is a web-based dashboard that allows sysadmins to manage Linux and Unix-like systems (especially servers). Webmin allows system administrators to manage user accounts, update packages, system log files, configure firewalls, email, database, postfix, etc.

Installing Webmin on Ubuntu

First, check for any pending system updates.

apt update
apt upgrade

Install the required packages.

apt install apt-transport-https

Import and Add Webmin Repository Key.

wget 
Read More