UncleNUC Wiki

Second chance for NUCs

User Tools

Site Tools


lab:ansible_virtualbox_autoboot_linux:install_oracle_virtualbox_using_ansible

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
lab:ansible_virtualbox_autoboot_linux:install_oracle_virtualbox_using_ansible [2024/01/16 19:20] userlab: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 
-  - 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://www.virtualbox.org/download/oracle_vbox_2016.asc 
-        state: present 
-    - name: Add virtualbox repo 
-      apt_repository: 
-        repo: "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian {{ ansible_distribution_release }} contrib" 
-        state: present 
-    - name: Install Virtualbox 
-      apt: 
-        pkg: 
-          - virtualbox 
-        state: present 
-        update_cache: true 
-    - name: Ensure vboxdrv kernel module is loaded (optional) 
-      modprobe: 
-        name: vboxdrv 
-        state: present 
-</file> 
-  - Run the playbook you just created 
-    * ''ansible-playbook install-virtualbox.yml'' 
-    * Depending on your server, you may need to precede this command with "sudo" 
  
-NEXT: [[customize_user-data_for_ubuntu_unattended_install]] 
- 
-PREVIOUS: [[start#install_packages_and_create_keys_for_ansible_management]] 
lab/ansible_virtualbox_autoboot_linux/install_oracle_virtualbox_using_ansible.1705432831.txt.gz · Last modified: 2024/01/16 19:20 by user