Limit macOS Monterey to 2 CPU cores. Close #438
Post-install the cpu_cores=2 can be removed from the virtual machine configuration file.
This commit is contained in:
parent
10c35369a1
commit
275f057cdd
8
quickget
8
quickget
@ -786,7 +786,13 @@ EOF
|
||||
echo "disk_size=\"12G\"" >> "${CONF_FILE}"
|
||||
echo "ram=\"2048M\"" >> "${CONF_FILE}"
|
||||
;;
|
||||
macos) echo "macos_release=\"${RELEASE}\"" >> "${CONF_FILE}";;
|
||||
macos)
|
||||
echo "macos_release=\"${RELEASE}\"" >> "${CONF_FILE}"
|
||||
# https://github.com/quickemu-project/quickemu/issues/438
|
||||
if [ "${RELEASE}" == "monterey" ]; then
|
||||
echo "cpu_cores=2" >> "${CONF_FILE}"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
# Enable TPM for Windows 11
|
||||
|
Loading…
Reference in New Issue
Block a user