適切なイメージが正しくないアーキテクチャを選択してください。

適切なイメージが正しくないアーキテクチャを選択してください。

apt-mirrorを使用してストレージミラーリングを試みましたが、説明できないほど誤ったアーキテクチャを選択しました。

ミラーマシンのアーキテクチャは次のとおりです。

uname -a
Linux MyWorkStation 3.2.0-76-generic #111-Ubuntu SMP Tue Jan 13 22:16:09 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

head /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 44
model name      : Intel(R) Xeon(R) CPU           X5690  @ 3.47GHz
stepping        : 2
microcode       : 0x10
cpu MHz         : 3458.056
cache size      : 12288 KB
physical id     : 0

これは私の/etc/apt/mirror.listの外観です:

############# config ##################
#
# set base_path    /var/spool/apt-mirror
#
# set mirror_path  $base_path/mirror
# set skel_path    $base_path/skel
# set var_path     $base_path/var
# set cleanscript $var_path/clean.sh
# set defaultarch  <running host architecture>
# set postmirror_script $var_path/postmirror.sh
# set run_postmirror 0
set nthreads     20
set _tilde 0
#
############# end config ##############

deb http://archive.ubuntu.com/ubuntu precise main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu precise-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu precise-updates main restricted universe multiverse
#deb http://archive.ubuntu.com/ubuntu precise-proposed main restricted universe multiverse
#deb http://archive.ubuntu.com/ubuntu precise-backports main restricted universe multiverse

deb-src http://archive.ubuntu.com/ubuntu precise main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu precise-security main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu precise-updates main restricted universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu precise-proposed main restricted universe multiverse
#deb-src http://archive.ubuntu.com/ubuntu precise-backports main restricted universe multiverse

clean http://archive.ubuntu.com/ubuntu

生成されたイメージには、i386ではなくamd64バイナリしかありません。何が間違っていますか?

ベストアンサー1

出力uname -aには、ミラーリングされたシステムがamd64で、デフォルト値はset defaultarch <running host architecture>ミラーリングamd64として表示されます。

deb-i386行を追加するか(それ以外の場合は重複debdeb、行をに変更してみてくださいdeb-i386

ディスク容量が不足していない限り、変更するのではなく追加することをお勧めします。すでにamd64をミラーリングしており、後で必要になる可能性があります(それを使用してapt-mirrorホスト自体にパッケージをアップグレードまたはインストールできます)。なぜ削除しますか?

おすすめ記事