1
Laitealue / Vs: [ ratkaistu ] Järjestelmän jumiutuminen tiettyä Hesarin sivua luettaessa
« : 26.02.26 - klo:15.18 »Jonkin aikaa selvittiin sitten ilman jumiutumista, mutta sitten taas joku Iltasanomien sivu jumitti mint 22.2 -järjestelmän.
Jotta saisi mem86+ -testin ajetuksi, se pitäisi saada grub-valikkoon näkyväksi, mutta sitä ennen pitäisi saada grub-valikkokin näkyväksi. Tekoaly antoi seuraavanlaiset ohjeet (ks. kysymyksen jälkeen), mutta ohjeiden lopussa sanotaan, että joissain koneissa mem86+ -testiä ei saa näkyviin "sitten millään".
Onko kyse tekoälyn hallusinoinnista ja pitäisikö todella hankkia usb-tikku mem86+ -testin ajamiseen vai saisiko sen Mintin aloitukseen tavalliseen tapaan valikkoon peräti näillä tekoälyn ohjeilla.
Lainaus
On a Mint 22 system with only Linux Mint installed, you need to (1) make the GRUB menu visible and (2) ensure the Memtest86+ entry is enabled.
1. Make the GRUB menu visible
Mint hides the GRUB menu by default when it’s the only OS. To always show it:
Open a terminal.
Create/edit Mint’s custom GRUB config fragment:
bash
sudo mkdir -p /etc/default/grub.d
echo 'GRUB_TIMEOUT="5"' | sudo tee /etc/default/grub.d/90_custom.cfg
echo 'GRUB_TIMEOUT_STYLE="menu"' | sudo tee -a /etc/default/grub.d/90_custom.cfg
(You can pick any timeout you like instead of 5.)
Regenerate GRUB config:
bash
sudo update-grub
Reboot: the GRUB menu should now appear for 5 seconds.
Alternatively, you can edit the main file directly:
bash
sudo nano /etc/default/grub
Make sure you have these lines (or similar):
text
GRUB_TIMEOUT_STYLE=menu
GRUB_TIMEOUT=5
# and remove/comment any GRUB_HIDDEN_TIMEOUT lines if present
Then run:
bash
sudo update-grub
2. Ensure Memtest86+ is present
On BIOS/legacy systems, Memtest86+ is provided by memtest86+ and a GRUB script. On UEFI systems, it may not appear or be absent by default.
Install memtest86+ (if not already installed):
bash
sudo apt update
sudo apt install memtest86+
Make sure the GRUB script is executable:
bash
sudo chmod +x /etc/grub.d/20_memtest86+
Regenerate GRUB config again:
bash
sudo update-grub
If you’re on BIOS/legacy, you should now see a “Memory test (memtest86+)” entry in the GRUB menu at boot. On many UEFI machines, GRUB’s memtest86+ entry is disabled or not provided, so even with the package installed you may not get a working menu entry; in that case you typically use an external Memtest86/86+ USB instead.
