⚙ī¸Debian 10

Introduction to Debian

Debian 10 is a Linux operating system that is popularly used on servers and desktops. As with other operating systems, network settings on Debian 10 are very important to ensure the internet connection and network run well.

Debian 10, also known as Debian Buster, is the latest version of the Debian operating system. Released in 2019, Debian 10 offers a number of new features and significant improvements over previous versions. One of Debian 10's best features is support for the latest technologies, including ARM64 processors and IBM System z. Debian 10 also provides desktop support which brings a more modern desktop experience to users


Install Debian 10

The best way to download Debian 10 is by clicking the link I have provided:

Set Repository Global

Data Repository is a place for digital information that includes files, databases that are easy to configure and access by certain parties. Repositories in Linux are used for updating and upgrading needs, both systems and software.

nano /etc/apt/sources.list
deb http://kambing.ui.ac.id/debian/ buster main contrib non-free
deb http://kambing.ui.ac.id/debian/ buster-updates main contrib non-free
deb http://kambing.ui.ac.id/debian-security/ buster/updates main contrib non-free 

Good to know: Just use one of the repositories above. If you have chosen to use one repository, the other repositories must be deactivated by placing a hashtag "#" at the beginning. If you use more than one repository, errors will occur.

Update & Upgrade Package

To upgrade the repository, we should use the root user to get full permissions

sudo -i
apt update && apt upgrade -y

Last updated