This commit is contained in:
light
2018-01-01 18:06:22 +08:00
parent b2d9201c76
commit 2b2c45df65
6 changed files with 71 additions and 5 deletions
+15
View File
@@ -0,0 +1,15 @@
# 树莓派安装使用
## linux下 安装
``` bash
df -h # 查看已有硬盘
# 插入sd卡
df -h # 查看新增磁盘
fdisk /dev/sdx # 删除增加分区
dd bs=4M if=2017-11-29-raspbian-stretch.img of=/dev/sdX # 写入镜像
sudo watch -n 5 pkill -USR1 ^dd$ # 查看dd进程
```