Skip to content

Commit

Permalink
add script for synology and iOS install part
Browse files Browse the repository at this point in the history
  • Loading branch information
pascal-fischer committed Aug 13, 2024
1 parent ccdbc37 commit 76f31e9
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
46 changes: 46 additions & 0 deletions public/docs-static/img/how-to-guides/app-store-badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions src/pages/how-to/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,26 @@ brew unlink netbird
curl -fsSL https://pkgs.netbird.io/install.sh | sh
```

For NetBird to work on Synology after a reboot, you need to run this scrip every time you reboot your NAS. To automate this process, you can create a scheduled task in the Synology DSM.

Check failure on line 185 in src/pages/how-to/installation.mdx

View workflow job for this annotation

GitHub Actions / codespell

scrip ==> script
```bash
#!/bin/sh

# Create the necessary file structure for /dev/net/tun
if ( [ ! -c /dev/net/tun ] ); then
if ( [ ! -d /dev/net ] ); then
mkdir -m 755 /dev/net
fi
mknod /dev/net/tun c 10 200
chmod 0755 /dev/net/tun
fi

# Load the tun module if not already loaded
if ( !(lsmod | grep -q "^tun\s") ); then
insmod /lib/modules/tun.ko
fi
```


### Android

NetBird has an official Android application that you can download at Google Play Store:
Expand All @@ -193,7 +213,15 @@ NetBird has an official Android application that you can download at Google Play

</p>

### iOS

NetBird has an official iOS application that you can download from the App Store:

<p>
<a href="https://apps.apple.com/de/app/netbird-p2p-vpn/id6469329339?l=en-GB" target="_blank">
<img src="/docs-static/img/how-to-guides/app-store-badge.svg" alt="appstore" className="imagewrapper" style={{ padding: '30px' }}/>
</a>
</p>

### Binary Install
**Installation from binary (CLI only)**
Expand Down

0 comments on commit 76f31e9

Please sign in to comment.