gemäß folgender Anleitung wollte ich Debian auf die SD-Karte für das DE0 Nano FPGA Board installieren:
https://eewiki.net/display/linuxonarm/D ... etc/fstab)
Gescheitert bin ich allerdings bei dem Punkt des Setup der SD-Karte. Der Befehl:
Code: Alles auswählen
export DISK=/dev/mmcblk0
sudo dd if=/dev/zero of=${DISK} bs=1M count=64
dd: Fehler beim Schreiben von „/dev/mmcblk0“: Auf dem Gerät ist kein Speicherplatz mehr verfügbar
Und der Befehl:
Code: Alles auswählen
dmesg | tail -n 10
Code: Alles auswählen
[ 219.620282] scsi4 : usb-storage 4-4:1.0
[ 220.620127] scsi 4:0:0:0: Direct-Access TS-RDF5 SD Transcend TS37 PQ: 0 ANSI: 6
[ 220.620328] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 220.865363] sd 4:0:0:0: [sdc] 15523840 512-byte logical blocks: (7.94 GB/7.40 GiB)
[ 220.866037] sd 4:0:0:0: [sdc] Write Protect is off
[ 220.866038] sd 4:0:0:0: [sdc] Mode Sense: 23 00 00 00
[ 220.866742] sd 4:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 220.883038] sdc: unknown partition table
[ 220.885525] sd 4:0:0:0: [sdc] Attached SCSI removable disk
[ 295.981235] usb 3-11: USB disconnect, device number 6
Code: Alles auswählen
export DISK=/dev/sdc
Code: Alles auswählen
sudo sfdisk ${DISK} <<-__EOF__
1M,1M,0xA2,
2M,,,*
__EOF__
Code: Alles auswählen
sfdisk: Checking that no-one is using this disk right now ...
sfdisk: OK
Disk /dev/sdc: 1021 cylinders, 245 heads, 62 sectors/track
sfdisk: /dev/sdc: unrecognized partition table type
Old situation:
sfdisk: No partitions found
New situation:
Units: 1MiB = 1024*1024 bytes, blocks of 1024 bytes, counting from 0
Device Boot Start End MiB #blocks Id System
/dev/sdc1 0+ 7- 8- 7594+ a2 Unknown
/dev/sdc2 * 0 - 0 0 0 Empty
/dev/sdc3 0 - 0 0 0 Empty
/dev/sdc4 0 - 0 0 0 Empty
sfdisk: Warning: partition 2 has size 0 and is bootable
Successfully wrote the new partition table
Re-reading the partition table ...
sfdisk: If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)
to zero the first 512 bytes: dd if=/dev/zero of=/dev/foo7 bs=512 count=1
(See fdisk(8).)
Code: Alles auswählen
sudo mkfs.ext4 -L rootfs ${DISK}2
Code: Alles auswählen
mke2fs 1.42.12 (29-Aug-2014)
The file /dev/sdc2 does not exist and no size was specified.