Como posso passar uma mensagem “Repositório não assinado…” ao tentar atualizar o Kali Linux a partir de uma imagem de disco montada?

0

Estou tentando atualizar o Kali Linux de 2017.2 para 2018.2 usando uma iso montada na Kali Virtual Machine.

Então, o que eu fiz foi editar meu arquivo sources.list para:

deb file:///media/cdrom0 kali-rolling main contrib non-free

e comentou outras linhas usando #.

Agora, sempre que tento apt-get update , obtenho:

E: The repository 'file:/media/cdrom0 kali-rolling Release' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
    
por DeshBhakt 17.06.2018 / 03:39

1 resposta

1

De acordo com a página man do Debian para apt-get , você pode use a opção --allow-unauthenticated da seguinte forma:

apt-get update --allow-unauthenticated

Como a entrada da página de manual para --allow-unauthenticated explica:

Ignore if packages can't be authenticated and don't prompt about it. This can be useful while working with local repositories, but is a huge security risk if data authenticity isn't ensured in another way by the user itself. The usage of the Trusted option for sources.list(5) entries should usually be preferred over this global override. Configuration Item: APT::Get::AllowUnauthenticated.

E se isso não funcionar, tente executar com --allow-insecure-repositories da seguinte forma:

apt-get update --allow-insecure-repositories
    
por 17.06.2018 / 05:05