summaryrefslogtreecommitdiff
path: root/content/posts/2017/2017-11-16-perl6-setting-up-a-raspberry-perl.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts/2017/2017-11-16-perl6-setting-up-a-raspberry-perl.md')
-rw-r--r--content/posts/2017/2017-11-16-perl6-setting-up-a-raspberry-perl.md22
1 files changed, 11 insertions, 11 deletions
diff --git a/content/posts/2017/2017-11-16-perl6-setting-up-a-raspberry-perl.md b/content/posts/2017/2017-11-16-perl6-setting-up-a-raspberry-perl.md
index 2f5841e..96b264a 100644
--- a/content/posts/2017/2017-11-16-perl6-setting-up-a-raspberry-perl.md
+++ b/content/posts/2017/2017-11-16-perl6-setting-up-a-raspberry-perl.md
@@ -27,23 +27,23 @@ the following:
{{< / admonition >}}
Perl 6 will be installed using
-[https://github.com/tadzik/rakudobrew](Rakudobrew), which I'll also be using to
-get [https://github.com/ugexe/zef](zef) installed. Zef is the recommended module
+[Rakudowbrew](https://github.com/tadzik/rakudobrew), which I'll also be using to
+get [zef](https://github.com/ugexe/zef) installed. Zef is the recommended module
manager for Perl 6.
## Setting up Raspbian
The first step is getting the OS set up. To keep this tutorial simple, I will
-stick to [https://www.raspbian.org/](Raspbian), but if you feel confident in
+stick to [Raspbian](https://www.raspbian.org/), but if you feel confident in
your skills you can use any other distribution or OS. Perl 6 installs the same
on all UNIX(-like) operating systems.
### Get the image
-First, [https://www.Raspberrypi.org/downloads/raspbian/](download the Raspbian
-image from the Raspberry Pi download page). I chose the `LITE` version, but if
-you prefer having a graphical desktop you can go for the `DESKTOP` version
-instead.
+First, [download the Raspbian image from the Raspberry Pi download
+page](https://www.Raspberrypi.org/downloads/raspbian/). I chose the `LITE`
+version, but if you prefer having a graphical desktop you can go for the
+`DESKTOP` version instead.
At the time of writing, this means I got the
`2017-09-07-raspbian-stretch-lite.zip`. If you want to verify you got the
@@ -54,7 +54,7 @@ To get the checksum of the file you downloaded, use `sha256sum` as follows:
NOTE: Lines prepended with a `$` are to be ran as your normal user, whereas
lines with a `#` are ment to be ran as "super user". This can be done by using
a privilege escalation program, such as
-[https://www.linux.com/blog/how-use-sudo-and-su-commands-linux-introduction](`sudo`).
+[`sudo`](https://www.linux.com/blog/how-use-sudo-and-su-commands-linux-introduction).
$ sha256sum 2017-09-07-raspbian-stretch-lite.zip
@@ -80,7 +80,7 @@ means the device file resides at `/dev/sdb`.
Now, to actually write the image, I'll use `dd` since this is everyone's
favourite tool, it seems. If you feel adventurous enough to try out something
different, feel free to read up on
-[https://www.vidarholen.net/contents/blog/?p=479](Useless Use of dd).
+[Useless Use of `dd`](https://www.vidarholen.net/contents/blog/?p=479).
Make sure to make the `if` argument point to the correct path with your
extracted raspbian image, and `of` to point to the correct device as identified
@@ -204,5 +204,5 @@ Freenode, or check out some of the Perl 6 documentation and introduction sites:
For starting projects that are easy to start with and can bring quick results,
consider making an IRC bot using
-[https://github.com/zoffixznet/perl6-IRC-Client](`IRC::Client`), or a small web
-application using [https://github.com/Bailador/Bailador](`Bailador`).
+[`IRC::Client`](https://github.com/zoffixznet/perl6-IRC-Client), or a small web
+application using [`Bailador`](https://github.com/Bailador/Bailador).