Show list of fedora releases (#112)

pull/116/head
Yannick Mauray 3 years ago committed by GitHub
parent 2009ffc103
commit c5cdb44325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      README.md
  2. 2
      quickget

@ -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:

@ -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

Loading…
Cancel
Save