Ubuntu Server (20.04)
- Installation
- Configure NTP Server
- DNS Server
- DHCP Server
- Install PowerShell
- Create Users and Group
- Create root user
- Folder permission
- Firewall
Commands
GUI Management Tools
Cockpit is a open source, web-based interface for your servers. It interacts directly with the operating system.
Install in Ubuntu
$ sudo apt-get install cockpit
Access from web browser URL is https://ip-address-of-machine:9090
8. Folder permission
sudo ufw status
See the firewall verbose status
sudo ufw status verbose
Enable the firewall
sudo ufw enableAllow the port
sudo ufw allow 53or
sudo ufw allow 53/tcp
or
sudo ufw allow 53/udp
Block the port
sudo ufw deny 53
sudo ufw deny 53
or
sudo ufw deny 53/tcp
or
sudo ufw deny 53/tcp
or
sudo ufw deny 53/udp
Remove the rule
sudo ufw delete deny 22
Disable the firewall
sudo ufw disable
Useful link
Ubuntu Server Guide
Ubuntu Server Download
https://ubuntu.com/download/server
(Notes: For manual server installation select the options 2.)
(Notes: For manual server installation select the options 2.)