diff --git a/web/app/docs/post-install/basic-settings/page.tsx b/web/app/docs/post-install/basic-settings/page.tsx
index 5dd19a9..db08ae1 100644
--- a/web/app/docs/post-install/basic-settings/page.tsx
+++ b/web/app/docs/post-install/basic-settings/page.tsx
@@ -68,92 +68,215 @@ export default function BasicSettingsPage() {
Utilities installed:
- -
- axel: A light command-line download accelerator
-
- -
- curl: A tool for transferring data using various protocols
-
- -
- dialog: A tool for creating TUI interfaces
-
- -
- dnsutils: DNS utilities including dig and nslookup
-
- -
- dos2unix: Text file format converter
-
- -
- gnupg-agent: GNU privacy guard - password agent
-
- -
- grc: Generic colouriser for everything
-
- -
- htop: An interactive process viewer
-
- -
- btop: A resource monitor that shows usage and stats for processor, memory, disks, network and
- processes
-
- -
- iftop: A tool to display bandwidth usage on an interface
-
- -
- iotop: A tool to display I/O usage by processes
-
- -
- iperf3: A tool for active measurements of the maximum achievable bandwidth on IP networks
-
- -
- ipset: A tool to manage IP sets in the Linux kernel
-
- -
- iptraf-ng: An interactive colorful IP LAN monitor
-
- -
- mlocate: A tool to find files by name quickly
-
- -
- msr-tools: Tools for accessing CPU model-specific registers
-
- -
- nano: A small, friendly text editor
-
- -
- net-tools: A collection of programs that form the base set of the NET-3 networking
- distribution for the Linux operating system
-
- -
- omping: An open multicast ping tool
-
- -
- software-properties-common: Provides an abstraction of the used apt repositories
-
- -
- sshpass: A tool for non-interactive ssh password authentication
-
- -
- tmux: A terminal multiplexer
-
- -
- unzip: A tool for extracting and viewing files in .zip archives
-
- -
- vim and vim-nox: A highly configurable text editor
-
- -
- wget: A utility for non-interactive download of files from the Web
-
- -
- whois: A client for the whois directory service
-
- -
- zip: A compression and file packaging utility
-
- -
- libguestfs-tools: A set of tools for accessing and modifying virtual machine disk images
-
+ -
+ axel: A light command-line download accelerator
+
Example usage:
+ axel -n 10 http://example.com/largefile.zip
+
+ -
+ curl: A tool for transferring data using various protocols
+
Example usage:
+ curl -O http://example.com/file.txt
+
+ -
+ dialog: A tool for creating TUI interfaces
+
Example usage:
+ dialog --title "Hello" --msgbox "Hello, World!" 10 20
+
+
+ -
+ dnsutils: DNS utilities including dig and nslookup
+
Example usage:
+ dig example.com
+ nslookup example.com
+
+ -
+ dos2unix: Text file format converter
+
Example usage:
+ dos2unix file.txt
+
+ -
+ gnupg-agent: GNU privacy guard - password agent
+
This runs in the background. To start it:
+ gpg-agent --daemon
+
+ -
+ grc: Generic colouriser for everything
+
Example usage (colorize ping output):
+ grc ping example.com
+
+ -
+ htop: An interactive process viewer
+
To start htop, simply type:
+ htop
+
+
+ -
+ btop: A resource monitor that shows usage and stats for processor, memory, disks, network and
+ processes
+
To start btop, type:
+ btop
+
+
+ -
+ iftop: A tool to display bandwidth usage on an interface
+
To start iftop (requires root):
+ sudo iftop
+
+
+ -
+ iotop: A tool to display I/O usage by processes
+
To start iotop (requires root):
+ sudo iotop
+
+
+ -
+ iperf3: A tool for active measurements of the maximum achievable bandwidth on IP networks
+
Example usage (server mode):
+ iperf3 -s
+ Example usage (client mode):
+ iperf3 -c server_ip
+
+ -
+ ipset: A tool to manage IP sets in the Linux kernel
+
Example usage (create a new set):
+ ipset create myset hash:ip
+
+ -
+ iptraf-ng: An interactive colorful IP LAN monitor
+
To start iptraf-ng:
+ sudo iptraf-ng
+
+
+ -
+ mlocate: A tool to find files by name quickly
+
Example usage:
+ locate filename
+
+ -
+ msr-tools: Tools for accessing CPU model-specific registers
+
Example usage (read MSR):
+ sudo rdmsr 0x1a0
+
+ -
+ nano: A small, friendly text editor
+
To open a file with nano:
+ nano filename.txt
+
+
+ -
+ net-tools: A collection of programs that form the base set of the NET-3 networking distribution
+ for the Linux operating system
+
Example usage (show network interfaces):
+ ifconfig
+
+ -
+ omping: An open multicast ping tool
+
Example usage:
+ omping 239.255.255.250
+
+ -
+ software-properties-common: Provides an abstraction of the used apt repositories
+
+ This package is typically used by other tools and doesn't have a direct command-line interface.
+
+
+ -
+ sshpass: A tool for non-interactive ssh password authentication
+
Example usage:
+ sshpass -p 'password' ssh user@hostname
+
+ -
+ tmux: A terminal multiplexer
+
To start a new tmux session:
+ tmux
+
+
+ -
+ unzip: A tool for extracting and viewing files in .zip archives
+
Example usage:
+ unzip file.zip
+
+ -
+ vim and vim-nox: A highly configurable text editor
+
To open a file with vim:
+ vim filename.txt
+
+
+ -
+ wget: A utility for non-interactive download of files from the Web
+
Example usage:
+ wget http://example.com/file.zip
+
+ -
+ whois: A client for the whois directory service
+
Example usage:
+ whois example.com
+
+ -
+ zip: A compression and file packaging utility
+
Example usage:
+ zip archive.zip file1 file2 file3
+
+ -
+ libguestfs-tools: A set of tools for accessing and modifying virtual machine disk images
+
Example usage (list files in a VM disk image):
+ guestfish -a disk.img -m /dev/sda1 ls /
+
This adjustment automates the following command: