树莓派 - 使用须知

SSH

上电, 插上网线, 在路由器里面查找, rpi的ip
通过ssh连接
默认user:pi,默认密码:raspberry
windows --> MobaXterm,(不推荐putty, 功能和实用性一个天, 一个地没法比)
mac x --> iTerm2


更改源

国内的的速度太慢了, 可以改为国内的源, 比较不错的就是阿里的源, 速度相当的快

备份当前的源

sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup

修改源

sudo vi /etc/apt/sources.list

把默认的源屏蔽掉,加入下面的源

deb http://mirrors.aliyun.com/raspbian/raspbian/ jessie main non-free contrib
deb-src http://mirrors.aliyun.com/raspbian/raspbian/ jessie main non-free contrib

保存退出

sudo apt-get update
sudo apt-get upgrade

扩容

sudo raspi-config

选择Expand FileSystem重启

不扩容的话, 经常会提示缓存空间不够

Wi-Fi连接

scan

pi@raspberrypi:~ $ sudo iw wlan0 scan | grep 'SSID'
        SSID: MERCURY_EF2F4A
        SSID: ViewTool
        SSID: wl8080
        SSID: CU_nsD9
        SSID: NETGEAR
        SSID: 10-8
        SSID: xiaoyu
        SSID: CU_CuYN
        SSID: MERCURY_5326

连接

sudo vim /etc/wpa_supplicant/wpa_supplicant.conf

在结尾加上这样的字段

network={
        ssid="MERCURY_EF2F4A"
        psk="EF2F4A2014"
}

重新打开wlan0或者重启

sudo ifdown wlan0
sudo ifup wlan0
sudo init 6

=推荐重启, 喝一杯水的时间, 再查看网络状态

ifconfig

若包含下面的字段, 说明连接成功

wlan0     Link encap:Ethernet  HWaddr b8:27:eb:44:a0:d9
          inet addr:192.168.1.200  Bcast:192.168.1.255  Mask:255.255.255.0
          inet6 addr: fe80::ba27:ebff:fe44:a0d9/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:10873 errors:0 dropped:6237 overruns:0 frame:0
          TX packets:2940 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:3138985 (2.9 MiB)  TX bytes:364954 (356.4 KiB)

如果不成功请登录到gui界面连接wlan

更改hostname和host文件

sudo vim /etc/hostname

需要在hosts文件里面加上一句话

sudo vim /etc/hosts
127.0.1.1 [你的hostname]

如果只是修改hostname, 每次使用sudo会弹出sudo: unable to resolve host myhostname

用户操作

切换到root账户

su

切换回普通账户

su 

你可能感兴趣的:(raspberry-pi)