Promox Faq
How to change date time in proxmox server
Check current time:
date
Set the date and time (example).
date -s "2023-12-12 10:30:00"
- Explanation:
date -s
: Sets the system date and time."2023-12-12 10:30:00"
: Replace with the desired date and time in YYYY-MM-DD HH:MM:SS AM/PM format.