我正在尝试为我的 Raspberry Pi 3 安装 RasPlex。当我下载要刷写的文件时,它以 .bin 文件的形式出现,并且说明非常薄弱。所以我现在有一个 .bin 文件,但不知道如何将其刷写到我的 SD 卡。我如何将此 bin 文件刷写到 SD 卡?
答案1
从官方github下载一个img镜像文件:
https://github.com/RasPlex/RasPlex/releases
然后刷新你的 SD 卡:
unzip image_name.img.gz
blkid # find out what device you want to flash to, /dev/sdX
dd if=image_name.img of=/dev/sdX bs=1MB #BE VERY CAREFUL you select the right value for X
有关更多信息,请参阅官方文档,手动安装说明