linuxサーバーをUbuntu 19.10と最新バージョンのDebianの両方に更新しました。どちらも、ミラー化されたデポジトリを実行しているメインのLinuxサーバーを指し、FTP経由での通信を許可します。
The method 'ftp' is unsupported and disabled by default.
Consider switching to http(s).
Set Dir::Bin::Methods::ftp to "ftp" to enable it again.
フェッチに失敗した後ftp://
。 FTP経由でシステムアップデートの取得を再度有効にするにはどうすればよいですか?
コマンドラインで
echo 'Dir::Bin::Methods::ftp "ftp";' | Sudo tee -a /etc/apt/apt.conf.d/99local-ftp
これにより、フォルダ99local-ftp
に/etc/apt/apt.conf.d/
という名前の構成ファイルが作成されます(必要に応じて別の名前を選択できます)。
Dir::Bin::Methods::ftp "ftp"
これにより、aptのFTPが再度有効になります。