[✗] ─ [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.
Asked
Active
Viewed 7,809 times
0

Stewart
- 13,677

Javier Hernandez
- 1
- 1
- 3
1 Answers
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
/etc/apt/sources.list.d/parrot.list
) – GAD3R Mar 27 '21 at 22:48