AmnesiaOS includes BusyBox 1.35.0 — a single statically-linked binary that provides over 300 Unix utilities. The following utilities are symlinked inDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/damianiglesias/amnesiaOS/llms.txt
Use this file to discover all available pages before exploring further.
/bin/ and available from the shell immediately after boot.
All commands listed below are symlinks pointing to
/bin/busybox. BusyBox reads argv[0] to determine which applet to run. Running /bin/busybox --list in a live AmnesiaOS session shows the full list of applets compiled into the binary — many more than the symlinked subset documented here.Available Utilities
Shell & Text Processing
Shell & Text Processing
| Command | Description |
|---|---|
sh | POSIX-compatible shell — the interactive environment you land in after boot. |
echo | Print a line of text to standard output. |
cat | Concatenate and print files to standard output. |
grep | Search for lines matching a regular expression pattern. |
sed | Stream editor for filtering and transforming text. |
awk | Pattern-scanning and text-processing language for column-oriented data. |
head | Print the first N lines of a file (default: 10). |
tail | Print the last N lines of a file, with optional follow mode (-f). |
more | Page through text output one screen at a time (forward-only). |
less | Scroll through text output forward and backward. |
vi | Minimal vi-compatible text editor for in-session file editing. |
File System
File System
| Command | Description |
|---|---|
ls | List directory contents with optional formatting and sorting flags. |
cp | Copy files and directories. |
mv | Move or rename files and directories. |
rm | Remove files or directories. |
mkdir | Create one or more directories, optionally with parent paths (-p). |
find | Search the filesystem tree for files matching name, type, or attribute criteria. |
chmod | Change file or directory permission bits. |
chown | Change the owner and group of a file or directory. |
ln | Create hard or symbolic links between files. |
pwd | Print the absolute path of the current working directory. |
tar | Create, list, or extract tar archive files. |
gzip | Compress files using the gzip (DEFLATE) algorithm. |
gunzip | Decompress gzip-compressed files. |
System & Process
System & Process
| Command | Description |
|---|---|
ps | Report a snapshot of currently running processes. |
kill | Send a signal to a process by PID (default: SIGTERM). |
top | Display a live, auto-refreshing table of running processes and resource usage. |
df | Report available and used disk (filesystem) space. |
free | Display total, used, and available physical memory and swap. |
uname | Print system information such as kernel version and architecture. |
date | Display or set the system date and time. |
sleep | Pause execution for a specified number of seconds. |
dmesg | Print or control the kernel ring buffer (boot and driver messages). |
hostname | Display or set the system hostname. |
Disk & Mount
Disk & Mount
| Command | Description |
|---|---|
mount | Mount a filesystem, attaching it to the directory tree at a specified mount point. |
umount | Unmount a previously mounted filesystem, detaching it from the directory tree. |
Network
Network
| Command | Description |
|---|---|
ip | Configure and display network interfaces, routing tables, and tunnels (iproute2-compatible). |
ifconfig | Display or configure network interface parameters (legacy net-tools style). |
ping | Send ICMP ECHO_REQUEST packets to a host to test network reachability. |
wget | Non-interactive network downloader supporting HTTP and FTP. |
udhcpc | BusyBox DHCP client — used by the init script to obtain an IP address, gateway, and DNS configuration via DHCP. |
User Management
User Management
| Command | Description |
|---|---|
su | Switch to another user account (or root) within the current shell session. |
login | Begin a new login session, prompting for username and password. |
Utilities
Utilities
| Command | Description |
|---|---|
basename | Strip directory path and an optional suffix from a filename, returning only the final component. |
Using BusyBox Applets
Every utility can be invoked either via its/bin/ symlink or directly through the busybox <applet> syntax. Both forms are equivalent.
Applet Help
Every BusyBox applet supports a--help flag that prints a concise usage summary.