Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente | ||
matos:unifi:usage:problemes [16/05/2019 17:25] thierry créée |
matos:unifi:usage:problemes [20/07/2020 12:18] (Version actuelle) thierry ↷ Page déplacée de matos:unifi:problemes à matos:unifi:usage:problemes |
||
---|---|---|---|
Ligne 13: | Ligne 13: | ||
reboot | reboot | ||
</code> | </code> | ||
- | voir aussi [[matos:unifi:usg:ssh]] | + | voir aussi [[matos:unifi:usage:usg_ssh]] |
==== Generer le Tech-Support ==== | ==== Generer le Tech-Support ==== | ||
En SSH | En SSH | ||
Ligne 19: | Ligne 19: | ||
show tech-support | no-more | show tech-support | no-more | ||
</code> | </code> | ||
+ | ===== Controleur ===== | ||
+ | ==== Mise a jour du controleur sous Ubuntu ==== | ||
+ | === Erreur : E: Repository 'http://dl.ubnt.com/unifi/debian stable InRelease' changed its 'Codename' value from 'unifi-xx.xx' to 'unifi-yy.yy === | ||
+ | |||
+ | Lors d'un ''apt-get update'' on obtient le message : ''E: Repository 'http://dl.ubnt.com/unifi/debian stable InRelease' changed its 'Codename' value from 'unifi-5.10' to 'unifi-5.11' '' | ||
+ | |||
+ | Ce qui nous empeche de faire la mise a jour avec ''apt-get upgrade'' | ||
+ | <code bash Erreur !> | ||
+ | [admin@admin ~]# apt-get update | ||
+ | Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease | ||
+ | Ign:2 http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 InRelease | ||
+ | ... | ||
+ | Get:8 http://dl.ubnt.com/unifi/debian stable InRelease [3024 B] | ||
+ | Reading package lists... | ||
+ | E: Repository 'http://dl.ubnt.com/unifi/debian stable InRelease' changed its 'Codename' value from 'unifi-5.10' to 'unifi-5.11' | ||
+ | </code> | ||
+ | |||
+ | Pour résoudre ce probléme j'ai utilisé la methode suivante : ''apt-get update --allow-releaseinfo-change'' | ||
+ | |||
+ | <code bash Résolution> | ||
+ | [admin@admin ~]# apt-get update --allow-releaseinfo-change | ||
+ | Hit:1 http://archive.ubuntu.com/ubuntu bionic InRelease | ||
+ | Ign:2 http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 InRelease | ||
+ | ... | ||
+ | Get:8 http://dl.ubnt.com/unifi/debian stable InRelease [3024 B] | ||
+ | Get:10 http://dl.ubnt.com/unifi/debian stable/ubiquiti amd64 Packages [704 B] | ||
+ | Fetched 181 kB in 1s (216 kB/s) | ||
+ | Reading package lists... | ||
+ | </code> | ||
+ | Mise a jour avec ''apt-get upgrade'' | ||
+ | <code bash> | ||
+ | [admin@admin ~]# apt-get upgrade | ||
+ | Reading package lists... | ||
+ | Building dependency tree... | ||
+ | Reading state information... | ||
+ | Calculating upgrade... | ||
+ | The following packages will be upgraded: | ||
+ | unifi | ||
+ | 1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. | ||
+ | Need to get 97.4 MB of archives. | ||
+ | After this operation, 36.8 MB of additional disk space will be used. | ||
+ | Do you want to continue? [Y/n] </code> | ||
+ | |||
+ | |||