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

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
public:install_debian_pc_wihout_ethernet [2018/07/08 07:48] pcoudercpublic:install_debian_pc_wihout_ethernet [2020/03/31 17:41] (Version actuelle) pcouderc
Ligne 1: Ligne 1:
 === Install debian PC without ethernet === === Install debian PC without ethernet ===
 +
 +Slim laptops arrive now without ethernet but only wifi, so that internet may not be initially available...
  
 == Create an USB debian install disk == == Create an USB debian install disk ==
 Create a USB debian install disk with main packets in it, that is not the internet version, as internet will not be initially available.  Create a USB debian install disk with main packets in it, that is not the internet version, as internet will not be initially available. 
  
 +<code>
 +dd if=debian......iso of=/dev/sdZ bs=4M status=progress
 +</code>
 +Add a 3rd partition for various uses on /dev/sdZ3
  
  
-== Install ==+== Install basic ==
  
 - Standard install on debian, add EFI partition (512M), and remaining in a btrfs partition mounted on / - 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>
 +mount  /dev/sda1 /media/cdrom/
 +update /apt/sources.list with :
 +deb  [trusted=yes] file:/media/cdrom/ stretch  main
 +apt update
 +apt install vim
 +</code>
  
-Install networking :+ 
 +== Install networking ==
  
 First check that network is available with : First check that network is available with :
Ligne 33: Ligne 48:
 ip a ip a
 iwconfig iwconfig
 +    et si nécessaire :
 +ip link set dev wlan0 up
 +iwlist scan    
 </code> </code>
-If not in use, try rebootIf needed, find its name : + 
 + 
 +Install networking with creating etc/systemd/network/wlp1s0.network
 <code> <code>
-modprobe -c | grep xxx+[Match] 
 +Name=wlp1s0 
 + 
 +[Network] 
 +DHCP=yes
 </code> </code>
-and reload it with :+then /etc/wpa_supplicant/wpa_supplicant-wlp1s0.conf
 <code> <code>
-modprobe -rv xxx +ctrl_interface=/var/run/wpa_supplicant 
-modprobe -v xxx+ 
 +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> </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.1531036113.txt.gz · Dernière modification : 2018/07/08 07:48 de pcouderc

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki