共有フォルダのテキストファイルを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

構築

サーバ

  1. 共有フォルダを作成
  2. Windows 共有の設定
  3. WSL の導入

クライアントWindows

  1. script-launcherの導入
    https://ktkr3d.github.io/2025/02/25/Script-Launcher/
  2. バッチの設置
    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

  1. argosの導入
    https://github.com/p-e-w/argos
    git clone https://github.com/p-e-w/argos
    cp -r argos/argos@pew.worldwidemann.com/ ~/.local/share/gnome-shell/extensions/
  2. 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"
  3. ssh-copy-id
    ssh-copy-id ubuntu@192.168.11.2

利用

  • サーバでは直接編集
  • クライアントではスクリプトを実行して編集