🎨 improve stucture of garden & add some new info

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
Sindre Kjelsrud 2024-04-01 13:04:35 +02:00
parent fd962da973
commit 490ff87c95
Signed by untrusted user who does not match committer: sidski
GPG key ID: D2BBDF3EDE6BA9A6
10 changed files with 104 additions and 29 deletions

View file

@ -0,0 +1,10 @@
---
title: '🗒️ Instructions'
description: ''
layout: "../../../layouts/Layout.astro"
---
Instructions on different topics, like Wireguard and OS-related stuff for Linux and Window.
- [**Wireguard** 🌱](/garden/instructions/wireguard)
- [**Linux** 🌱](/garden/instructions/linux)
- [**Windows** 🌱](/garden/instructions/windows)

View file

@ -10,11 +10,19 @@ layout: "../../../layouts/Layout.astro"
## ❓ Random
### Remove .DS_Store files
#### Remove .DS_Store files
`find . -name ".DS_Store" -print -delete`
### Get & Send files/folders from/to Linux machine
#### Fix clock on Arch after updates
`sudo systemctl restart systemd-timesyncd.servicekeyboard`
#### Fix keyboard layout on Arch after updates
`setxkbmap -layout no`
#### Get & Send files/folders from/to Linux machine
```
Get files/folder from Linux machine:
@ -24,8 +32,9 @@ Send files/folder to Linux machine:
scp pepenarutorun.png sid@10.0.0.1:~/minecraft-old
```
### How to Format USB using the Terminal (link)
#### How to Format USB using the Terminal
```
**Step 1: Locate USB Drive**
> Open the terminal and run the following command: ***df***
@ -41,4 +50,5 @@ Locate the USB in the list and find the corresponding device.
**Step 3: Verify USB Drive Formatting**
> Confirm the formatting process has completed successfully: ***sudo fsck /dev/{NAME_OF_DEVICE}***. A USB drive with no files indicates successful formatting.
> Confirm the formatting process has completed successfully: ***sudo fsck /dev/{NAME_OF_DEVICE}***. A USB drive with no files indicates successful formatting.
```