0
[✗] ─ [zorillo @ zorillo-virtualbox] ─ [~] └──╼ $ sudo apt-get upgrade
apt upgrade is unsafe on rolling release distributions.
using apt full-upgrade instead
use apt upgrade --force to override
E: Entry 11 incorrectly specified in list file /etc/apt/sources.list (URI parse) E: The source lists could not be read. E: Entry 11 incorrectly specified in list file /etc/apt/sources.list (URI parse) E: The source lists could not be read. E: Entry 11 incorrectly specified in list file /etc/apt/sources.list (URI parse) E: The source lists could not be read.
parrotsec
E: Entrada 11 mal especificada en list fichero /etc/apt/sources.list (URI parse)
E: No se pudieron leer las listas de fuentes.
E: Entrada 11 mal especificada en list fichero /etc/apt/sources.list (URI parse)
E: No se pudieron leer las listas de fuentes.
E: Entrada 11 mal especificada en list fichero /etc/apt/sources.list (URI parse)
E: No se pudieron leer las listas de fuentes.
Stewart
  • 13,677

1 Answers1

0

Override the content of /etc/apt/sources.list with the correct repositories:

deb https://deb.parrot.sh/parrot/ rolling main contrib non-free
#deb-src https://deb.parrot.sh/parrot/ rolling main contrib non-free
deb https://deb.parrot.sh/parrot/ rolling-security main contrib non-free
#deb-src https://deb.parrot.sh/parrot/ rolling-security main contrib non-free

You can use the following command:

cat <<EOF |sudo tee /etc/apt/sources.list
deb https://deb.parrot.sh/parrot/ rolling main contrib non-free
#deb-src https://deb.parrot.sh/parrot/ rolling main contrib non-free
deb https://deb.parrot.sh/parrot/ rolling-security main contrib non-free
#deb-src https://deb.parrot.sh/parrot/ rolling-security main contrib non-free
EOF

Remove all files from /etc/apt/sources.list.d/:

sudo rm /etc/apt/sources.list.d/*
GAD3R
  • 66,769