Related changes
Jump to navigation
Jump to search
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
24 April 2026
|
|
N 19:02 | Setup Mac for ssh into synology 7 changes history +3,011 [Bacchas (7×)] | |||
|
|
19:02 (cur | prev) +2 Bacchas talk contribs | ||||
|
|
19:01 (cur | prev) +241 Bacchas talk contribs | ||||
|
|
18:58 (cur | prev) +1,337 Bacchas talk contribs | ||||
|
|
18:54 (cur | prev) +535 Bacchas talk contribs | ||||
|
|
18:52 (cur | prev) +403 Bacchas talk contribs | ||||
|
|
18:35 (cur | prev) +118 Bacchas talk contribs | ||||
| N |
|
17:56 (cur | prev) +375 Bacchas talk contribs Created page with "=Create config file= '''Create a config file in the ~/.ssh/config''' ''' This file contains the host name and the path to the ssh keys''' <pre> Host wendy HostName 192.168.20.22 User myname IdentityFile ~/.ssh/keyidfile IdentitiesOnly yes #for tailscale Host wendy-tailscale HostName 1.1.1.1 User myname IdentityFile ~/.ssh/keyfile IdentitiesOnly yes </pre>" | |||
|
|
N 19:02 | Scripts to backup to synology without mounting drives 3 changes history +999 [Bacchas (3×)] | |||
|
|
19:02 (cur | prev) +2 Bacchas talk contribs →Mac Setup Bash menu- Home | ||||
|
|
18:35 (cur | prev) +117 Bacchas talk contribs | ||||
| N |
|
17:51 (cur | prev) +880 Bacchas talk contribs Created page with "<pre> #!/bin/bash # Use absolute paths for everything RSYNC_BIN="/usr/bin/rsync" MKDIR_BIN="/bin/mkdir" fdate=`date -I` fname="wendy_karaoke.txt" LOG_FILE="$HOME/Desktop/cronlogfiles/logs/$fname" # Create log directory if missing mkdir -p "$HOME/Desktop/cronlogfiles/logs" # Log Header { echo " " echo "***********************************************************" echo " " echo "------ $(date) --------" echo " " } >> "$LOG_FILE" # THE FIX: # 1. Changed '-avi'..." | |||