### Configuring Chrony on Proxmox: A Step-by-Step Guide In the latest versions of Proxmox, Chrony is included by default, which provides an efficient and accurate network time protocol (NTP) service. This guide will walk you through the process of configuring Chrony on your Proxmox server to ensure proper time synchronization. #### Step 1: Edit the Chrony Configuration File To begin, you'll need to modify the Chrony configuration file. Open the configuration file with a text editor using the following command: ```bash sudo nano /etc/chrony/chrony.conf ``` #### Step 2: Update Configuration Settings In the configuration file, locate the section for local NTP server configuration and make the following changes: ```plaintext # Local NTP server configuration local stratum 8 manual allow 192.168.1.0/24 ``` - `local stratum 8` sets the stratum level for the local server. - `manual` allows for manual configuration of time. - `allow 192.168.1.0/24` permits NTP requests from the specified IP...
first add as hdd via proxmox #list lsblk #check size sudo fdisk -l /dev/sdb #Recreate the Partition // use n/d then p and w to save sudo fdisk /dev/sdb #unmount sudo umount /mnt/aria2_data/ sudo umount /dev/sdb1 #format it sudo mkfs.ext4 /dev/sdb1 #mount - sudo mkdir -p /mnt/aria2_data/ sudo mount /dev/sdb1 /mnt/aria2_data/ #Get the UUID of the partition sudo blkid /dev/sdb1 #add it nano /etc/fstab UUID=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx /mnt/aria2_data ext4 defaults 0 2 #Test sudo mount -a #Verify the Mount df -h #check error dmesg | grep sdb #Review Mount Status findmnt /mnt/aria2_data #Reboot and Verify
Comments
Post a Comment