Aucun accès à internet suite à migration ( 4.4 to 11) depuis Raspberry Pi 4 (pi 400)

je suis en ethernet

mais tu me mets le doute… je reteste de rebooter

et ça marche !
(je faisais deux trucs en même temps, j’ai dû m’embrouiller les pinceaux)

Conclusion, la solution suivante fonctionne et résiste au reboot :

nano /etc/systemd/system/dhcpcd.service.d/wait.conf
et remplacer la dernière ligne par :
ExecStart=/usr/sbin/dhcpcd -w

Merci merci !

1 Like

je confirme que cela fonctionne.
Je suis repassé en 4.4 afin de re-faire la migration; puis en modifiant /etc/systemd/system/dhcpcd.service.d/wait.confcomme indiqué par Aleks.

par contre le hotspot est toujours KO

1 Like

suite à désinstallation / réinstallation de Hotspot puis redémarrage, c’est ok
Encore merci @Aleks

1 Like

To summarize, for anybody encountering the same issue on Raspberry Pi :

  1. Run ls /etc/systemd/system/dhcpcd.service.d/wait.conf to check that this file exists.
    • If it doesnt, create it with :
      - sudo mkdir /etc/systemd/system/dhcpcd.service.d/
      - sudo touch /etc/systemd/system/dhcpcd.service.d/wait.conf
  2. Edit the file with sudo nano /etc/systemd/system/dhcpcd.service.d/wait.conf
  3. Add (or replace entirely) the following content (espectially the last line) :
[Service]
ExecStart=
ExecStart=/usr/sbin/dhcpcd -w

We’ll try to include this fix in the migration procedure

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.