Update README.md

This commit is contained in:
Marcos Tischer Vallim 2024-09-09 09:56:43 -03:00 committed by GitHub
parent ef9ba4270c
commit b6ed7aa0b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -375,25 +375,25 @@ We are now back in our `build environment` after setting up our `live system` an
2. Copy kernel images 2. Copy kernel images
```shell ```shell
cp /boot/vmlinuz-**-**-generic image/casper/vmlinuz cp /boot/vmlinuz-**-**-generic /image/casper/vmlinuz
cp /boot/initrd.img-**-**-generic image/casper/initrd cp /boot/initrd.img-**-**-generic /image/casper/initrd
``` ```
3. Copy memtest86+ binary (BIOS) 3. Copy memtest86+ binary (BIOS)
```shell ```shell
cp /boot/memtest86+.bin image/install/memtest86+ cp /boot/memtest86+.bin /image/install/memtest86+
``` ```
4. Download and extract memtest86 binary (UEFI) 4. Download and extract memtest86 binary (UEFI)
```shell ```shell
wget --progress=dot https://www.memtest86.com/downloads/memtest86-usb.zip -O image/install/memtest86-usb.zip wget --progress=dot https://www.memtest86.com/downloads/memtest86-usb.zip -O /image/install/memtest86-usb.zip
unzip -p image/install/memtest86-usb.zip memtest86-usb.img > image/install/memtest86 unzip -p /image/install/memtest86-usb.zip memtest86-usb.img > /image/install/memtest86
rm -f image/install/memtest86-usb.zip rm -f /image/install/memtest86-usb.zip
``` ```
## GRUB menu configuration ## GRUB menu configuration