Live CDを使用している場合、プロキシを使用するようにAptが設定されていません。LiveCDでaptを設定してプロキシを使用できる場合があります。これをより永続的にしたい場合は、カスタムライブCDを使用するか、すべての接続にデフォルトでプロキシを使用するようにネットワークを設定できます。
個人的には、squidを使用し、すべての.debファイルを約1か月キャッシュします
Ubuntuのヘルプから
プロキシサーバーを使用するようにクライアントを更新するaptクライアントは、/ etc / apt / sources.listファイルを再構成して、外界ではなく新しいapt-proxyサーバーを指すようにする必要があります。sources.listファイルの設定は、バックエンドセクションをパスに追加する必要があることを除いて、通常のaptリポジトリの設定に似ています。
変更の例
deb http:// apt-proxy:port / backend dist component特定のリポジトリURLの言及をサーバーとそのバックエンドへの参照に置き換えます。といった:
deb http://archive.ubuntu.com/ubuntu dapper main restricted
deb http://security.ubuntu.com/ubuntu dapper-security main restricted universe
なるだろう
deb http://server:9999/ubuntu dapper main restricted
deb http://server:9999/ubuntu-security dapper-security main restricted universe
上記のapt-proxy-v2.confに対応するsources.listは次のようになります。
標準モジュールのapt-proxyエントリ
deb http://localhost:9999/ubuntu dapper main restricted universe multiverse
deb-src http://localhost:9999/ubuntu dapper main restricted universe multiverse
セキュリティパッチのapt-proxyエントリ
deb http://localhost:9999/ubuntu-security dapper-security main restricted universe multiverse
deb-src http://localhost:9999/ubuntu-security dapper-security main restricted universe multiverse