Il software Ubuntu non mostra alcun software


Risposte:


7

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.


Nota che sono tutti "ufficiali". Tuttavia, potrebbero esserci problemi con i server, sì.
Tim

4

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.

  1. Apri un terminale. Ci sono molti modi per raggiungere questo obiettivo, ma i più comuni sono

    • digitare terminalil trattino e avviare l'applicazione con lo stesso nome o
    • premi Ctrl+ Alt+ T.
  2. Digita 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 .)

  3. Riaprire Software Center e riprovare.


Potresti anche voler controllare le tue fonti. È possibile farlo in un modo GUI ("Software and Updates" launcher), ma ti consiglio di farlo nella riga di comando se hai già problemi con Ubuntu Software.
Hee Jin,

2

Se sudo apt-get update && sudo apt-get upgradeseguito 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.

  1. Principale: software gratuito e open source supportato da Canonical.
  2. Universo: software gratuito e open source gestito dalla comunità.
  3. Limitato: driver proprietari per dispositivi.
  4. Multiverso - Software limitato da copyright o problemi legali.

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.


Rinominare la cartella gnome-software ha fatto per me. Grazie. mv ~/.local/share/gnome-software{,-BAK}non ho idea del perché.
James Newton,

1

Se quanto sopra non funziona, prova a reinstallare il software Gnome, ha funzionato per me

sudo apt autoremove gnome-software && sudo apt install gnome-software
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.