Am 21.03.2018 um 15:24 schrieb Freek de Kruijf:
> Op dinsdag 20 maart 2018 17:05:58 CET schreef Kasimir _:
>> Both abort the boot process with the message: "Initramfs unpacking
>> failed: write error"
>>
>> Raspberry Pi 1:
>> - Image:
>> openSUSE-Tumbleweed-ARM-JeOS-raspberrypi.armv6l-2018.03.19-Build1.1.raw.xz
>> - Console output: https://paste.opensuse.org/5939196
>>
>> Raspberry Pi2:
>> - Image:
>> openSUSE-Tumbleweed-ARM-JeOS-raspberrypi2.armv7l-2018.03.19-Build1.1.raw.xz
>> - Console output: https://paste.opensuse.org/77297849
> I am able to get a little further.
> You probably did not clear the highest 1024 bytes.
> You can use:
> dev="/dev/sdX" # X is you device with SD card
> echo "Clear last 1024 bytes"
> ssize=$(/usr/sbin/blockdev --getss /dev/$dev)
> [ $ssize -ne 512 ] && echo "Sector size not equal 512" && exit 1
> size=$(/usr/sbin/blockdev --getsz /dev/$dev)
> dd if=/dev/zero of=/dev/$dev obs=1 seek=$(($size - 2)) count=2
>
Thanks Freek de Kruijf,
but neither the Raspberry Pi 1 nor the Raspberry Pi 2 has changed
anything. Still get the same messages.