RPi3b_neofetch|0x0
老早就在关注树莓派这个小东西了,但是没有想到合适的用途所以就一直在观望其实是因为没有钱刚好前几天
树莓派 3B 简介
The Raspberry Pi 3 is the third-generation Raspberry Pi. It replaced the Raspberry Pi 2 Model B in February 2016.
- Quad Core 1.2GHz Broadcom BCM2837 64bit CPU
- 1GB RAM
- BCM43438 wireless LAN and Bluetooth Low Energy (BLE) on board
- 40-pin extended GPIO
- 4 USB 2 ports
- 4 Pole stereo output and composite video port
- Full size HDMI
- CSI camera port for connecting a Raspberry Pi camera
- DSI display port for connecting a Raspberry Pi touchscreen display
- Micro SD port for loading your operating system and storing data
- Upgraded switched Micro USB power source up to 2.5A
可以看到,3b
所需外设 / 配件
- 一张
Micro SD 卡 * // 推荐 32GiB 以上,Class 10 级别 - 至少
5V/2A 的电源适配器和 Micro USB 电源线 * // 官方推荐的输出电流是 2.5A,实际使用中 2A 即可满足,若你的外设较多请酌情升级 - Micro SD
卡读卡器 * - 显示器,HDMI
或 GPIO 均可 - 键鼠
- 以太网线
- 电池
写入系统镜像
作为
按照官方文档进行操作,大概步骤是新建两个分区,一个作为boot
/
,将下载好的镜像解压至/
,并将/boot
boot
安装并配置系统
接下来的操作将在树莓派上进行
将
联网
接入以太网的树莓派应当能自动连接到网络(需要路由器等设备开启dhcp
稍等片刻后,即可通过ssh
SSH 登录
Login as the default user
alarm
with the passwordalarm
.
The defaultroot
password isroot
.可选操作:
默认的用户名和密码均为
alarm
,欲更改可参照此文档默认用户没有
sudo
权限,按照此文档添加权限
首先更新系统:
# pacman -Syyu
此命令将刷新软件包缓存并更新系统
可安装桌面环境,我装的是Xfce
:
# pacman -S xorg xfce4
我在图形界面的操作均在
安装yaourt
:
AUR
首先安装base-devel
# pacman -S base-devel
安装packge-query
$ wget https://aur.archlinux.org/packages/pa/package-query/package-query.tar.gz
$ tar zxvf package-query.tar.gz
$ cd package-query
$ makepkg -si
安装yaourt
# pacman -S yaourt
完成
至此系统已基本达到可用状态,更多配置留待下一篇文章再谈