W: Пропуск получения настроенного файла «main / binary-1386 / Packages» в качестве репозитория… не поддерживает архитектуру «1386» [дубликат]

У меня недавно начались проблемы с Software Updater. Когда я пытаюсь запустить его, я получаю сообщение:

Не удалось загрузить информацию из репозитория. Проверьте ваше интернет-соединение.

Мое соединение работает нормально, поэтому я уверен, что это что-то другое. Ниже показан результат ввода Details в виде кода, потому что это был единственный способ, которым я мог найти, что он позволил бы мне включить его.

W:Skipping acquire of configured file 'main/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial InRelease' doesn't support architecture '1386', 
W:Skipping acquire of configured file 'restricted/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'main/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-updates InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'restricted/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-updates InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'multiverse/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-updates InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'main/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-backports InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'restricted/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-backports InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'universe/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-backports InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'multiverse/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-backports InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'main/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-security InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'restricted/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-security InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'universe/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-security InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'multiverse/binary-1386/Packages' as repository 'http://mirror.steadfast.net/ubuntu xenial-security InRelease' doesn't support architecture '1386', 
W:Skipping acquire of configured file 'main/binary-1386/Packages' as repository 'http://ppa.launchpad.net/fkrull/deadsnakes/ubuntu xenial InRelease' doesn't support architecture '1386',
W:Skipping acquire of configured file 'universe/binary-1386/Packages' as repository 'http://repos.codelite.org/wx3.0.3/ubuntu zesty InRelease' doesn't support architecture '1386', 
W:Skipping acquire of configured file 'main/binary-1386/Packages' as repository 'http://ppa.launchpad.net/webupd8team/java/ubuntu xenial InRelease' doesn't support architecture '1386',
W:The repository 'http://ppa.launchpad.net/pcf/miro-releases/ubuntu xenial Release' does not have a Release file.,
W:Data from such a repository can't be authenticated and is therefore potentially dangerous to use.,
W:See apt-secure(8) manpage for repository creation and user configuration details.,
W:Skipping acquire of configured file 'main/binary-1386/Packages' as repository 'http://ppa.launchpad.net/webupd8team/tor-browser/ubuntu xenial InRelease' doesn't support architecture '1386', 
E:Failed to fetch http://ppa.launchpad.net/pcf/miro-releases/ubuntu/dists/xenial/main/binary-amd64/Packages  404  Not Found,
E:Some index files failed to download. They have been ignored, or old ones used instead.`

Выполнение следующих команд не дало результата.

grep -i 1386 /etc/apt/sources.list
grep -i 1386 /etc/apt/sources.list.d/*.list
1
задан 12 September 2017 в 04:43

1 ответ

Ваш компьютер настраивается с неправильным типом архитектуры.

В terminal...

Позволяет, видят то, что мы имеем теперь...

sudo dpkg --print-architecture
    # could show amd64
sudo dpkg --print-foreign-architectures # note the ending s
    # could show 1386 <-- this is the bad one

Позволяет, решают проблему...

sudo dpkg --remove-architecture 1386 # delete the bad one
sudo dpkg --add-architecture i386 # add a good one

Обновление № 1:

ошибка E:Failed to fetch http://ppa.launchpad.net/pcf/miro-releases/ubuntu/dists/xenial состоит в том, потому что никакой гостеприимный репозиторий не существует.

В terminal...

cd /etc/apt/sources.list.d
grep -i miro-releases *.list
    # note the filename that is returned
gksudo gedit /etc/apt/sources.list.d/{enter found filename here}
    # comment out the deb lines by placing a # at the beginning of the lines
    # save the file and quit gedit
1
ответ дан 7 December 2019 в 15:30

Другие вопросы по тегам:

Похожие вопросы: