内容简介:首先按照网上的教程,给microSD卡format, 然后把ubuntu镜像拷上去。开机,初始化系统然后连一根网线
首先按照网上的教程,给microSD卡format, 然后把ubuntu镜像拷上去。
开机,初始化系统
然后连一根网线
然后:
For the image with apt installed
Step1:
sudo apt-get install wireless-tools
Step2:
sudo apt-get install wpasupplicant
Step3: add to /etc/network/interfaces
:
auto wlan0 iface wlan0 inet dhcp wpa-ssid WIRELESSSSID wpa-psk WIRELESSPASSWORD
Step4: comment from /etc/network/interfaces
the line:
#source /etc/network/interfaces.d/*.cfg
the commented interfaces.d/*.cfg
file contains settings for the eth0.
I do not understand why but leaving this line active and adding the wlan0 config would crash the system at boot.
Step5: reboot
For the core image without apt installed:
Step1:
ifconfig wlan0 down ifconfig wlan0 up
Step2: create wireless config file:
sudo vi /etc/network/interfaces.d/wlan0
Note: I tried without sudo but it would not let me save the changes
Step3: add the following content
auto wlan0 iface wlan0 inet dhcp wpa-ssid WIRELESSSSID wpa-psk WIRELESSPASSWORD
Step4: reboot
其实都不需要reboot, 只要重启网卡即可:
sudo systemctl restart networking sudo ifdown wlan0 sudo ifup wlan0 wpa_cli status
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- [树莓派]树莓派的入门教程
- 「玩转树莓派」树莓派 3B+ 安装 OpenCv
- 「玩转树莓派」树莓派 3B+ 查询本机IP
- 「玩转树莓派」树莓派 3B+ 配置静态IP
- 「玩转树莓派」树莓派 3B+ 配置无线WiFi
- 云中树莓派(3):通过 AWS IoT 控制树莓派上的 Led
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Java5.0Tiger程序高手秘笈
BrettMclaughlin / 东南大学出版社 / 2005-10 / 28.00元
代号为 “Tiger”的下一个 Java 版本,不只是个小改动版。在语言核心中有超过 100 项以上的变动,同时有大量的对 library 与 API 所做的加强,让开发者取得许多新的功能、工具与技术。但在如此多的变化下,应该从何处开始着手?也许可以从既长又无趣的语言规范说明书开始看起;或等待最少 500 页的概念与理论巨著出版;甚至还可以直接把玩新的 JDK 看看能够有什么发现;或者借由《Jav......一起来看看 《Java5.0Tiger程序高手秘笈》 这本书的介绍吧!