Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente |
installation_de_debian_sur_dell_xps_9570 [2018/07/10 13:37] – [Installation] simon | installation_de_debian_sur_dell_xps_9570 [Date inconnue] (Version actuelle) – supprimée - modification externe (Date inconnue) 127.0.0.1 |
---|
====== Installation d'un Dell XPS 9570 ====== | |
| |
===== Installation ===== | |
Le [[https://www.dell.com/fr-fr/shop/cty/pdp/spd/xps-15-9570-laptop/cnx97006|Dell XPS 9570]] ne possède plus de port réseau intégré (m(...). Et la carte réseau Wi-Fi n'est pas détectée sans firmware propriétaire (m(...). | |
| |
Pour avoir du réseau pendant l'installation, il faut donc utiliser une image non-officielle de Debian intégrant les firmwares non-libres pour l'installation. On peut trouver ces images [[https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/|sur debian.org]]. J'ai pris celle-ci : | |
* [[https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/9.4.0+nonfree/amd64/iso-cd/firmware-9.4.0-amd64-netinst.iso|https://cdimage.debian.org/cdimage/unofficial/non-free/cd-including-firmware/9.4.0+nonfree/amd64/iso-cd/firmware-9.4.0-amd64-netinst.iso]] | |
| |
L'installation se déroule sans accroc particuliers une fois le réseau configuré. | |
| |
J'ai installé avec Gnome3 et je n'ai eu aucun problèmes. | |
| |
===== Passer en "testing" ===== | |
Avant de me mettre à installer/configurer des programmes, je modifie ''/etc/apt/sources.list'' pour passer en ''testing'' : | |
<code bash> | |
simon@arcturus:~$ cat /etc/apt/sources.list | |
# testing | |
deb http://ftp.be.debian.org/debian/ testing main non-free | |
deb-src http://ftp.be.debian.org/debian/ testing main non-free | |
| |
deb http://deb.debian.org/debian testing-updates main | |
deb-src http://deb.debian.org/debian testing-updates main | |
| |
deb http://security.debian.org/ testing/updates main contrib non-free | |
deb-src http://security.debian.org/ testing/updates main contrib non-free | |
| |
# deb cdrom:[Debian GNU/Linux 9.4.0 _Stretch_ - Official amd64 NETINST 20180310-11:21]/ stretch contrib m$ | |
# deb cdrom:[Debian GNU/Linux 9.4.0 _Stretch_ - Official amd64 NETINST 20180310-11:21]/ stretch contrib m$ | |
#deb http://ftp.be.debian.org/debian/ stretch main non-free contrib | |
#deb-src http://ftp.be.debian.org/debian/ stretch main non-free contrib | |
#deb http://security.debian.org/debian-security stretch/updates main contrib non-free | |
#deb-src http://security.debian.org/debian-security stretch/updates main contrib non-free | |
# stretch-updates, previously known as 'volatile' | |
#deb http://ftp.be.debian.org/debian/ stretch-updates main contrib non-free | |
#deb-src http://ftp.be.debian.org/debian/ stretch-updates main contrib non-free | |
</code> | |
| |
Après, on fait : | |
<code bash> | |
# apt update && apt upgrade | |
</code> | |
| |
===== Firmware manquants ? ===== | |
| |
Au démarrage [[dmesg]] me dit qu'il manque plusieurs firmware. | |
| |
<code bash> | |
# dmesg | grep "firmware: failed" | |
[ 12.881335] ath10k_pci 0000:3b:00.0: firmware: failed to load ath10k/pre-cal-pci-0000:3b:00.0.bin (-2) | |
[ 12.881390] ath10k_pci 0000:3b:00.0: firmware: failed to load ath10k/cal-pci-0000:3b:00.0.bin (-2) | |
[ 12.881775] ath10k_pci 0000:3b:00.0: firmware: failed to load ath10k/QCA6174/hw3.0/firmware-5.bin (-2) | |
</code> | |
| |
Ce qui est déjà installé (s'est installé automatiquement à l'installation) : | |
<code bash> | |
# apt search firmware-atheros | |
En train de trier... Fait | |
Recherche en texte intégral... Fait | |
firmware-atheros/testing,now 20170823-1 all [installé] | |
Binary firmware for Atheros wireless cards | |
</code> | |
| |
Tout fonctionne jusqu'ici, je préfère ne pas toucher dans un premier temps. | |