使用ssh以及vnc远程连接树莓派(ubuntu1804)

Linux如何查看进程、杀死进程、启动进程等常用命令

https://www.cnblogs.com/lcword/p/6046261.html

https://mp.weixin.qq.com/s?src=11×tamp=1612449230&ver=2870&signature=*2ycNRqEigb96NF1HOAi755HBo3ji5X4FgQGA15IHfI*Ajq*dyMWYF9mkd1DyCm5S05oX1eZ1DqRIMDk8D6lwGmLAvViR2vzjeDLNslmDqG3cWku1xiSXVPnK*n344bw&new=1(失效)

 

SSH

 

树莓派3b+ ubuntu 18.04添加SSH服务https://blog.csdn.net/stephanezhang/article/details/104651185

在win10终端:ssh [email protected](被操控的设备的IP)  输入root的密码 可以远程操控root终端

              ssh [email protected]  输入ubuntu用户的密码 可以远程操控普通终端

 

vnc

https://blog.csdn.net/qq_35414569/article/details/84951406

远程控制-Vnc viewer远程桌面Xfce连接ubuntu16.04_Hello Word!-CSDN博客

win10用vncviewer远程登陆ubuntu桌面_VIEO-CSDN博客

利用VNC进行树莓派进行远程连接_mbjxking的博客-CSDN博客

Linux+树莓派3开发总结——树莓派VNC远程桌面操作_我是你星爷的博客-CSDN博客_vnc连接树莓派

 

VNCViewer实现与WIN端文本复制粘贴https://blog.csdn.net/qq_35414569/article/details/80259503

 

ubuntu18 xfce安装vnc并设置开机自启

https://blog.csdn.net/benchuspx/article/details/112578386?utm_medium=distribute.pc_relevant.none-task-blog-baidujs_title-3&spm=1001.2101.3001.4242

修改~/.vnc/xstartup 后重启后生效

 

报错:A VNC server is already running as :2

https://blog.csdn.net/lijjianqing/article/details/68923855

 

vncserver :开启

vncserver -kill :2  :关闭 2号server

 

如果VNC连接超时_知也无涯-CSDN博客_vnc连接超时

需要

   ↓

打开指定端口号

查询端口 :netstat -ntlp   -t 显示tcp端口 -l仅显示监听套接字 -p显示进程标识符和程序名称

   netstat -ntlp |grep xxxx  查看xxxx端口号的使用情况

iptables命令打开端口,只能在树莓派自己的系统里终端输入命令,ssh连接的终端,不能设置,会报错

$ sudo iptables -I INPUT -i wlan0 -p tcp --dport xxxxx -j ACCEPT
$ sudo iptables -I OUTPUT -o wlan0 -p tcp --sport xxxxx -j ACCEPT

在文件内修改:打开指定端口号 ↓

VNC-Viewer产生timed out waiting for a response from the host computer的解决! – 永夜 (shuijingwanwq.com)

关闭/启用防火墙 sudo ufw disable/enable

查看防火墙状态 sudo ufw status

 

防火墙配置

https://www.jianshu.com/p/6fe337cedbcb?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

https://www.linuxprobe.com/25-iptables-common-examples.html

配置文件解析https://blog.csdn.net/weixin_33717298/article/details/92340023?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.control

配置文件解析2https://blog.csdn.net/xlyrh/article/details/104871458?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.control

 

挂载U盘在VNCviewer中显示:无法挂载 Not authorized to perform operation

在 /usr/share/polkit-1/actions 里找到 org.freedesktop.UDisks2.policy

在如下的位置将三个auth_admin改为yes,我不确定到底是哪个,于是把上面类似的也都改成yes,然后就可以挂载了

使用ssh以及vnc远程连接树莓派(ubuntu1804)_第1张图片

 

 

未用上:https://www.jb51.net/article/101451.htm

 

你可能感兴趣的:(使用ssh以及vnc远程连接树莓派(ubuntu1804))