Ich bin ein bisschen neu in diesem Bereich, bitte verzeihen Sie mir.
Ich verfolge ein Buch, in dem ich "sudo apt-get install ..." auf einem Ubuntu-Betriebssystem ausführen muss, aber ich habe nur einen Mac. Auf meinem Mac wurde eine ausführbare UNIX-Datei mit dem Namen "apt" gefunden. Ich gehe davon aus, dass "apt" dasselbe war wie "apt-get", aber wenn ich die relevanten Befehle eingebe, erhalte ich:
-bash: apt-get: command not found
ODER (wenn ich "apt" und "-get" mit einem Leerzeichen trenne)
apt: invalid flag: -get
Usage: apt <apt and javac options> <source files>
where apt options include:
-classpath <path> Specify where to find user class files and annotation processor factories
-cp <path> Specify where to find user class files and annotation processor factories
-d <path> Specify where to place processor and javac generated class files
-s <path> Specify where to place processor generated source files
-source <release> Provide source compatibility with specified release
-version Version information
-help Print a synopsis of standard options; use javac -help for more options
-X Print a synopsis of nonstandard options
-J<flag> Pass <flag> directly to the runtime system
-A[key[=value]] Options to pass to annotation processors
-nocompile Do not compile source files to class files
-print Print out textual representation of specified types
-factorypath <path> Specify where to find annotation processor factories
-factory <class> Name of AnnotationProcessorFactory to use; bypasses default discovery process
See javac -help for information on javac options.
Ist apt und apt-get dasselbe?
Ich versuche, python3-minimal und andere digitale forensische Tools zu installieren.
P.S. Diese Frage bezieht sich auf: Was ist das Äquivalent zu Ubuntus Befehl apt-get auf einem Mac? und Was ist der Unterschied zwischen Linux (Ubuntu) und Mac-Shell-Befehlen? Aber diese Beiträge haben nichts mit der Tatsache zu tun, dass auf dem Mac ein geeignetes UNIX-Programm ausgeführt werden kann.
quelle
Antworten:
Sie sind zwei unabhängige Befehle. Wenn du läufst
man apt
Auf Ihrem Mac scheint es sich um ein Tool für die Java-Entwicklung zu handeln. Von demman
Seite:man
Da es sich jedoch auf beiden Plattformen um dasselbe Tool handelt, ist es eine nützliche Ressource, unabhängig von Ihrem Kenntnisstand. Laufenman <command>
Zeigt die Hilfe zu diesem Befehl an.quelle