Merge pull request #228 from freddii/master

fixed wrong spelled words
This commit is contained in:
John Davidson 2021-01-18 16:20:25 +02:00 committed by GitHub
commit ff566017ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -261,7 +261,7 @@ List of cool forks, spin-offs and other related projects inspired by Minimal Lin
* [Debootstrap Live](https://github.com/zac87/debootstrap_live) - this spin-off of MLL generates bootable ISO with current kernel and [debootstrap](https://wiki.debian.org/Debootstrap) base system.
* [Boot2Minc](https://github.com/mhiramat/boot2minc) - this fork adds [Mincs](https://github.com/mhiramat/mincs) and as result you can run Linux containers inside MLL. One interesting Mincs feature - it provides tools which allow you to reuse alredy existing Docker containers.
* [Boot2Minc](https://github.com/mhiramat/boot2minc) - this fork adds [Mincs](https://github.com/mhiramat/mincs) and as result you can run Linux containers inside MLL. One interesting Mincs feature - it provides tools which allow you to reuse already existing Docker containers.
* [K1773R's MLL](https://github.com/K1773R/minimal) - PowerPC version of Minimal Linux Live with [memtester](http://pyropus.ca/software/memtester) as additional software. Impressive work!

View File

@ -65,7 +65,7 @@ prepare_boot_bios() {
$ISOIMAGE/boot/syslinux
}
# Genrate 'El Torito' boot image as per UEFI sepcification 2.7,
# Generate 'El Torito' boot image as per UEFI specification 2.7,
# sections 13.3.1.x and 13.3.2.x.
prepare_boot_uefi() {
# Find the build architecture based on the Busybox executable.

View File

@ -208,7 +208,7 @@ editions. Your distribution might have different build dependencies but most of
the time there is a single meta-package which installs most of the stuff that
you need.
The build proces is slow, so be prepared to wait. In the end you should have
The build process is slow, so be prepared to wait. In the end you should have
the ISO image file 'minimal_linux_live.iso' in the same folder where you
started the build process. You can burn the ISO image on CD/DVD or (better) run
it with PC emulator like QEMU, VirtualBox or VMware Workstation Player.

View File

@ -38,7 +38,7 @@
# Print first message on screen.
cat /etc/msg/03_init_01.txt
# Wait 5 second or until any keybord key is pressed.
# Wait 5 second or until any ~keyboard key is pressed.
read -t 5 -n1 -s key
if [ "$key" = "" ] ; then

View File

@ -32,7 +32,7 @@ echo -e "Welcome to \\e[1mMinimal \\e[32mLinux \\e[31mLive\\e[0m (/init)"
# Print first message on screen.
cat /etc/msg/init_01.txt
# Wait 5 second or until any keybord key is pressed.
# Wait 5 second or until any ~keyboard key is pressed.
read -t 5 -n1 -s key
if [ ! "$key" = "" ] ; then