1
2
3
4
5
6
# 编辑 `/etc/apt/sources.list` 文件,删除原文件所有内容,用以下内容取代:
deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ jessie main non-free contrib
deb-src http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ jessie main non-free contrib
# 编辑 `/etc/apt/sources.list.d/raspi.list` 文件,删除原文件所有内容,用以下内容取代:
deb http://mirrors.tuna.tsinghua.edu.cn/raspberrypi/ jessie main
升级所有安装的软件
1
2
sudo apt-get update
sudo apt-get upgrade
设定固定IP 编辑文件dhcpcd.conf
1
sudo nano /etc/dhcpcd.conf
最末尾追加
1
2
3
4
interface eth0
static ip_address=188.23.10.101/24
static routers=188.23.10.254
static domain_name_servers=18.11.1.48 18.11.1.10
如果为无线网卡也配固定IP就再加一套
1
2
3
4
interface wlan0
static ip_address=192.168.0.101/24
static routers=192.168.0.1
static domain_name_servers=192.168.0.1
利用 sudo raspi-config 命令设定Hostname等信息
Hostname:主机名 Boot Options > B1 Desktop/CLI:开机进入命令行还是图形界面 Localisation Options > I1 Change Locale:设定 地区(zh_CN.UTF-8 UTF-8) Localisation Options > I2 Change Timezone:设定 时区(asia shanghai) Localisation Options > I3 Change Keyboard Layout:设定 键盘(Generic 101-key PC > Other > English(US) > English(US, alternative international) > No AltGr key > No compose key) Localisation Options > I4 Change Wi-fi Country:设定 WIFI标准(CN China) Interfacing Options > P2 SSH:是否允许SSH Advanced Options > A4 Audio:声音输出设备(HDMI或3.5mm) Update:升级系统 安装文泉驿的开源中文字体(Locale默认选中国后,一些字符因为没有中文字体会显示成方块)
1
2
3
4
sudo apt-get install ttf-wqy-zenhei
sudo apt-get install scim-pinyin
sudo reboot
#切换中文输入法一样也是 ctrl+space
安装播放器
1
2
sudo apt-get install mplayer2
mplayer shero.mp3
查看端口
1
2
查看80端口
sudo netstat -anp | grep ":80"
设定开机启动服务
1
2
3
4
5
6
# sudo nano /etc/rc.local
# 在语句exit 0之前加入以下内容
/etc/init.d/ssh start
printf "starting my service"
/home/pi/saks-service.sh start
配置ssh登录pi 在主机上创建ssh登录密钥 指定文件名未pissh
1
ssh-keygen -t rsa -b 4096 -f ~/.ssh/pissh
将专用密钥拷贝到pi上
1
ssh-copy-id -i ~/.ssh/pissh.pub pi@pi3saks
配置ssh的config
1
2
3
4
Host pi3saks
HostName pi3saks
User pi
IdentityFile ~/.ssh/pissh
瑞士军刀扩展版相关教程 easy_raspi_python_one github
Last updated on 2021-09-08