mirror of
				https://github.com/oSoWoSo/DistroHopper.git
				synced 2024-08-14 22:46:53 +00:00 
			
		
		
		
	Added linuxmint support
quickget supports linuxmint cinnamon 20.2, MATE 20.2, and xfce 20.2
This commit is contained in:
		
							parent
							
								
									b4b69b8574
								
							
						
					
					
						commit
						2911835187
					
				
					 2 changed files with 52 additions and 0 deletions
				
			
		
							
								
								
									
										10
									
								
								README.md
									
										
									
									
									
								
							
							
						
						
									
										10
									
								
								README.md
									
										
									
									
									
								
							|  | @ -32,6 +32,7 @@ comprehensive support for macOS and Windows**. | ||||||
|   * 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` |   * Fedora, supported by `quickget` | ||||||
|  |   * linuxmint Cinnamon, MATE, and xfce, supported by `quickget` | ||||||
|   * openSUSE Leap and Tumbleweed, supported by `quickget` |   * openSUSE Leap and Tumbleweed, 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 | ||||||
|  | @ -296,6 +297,15 @@ quickget fedora 34 | ||||||
| quickemu --vm fedora-34.conf | quickemu --vm fedora-34.conf | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
|  | ## linuxmint Guest | ||||||
|  | 
 | ||||||
|  | `quickemu` supports linuxmint releases. | ||||||
|  | 
 | ||||||
|  | ```bash | ||||||
|  | quickget linuxmint mate-20_2 | ||||||
|  | quickemu --vm linuxmint-mate-20.2.conf | ||||||
|  | ``` | ||||||
|  | 
 | ||||||
| ## openSUSE Guest | ## openSUSE Guest | ||||||
| 
 | 
 | ||||||
| `quickemu` supports openSUSE Leap and Tumbleweed. | `quickemu` supports openSUSE Leap and Tumbleweed. | ||||||
|  |  | ||||||
							
								
								
									
										42
									
								
								quickget
									
										
									
									
									
								
							
							
						
						
									
										42
									
								
								quickget
									
										
									
									
									
								
							|  | @ -4,6 +4,7 @@ function os_support() { | ||||||
|     echo freebsd \ |     echo freebsd \ | ||||||
|     fedora \ |     fedora \ | ||||||
|     kubuntu \ |     kubuntu \ | ||||||
|  |     linuxmint \ | ||||||
|     lubuntu \ |     lubuntu \ | ||||||
|     macos \ |     macos \ | ||||||
|     opensuse \ |     opensuse \ | ||||||
|  | @ -27,6 +28,12 @@ function releases_fedora(){ | ||||||
|     35_beta |     35_beta | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | function releases_linuxmint(){ | ||||||
|  |     echo cinnamon-20_2 \ | ||||||
|  |     mate-20_2 \ | ||||||
|  |     xfce-20-2 | ||||||
|  | } | ||||||
|  | 
 | ||||||
| function releases_opensuse(){ | function releases_opensuse(){ | ||||||
|     echo 15_0 \ |     echo 15_0 \ | ||||||
|     15_1 \ |     15_1 \ | ||||||
|  | @ -350,6 +357,9 @@ function make_vm_config() { | ||||||
|     elif [[ "${OS}" == *"fedora"* ]]; then |     elif [[ "${OS}" == *"fedora"* ]]; then | ||||||
|         GUEST="linux" |         GUEST="linux" | ||||||
|         IMAGE_TYPE="iso" |         IMAGE_TYPE="iso" | ||||||
|  |     elif [[ "${OS}" == *"linuxmint"* ]]; then | ||||||
|  |         GUEST="linux" | ||||||
|  |         IMAGE_TYPE="iso" | ||||||
|     elif [[ "${OS}" == *"opensuse"* ]]; then |     elif [[ "${OS}" == *"opensuse"* ]]; then | ||||||
|         GUEST="linux" |         GUEST="linux" | ||||||
|         IMAGE_TYPE="iso" |         IMAGE_TYPE="iso" | ||||||
|  | @ -462,6 +472,34 @@ function get_fedora() { | ||||||
|     start_vm_info |     start_vm_info | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | function get_linuxmint() { | ||||||
|  |     local URL="" | ||||||
|  |     local DL_BASE="https://mirrors.edge.kernel.org/linuxmint/stable" | ||||||
|  |     local VERSION="" | ||||||
|  | 
 | ||||||
|  |     case ${RELEASE} in | ||||||
|  |         cinnamon-20_2|mate-20_2|xfce-20_2) VERSION=${RELEASE//_/.};; | ||||||
|  |         *) | ||||||
|  |             echo "ERROR! linuxmint ${RELEASE} is not a supported release." | ||||||
|  |             releases_linuxmint | ||||||
|  |             exit 1 | ||||||
|  |             ;; | ||||||
|  |     esac | ||||||
|  | 
 | ||||||
|  |     re='(.*)-(.*)' | ||||||
|  |     [[ ${VERSION} =~ ${re} ]]; | ||||||
|  |     local FLAVOR=${BASH_REMATCH[1]} | ||||||
|  |     VERSION=${BASH_REMATCH[2]} | ||||||
|  | 
 | ||||||
|  |     ISO="linuxmint-${VERSION}-${FLAVOR}-64bit.iso" | ||||||
|  |     URL="${DL_BASE}/${VERSION}/${ISO}" | ||||||
|  | 
 | ||||||
|  |     make_vm_dir | ||||||
|  |     web_get ${URL} ${VM_PATH} | ||||||
|  |     make_vm_config ${ISO} | ||||||
|  |     start_vm_info | ||||||
|  | } | ||||||
|  | 
 | ||||||
| function get_opensuse() { | function get_opensuse() { | ||||||
|     # For future releases, use dvd1 iso files. |     # For future releases, use dvd1 iso files. | ||||||
|     local URL="" |     local URL="" | ||||||
|  | @ -721,6 +759,8 @@ else | ||||||
|         releases_freebsd |         releases_freebsd | ||||||
|     elif [ "${OS}" == "fedora" ]; then |     elif [ "${OS}" == "fedora" ]; then | ||||||
|         releases_fedora |         releases_fedora | ||||||
|  |     elif [ "${OS}" == "linuxmint" ]; then | ||||||
|  |         releases_linuxmint | ||||||
|     elif [ "${OS}" == "opensuse" ]; then |     elif [ "${OS}" == "opensuse" ]; then | ||||||
|         releases_opensuse |         releases_opensuse | ||||||
|     elif [ "${OS}" == "macos" ]; then |     elif [ "${OS}" == "macos" ]; then | ||||||
|  | @ -741,6 +781,8 @@ elif [[ "${OS}" == *"freebsd" ]]; then | ||||||
|     get_freebsd |     get_freebsd | ||||||
| elif [[ "${OS}" == *"fedora"* ]]; then | elif [[ "${OS}" == *"fedora"* ]]; then | ||||||
|     get_fedora |     get_fedora | ||||||
|  | elif [[ "${OS}" == *"linuxmint"* ]]; then | ||||||
|  |     get_linuxmint | ||||||
| elif [[ "${OS}" == *"opensuse"* ]]; then | elif [[ "${OS}" == *"opensuse"* ]]; then | ||||||
|     get_opensuse |     get_opensuse | ||||||
| elif [[ "${OS}" == *"ubuntu"* ]]; then | elif [[ "${OS}" == *"ubuntu"* ]]; then | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue