Ansibleを試したいのでインストール
※ トラブルは特になし。
手順
本家のインストール手順に沿って実施
$ sudo apt-get update
$ sudo apt-get install software-properties-common
$ sudo apt-add-repository --yes --update ppa:ansible/ansible
$ sudo apt-get install ansible
software-properties-common って?
add-apt-repositoryを含むパッケージ
add-apt-repositoryは非公式リポジトリを追加するために必要(※1)。
※1: 今回の例ではppa:ansible/ansibleを追加するために必要なコマンド
※2: 12.04の場合は、「python-software-properties」パッケージの中にあるため、add-apt-repositoryを利用したい場合には 12.04以前はsudo apt-get install python-software-propertiesが必要
環境
Ubuntu18.04.1 LTS on WSL on Windows10 Home
引用