🎨 ✨ improve stucture of garden & add some new info
Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
This commit is contained in:
parent
fd962da973
commit
490ff87c95
10 changed files with 104 additions and 29 deletions
10
src/pages/garden/instructions/index.md
Normal file
10
src/pages/garden/instructions/index.md
Normal 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)
|
|
@ -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.
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue