diff options
| author | Sam Scholten | 2025-10-24 21:43:18 +1000 |
|---|---|---|
| committer | Sam Scholten | 2025-10-24 21:44:08 +1000 |
| commit | 4f5f42661cec60d83b02ea27baf3e916e47bf66b (patch) | |
| tree | 4dd99ea257563eb7e831640ef91d98e67dbf08ca /README.md | |
| parent | 884a4328a7bb951db84e919dd4c78c7c990eed19 (diff) | |
| download | usync-4f5f42661cec60d83b02ea27baf3e916e47bf66b.tar.gz usync-4f5f42661cec60d83b02ea27baf3e916e47bf66b.zip | |
Add Windows setup documentation for Linux filesystems
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -22,6 +22,32 @@ just sync-cloud # To cloud just status # Check ``` +## Windows Setup (ext4 drives) + +```bash +# 1. Identify drive (as Admin) +wmic diskdrive list brief +# Note: \\.\PHYSICALDRIVEN + +# 2. Mount raw drive (as Admin) +wsl --mount \\.\PHYSICALDRIVE1 --bare +# Block device now visible in all WSL instances + +# 3. In your WSL instance +sudo lsblk # Find /dev/sdxN +sudo mkdir /mnt/ext4drive +sudo mount /dev/sdd1 /mnt/ext4drive +sudo apt install rclone unison + +# Edit justfile: SOURCE="/mnt/ext4drive", set TARGET & CLOUD_REMOTE +# 4. Run usync +just sync-cloud + +# 5. Cleanup +sudo umount /mnt/ext4drive +wsl --unmount \\.\PHYSICALDRIVE1 # (as Admin) +``` + ## Structure ``` |
