feat: Adds time-machine setup article.
All checks were successful
CI / release (push) Successful in 6m2s

This commit is contained in:
2025-04-07 09:29:40 -04:00
parent 2fa26ef552
commit 1a88883bad
6 changed files with 49 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ func renderPage(context: ItemRenderingContext<PageMetadata>) -> Node {
func renderHome(body: String) -> Node {
div {
div(class: "my-24 uppercase font-avenir text-[40px] leading-[1.25] font-thin text-center [&>h1>strong]:font-bold") {
div(class: "my-24 font-avenir leading-[1.25] font-thin text-center [&>h1>strong]:font-bold") {
Node.raw(body)
}
}

View File

@@ -0,0 +1,35 @@
---
date: 2025-04-07
tags: how-to, backups, nas
---
# Time Machine Backups
In this article we'll walk through how to setup time machine backups using the
on site NAS (network attached storage).
## NAS Access
You should have received an email when your account was setup on the NAS that
gives credentials to access the NAS, if you do not have access to that anymore
than let Michael know and he can send them again.
Once setup, this should mount the folders that you have access to automatically
when your computer is attached to the network and you have the
[unifi identity app installed](https://www.ui.com/download/app/identity-desktop).
## Time Machine
The time machine settings are found in the
`System Settings -> General -> Time Machine` section of your system settings
application.
1. Click the plus icon to add a new time machine backup location.
1. Select the drive named `Personal-Drive`
> Note: Any of the other drives that appear will not work, the drive that you
> select must be the Personal-Drive.
You should end up with something that looks similar to the image below.
![time-machine](/static/img/timemachine.png)

View File

@@ -4,4 +4,7 @@ section: home
# Home
## Internal documentation site
## Internal Documentation Site
Click on one of the links up above or search for an article using the search
feature.

Binary file not shown.

View File

@@ -147,6 +147,10 @@ article code {
@apply bg-amber-700;
}
article ol {
@apply list-decimal;
}
table,
th,
td {
@@ -172,7 +176,7 @@ table td {
}
blockquote {
@apply border-2 border-blue-600 bg-blue-300 rounded-lg;
@apply border-2 border-blue-600 bg-blue-300 rounded-lg my-10;
}
blockquote p {

File diff suppressed because one or more lines are too long