Skip to content

Commit cae9022

Browse files
committed
markdown lint
1 parent b163957 commit cae9022

File tree

1 file changed

+15
-16
lines changed

1 file changed

+15
-16
lines changed

README.md

Lines changed: 15 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,11 @@ ip route add default via 10.0.2.2
163163
ip route get 1.1.1.1 # Now you have a route to host :)
164164
```
165165

166-
Where did 10.0.2.2 come from? It's the gateway default when using qemu SLIRP network, see the image on that page https://wiki.qemu.org/Documentation/Networking#:~:text=Network%20backend%20types it's trying
166+
Where did `10.0.2.2` come from? It's the gateway default when using qemu SLiRP network, see the image on that page [https://wiki.qemu.org/Documentation/Networking#:~:text=Network%20backend%20types](https://wiki.qemu.org/Documentation/Networking#:~:text=Network%20backend%20types) it's trying
167167
to tell you the default addressing scheme.
168168
Did you notice valid host addresses start from address .9?
169169

170-
https://wiki.qemu.org/Documentation/Networking#:~:text=24%20instead%20of-,the%20default,-(10.0.2.0/24)%20and
170+
[https://wiki.qemu.org/Documentation/Networking#:~:text=24%20instead%20of-,the%20default,-(10.0.2.0/24)%20and](https://wiki.qemu.org/Documentation/Networking#:~:text=24%20instead%20of-,the%20default,-(10.0.2.0/24)%20and)
171171

172172
(p.s) I've read that page for years and it's still only just clicking.. they're not magic numbers they are defaults :)
173173

@@ -185,12 +185,11 @@ wget google.com # Now DNS is configured, you'll happily succeed with google.com
185185
```
186186

187187
Pings *won't* work with SLIRP- unless enabled, if you need that again, docs you've read the docs right?
188-
https://wiki.qemu.org/Documentation/Networking#:~:text=and%20guestfwd%20options.-,Enabling,-ping%20in%20the
189-
188+
[https://wiki.qemu.org/Documentation/Networking#:~:text=and%20guestfwd%20options.-,Enabling,-ping%20in%20the](https://wiki.qemu.org/Documentation/Networking#:~:text=and%20guestfwd%20options.-,Enabling,-ping%20in%20the)
190189

191190
Those same tedious networking steps above need to be:
192191

193-
- encoded into a `script.ipxe` (setting the if up - using the iPXE commands e.g. https://ipxe.org/cmd/ifopen , and all https://ipxe.org/cmd)
192+
- encoded into a `script.ipxe` (setting the if up - using the iPXE commands e.g. [https://ipxe.org/cmd/ifopen](https://ipxe.org/cmd/ifopen) , and all [https://ipxe.org/cmd](https://ipxe.org/cmd))
194193
.. TODO finish writing up
195194

196195

@@ -202,22 +201,22 @@ Those same tedious networking steps above need to be:
202201

203202
<strike>### How do I build statically coreutils, do I even need to?
204203

205-
See https://lists.gnu.org/archive/html/coreutils/2019-04/msg00001.html </strike> switched to using `musl`.
204+
See [https://lists.gnu.org/archive/html/coreutils/2019-04/msg00001.html](https://lists.gnu.org/archive/html/coreutils/2019-04/msg00001.html) </strike> switched to using `musl`.
206205

207206
## Reading
208207

209208
See also
210209

211-
https://docs.kernel.org/filesystems/ramfs-rootfs-initramfs.html
212-
https://wiki.gentoo.org/wiki/Custom_Initramfs
213-
https://unix.stackexchange.com/a/305406
214-
https://landley.net/writing/rootfs-howto.html
215-
https://landley.net/writing/rootfs-programming.html
216-
- https://unix.stackexchange.com/questions/193066/how-to-unlock-account-for-public-key-ssh-authorization-but-not-for-password-aut
217-
- https://stackoverflow.com/a/79151188
218-
- https://z49x2vmq.github.io/2020/12/24/linux-tiny-qemu/
219-
- https://unix.stackexchange.com/a/489843 `/sbin/init not found in new root. Launching emergency recovery shell
220-
` / `init not found in new root`
210+
- [https://docs.kernel.org/filesystems/ramfs-rootfs-initramfs.html](https://docs.kernel.org/filesystems/ramfs-rootfs-initramfs.html)
211+
- [https://wiki.gentoo.org/wiki/Custom_Initramfs](https://wiki.gentoo.org/wiki/Custom_Initramfs)
212+
- [https://unix.stackexchange.com/a/305406](https://unix.stackexchange.com/a/305406)
213+
- [https://landley.net/writing/rootfs-howto.html](https://landley.net/writing/rootfs-howto.html)
214+
- [https://landley.net/writing/rootfs-programming.html](https://landley.net/writing/rootfs-programming.html)
215+
- [https://unix.stackexchange.com/questions/193066/how-to-unlock-account-for-public-key-ssh-authorization-but-not-for-password-aut](https://unix.stackexchange.com/questions/193066/how-to-unlock-account-for-public-key-ssh-authorization-but-not-for-password-aut)
216+
- [https://stackoverflow.com/a/79151188](https://stackoverflow.com/a/79151188)
217+
- [https://z49x2vmq.github.io/2020/12/24/linux-tiny-qemu/](https://z49x2vmq.github.io/2020/12/24/linux-tiny-qemu/)
218+
- [https://unix.stackexchange.com/a/489843](https://unix.stackexchange.com/a/489843) `/sbin/init` not found in new root. Launching emergency recovery shell / `init not found in new root`
219+
221220
> "Stuff like this is slowly becoming a lost art" [src](https://www.linuxquestions.org/questions/linux-general-1/bin-bash-as-primary-init-4175543547/#post5367386) ooopse.
222221
223222

0 commit comments

Comments
 (0)