Ubuntu Command Collection

  • install debian file:
      sudo dpkg -i package_name.deb
  • install dependency:
      sudo apt-get -f install
  • install software:
      sudo apt-get -f install package_name
  • install bundle file:
       sudo sh file_name.bundle
  • install bin/sh file:
       chmod +x file_name.bin
            ./file_name.bin
  • Installing WIRESHARK’s dumpcap without allowing non-root users to capture packets:
       setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' /usr/bin/dumpcap
  • Find the MAC address:
       ifconfig

References:

  1. WIRESHARK:

Leave a comment