Tenda U12网卡驱动安装记录
https://www.cnblogs.com/idorax/p/12369624.html
https://github.com/gnab/rtl8812aussh远程连接其他电脑显示连接拒绝
如:
ssh: connect to host 192.168.88.66 port 22: Connection refused
原因
openssh-server没有安装
解决方法
# 安装即可
sudo apt-get install openssh-server
- linux之间进行远程连接
# 模板,连接好后需要输入密码
ssh your_username@your_computer_ip
# 如
ssh yk@192.168.88.88
# 连接成功后退出
logout
- linux之间进行远程传输文件
scp local_file remote_username@remote_ip:remote_folder