mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2024-08-14 22:46:53 +00:00
adding openSUSE MicroOS only
This commit is contained in:
parent
a421c65351
commit
f33892c62d
2 changed files with 14 additions and 4 deletions
|
@ -33,7 +33,7 @@ comprehensive support for macOS and Windows**.
|
||||||
* Ubuntu, and all the official flavours, supported by `quickget`
|
* Ubuntu, and all the official flavours, supported by `quickget`
|
||||||
* Fedora, supported by `quickget`
|
* Fedora, supported by `quickget`
|
||||||
* linuxmint Cinnamon, MATE, and xfce, supported by `quickget`
|
* linuxmint Cinnamon, MATE, and xfce, supported by `quickget`
|
||||||
* openSUSE Leap and Tumbleweed, supported by `quickget`
|
* openSUSE Leap, Tumbleweed and MicroOS, 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
|
||||||
|
@ -308,7 +308,7 @@ quickemu --vm linuxmint-mate-20.2.conf
|
||||||
|
|
||||||
## openSUSE Guest
|
## openSUSE Guest
|
||||||
|
|
||||||
`quickemu` supports openSUSE Leap and Tumbleweed.
|
`quickemu` supports openSUSE Leap, Tumbleweed and MicroOS.
|
||||||
|
|
||||||
For the installation to complete properly, on the "Installation Settings" screen,
|
For the installation to complete properly, on the "Installation Settings" screen,
|
||||||
you need to disable the "Update NVRAM" option.
|
you need to disable the "Update NVRAM" option.
|
||||||
|
@ -325,6 +325,11 @@ quickget opensuse tumbleweed
|
||||||
quickemu --vm opensuse-tumbleweed
|
quickemu --vm opensuse-tumbleweed
|
||||||
```
|
```
|
||||||
|
|
||||||
|
```bash
|
||||||
|
quickget opensuse microos
|
||||||
|
quickemu --vm opensuse-microos
|
||||||
|
```
|
||||||
|
|
||||||
# SPICE
|
# SPICE
|
||||||
|
|
||||||
The following features are available while using the SPICE protocol:
|
The following features are available while using the SPICE protocol:
|
||||||
|
|
9
quickget
9
quickget
|
@ -39,7 +39,8 @@ function releases_opensuse(){
|
||||||
15_1 \
|
15_1 \
|
||||||
15_2 \
|
15_2 \
|
||||||
15_3 \
|
15_3 \
|
||||||
tumbleweed
|
tumbleweed \
|
||||||
|
microos
|
||||||
}
|
}
|
||||||
|
|
||||||
function releases_macos() {
|
function releases_macos() {
|
||||||
|
@ -507,7 +508,7 @@ function get_opensuse() {
|
||||||
local VERSION=""
|
local VERSION=""
|
||||||
|
|
||||||
case ${RELEASE} in
|
case ${RELEASE} in
|
||||||
15_0|15_1|15_2|15_3|tumbleweed) VERSION=${RELEASE//_/.};;
|
15_0|15_1|15_2|15_3|tumbleweed|microos) VERSION=${RELEASE//_/.};;
|
||||||
*)
|
*)
|
||||||
echo "ERROR! openSUSE ${RELEASE} is not a supported release."
|
echo "ERROR! openSUSE ${RELEASE} is not a supported release."
|
||||||
releases_opensuse
|
releases_opensuse
|
||||||
|
@ -518,6 +519,10 @@ function get_opensuse() {
|
||||||
if [ "${VERSION}" == "tumbleweed" ]; then
|
if [ "${VERSION}" == "tumbleweed" ]; then
|
||||||
ISO="openSUSE-Tumbleweed-DVD-x86_64-Current.iso"
|
ISO="openSUSE-Tumbleweed-DVD-x86_64-Current.iso"
|
||||||
URL="${DL_BASE}/tumbleweed/iso/${ISO}"
|
URL="${DL_BASE}/tumbleweed/iso/${ISO}"
|
||||||
|
elif
|
||||||
|
[ "${VERSION}" == "microos" ]; then
|
||||||
|
ISO="openSUSE-MicroOS-DVD-x86_64-Current.iso"
|
||||||
|
URL="${DL_BASE}/tumbleweed/iso/${ISO}"
|
||||||
else
|
else
|
||||||
ISO="openSUSE-Leap-${VERSION}-DVD-x86_64.iso"
|
ISO="openSUSE-Leap-${VERSION}-DVD-x86_64.iso"
|
||||||
URL="${DL_BASE}/distribution/leap/${VERSION}/iso/${ISO}"
|
URL="${DL_BASE}/distribution/leap/${VERSION}/iso/${ISO}"
|
||||||
|
|
Loading…
Reference in a new issue