"H" == Hernán Morales Durand hernan.morales@gmail.com writes:
Hi Hernán,
H> Hello, Tyring a new installation here from USB using the current H> installer H> https://www.qlustar.com/sites/default/files/downloads/qlustar-installer-10.1...
H> My server started to boot correctly, however a kernel panic H> happened. You can view kernel dump details here: H> https://imgur.com/a/7jSCHuJ
the most likely cause for this is a bad USB flash drive. You can check whether it's Ok as follows:
a) Unzip the downloaded installer image and check the sha256 sum of the uncompressed iso. Things should look like this:
$ ls -l qlustar-installer-10.1.0-0.iso -rw-r--r-- 1 you you 798732288 Nov 17 12:46 qlustar-installer-10.1.0-0.iso
$ sha256sum qlustar-installer-10.1.0-0.iso d314fea13f8e342496df078a7c66de10fe9c3d978fe0ab3629fa7afa12a8db2e qlustar-installer-10.1.0-0.iso
b) Now burn this iso to your UBS drive (assuming it's /dev/sdb) as follows:
$ dd if=/tmp/qlustar-installer-10.1.0-0.iso of=/dev/sdb $ sync
c) Now unplug the USB drive and plug it back in (to be sure not to read back from cache in the next step). Make sure that it's block device remains the same (here /dev/sdb).
d) Now read the iso back from the USB drive and check it's sha256sum $ dd if=/dev/sdc bs=2048 \ count=$(( $(stat -c '%s' qlustar-installer-10.1.0-0.iso) / 2048 )) | \ sha256sum 390006+0 records in 390006+0 records out 798732288 bytes (799 MB, 762 MiB) copied, 5.18606 s, 154 MB/s d314fea13f8e342496df078a7c66de10fe9c3d978fe0ab3629fa7afa12a8db2e -
If the sha256sums are identical, your stick is OK, and we have to continue looking at other possible causes.
Best,
Roland
H> I tried to make a memory area for the kdump kernel with H> crashkernel and debug parameters, however I don't know if it is H> possible to export the kernel dump.
H> Any hints?
H> Cheers,
H> Hernán