How to deploy PVE in cloud dedicated server

Prerequisite A dedicated server. (Pre-installed PVE) Public IP address (Optional, but you must be able to access the server) Some virtual machine (You can install these vms later.) Getting Started 🚀 Configure to SDN (Software-Defined Network) Navigate to the Datacenter menu. Expand the SDN menu in center menu. Select the Zones menu under the SDN menu. Add a simple zone. ID: for example “sdn01” MTU: auto Nodes: All (No restrictions) IPAM: pve DNS Server: (Keep empty) Reverse DNS Server: (Keep empty) DNS Zone: (Keep empty) automatic DHCP: (Keep empty, or if you need DHCP.) Create a VNets Name: for example “vnet1” Alias: (allow empty) Zone: (Just created) Isolate Ports: (Keep empty) VLAN Aware: (Keep empty) Create a Subnets Select just created VNet Click create button General Subnet: for example “10.0.0.0/24” Gateway: for example “10.0.0.1” Select SNAT If you need DHCP (DHCP Ranges) Click Add button Start Address: 10.0.0.10 End Address: 10.0.0.100 Create some virtual machines Network option need to select vnet1 (just created SDN name) in bridge option. ...

October 20, 2025 · 4 min · ZetoHkr

How to deploy Hugo with Docker

Prerequisite Linux Server Public IP address (Optional) Docker & Docker compose Docker images mirror or proxy Git (Install Hugo themes need to use Git) (Optional) Getting Started 🚀 Create a Hugo root directory. E.g.: /opt/hugo mkdir /opt/hugo cd /opt/hugo Pull Hugo docker image. (Unofficial, but recommend.) docker pull hugomods/hugo:debian-non-root-0.151.2 # or use docker images mirror. "docker.z5r.org" is myself mirror site. You also use other mirror site. docker pull docker.z5r.org/hugomods/hugo:debian-non-root-0.151.2 Initial Hugo project. You can remove this docker container at later. ...

October 19, 2025 · 3 min · ZetoHkr