diff --git a/README.md b/README.md index c0745df..b292706 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ comprehensive support for macOS and Windows**. * macOS High Sierra, Mojave, Catalina and Big Sur * Windows 8.1, 10 and 11 including TPM 2.0 * Ubuntu, and all the official flavours, supported by `quickget` + * Fedora, supported by `quickget` * Full SPICE support including host/guest clipboard sharing * VirtIO-webdavd file sharing for Linux and Windows guests * VirtIO-9p file sharing for Linux and macOS guests @@ -285,6 +286,15 @@ quickget freebsd 13_0 quickemu --vm freebsd-13_0.conf ``` +## Fedora Guest + +`quickemu` supports Fedora releases. + +```bash +quickget fedora 34 +quickemu --vm fedora-34.conf +``` + # SPICE The following features are available while using the SPICE protocol: diff --git a/quickget b/quickget index 3d83c20..ee3a4cf 100755 --- a/quickget +++ b/quickget @@ -679,6 +679,8 @@ else echo "ERROR! You must specify an OS release name." if [ "${OS}" == "freebsd" ]; then releases_freebsd + elif [ "${OS}" == "fedora" ]; then + releases_fedora elif [ "${OS}" == "macos" ]; then releases_macos elif [[ "${OS}" == *"ubuntu"* ]]; then