web服务器
python -m SimpleHTTPServer 8000 或者 python -m http.server 8000
ftp服务器
pip install pyftpdlib python -m pyftpdlib -i 192.168.100.49 -w -d /tmp/ -u mike -P 123456-i 指定IP地址(默认为本机所有可用 IP 地址)
-p 指定端口(默认为 2121)
-w 写权限(默认为只读)
-d 指定目录 (默认为当前目录)
-u 指定登录用户名
-P 指定登录密码
Last updated 2 years ago