From d9ef125a98ad37ec1ea73f6e8750989106097c46 Mon Sep 17 00:00:00 2001 From: Kim Brian Ramberg Date: Sat, 11 Oct 2025 22:59:44 +0200 Subject: [PATCH] - --- Linux/show time and date.md | 31 ++++++++++--------- Proxmox/client_agent.md | 2 ++ ...asswordless ssh connection from Windows.md | 4 +++ 3 files changed, 22 insertions(+), 15 deletions(-) diff --git a/Linux/show time and date.md b/Linux/show time and date.md index 94c498e..7e75129 100644 --- a/Linux/show time and date.md +++ b/Linux/show time and date.md @@ -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` - -### Set New Timezone - -Apply the change by setting your system to the new timezone. - -`$ sudo timedatectl set-timezone Europe/Oslo` +- Find your Timezone: `timedatectl` +- List timezones: `timedatectl list-timezones` +- Find timezone you with to set: `timedatectl list-timezones | grep Oslo` +- Set New Timezone: `sudo timedatectl set-timezone Europe/Oslo` ### Verify timezone settings diff --git a/Proxmox/client_agent.md b/Proxmox/client_agent.md index 00a4d2c..9228264 100644 --- a/Proxmox/client_agent.md +++ b/Proxmox/client_agent.md @@ -1,5 +1,7 @@ # Qemu-guest-agent +[Proxmox Wiki](https://pve.proxmox.com/wiki/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. diff --git a/ssh/Passwordless ssh connection from Windows.md b/ssh/Passwordless ssh connection from Windows.md index 13aab9f..b34a462 100644 --- a/ssh/Passwordless ssh connection from Windows.md +++ b/ssh/Passwordless ssh connection from Windows.md @@ -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"` +### backup.home.ramberg.net + +`$env:USERPROFILE\.ssh\id_rsa.pub | ssh root@backup.home.ramberg.net "cat >> .ssh/authorized_keys"` + ## IMPORTANT!