How To Build And Install Your Custom Kernel On FreeBSD 12.1?

FreeBSD is the operating system used to power modern servers, desktops, and embedded platforms. By default, it utilizes the GENERIC kernel to a wide range of hardware. Building a custom kernel has its own advantages such as enhanced functionality, better performance, etc. This article describes how to compile, build, and install a custom kernel … Read more

How To Setup And Use PF Firewall On FreeBSD 12.1?

A firewall is a network security system that monitors incoming and outgoing network traffic flows through a system. It allows or blocks the data packets based on a set of security rules that are predefined in the system. It acts as a barrier between internal and external sources such as the internet and blocks malicious … Read more

Understanding Ports Skeleton In FreeBSD

In FreeBSD, there are two ways to install software packages: pkg and ports collection. The pkg is used to install from prebuilt binaries while the ports are compiled and install from the source of an application. In this article, we will understand the ports skeleton and how a port or package is compiled and installed … Read more

FreeBSD Jails

FreeBSD Jail is nothing but OS-level virtualization that allows partitioning a system into several independent mini-systems. These mini-systems are called Jails, a jail could be a complete jail that resembles the whole system or a service jail that is created for specific services such as web server, database server, etc. The process of building jails … Read more

How To Install And Configure KDE In FreeBSD?

KDE is among one of the most popular free and opensource desktop environments. It provides various built-in tools. KDE plasma-desktop is extremely lightweight and highly customizable. It comes default in various Linux distributions such as Kubuntu, Manjaro KDE edition, Fedora KDE edition, etc. There are two ways to install software packages in FreeBSD: pkg and … Read more

[How to solve] Could not load host key: /etc/ssh/ssh_host_rsa_key issue in FreeBSD or Linux

Once I was strating the sshd service, I saw the error: Could not load host key: /etc/ssh/ssh_host_rsa_key issue. Sometimes while starting the sshd service you may face some issues like the following: Could not load host key: /etc/ssh/ssh_host_key Could not load host key: /etc/ssh/ssh_host_rsa_key Could not load host key: /etc/ssh/ssh_host_dsa_key Could not load host key: … Read more

How To Install And Use sudo In FreeBSD?

The sudo (super do) is a program for Unix like operating systems. It allows a to run a command or program with the privilege of another , by default super. It comes preinstalled in various Linux distributions, but if you want to use it in FreeBSD then first you need to install it. In … Read more

How To Add A To A Group In FreeBSD?

In FreeBSD, a group is a list of s. It makes it easier to define the permissions such as read, write, and execute for a system resource that is to be shared among the s of that group. You can set permission to ensure that files are accessible to s of a particular group like … Read more