đ Secure File Sharing
Setup wizard for Mike & Joyce
Open Terminal (press â+Space, type "Terminal", press Enter) and run these commands:
Install Homebrew (if not installed):
Copy
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Install macFUSE and SSHFS:
Copy
brew install --cask macfuse && brew install sshfs
â ī¸ After installing macFUSE, go to System Preferences â Privacy & Security and click "Allow" for the blocked software. You may need to restart your Mac.
â Back
I've done this â
Run this command in Terminal to create your secure key:
Copy
ssh-keygen -t ed25519 -f ~/.ssh/id_ed25519 -N "" -C "user@mac"
Then copy your public key:
Copy
cat ~/.ssh/id_ed25519.pub | pbcopy && echo "â Copied to clipboard!"
âšī¸ If you already have an SSH key (you've used GitHub, etc.), skip the first command and just copy your existing public key.
â Back
I've copied my key â
Paste your public key below (starts with ssh-ed25519 or ssh-rsa):
â Back
Register Key â
Let's make sure everything is working. Run this command in Terminal:
Copy
ssh user@nielsenhaven.com echo "CONNECTION_OK"
âšī¸ If asked "Are you sure you want to continue connecting?", type yes and press Enter.
What did you see?
â I got an error
â It said CONNECTION_OK
đ
Connection Successful!
Your SSH key is working perfectly.
Continue to Final Step â
Connection failed? Here are some common fixes:
Error: "Permission denied"
Your key may not have been registered correctly. Go back and try registering again, making sure to copy the entire key.
Error: "Connection refused"
The server might be temporarily unavailable. Wait a moment and try again.
Error: "Host key verification failed"
Run this command first, then try the test again:
Copy
ssh-keygen -R nielsenhaven.com
â Back to Register Key
Try Test Again
â Your secure connection is configured and tested!
Run this command to mount your file shares:
Copy
curl -so ~/mount-shares.sh https://nielsenhaven.com/script/user && chmod +x ~/mount-shares.sh && ~/mount-shares.sh
Or download the script directly:
đĨ Download mount-shares.sh
Your shares will be mounted at:
đ ~/mnt/home - Your personal files
đ ~/mnt/shared - Shared family folder
These folders will also appear in Finder's sidebar!
To unmount later:
Copy
umount ~/mnt/home ~/mnt/shared
To mount again anytime:
Copy
~/mount-shares.sh
â Back
Start Over