This commit is contained in:
2025-10-11 22:59:44 +02:00
parent 8155064b4a
commit d9ef125a98
3 changed files with 22 additions and 15 deletions

View File

@@ -1,26 +1,27 @@
# Ubuntu 24.04: Change timezone # Show time and date
## Changing Timezone via CLI (command line interface) Use the `date` command to se time and date.
### Enter the following command: The command can take parameters to select what information to display.
Find your Timezone: To see only date, use `date ""`
Here,
`timedatectl` %H: Used to print hours in 24hr format
%M: Shows minutes
%S: Prints seconds
%d/%m/%y: Shows date, time, and year respectively.
And if you want a 12hrs clock, you can use the following:
### List timezones
`timedatectl list-timezones` ## Ubuntu 24.04: Change timezone
### Find timezone you with to seet. ### Changing Timezone via CLI (command line interface)
`timedatectl list-timezones | grep Oslo` - Find your Timezone: `timedatectl`
- List timezones: `timedatectl list-timezones`
### Set New Timezone - Find timezone you with to set: `timedatectl list-timezones | grep Oslo`
- Set New Timezone: `sudo timedatectl set-timezone Europe/Oslo`
Apply the change by setting your system to the new timezone.
`$ sudo timedatectl set-timezone Europe/Oslo`
### Verify timezone settings ### Verify timezone settings

View File

@@ -1,5 +1,7 @@
# Qemu-guest-agent # Qemu-guest-agent
[Proxmox Wiki](https://pve.proxmox.com/wiki/Qemu-guest-agent)
## Introduction - What is qemu-guest-agent ## Introduction - What is qemu-guest-agent
The qemu-guest-agent is a helper daemon, which is installed in the guest. It is used to exchange information between the host and guest, and to execute command in the guest. The qemu-guest-agent is a helper daemon, which is installed in the guest. It is used to exchange information between the host and guest, and to execute command in the guest.

View File

@@ -32,6 +32,10 @@ Replace `{REMOTE_HOST}` with the remote host IP/Name (like `pi@192.168.0.1`), la
`$env:USERPROFILE\.ssh\id_rsa.pub | ssh rcadmin@database.home.ramberg.net "cat >> .ssh/authorized_keys"` `$env:USERPROFILE\.ssh\id_rsa.pub | ssh rcadmin@database.home.ramberg.net "cat >> .ssh/authorized_keys"`
### backup.home.ramberg.net
`$env:USERPROFILE\.ssh\id_rsa.pub | ssh root@backup.home.ramberg.net "cat >> .ssh/authorized_keys"`
## IMPORTANT! ## IMPORTANT!