Debian/Ubuntu 通过 rdesktop 远程链接 Windows
开启 Windows 电脑的 允许远程连接 的设置。
设置中开启 windows 电脑允许远程用户名密码登陆计算机
Debian/Ubuntu 安装 rdesktop
apt install rdesktop
rdesktop 使用
rdesktop -u yourname -p password -g 1024*720 -d domain -r disk:floppy=/mnt/floppy 192.168.0.2
rdesktop 部分参数
- -u Windows 允许远程登陆桌面的用户名
- -p 用户名对应的密码
- -g 设置 Windows 桌面分辨率(可省略为默认)
- -d 局域网的域(同一局域网可以忽略)
- -r 设置 Linux 本地共享的文件夹或分区,可以实现 Linux 和 Windows 共享文件(可忽略)
- Windows 电脑在局域网中的 IP 地址
- 更多参数见
rdesktop -h