raspbian-buster开启SSH以及远程桌面连接

//开机/启动ssh(默认端口 22)
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
//远程桌面(使用 windows自带的 远程桌面连接 控制)
$ sudo apt-get install xrdp -y		//安装xrdp
$ sudo systemctl start xrdp		//启动
$ sudo systemctl enable xrdp		//开机自启
$ netstat -tnl	//需要监听 6010 3389 3350端口

你可能感兴趣的:(Raspberry,Pi)