Crash on installation kit media boot
Re: Crash on installation kit media boot
I have confirmed that I have the same problem.
When you have a new executable/loadable image, please let me know.
I have a way to create an updated installation media so I can test this fairly quickly and before field test closes. It will also allow me to continue field test work.
Thanks.
When you have a new executable/loadable image, please let me know.
I have a way to create an updated installation media so I can test this fairly quickly and before field test closes. It will also allow me to continue field test work.
Thanks.
-
- Valued Contributor
- Posts: 68
- Joined: Sun Feb 23, 2020 7:49 am
- Reputation: 0
- Location: Fort Worth, TX USA
- Status: Offline
Re: Crash on installation kit media boot
I saw that this was on a NUC and got worried. I hadn't had a chance to try E9.2-3 and I have several NUC's running V9.2-2. But I upgraded one to E9.2-3 and it runs with no errors. Mine are NUC 9 Extreme. One has an i9 and the other has a Xeon. I'm guessing that because they are higher level CPU's that they have the needed avx/avx2 support.
Where did you run that cpuinfo command? In the bios/efi page before booting?
Where did you run that cpuinfo command? In the bios/efi page before booting?
John H. Reinhardt
VMS user since 1981
VMS user since 1981
Re: Crash on installation kit media boot
Code: Select all
> Where did you run that cpuinfo command? In the bios/efi page before
> booting?
If by "that cpuinfo command" you mean "hwinfo --cpu", then I wondered
that too. I know nothing, but my quick Web search found:
https://www.hwinfo.com/
which suggested that it's a program "for Windows and DOS." (I haven't
tried it yet.)
What did _your_ search find?
-
- Valued Contributor
- Posts: 68
- Joined: Sun Feb 23, 2020 7:49 am
- Reputation: 0
- Location: Fort Worth, TX USA
- Status: Offline
Re: Crash on installation kit media boot
Okay Steven, you caught me. I didn't search. I was lazy and just hoped the previous posters would tell me. The HWINFO may have come from a command I found in the EFI Shell that did give me some detailed information on the CPU, but not in the format of the information in the previous posts. I suspect they ran it on the VM host and they are using VirtualBox or KVM and running it at the Linux (or Windows CMD prompt). I am using ESXi and I don't think it's CLI has that command. Though, again, I haven't attempted checking the ESXi CLI (because I don't want to shut down the host to get to the CLI) or Googling it (lazy).What did _your_ search find?
John H. Reinhardt
VMS user since 1981
VMS user since 1981
-
Topic author - Active Contributor
- Posts: 25
- Joined: Wed Apr 05, 2023 9:22 am
- Reputation: 0
- Location: Glasgow, Scotland
- Status: Offline
Re: Crash on installation kit media boot
Yeah I'm running QEMU/KVM on Debian so executing the HWINFO command on the Linux host.
Re: Crash on installation kit media boot
"hwinfo" is a tool contained in the Debian package "hwinfo". The tool is probably available for other Linux distributions as well.
I don't know of any EFI command to display the cpu features. But the VMS BOOTMGR can show you all the cpu features. Enter SYSINFO at the BOOTMGR prompt and respond to the SYSINFO prompts.
I don't know of any EFI command to display the cpu features. But the VMS BOOTMGR can show you all the cpu features. Enter SYSINFO at the BOOTMGR prompt and respond to the SYSINFO prompts.
-
- Master
- Posts: 106
- Joined: Thu Jun 06, 2019 6:57 am
- Reputation: 1
- Location: Brindisi (Italy)
- Status: Offline
- Contact:
Re: Crash on installation kit media boot
To determine if your system's CPU provides the functionality required to run OpenVMS V9.2 or later, you can run also a special Python script provided by VSI at the following link :
https://vmssoftware.com/openkits/alpope ... scheck.zip
/Maurizio
https://vmssoftware.com/openkits/alpope ... scheck.zip
Code: Select all
C:\>python vmscheck.py
OpenVMS 9.x compatibility quick-check
Vendor ID : GenuineIntel
CPU name : 11th Gen Intel(R) Core(TM) i7-11850H @ 2.50GHz
Necessary for OpenVMS 9.x:
Intel CPU : Yes
SSE 4.1 : Yes
XSAVE : Yes
TSC : Yes
APIC : Yes
MTRR : Yes
Optional for OpenVMS 9.x:
PCID : Yes
X2APIC : Yes
FSGSBASE : Yes
MD_CLEAR : Yes
XSAVEOPT : Yes
Possible future optionals:
TSX-HLE : --
TSX-RTM : --
UMIP : Yes
-
- Valued Contributor
- Posts: 68
- Joined: Sun Feb 23, 2020 7:49 am
- Reputation: 0
- Location: Fort Worth, TX USA
- Status: Offline
Re: Crash on installation kit media boot
But not on the VMWare ESXi command line as far as I can tell.
Yes, that's the one I found. Unfortunately my terminal emulator didn't log it so I can't post what I found, but it's a very different format than hwinfo.
John H. Reinhardt
VMS user since 1981
VMS user since 1981
Re: Crash on installation kit media boot
Obviously the python script does not print the AVX features. Do you suggest to enhance it? Anybody can easily add something like:To determine if your system's CPU provides the functionality required ...
Code: Select all
--- vmscheck.py~ 2023-02-16 12:46:14.000000000 +0100
+++ vmscheck.py 2024-08-30 17:08:47.833288731 +0200
@@ -242,6 +242,9 @@
print("Optional for OpenVMS 9.x:")
print("PCID : %s" % is_set(cpu, 1, 0, 2, 17))
print("X2APIC : %s" % is_set(cpu, 1, 0, 2, 21))
+ print("AVX : %s" % is_set(cpu, 1, 0, 2, 28))
print("FSGSBASE : %s" % is_set(cpu, 7, 0, 1, 0))
+ print("AVX2 : %s" % is_set(cpu, 7, 0, 1, 5))
+ print("AVX512F : %s" % is_set(cpu, 7, 0, 1, 16))
print("MD_CLEAR : %s" % is_set(cpu, 7, 0, 3, 10))
print("XSAVEOPT : %s" % is_set(cpu, 0xd, 1, 0, 0))
Re: Crash on installation kit media boot
Any update on a fix for this ?
I have a KVM environment on top of UBUNTU and have made a writable installation kit. If I could get the updated image(s)/execlets(s), I can update and test immediately.
I have a KVM environment on top of UBUNTU and have made a writable installation kit. If I could get the updated image(s)/execlets(s), I can update and test immediately.