Install Webmin on Arch Linux
Published on: August 17, 2021
How to Install Webmin on Arch Linux [2021]
Links
0. Intro
Hi all, in this video i will show how to install Webmin on Arch Linux.
Webmin is a web-based interface for system administration for Unix. Using any modern web browser, you can setup user accounts, Apache, DNS, file sharing and much more.
I hope you enjoy!
1. Enable AUR
If you have AUR enabled in your system, please go to the next section.
$ git clone https://aur.archlinux.org/yay.git
$ cd yay
$ makepkg -si
$ yay -Syyu
2. Install Webmin
To allow access to Webmin from a remote computer, configure your firewall to allow access to TCP port 10000.
$ yay -Syyu
$ yay -S webmin
To bind Webmin to localhost (only), add the following line into your /etc/webmin/miniserv.conf file.
$ bind=127.0.0.1
$ sudo systemctl enable --now webmin
3. Test
Point your browser to https://localhost:10000
4. Finish
Thank you for watching!