lab:ansible_virtualbox_autoboot_linux:install_oracle_virtualbox_using_ansible
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
lab:ansible_virtualbox_autoboot_linux:install_oracle_virtualbox_using_ansible [2024/01/20 03:24] – [Install Oracle VirtualBox using Ansible] user | lab:ansible_virtualbox_autoboot_linux:install_oracle_virtualbox_using_ansible [2024/05/10 05:16] (current) – removed user | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Install Oracle VirtualBox using Ansible ====== | ||
- | - Log in to your host machine; we will start in your home directory | ||
- | * no longer as user ansible | ||
- | - Create the file install-virtualbox.yml | ||
- | * <file yaml install-virtualbox.yml> | ||
- | --- | ||
- | - hosts: localhost | ||
- | connection: local | ||
- | become: true | ||
- | tasks: | ||
- | - name: Add Oracle apt key | ||
- | apt_key: | ||
- | url: https:// | ||
- | state: present | ||
- | - name: Add Virtualbox repo | ||
- | apt_repository: | ||
- | repo: "deb [arch=amd64] https:// | ||
- | state: present | ||
- | - name: Install Virtualbox | ||
- | apt: | ||
- | pkg: | ||
- | - virtualbox | ||
- | state: present | ||
- | update_cache: | ||
- | - name: Ensure vboxdrv kernel module is loaded (optional) | ||
- | modprobe: | ||
- | name: vboxdrv | ||
- | state: present | ||
- | </ | ||
- | - Run the playbook you just created | ||
- | * '' | ||
- | ====== Next Step ====== | ||
- | You now have Virtualbox installed! Proceed to [[customize_user-data_for_ubuntu_unattended_install|Customize user-data for Ubuntu unattended install]] | ||
- | |||
- | Or back to [[start# |
lab/ansible_virtualbox_autoboot_linux/install_oracle_virtualbox_using_ansible.1705721095.txt.gz · Last modified: 2024/01/20 03:24 by user