zoukankan      html  css  js  c++  java
  • 树莓派安装Ubuntu Server 19.01

    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
    
  • 相关阅读:
    c++
    zjoi 力
    poj 3415
    [SDOI2014]旅行
    模板测试
    [WC2006]水管局长
    HDU5730
    [NOI2014]魔法森林
    [NOI2012]骑行川藏(未完成)
    [NOI2012]随机数生成器
  • 原文地址:https://www.cnblogs.com/venoms/p/12691677.html
Copyright © 2011-2022 走看看