Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rgl/fedora-vagrant
Vagrant Fedora Base Box
https://github.com/rgl/fedora-vagrant
fedora packer vagrant
Last synced: about 2 months ago
JSON representation
Vagrant Fedora Base Box
- Host: GitHub
- URL: https://github.com/rgl/fedora-vagrant
- Owner: rgl
- Created: 2017-09-24T18:03:26.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-08-02T06:37:06.000Z (6 months ago)
- Last Synced: 2024-10-05T18:21:52.508Z (4 months ago)
- Topics: fedora, packer, vagrant
- Language: Shell
- Size: 30.3 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This builds an up-to-date Vagrant Fedora Base Box.
Currently this targets [Fedora](https://fedoraproject.org/) 41.
# Usage
Install [Packer](https://www.packer.io/) and [Vagrant](https://www.vagrantup.com/).
## qemu-kvm usage
Install qemu-kvm:
```bash
apt-get install -y qemu-kvm
apt-get install -y sysfsutils
systool -m kvm_intel -v
```Type `make build-libvirt` and follow the instructions.
Try the example guest:
```bash
cd example
apt-get install -y virt-manager libvirt-dev
vagrant plugin install vagrant-libvirt
vagrant up --provider=libvirt
vagrant ssh
exit
vagrant destroy -f
```# Kickstart
The Fedora installation iso uses the Anaconda installer to install Fedora.
During the installation it will ask you some questions and it will also
store your anwsers in the `/root/anaconda-ks.cfg` (aka kickstart) file.
This file is later used to fully automate a new installation by specifying
its location in the `inst.ks` kernel command line argument.# Reference
* [Anaconda boot options](https://anaconda-installer.readthedocs.io/en/latest/boot-options.html)
* [Kickstart manual](http://pykickstart.readthedocs.io/en/latest/kickstart-docs.html)
* [Kickstart Syntax Reference](https://anaconda-installer.readthedocs.io/en/latest/kickstart.html)
* [Mirror list](https://admin.fedoraproject.org/mirrormanager/)