悪い

悪い

SDカードに書き込んで、NOOBS(New Out of the Box Software)ソフトウェアをRaspberry PiのSDカードに書き込むのにいくつかの問題がありました。ルートとして次のコマンドを試してください。

# dd bs=1M if=/home/harrydevries/Downloads/NOOBS_v1_2_1 of=/dev/sdb
dd: reading `/home/harrydevries/Downloads/NOOBS_v1_2_1': Is een map
0+0 records in 
0+0 records out 
0 bytes (0 B) copied, 0,00117138 s, 0,0 kB/s 

ベストアンサー1

エラーメッセージは次のとおりです。「地図です」これはオランダ語で、次のことを意味します。「ディレクトリです」

ddあなたはディレクトリにすることはできません。ソースとターゲットにはファイルまたは他のデバイスが必要です。ifそしてofそれぞれ。

悪い

dd if=/some/directory of=/another/file
dd if=/some/directory of=/some/device
dd if=/some/directory of=/some/directory
dd if=/some/device    of=/some/directory
dd if=/some/file      of=/some/directory

いいね

dd if=/some/file   of=/another/file
dd if=/some/file   of=/some/device
dd if=/some/device of=/some/file
dd if=/some/device of=/some/device

良いことが悪くなったとき

いつものようにdd正しく使用してください。

dd if=/some/file of=WRONG_DEVICE

おすすめ記事