Show list of fedora releases (#112)
This commit is contained in:
parent
2009ffc103
commit
c5cdb44325
10
README.md
10
README.md
@ -31,6 +31,7 @@ comprehensive support for macOS and Windows**.
|
|||||||
* macOS High Sierra, Mojave, Catalina and Big Sur
|
* macOS High Sierra, Mojave, Catalina and Big Sur
|
||||||
* Windows 8.1, 10 and 11 including TPM 2.0
|
* Windows 8.1, 10 and 11 including TPM 2.0
|
||||||
* Ubuntu, and all the official flavours, supported by `quickget`
|
* Ubuntu, and all the official flavours, supported by `quickget`
|
||||||
|
* Fedora, supported by `quickget`
|
||||||
* Full SPICE support including host/guest clipboard sharing
|
* Full SPICE support including host/guest clipboard sharing
|
||||||
* VirtIO-webdavd file sharing for Linux and Windows guests
|
* VirtIO-webdavd file sharing for Linux and Windows guests
|
||||||
* VirtIO-9p file sharing for Linux and macOS guests
|
* VirtIO-9p file sharing for Linux and macOS guests
|
||||||
@ -285,6 +286,15 @@ quickget freebsd 13_0
|
|||||||
quickemu --vm freebsd-13_0.conf
|
quickemu --vm freebsd-13_0.conf
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Fedora Guest
|
||||||
|
|
||||||
|
`quickemu` supports Fedora releases.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
quickget fedora 34
|
||||||
|
quickemu --vm fedora-34.conf
|
||||||
|
```
|
||||||
|
|
||||||
# SPICE
|
# SPICE
|
||||||
|
|
||||||
The following features are available while using the SPICE protocol:
|
The following features are available while using the SPICE protocol:
|
||||||
|
2
quickget
2
quickget
@ -679,6 +679,8 @@ else
|
|||||||
echo "ERROR! You must specify an OS release name."
|
echo "ERROR! You must specify an OS release name."
|
||||||
if [ "${OS}" == "freebsd" ]; then
|
if [ "${OS}" == "freebsd" ]; then
|
||||||
releases_freebsd
|
releases_freebsd
|
||||||
|
elif [ "${OS}" == "fedora" ]; then
|
||||||
|
releases_fedora
|
||||||
elif [ "${OS}" == "macos" ]; then
|
elif [ "${OS}" == "macos" ]; then
|
||||||
releases_macos
|
releases_macos
|
||||||
elif [[ "${OS}" == *"ubuntu"* ]]; then
|
elif [[ "${OS}" == *"ubuntu"* ]]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user