Dopo aver installato 16.04, il software Ubuntu è sempre vuoto, come mostrato nella schermata. Come posso risolvere questo problema?
Dopo aver installato 16.04, il software Ubuntu è sempre vuoto, come mostrato nella schermata. Come posso risolvere questo problema?
Risposte:
Modifica il download dal server in Software e aggiornamenti . Avevo impostato il mio su uno svedese vicino (che forse non ha ancora aggiornato). Sono passato a un server inglese dall'aspetto più ufficiale e il software Ubuntu ora funziona.
Ciò è molto probabilmente perché i sistemi appena installati non dispongono di un database di pacchetti disponibili. Puoi generarne uno recente dai repository di pacchetti con i passaggi seguenti.
Apri un terminale. Ci sono molti modi per raggiungere questo obiettivo, ma i più comuni sono
terminal
il trattino e avviare l'applicazione con lo stesso nome oDigita o copia e incolla i seguenti comandi nel terminale ed eseguili:
sudo apt update
sudo apt upgrade -y
(Se si esegue in eventuali errori nel processo, si prega di aprire una nuova domanda e comprendono l' intera produzione di questi comandi alla lettera .)
Riaprire Software Center e riprovare.
Se sudo apt-get update && sudo apt-get upgrade
seguito da un riavvio non risolve il problema, suggerirei:
sudo apt-get dist-upgrade
Ricomincia. Se ciò non aiuta, puoi anche provare a eseguire il backup e poi a eliminare una cartella nella tua home directory associata al programma. Innanzitutto, nel Terminale o altra CLI:
killall gnome-software
Poi
mv ~/.local/share/gnome-software{,-BAK}
Riapri il software Ubuntu. (Se necessario, si può sempre annullare la rimozione della cartella gnome-software e ripristinare il backup: rm -r ~/.local/share/gnome-software && mv ~/.local/share/gnome-software{-BAK,}
)
Infine, se nulla di tutto questo funziona per te, sarei interessato a conoscere l'output di:
find /etc/apt/ -name '*.list' -ls -exec cat {} \;
Questo è un elenco di tutte le fonti consentite (le fonti sono i repository che contengono il software disponibile per il download).
Anche se non riesco a pensare a nessun motivo per cui non avresti nulla in sources.list, è anche l'unica spiegazione che mi viene in mente sul perché nulla appare come disponibile nel software Ubuntu dopo aver provato tutti i normali passaggi per la risoluzione dei problemi.
Esempio di output del comando sopra:
1234567 4 -rw-r--r-- 1 root root 3026 Apr 8 22:39 /etc/apt/sources.list
# deb cdrom:[Ubuntu 16.04.1 LTS _Xenial Xerus_ - Release amd64 (20160719)]/ xenial main multiverse restricted universe
# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://us.archive.ubuntu.com/ubuntu/ xenial main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://us.archive.ubuntu.com/ubuntu/ xenial universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universe
deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## multiverse WILL NOT receive any review or updates from the Ubuntu
## security team.
deb http://us.archive.ubuntu.com/ubuntu/ xenial multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.
deb http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
## Uncomment the following two lines to add software from Canonical's
## 'partner' repository.
## This software is not part of Ubuntu, but is offered by Canonical and the
## respective vendors as a service to Ubuntu users.
## deb http://archive.canonical.com/ubuntu xenial partner
## deb-src http://archive.canonical.com/ubuntu xenial partner
deb http://security.ubuntu.com/ubuntu xenial-security main restricted
# deb-src http://security.ubuntu.com/ubuntu xenial-security main restricted
deb http://security.ubuntu.com/ubuntu xenial-security universe
# deb-src http://security.ubuntu.com/ubuntu xenial-security universe
deb http://security.ubuntu.com/ubuntu xenial-security multiverse
# deb-src http://security.ubuntu.com/ubuntu xenial-security multiverse
Nell'esempio sopra, i quattro repository principali sono abilitati.
Anche gli aggiornamenti sono abilitati. I repository con software di partner Canonical non sono abilitati. Questi rappresentano le opzioni standard abilitate quando si installa Ubuntu per la prima volta.
Se hai aggiunto dei PPA, questi compariranno anche nell'output sopra.
mv ~/.local/share/gnome-software{,-BAK}
non ho idea del perché.
sudo apt-get update
esudo apt-get upgrade
comandato