Outils pour utilisateurs

Outils du site


public:install_debian_pc_wihout_ethernet

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
public:install_debian_pc_wihout_ethernet [2018/07/06 08:21] – créée pcoudercpublic:install_debian_pc_wihout_ethernet [2020/03/31 17:41] (Version actuelle) pcouderc
Ligne 1: Ligne 1:
-- Create a USB disk with main packets in it, that is not the internet version, as internet will not be initially available.+=== Install debian PC without ethernet ===
  
-- Standard install on debian, add EFI partition (512M)and remaining in a btrfs partition mounted on /+Slim laptops arrive now without ethernet but only wifi, so that internet may not be initially available... 
 + 
 +== Create an USB debian install disk == 
 +Create a USB debian install disk with main packets in itthat is not the internet versionas internet will not be initially available. 
  
-- add the USB in /etc/fstab (here /dev/sda1, found with "fdisk -l") 
 <code> <code>
-/dev/sda1 /media/cdrom  iso9660 user,noauto           0+dd if=debian......iso of=/dev/sdZ bs=4M status=progress
 </code> </code>
 +Add a 3rd partition for various uses on /dev/sdZ3
  
-Use apt-cdrom+ 
 +== Install basic == 
 + 
 +Standard install on debian, add EFI partition (512M), and remaining in a btrfs partition mounted on / 
 + 
 +To install more packets from USB /dev/sda1:
 <code> <code>
-apt-cdrom -d=/aptoncd-mountpoint add+mount  /dev/sda1 /media/cdrom
 +update /apt/sources.list with : 
 +deb  [trusted=yes] file:/media/cdromstretch  main
 apt update apt update
-apt install vim...+apt install vim
 </code> </code>
  
-- Install networking + 
 +== Install networking == 
 + 
 +First check that network is available with : 
 + 
 +<code> 
 +ip a 
 +</code> 
 + 
 +To get the type of wifi available : 
 + 
 +<code> 
 +lspci -nn | grep -i network 
 +</code> 
 + 
 +Find the "good" driver (in some .deb maybe non-free), install it from apt, or maybe from an USB key with : 
 +<code> 
 +dpkg -i firmware-xxx 
 +</code> 
 +Get information and check it is in use with : 
 +<code> 
 +ip a 
 +iwconfig 
 +    et si nécessaire : 
 +ip link set dev wlan0 up 
 +iwlist scan     
 +</code> 
 + 
 + 
 +Install networking with creating etc/systemd/network/wlp1s0.network 
 +<code> 
 +[Match] 
 +Name=wlp1s0 
 + 
 +[Network] 
 +DHCP=yes 
 +</code> 
 +then /etc/wpa_supplicant/wpa_supplicant-wlp1s0.conf 
 +<code> 
 +ctrl_interface=/var/run/wpa_supplicant 
 + 
 +network={ 
 +        ssid="" 
 +#       ssid="NETGEAR-3D"    note : "" ok for any open network 
 +        pririty=9 # necessary to force its use when   key_mgmt=NONE 
 +        key_mgmt=NONE 
 +
 +## generated by wpa_passphrase [ ssid ] [ passphrase ] >> /etc/wpa_supplicant/wpa_supplicant-wlp1s0.conf 
 +network={ 
 +        ssid="PCmobile" 
 +        #psk="1234567890" 
 +        psk=c157baf19d12458176ced86fcb08fbe7c3704ef8ac3a4782392cae3b19cdf365 
 +
 + 
 +</code> 
 +If a default domain is needed ("search domain" in old resolv.conf) set it in /etc/systemd/resolved.conf : 
 +<code> 
 +[Resolve] 
 +#DNS= 
 +#FallbackDNS= 
 +Domains=couderc.eu 
 +</code> 
 + 
 +Then : 
 +<code> 
 +systemctl stop networking.service 
 +systemctl disable networking.service 
 +systemctl enable systemd-networkd 
 +systemctl enable wpa_supplicant@wlp1s0 
 +systemctl enable systemd-resolved 
 +systemctl start systemd-networkd 
 +systemctl start wpa_supplicant@wlp1s0 
 +systemctl start systemd-resolved 
 +ln -s /run/systemd/resolve/resolv.conf /etc/resolv.conf 
 +</code> 
 + 
 + 
 + 
public/install_debian_pc_wihout_ethernet.1530865267.txt.gz · Dernière modification : 2018/07/06 08:21 de pcouderc

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki