標準以外のとあるパッケージを導入しようと、/etc/apt/sources.list内にURLを記述し、apt-get updateで更新したところ、下記のエラー
sudo apt-get update E: The method driver /usr/lib/apt/methods/https could not be found.
調べてみたら、/usr/lib/apt/methods/内にhttpsがないので、エラーとなってますね。
解決方法は、httpsに対応したapt methodをインストールすれば良いです。
# apt-get install apt-transport-https
これで、/usr/lib/apt/methods/内にhttpsが導入されますので、もう1度apt-get updateで更新するだけです。
何で、標準でhttpsが入ってないんだろう?