🔴 Programming Tools
Selective Installation
sudo apt-get update
sudo apt-get install build-essential
sudo apt install mono-devel
sudo apt-get install default-jdk
sudo apt install -y python3 python3-pip
sudo apt-get install libglib2.0-dev
sudo apt-get install libgtk2.0-dev
sudo apt-get -y install build-essential openssl libssl-dev libssl1.0 libgl1-mesa-dev libqt5x11extras5
sudo apt install qtbase5-dev qt5-qmake qtbase5-dev-tools
sudo apt-get install qtcreator |
Install C, C++, C#, Java, Python, glib, QT-Creator:
sudo apt-get update
sudo apt-get -y install build-essential openssl libssl-dev libssl1.0 libgl1-mesa-dev libqt5x11extras5
sudo apt-get -y install libglib2.0-dev
sudo apt-get -y install libgtk2.0-dev
sudo apt -y install qtbase5-dev qt5-qmake qtbase5-dev-tools
sudo apt-get -y install qtcreator
sudo apt -y install mono-devel
sudo apt-get -y install default-jdk
sudo apt -y install -y python3 python3-pip
🔴 Penetration Tools
Selective Installation
|
Install all penetration tools that've been listed:
sudo apt-get update
sudo apt -y install nmap wireshark metasploit-framework aircrack-ng nikto hashcat hydra sqlmap gobuster sublist3r dirb burpsuite
🔴 Hardware Stuff
- Install Bluetooth services and add em to autostart for XFCE (and propably GNOME) Desktop Env:
# Install dependencies
sudo apt-get update
sudo apt-get upgrade
sudo apt-get -y install bluetooth bluez bluez-tools rfkill
sudo systemctl enable bluetooth
sudo systemctl start bluetooth
sudo rfkill unblock bluetooth
sudo service bluetooth start
sudo apt-get -y install blueman
# Create autostart directory if it doesn't exist
mkdir -p ~/.config/autostart
# Make sure autostart directory has appropriate permissions
chmod -R 755 ~/.config/autostart
# Add bluetooth to autostart
echo -e '[Desktop Entry]
Type=Application
Exec=bluetooth-applet
Hidden=false
NoDisplay=false
Name=Bluetooth
Comment=Enable Bluetooth at startup' | tee ~/.config/autostart/bluetooth.desktop
- Install Pavucontrol (audio device manager) and add it to autostart for XFCE (and propably GNOME) Desktop Env:
This one is very optional! In case you're using multiple audio devices!
sudo apt-get install pasystray
mkdir -p ~/.config/autostart
chmod -R 755 ~/.config/autostart
# Add Pavucontrol to autostart
echo "[Desktop Entry]
Name=Pavucontrol
Exec=pavucontrol --start-hidden
Comment=Audio Volume Control
Terminal=false
Type=Application" > ~/.config/autostart/pavucontrol.desktop
# Add Pasystray to autostart
echo "[Desktop Entry]
Name=Pasystray
Exec=pasystray
Comment=PulseAudio System Tray
Terminal=false
Type=Application" > ~/.config/autostart/pasystray.desktop
🔴 Useful Utilities
Selective Installation
sudo apt install bleachbit
sudo apt install gufw |
Install all the packages that were listed:
- Install all packages:
sudo apt-get update
sudo apt -y install guake flameshot hardinfo bleachbit gufw
- Include in the autorun for XFCE (and propably GNOME) Desktop Env:
# Create autostart directory if it doesn't exist
mkdir -p ~/.config/autostart
# Make sure autostart directory has appropriate permissions
chmod -R 755 ~/.config/autostart
# Add guake to autostart
echo -e '[Desktop Entry]
Type=Application
Name=Guake
Comment=terminal emulator
Exec=sleep 5 && guake
RunHook=0
StartupNotify=false
Terminal=false
Hidden=false' > ~/.config/autostart/guake.desktop
# Add Flameshot to autostart
echo -e '[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=Flameshot
Exec=flameshot
Comment=Screenshot util' > ~/.config/autostart/flameshot.desktop