File Sync
共有フォルダのテキストファイルをWindows クライアントとLinuxクライアントでマウントせずに同期してみました。
環境
- サーバ:Windows 11
SMB経由\\192.168.11.2\media11\home\Documents\memo.txt
SSH経由ubuntu@192.168.11.2:/mnt/d/home/Documents/memo.txt
- クライアントWindows:Windows 11 (robocopy)
%USERPROFILE%\Documents\memo.txt
- クライアントLinux:Arch Linux (rsync ssh)
~/Documents/memo.txt
構築
サーバ
- 共有フォルダを作成
- Windows 共有の設定
- WSL の導入
クライアントWindows
- script-launcherの導入
https://ktkr3d.github.io/2025/02/25/Script-Launcher/ - バッチの設置
C:\repos\script-launcher\scripts\Edit_memo.txt robocopy \\192.168.11.2\media11\home\Documents %USERPROFILE%\Documents memo.txt /XO
"C:\Program Files (x86)\sakura\sakura.exe" %UserProfile%\Documents\memo.txt
timeout /t 2 /nobreak >nul
robocopy %USERPROFILE%\Documents \\192.168.11.2\media11\home\Documents memo.txt /XO
クライアントLinux
- argosの導入
https://github.com/p-e-w/argosgit clone https://github.com/p-e-w/argos
cp -r argos/argos@pew.worldwidemann.com/ ~/.local/share/gnome-shell/extensions/ - argos.shへの追記
~/.config/argos/argos.sh echo "Edit E List | iconName=edit-paste-symbolic bash='rsync -a -u --info=progress2 -e ssh ubuntu@192.168.11.2:/mnt/d/home/Documents/memo.txt ~/Documents/ ; gnome-text-editor ~/Documents/memo.txt ; sleep 2 ; rsync -a -u --info=progress2 -e ssh ~/Documents/memo.txt ubuntu@192.168.11.2:/mnt/d/home/Documents/' terminal=false"
- ssh-copy-id
ssh-copy-id ubuntu@192.168.11.2
利用
- サーバでは直接編集
- クライアントではスクリプトを実行して編集