web-dev-qa-db-fra.com

apt obtenir mise à jour manquant fichier de version

Après avoir fait apt-get-update je reçois toujours ces messages d'erreur:

Reading package lists... Done
W: The repository 'http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
N: Skipping acquire of configured file 'main/binary-i386/Packages' as repository 'http://dl.google.com/linux/chrome/deb stable InRelease' doesn't support architecture 'i386'
E: Failed to fetch http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu/dists/xenial/main/binary-i386/Packages  404  Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.

J'ai lu un article disant que le contenu de /etc/apt/sources.list (voir ci-dessous) devrait être modifié. Quelles lignes doivent être commentées?

# deb cdrom:[Ubuntu 11.10 _Oneiric Ocelot_ - Release i386 (20111012)]/ oneiric main restricted

# See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to
# newer versions of the distribution.
deb http://gb.archive.ubuntu.com/ubuntu/ xenial main restricted
deb-src http://gb.archive.ubuntu.com/ubuntu/ xenial main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://gb.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
deb-src http://gb.archive.ubuntu.com/ubuntu/ xenial-updates main restricted

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://gb.archive.ubuntu.com/ubuntu/ xenial universe
deb-src http://gb.archive.ubuntu.com/ubuntu/ xenial universe
deb http://gb.archive.ubuntu.com/ubuntu/ xenial-updates universe
deb-src http://gb.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://gb.archive.ubuntu.com/ubuntu/ xenial multiverse
deb-src http://gb.archive.ubuntu.com/ubuntu/ xenial multiverse
deb http://gb.archive.ubuntu.com/ubuntu/ xenial-updates multiverse
deb-src http://gb.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://gb.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse
deb-src http://gb.archive.ubuntu.com/ubuntu/ xenial-backports main restricted universe multiverse

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
```

EDIT: contenu de sources.list.d:

brightbox-Ruby-ng-trusty.list
brightbox-Ruby-ng-trusty.list.save
danielrichter2007-grub-customizer-precise.list
danielrichter2007-grub-customizer-precise.list.distUpgrade
danielrichter2007-grub-customizer-precise.list.save
google-chrome.list
google-chrome.list.distUpgrade
google-chrome.list.save
heroku.list
heyarje-libav-11-trusty.list
inkscape_dev-stable-trusty.list
inkscape_dev-stable-trusty.list.save
maarten-baert-simplescreenrecorder-trusty.list
maarten-baert-simplescreenrecorder-trusty.list.save
megasync.list
megasync.list.distUpgrade
megasync.list.save
ondrej-php-trusty.list
ondrej-php-trusty.list.save
oneiric-partner.list
oneiric-partner.list.distUpgrade
oneiric-partner.list.save
spring-ppa-trusty.list
spring-ppa-trusty.list.save
thomas_tsai-ubuntu-tuxboot-trusty.list
thomas_tsai-ubuntu-tuxboot-trusty.list.save
webupd8team-Java-trusty.list
webupd8team-Java-trusty.list.save
9
JohnnyBizzle

J'ai testé le ppa en les ajoutant, c'est aussi montrer la même erreur que vous:

W: The repository 'http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu xenial Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
E: Failed to fetch http://ppa.launchpad.net/ubuntu-audio-dev/ppa/ubuntu/dists/xenial/main/binary-i386/Packages  404  Not Found

Si vous allez à leur page du tableau de bord du ppa , vous verrez que le ppa n'est plus disponible au 13.10 (Saucy Salamander), ce qui cause l'erreur 404 Not Found:

enter image description here

Afin de supprimer les erreurs, supprimez simplement le ppa:

Sudo add-apt-repository --remove ppa:ubuntu-audio-dev/ppa
Sudo apt-get update
Sudo apt-key del 72B194E5

Mettre à jour

Pour l'erreur There is no public key available, exécutez les opérations suivantes sur le terminal:

Sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1397BC53640DB551

Pour l'erreur google chrome _ in Release file, procédez comme suit:

  1. Ouvrez une nouvelle fenêtre de terminal et exécutez la commande suivante:

    Sudo gedit /etc/apt/sources.list.d/google-chrome.list
    
  2. Dans le fichier texte qui s'ouvre, éditez le fichier pour que la ligne se lise:

    deb [Arch=AMD64] http://dl.google.com/linux/chrome/deb/ stable main
    
  3. Appuyez sur Enregistrer. Fermez la fenêtre Gedit.

Source

10
Jim