-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
test_cpu_compat.md
to gemstones (#1845)
* add alpha sort to `.pages` file in gemstones * add links to procedure in 9.x release notes files
- Loading branch information
1 parent
0ce7f09
commit be50216
Showing
6 changed files
with
46 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: Test CPU compatibility | ||
author: Steven Spencer | ||
contributors: Louis Abel | ||
tags: | ||
- cpu test | ||
--- | ||
|
||
# Introduction | ||
|
||
Since the release of Rocky Linux 9, some installations on x86-64 platforms fail with a kernel panic. In most cases, ==this is due to the CPU's incompatibility== with Rocky Linux 9. This procedure will verify CPU compatibility prior to installation. | ||
|
||
## Testing | ||
|
||
1. Obtain a boot image of Rocky Linux 8, Fedora, or other. | ||
|
||
2. Boot this live image on the machine where you want the installation of Rocky Linux 9 to be. | ||
|
||
3. After boot completes, open a terminal window and run this procedure: | ||
|
||
```bash | ||
/lib64/ld-linux-x86-64.so.2 --help | grep x86-64 | ||
``` | ||
|
||
You should receive output similar to this: | ||
|
||
```bash | ||
Usage: /lib64/ld-linux-x86-64.so.2 [OPTION]... EXECUTABLE-FILE [ARGS-FOR-PROGRAM...] | ||
This program interpreter self-identifies as: /lib64/ld-linux-x86-64.so.2 | ||
x86-64-v4 | ||
x86-64-v3 | ||
x86-64-v2 (supported, searched) | ||
``` | ||
|
||
This output indicates the minimum required x86-64 version (v2). Installation can continue in this case. If "(supported, searched)" is missing next to the "x86-64-v2" entry, then your CPU is **not** compatible with Rocky Linux 9.x. If the test shows that your installation can continue and it also shows x86-64-v3 and x86-64-v4 as "(supported, searched)", your CPU is well supported for 9.x and future versions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters