Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rgl/kali-vagrant
Kali Linux Base Box
https://github.com/rgl/kali-vagrant
kali kali-linux packer vagrant
Last synced: 11 days ago
JSON representation
Kali Linux Base Box
- Host: GitHub
- URL: https://github.com/rgl/kali-vagrant
- Owner: rgl
- Created: 2023-07-28T05:49:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-04T18:19:34.000Z (over 1 year ago)
- Last Synced: 2024-10-05T18:21:58.568Z (3 months ago)
- Topics: kali, kali-linux, packer, vagrant
- Language: Shell
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This builds an up-to-date Vagrant Kali Linux Base Box.
Currently this targets [Kali Linux 2023.3](https://www.kali.org).
[Kali Linux is based on Debian Testing](https://www.kali.org/docs/policy/kali-linux-relationship-with-debian/).
# Usage
Install Packer 1.9+ and Vagrant 2.3+.
## Ubuntu Host
On a Ubuntu host, install the dependencies by running the file at:
https://github.com/rgl/xfce-desktop-vagrant/blob/master/provision-virtualization-tools.sh
And you should also install and configure the NFS server. E.g.:
```bash
# install the nfs server.
sudo apt-get install -y nfs-kernel-server# enable password-less configuration of the nfs server exports.
sudo bash -c 'cat >/etc/sudoers.d/vagrant-synced-folders' <<'EOF'
Cmnd_Alias VAGRANT_EXPORTS_CHOWN = /bin/chown 0\:0 /tmp/*
Cmnd_Alias VAGRANT_EXPORTS_MV = /bin/mv -f /tmp/* /etc/exports
Cmnd_Alias VAGRANT_NFSD_CHECK = /etc/init.d/nfs-kernel-server status
Cmnd_Alias VAGRANT_NFSD_START = /etc/init.d/nfs-kernel-server start
Cmnd_Alias VAGRANT_NFSD_APPLY = /usr/sbin/exportfs -ar
%sudo ALL=(root) NOPASSWD: VAGRANT_EXPORTS_CHOWN, VAGRANT_EXPORTS_MV, VAGRANT_NFSD_CHECK, VAGRANT_NFSD_START, VAGRANT_NFSD_APPLY
EOF
```For more information see the [Vagrant NFS documentation](https://www.vagrantup.com/docs/synced-folders/nfs.html).
## 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 # see https://github.com/vagrant-libvirt/vagrant-libvirt
vagrant up --provider=libvirt --no-destroy-on-error
vagrant ssh
exit
vagrant destroy -f
```## proxmox usage
Install [proxmox](https://www.proxmox.com/en/proxmox-ve).
**NB** This assumes proxmox was installed alike [rgl/proxmox-ve](https://github.com/rgl/proxmox-ve).
Set your proxmox details:
```bash
cat >secrets-proxmox.sh <