Better sh hl

This commit is contained in:
2025-08-10 22:59:47 +00:00
parent 6eaf8a5c94
commit 876d0a6ff5
28 changed files with 134 additions and 118 deletions

View File

@ -20,15 +20,15 @@ main:
4. [Install Debian and Set Up SSH](https://www.howtoforge.com/tutorial/debian-minimal-server/)
5. Install sudo and add a user to the sudo group for administrative privileges.
Log in as root:
```shell
```sh
su -
```
Enter your password, then type:
```shell
```sh
apt install sudo
```
Add the user to the sudo group:
```shell
```sh
adduser <username> sudo
```
@ -42,7 +42,7 @@ main:
## Must-Have CLI Apps
---
Some essential apps youll likely need at some point, so might as well install them early:
```shell
```sh
sudo apt update
sudo apt upgrade
sudo apt install vim btop ranger git duf neofetch samba cifs-utils tree unzip ufw
@ -65,7 +65,7 @@ Additionally:
### File Transfer via rsync
```shell
```sh
sudo rsync -avhHSP /source /destination
```
::alert{type="info" icon="exclamation-circle"}