Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #67

Merged
merged 1 commit into from
Sep 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,25 +375,25 @@ We are now back in our `build environment` after setting up our `live system` an
2. Copy kernel images

```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)

```shell
cp /boot/memtest86+.bin image/install/memtest86+
cp /boot/memtest86+.bin /image/install/memtest86+
```

4. Download and extract memtest86 binary (UEFI)

```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
Expand Down
Loading