sudo: apt-get: command not found

16,883

Solution 1

It should be something like Run this once a week:

emerge --sync 

And to install aircrack

emerge aircrack-ng 

or if it is called different, you can search package database with:

emerge --search aircrack-ng

You should probably read about portage (emerge command) here:

http://wiki.sabayon.org/index.php?title=En:HOWTO:_The_Complete_Portage_Guide

Solution 2

APT is a tool used exclusively by Debian based distributions. Sabayon is based on Gentoo and therefore supports Portage (the emerge command mentionned in another answer).

However it also has its own binary package management tool (very similar to APT) called Entropy. Entropy has two frontends:

You can use equo in a similar way to apt-get:

equo update && equo install aircrack-ng

(considering aircrack-ng is the correct name of the package)

Share:
16,883

Related videos on Youtube

whoAmi21
Author by

whoAmi21

Updated on September 18, 2022

Comments

  • whoAmi21
    whoAmi21 over 1 year

    I am trying to install aircrack-ng in my Sabayon 9 by the use of this command:

    sudo apt-get install aircrack-ng

    but it says:

    sudo: apt-get: command not found

    How to install it?

    • Mat
      Mat over 11 years
      Sabayon is Gentoo-based, apt isn't really a package manager you should be using (see wiki.sabayon.org/…).
    • wnrph
      wnrph over 11 years
      Know your OS before hacking into other people's networks :-)
  • daisy
    daisy over 11 years
    Best not do that in sabayon, lot's of packages are out-of-dated on sabayon, after this you will never be able to use any official pre-compiled packages in most cases.