How To Install pptpd on AlmaLinux 8
Introduction
In this tutorial we learn how to install pptpd
on AlmaLinux 8.
What is pptpd
This implements a Virtual Private Networking Server (VPN) that is compatible with Microsoft VPN clients. It allows windows users to connect to an internal firewalled network using their dialup.
We can use yum
or dnf
to install pptpd
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install pptpd.
Install pptpd on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install pptpd
using dnf
by running the following command:
sudo dnf -y install pptpd
Install pptpd on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install pptpd
using yum
by running the following command:
sudo yum -y install pptpd
How To Uninstall pptpd on AlmaLinux 8
To uninstall only the pptpd
package we can use the following command:
sudo dnf remove pptpd
References
Summary
In this tutorial we learn how to install pptpd
on AlmaLinux 8 using yum and dnf.