Skip to content

Commit

Permalink
Update boot-rescue.md networking section (#465)
Browse files Browse the repository at this point in the history
* Update boot-rescue.md networking section

Update networking section to reflect the current location of resolv.conf with systemd.

* Update docs/user/troubleshooting/boot-rescue.md

* Update docs/user/troubleshooting/boot-rescue.md

---------

Co-authored-by: David Harder <david@davidjharder.ca>
  • Loading branch information
TraceyC77 and davidjharder authored Jan 22, 2024
1 parent 2b9665b commit fd98390
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/user/troubleshooting/boot-rescue.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,14 @@ Assuming all goes well, you should now be able to chroot into your Solus system
To validate a working network connection (assuming a network connection is available in your live image), you can run `ping google.com` in the chrooted environment. If you get responses from `google.com`, you have a successful connection to the Internet. If you do not, try the following:

1. Exit the chroot by typing `exit`
2. Run `cp /etc/resolv.conf /target/etc/`
2. Run

```bash
cp /run/systemd/resolve/stub-resolv.conf /target/run/systemd/resolve/
cd /target/etc
ln -s ../run/systemd/resolve/stub-resolv.conf /target/etc/resolv.conf
```

3. Chroot back into `/target` by running `chroot /target` again.
4. Retry networking.

Expand Down

0 comments on commit fd98390

Please sign in to comment.