APT (Advanced Packaging Tool) is a powerful package management system, on which the graphical programs Add/Remove Programs and Adept are based. APT automatically handles dependencies and performs other operations on system packages to allow the installation of the desired packages.
APT を実行するには管理者権限が必要です。
APTで使える共通のコマンドのいくつか:
パッケージのインストール:
sudo apt-get install packagename
パッケージの削除:
sudo apt-get remove packagename
パッケージの検索:
apt-cache search キーワード
利用可能なパッケージの新しいリストを取り込む:
sudo apt-get update
利用可能なアップデートを用いてシステムをアップグレードする:
sudo apt-get dist-upgrade
詳細なコマンドとオプションのリストを表示する:
apt-get help
APTの使い方に関する詳細な情報は、Debian APT User Manual を読むことで理解できます。