File tree 1 file changed +10
-5
lines changed
1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -39,31 +39,36 @@ The following instructions are used for OS X. You'll need [docker-machine-parall
39
39
40
40
4. Enable kvm inside virtual machine
41
41
42
- 4.0 Check kvm version
42
+ 4.0 SSH to the machine
43
+ ```bash
44
+ docker-machine ssh vmware-dev
45
+ ```
46
+
47
+ 4.1 Check kvm version
43
48
```bash
44
49
# version
45
50
$ 10.1
46
51
```
47
52
48
53
Go to http://tinycorelinux.net/10.x/x86_64/tcz/ and check your kvm version, for version 10.1 is kvm-4.19.10-tinycore64.tcz
49
54
50
- 4.1 . Run as an account other than root to install kvm packages using tce-load.
55
+ 4.2 . Run as an account other than root to install kvm packages using tce-load.
51
56
```bash
52
57
# su docker
53
58
$ tce-load -wi kvm-4.19.10-tinycore64.tcz
54
59
```
55
60
56
- 4.2 . Run as root to load kvm module after kvm packages install.
61
+ 4.3 . Run as root to load kvm module after kvm packages install.
57
62
```bash
58
63
$ sudo modprobe kvm_intel
59
64
```
60
65
61
- 4.3 . Check if the kvm device is loaded.
66
+ 4.4 . Check if the kvm device is loaded.
62
67
```bash
63
68
$ ls /dev/kvm
64
69
```
65
70
66
- 4.4 . Check if your CPU supports hardware virtualization now
71
+ 4.5 . Check if your CPU supports hardware virtualization now
67
72
```bash
68
73
$ egrep -c ' (vmx| svm)' /proc/cpuinfo
69
74
```
You can’t perform that action at this time.
0 commit comments