mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
Show list of fedora releases (#112)
This commit is contained in:
parent
2009ffc103
commit
c5cdb44325
2 changed files with 12 additions and 0 deletions
10
README.md
10
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:
|
||||
|
|
2
quickget
2
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
|
||||
|
|
Loading…
Reference in a new issue