venoms

1.连接wifi,在Ubuntu Server中使用netplan连接

# sudo vim /etc/netplan/50-cloud-init.yaml //末尾添加,注意缩进使用空格,wifis:前有缩进
wifis:
    wlan0:
        dhcp4: true
        access-points:
            "wlan-name":
                password: "password here" 
# sudo netplan --debug apply

2.树莓派换源

# sudo sed -i \'s/ports.ubuntu.com/mirrors.ustc.edu.cn/g\' /etc/apt/sources.list

3.开启ssh

# sudo apt search openssh-server
# sudo apt install opessh-client openssh-server
# sudo dpkg-reconfigure openssh-server
# sudo service ssh restart
# sudo service ssh status
# sudo systemctl enable ssh

分类:

技术点:

相关文章:

  • 2021-10-27
  • 2021-11-21
  • 2022-12-23
  • 2022-12-23
  • 2021-08-27
  • 2021-08-02
  • 2022-01-10
  • 2022-12-23
猜你喜欢
  • 2021-10-31
  • 2021-12-24
  • 2021-11-20
  • 2021-06-06
  • 2022-12-23
  • 2021-04-20
  • 2021-09-20
相关资源
相似解决方案