树莓派3b安装teamviewer问题总结

1.安装teamviewer时,使用命令sudo apt-get -f install安装依赖失败

自己更换了阿里的国内下载源,但是配置文件/etc/apt/source.list写错了

deb http://mirrors.aliyun.com/raspbian/raspbian/ stretch main non-free contrib

deb-src http://mirrors.aliyun.com/raspbian/raspbian/ stretch main non-free contrib

一开始版本不对,后来查看了原来的source.list才发现

2.sudo teamviewer setup执行后配置的设备连接不上

应该使用命令行配置,如SSH,我一开始用的VNC,teamviewer多用户配置的ID会有问题,所以先要修改树莓派配置

sudo raspi-config

    ->Boot Options 

        –> Desktop / CLI 

            –> Console AutoLogin

之后重启,然后sudo teamviewer setup进行配置,再还原树莓派配置

sudo raspi-config

    ->Boot Options 

        –> Desktop / CLI 

            –> Desktop AutoLogin

重启。

3.teamviewer连接后不全屏

修改/boot/config.txt配置

hdmi_group=2  
hdmi_mode=82  

hdmi_ignore_edid=0xa5000080 

hdmi_mode=82指1080P的分辨率,重启树莓派,teamviewer连接生效。



猜你喜欢

转载自blog.csdn.net/yjp19871013/article/details/80554555