-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Synology script and iOS install #216
Conversation
pascal-fischer
commented
Aug 13, 2024
src/pages/how-to/installation.mdx
Outdated
#!/bin/sh | ||
|
||
# Create the necessary file structure for /dev/net/tun | ||
if ( [ ! -c /dev/net/tun ] ); then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
( ) does not need to
src/pages/how-to/installation.mdx
Outdated
|
||
# Create the necessary file structure for /dev/net/tun | ||
if ( [ ! -c /dev/net/tun ] ); then | ||
if ( [ ! -d /dev/net ] ); then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
( ) does not need to
src/pages/how-to/installation.mdx
Outdated
fi | ||
|
||
# Load the tun module if not already loaded | ||
if ( !(lsmod | grep -q "^tun\s") ); then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
( ) does not need to
src/pages/how-to/installation.mdx
Outdated
@@ -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 script every time you reboot your NAS. To automate this process, you can create a scheduled task in the Synology DSM. | |||
```bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is not a bash script, it is sh script