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

Adjusted check values #735

Merged
merged 2 commits into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ quickemu --vm windows-11-22H2.conf

- Complete the installation as you normally would.
- All relevant drivers and services should be installed automatically.
- A local adminstrator user account is automatically created, with
- A local administrator user account is automatically created, with
criadoperez marked this conversation as resolved.
Show resolved Hide resolved
these credentials:
- Username: `Quickemu`
- Password: `quickemu`
Expand Down Expand Up @@ -838,7 +838,7 @@ which Quickemu sizes to 2048x1152. Without the `--screen` option,
Quickemu would have used the 1920x1080 monitor which results in a window
size of 1664x936.

The '--screenpct' is an optional interger value between 25 \<= pct \<
The '--screenpct' is an optional integer value between 25 \<= pct \<
100 which will override system default screen sizes. The VM size will be
'pct' of the chosen screen. **If --fullscreen is chosen screen will be
fullsize instead of being scaled down by --screenpct value.**
Expand Down
4 changes: 2 additions & 2 deletions docs/quickemu.1
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ Complete the installation as you normally would.
.IP \[bu] 2
All relevant drivers and services should be installed automatically.
.IP \[bu] 2
A local adminstrator user account is automatically created, with these
A local administrator user account is automatically created, with these
credentials:
.RS 2
.IP \[bu] 2
Expand Down Expand Up @@ -854,7 +854,7 @@ which Quickemu sizes to 2048x1152.
Without the \f[V]--screen\f[R] option, Quickemu would have used the
1920x1080 monitor which results in a window size of 1664x936.
.PP
The `\[en]screenpct' is an optional interger value between 25 <= pct <
The `\[en]screenpct' is an optional integer value between 25 <= pct <
100 which will override system default screen sizes.
The VM size will be `pct' of the chosen screen.
\f[B]If \[en]fullscreen is chosen screen will be fullsize instead of
Expand Down
4 changes: 2 additions & 2 deletions docs/quickemu.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ quickemu --vm windows-11-22H2.conf

- Complete the installation as you normally would.
- All relevant drivers and services should be installed automatically.
- A local adminstrator user account is automatically created, with
- A local administrator user account is automatically created, with
these credentials:
- Username: `Quickemu`
- Password: `quickemu`
Expand Down Expand Up @@ -623,7 +623,7 @@ which Quickemu sizes to 2048x1152. Without the `--screen` option,
Quickemu would have used the 1920x1080 monitor which results in a window
size of 1664x936.

The '--screenpct' is an optional interger value between 25 \<= pct \<
The '--screenpct' is an optional integer value between 25 \<= pct \<
100 which will override system default screen sizes. The VM size will be
'pct' of the chosen screen. **If --fullscreen is chosen screen will be
fullsize instead of being scaled down by --screenpct value.**
Expand Down
2 changes: 1 addition & 1 deletion docs/quickget.1
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ Complete the installation as you normally would.
.IP \[bu] 2
All relevant drivers and services should be installed automatically.
.IP \[bu] 2
A local adminstrator user account is automatically created, with these
A local administrator user account is automatically created, with these
credentials:
.RS 2
.IP \[bu] 2
Expand Down
2 changes: 1 addition & 1 deletion docs/quickget.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ quickemu --vm windows-11-22H2.conf

- Complete the installation as you normally would.
- All relevant drivers and services should be installed automatically.
- A local adminstrator user account is automatically created, with
- A local administrator user account is automatically created, with
these credentials:
- Username: `Quickemu`
- Password: `quickemu`
Expand Down
4 changes: 2 additions & 2 deletions quickemu
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function ignore_msrs_alert() {
echo
echo " If you are unable to run macOS or Windows VMs then run the above 👆"
echo " This will enable ignoring of unhandled MSRs until you reboot the host."
echo " You can make this change permenant by running: 'quickemu --ignore-msrs-always'"
echo " You can make this change permanent by running: 'quickemu --ignore-msrs-always'"
fi
fi
}
Expand Down Expand Up @@ -1013,7 +1013,7 @@ function vm_boot() {
fi

if [ "${network}" == "none" ]; then
# Disbale all networking
# Disable all networking
echo " - Network: Disabled"
args+=(-nic none)
elif [ "${network}" == "restrict" ]; then
Expand Down
4 changes: 2 additions & 2 deletions quickget
Original file line number Diff line number Diff line change
Expand Up @@ -921,7 +921,7 @@ EOF
fi
;;
vanillaos)
## Minimum 50G for abroot
## Minimum is 50G for abroot, but a 64GB is allocated to give some headroom
echo "disk_size=\"64G\"" >> "${CONF_FILE}"
;;
zorin)
Expand All @@ -945,7 +945,7 @@ EOF
esac

if [ "${OS}" == "ubuntu" ] && [[ ${RELEASE} == *"daily"* ]]; then
# wont install lobster testing with less than 18GB
# Minimum to install lobster testing is 18GB but 32GB are allocated for headroom
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
fi
# Enable TPM for Windows 11
Expand Down