Linux相关问题记录

  1. Tenda U12网卡驱动安装记录
    https://www.cnblogs.com/idorax/p/12369624.html
    https://github.com/gnab/rtl8812au

  2. ssh远程连接其他电脑显示连接拒绝
    如:

ssh: connect to host 192.168.88.66 port 22: Connection refused

原因
openssh-server没有安装
解决方法

# 安装即可
sudo apt-get install openssh-server 
  1. linux之间进行远程连接
# 模板,连接好后需要输入密码
ssh your_username@your_computer_ip
# 如
ssh [email protected]

# 连接成功后退出
logout
  1. linux之间进行远程传输文件
scp local_file remote_username@remote_ip:remote_folder

你可能感兴趣的:(Linux相关问题记录)