mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
34 lines
934 B
Markdown
34 lines
934 B
Markdown
## Creating Linux guests 🐧
|
|
|
|
### Ubuntu
|
|
|
|
`quickget` will automatically download an Ubuntu release and create the
|
|
virtual machine configuration.
|
|
|
|
``` shell
|
|
quickget ubuntu 22.04
|
|
quickemu --vm ubuntu-22.04.conf
|
|
```
|
|
|
|
- Complete the installation as normal.
|
|
- Post-install:
|
|
- Install the SPICE agent (`spice-vdagent`) in the guest to enable
|
|
copy/paste and USB redirection
|
|
- `sudo apt install spice-vdagent`
|
|
- Install the SPICE WebDAV agent (`spice-webdavd`) in the guest to
|
|
enable file sharing.
|
|
- `sudo apt install spice-webdavd`
|
|
|
|
### Ubuntu daily-live images
|
|
|
|
`quickget` can also download/refresh daily-live images via `zsync` for Ubuntu
|
|
developers and testers.
|
|
|
|
``` shell
|
|
quickget ubuntu daily-live
|
|
quickemu --vm ubuntu-daily-live.conf
|
|
```
|
|
|
|
You can run `quickget ubuntu daily-live` to refresh your daily development
|
|
image as often as you like, it will even automatically switch to a new
|
|
series.
|