β˜„οΈ
Certified Ethical Hacker
  • πŸ‘‰Certified Ethical Hacker Cheatsheet
  • 🐧General Settings
    • πŸ“¦APT Package Manager
    • πŸ€–Cron
    • 🦊Firefox Extensions
  • ✍️Research & Report
    • πŸ’ Obsidian
    • 🎒Notion
    • 🐼Pwndocs
  • πŸ”ŽInformation Gathering
    • πŸ“›NSLookup // Dig // Whois
    • πŸ“œNmap
    • πŸ–₯️DNS Enumeration
  • πŸ”¬Vulnerability Assessment
    • 🌐Web Assessment
      • Nikto
      • WPScan
    • πŸ•ΈοΈNetwork Assessment
      • OpenVAS
      • Nessus
  • βš”οΈExploitation
    • πŸ”΄Metasploit
    • 🐍MSFVenom
    • πŸ‘οΈSearchsploit
    • 🐚Revshells
    • 🐱Netcat
      • 😾Pwncat-CS
    • πŸ’ͺBrute Force
    • πŸ”’Wi-FI
  • ⚜️Post Exploitation
    • β›ΊPersistence
    • πŸ“File Transfer
      • Netcat
      • SMB
      • Python
      • Updog
      • Linpeas
    • πŸ•³οΈTunnelling
Powered by GitBook
On this page
  • Update System
  • Package Manipulation
  1. General Settings

APT Package Manager

Update System

sudo apt update 
sudo apt upgrade
sudo apt dist-upgrade

# Other Options
sudo apt-get update
sudo apt-get upgrade
echo "alias sysupdate='sudo apt-get update -y && sudo apt-get upgrade -y'” >> ~/. bashrc

# Refresh Terminal
sysupdate # Run this to update and upgrade the system

Package Manipulation

sudo apt install <package> <options>
sudo apt install wget -y
sudo apt install curl wget file -y

# Other Options
sudo apt-get install <package>
# Uninstall
sudo apt remove <package>
sudo apt remove wget

# Remove deprecated/un-needed packages
sudo apt autoremove 
sudo apt update --fix-broken
PreviousCertified Ethical Hacker CheatsheetNextCron

Last updated 1 year ago

🐧
πŸ“¦