ffbfbf474016eec5d562cada1eb12dff0df81e14
🛠️ Linux Terminal Essentials Setup Script
This simple Bash script automates the installation of useful terminal tools and configures helpful aliases to enhance your command-line experience on Debian-based Linux systems.
📋 What It Does
- Updates your package list
- Installs Nala for improved APT UI and features
- Installs a collection of handy CLI tools:
- tldr - simplified man pages
- mc - Midnight Commander (GUI file manager)
- ranger - terminal file manager
- ncdu - disk usage analyzer
- tmux - terminal multiplexer
- btop - resources monitor
- neofetch - system info display
- Adds convinient bash aliases to .bashrc (current user)
- Updates TLDR pages
🚀 Usage
- Clone the repository:
bash
git clone https://github.com/unix-axwell/script.git
cd script
- Run the script:
bash
chmod +x run.sh
./run.sh
🧰 Added Aliases
| Alias | Command | Description |
|---|---|---|
ttn |
tmux new -s |
Start a new tmux session |
tta |
tmux attach -t |
Attach to an existing tmux session |
sysupdate |
sudo nala update |
Update package lists |
sysupgrade |
sudo nala upgrade |
Upgrade installed packages |
sysinstall |
sudo nala install |
Install new packages |
syshistory |
nala history |
View Nala install history |
syslist |
sudo apt list --upgradable |
List upgradable packages |
Description
Languages
Shell
100%