summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter2022-06-28 15:28:16 +0100
committerPeter2022-06-28 15:28:16 +0100
commit8f5c06d6b37076cc4de47c0f8f73ad2363e37c11 (patch)
treee638ceac29071e2be65a595fdaf559508c3bbaef
parent929c0cfb5df2ed8917ebec9203fbb6b5d75fe47a (diff)
downloadblog.minskio.co.uk-8f5c06d6b37076cc4de47c0f8f73ad2363e37c11.tar.gz
blog.minskio.co.uk-8f5c06d6b37076cc4de47c0f8f73ad2363e37c11.tar.bz2
blog.minskio.co.uk-8f5c06d6b37076cc4de47c0f8f73ad2363e37c11.zip
Added note regarding sda1
-rw-r--r--content/posts/oracle-alpine-linux-arm-server.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/content/posts/oracle-alpine-linux-arm-server.md b/content/posts/oracle-alpine-linux-arm-server.md
index 8d14c7f..1183ac5 100644
--- a/content/posts/oracle-alpine-linux-arm-server.md
+++ b/content/posts/oracle-alpine-linux-arm-server.md
@@ -32,6 +32,11 @@ apk --update upgrade
```
Reboot again, and you should be running the latest version. Feel free to add any additional pacakges using `apk --update add neofetch neovim` etc.
+
+## Fixing sda1
+
+The bootstrap script doesn't specify any mount options for `/dev/sda1` so every time you issue `mount -a` it will give an error as your dump value is parsed as options instead. This is really easily fixed by replacing the `/dev/sda1 /boot/efi vfat 0 0` line with `/dev/sda1 /boot/efi vfat auto 0 0` in `/etc/fstab`. Now the error is gone.
+
## Shuffling Partitions
As mentioned in the guide, Alpine is currently installed on the /old/ swap `/dev/sda2` partition. You can now delete your old Oracle partiton to regain some 40GB space.
@@ -149,4 +154,5 @@ All that's left now is to edit `/etc/fstab` and add an entry like the following:
```
You can now mount everything using `mount -a`, and you're done.
-* **Edit 2022-03-08:** Added block storage instructions \ No newline at end of file
+* **Edit 2022-03-08:** Added block storage instructions
+* **Edit 2022-06-28:** Added sda1 mount fix \ No newline at end of file