设为首页 加入收藏

TOP

通过WSL使用rsync同步本文件
2019-08-24 00:08:29 】 浏览:20
Tags:通过 WSL 使用 rsync 同步 文件

1、安装WLS

主要参考Windows10上使用Linux子系统(WSL)这篇文章进行安装,不要通过lxrun /install /y去安装,这种方法安装貌似没有wsl命令。

先把win 10 版本升级到16215.0以上,否则在Microsoft Store里的所有Linux都会显示免费下载为不可点击,升级win 10参考Download Windows 10即可。

如在Microsoft Store里选择Ubuntu,安装完启动并设置用户密码便可使用。

Installing, this may take a few minutes...
Please create a default UNIX user account. The username does not need to match your Windows username.
For more information visit: https://aka.ms/wslusers
Enter new UNIX username: sandwich
Enter new UNIX password:
Retype new UNIX password:
passwd: password updated successfully
Installation successful!

2、rsync

配置rsync,/home/sandwich/rsyncd/rsyncd.conf中加入以下内容:

log file = /home/sandwich/rsyncd/rsyncd.log
port = 8730
use chroot = false
read only = false

[WINDOWS_PROJECT_RSYNC_PATH]
path = /home/sandwich/rsyncd/dest

通过以下命令即可启动rsync

rsync --daemon --config=/home/sandwich/rsyncd/rsyncd.conf --no-detach

测试rsync同步

C:\Users\sandwich>wsl rsync --port=8730  -rlptDvzHS --progress --delete /home/sandwich/rsyncd/source/ sandwich@127.0.0.1::WINDOWS_PROJECT_RSYNC_PATH
sending incremental file list
./
a.txt
              5 100%    0.00kB/s    0:00:00 (xfr#1, to-chk=0/2)

sent 118 bytes  received 42 bytes  320.00 bytes/sec
total size is 5  speedup is 0.03

3、脚本修改

删除32位的python,参考windows下,python3.6 32位、64位共存及开发工具vscode配置安装python 64位,32位无法通过shell_command调用wsl。

重新MySQL-python参考Windows 10安装Python 2.7和MySQL-python

添加方法rsyncFiles用于同步,替换原来的copyFiles方法:

def rsyncFiles(source, target):
    source_path = WSL_PROJECT_RSYNC_PATH + source + "/"
    target_path = "sandwich@127.0.0.1::" + WINDOWS_PROJECT_RSYNC_PATH + target
    shell_command("wsl rsync --port=8730  -rlptDvzHS --progress --delete " + source_path + " " + target_path)

4. 参考

Windows10上使用Linux子系统(WSL)

rsync-server-using-windows-subsystem-for-linux

Download Windows 10

手把手windows64位配置安装python2.7

[python subprocess.call() cannot find Windows Bash.exe](https://stackoverflow.com/questions/39812882/python-subprocess-call-cannot-find-windows-bash-exe)

Windows and Ubuntu Interoperability

Windows 10安装Python 2.7和MySQL-python

windows下,python3.6 32位、64位共存及开发工具vscode配置

解决"pip Fatal error in launcher: Unable to create process using ... "的错误

升级pip后不能运行的解决办法

win10更新出错0x80070422的解决方案

win10怎么更新到1709版本

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇【手记】解决Intel Management En.. 下一篇DOS之del命令

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目