minikube start --driver=virtualbox --host-only-cidr "192.168.56.1/24"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "books":[ | |
| { | |
| "id": "1", | |
| "isbn":"9781593279509", | |
| "title":"Eloquent JavaScript, Third Edition", | |
| "subtitle":"A Modern Introduction to Programming", | |
| "author":"Marijn Haverbeke", | |
| "published":"2018-12-04T00:00:00.000Z", | |
| "publisher":"No Starch Press", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # How do you install QEMU/KVM within virtual box | |
| sudo apt update | |
| sudo apt install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils | |
| sudo apt install virt-manager | |
| virsh list |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set ignorecase | |
| set autoindent | |
| set tabstop=2 | |
| set expandtab | |
| set cursorcolumn |