You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Will be creating releases with ISO that works for my VMWare Fusion henceforth. Changes will be made to the script to support installation with the ISO in the latest release
@@ -15,7 +14,7 @@ A semi-automated way of setting up ArchLinux in [VMware Fusion for Apple Silicon
15
14
16
15
2. Setup a new "Custom Virtual Machine" in VMware.
17
16
18
-
1. Choose "Other Linux 5.x kernel 64-bit Arm"
17
+
1. Choose "Other Linux 6.x kernel 64-bit Arm"
19
18
2. Create a disk with at least 16 GiB of space because my script defaults of 8GiB of swap and 512 MiB for ESP. Both of these are configurable if you so choose.
20
19
3. Setup the processor count and RAM size - I personally set it to 4cores and 8GiB respectively.
21
20
4. Make sure to check `Use full resolution for Retina display` in `Display`
@@ -30,28 +29,23 @@ A semi-automated way of setting up ArchLinux in [VMware Fusion for Apple Silicon
30
29
31
30
3. Start the VM
32
31
33
-
4. Since we're using an ISO built by the `archboot` project - at boot it'll try to
34
-
guide you through the install process. This is a very very intuitive and easy process
35
-
and if you happen to prefer that please go ahead and use it. For those that would
36
-
rather follow the steps below - just `Cancel` out of it.
37
-
38
-
5. Set a root password in the VM:
32
+
4. Set a root password in the VM:
39
33
40
34
```Bash
41
35
echo -e "root\nroot"| passwd
42
36
```
43
37
44
38
This will, of course, set the password to `root`.
45
39
46
-
6. Get the ip address of the VM:
40
+
5. Get the ip address of the VM:
47
41
48
42
```Bash
49
43
ip addr
50
44
```
51
45
52
-
7. Now open a terminal window in you `Mac host` and clone this repo
53
-
8.`cd` into the repo directory
54
-
9. Run:
46
+
6. Now open a terminal window in you `Mac host` and clone this repo
47
+
7.`cd` into the repo directory
48
+
8. Run:
55
49
56
50
```Bash
57
51
ADDR="<ip address from step 5>" \
@@ -61,43 +55,37 @@ make vm/install
61
55
```
62
56
63
57
All configurable options are right on top of the `Makefile`. Configure as needed.
64
-
If you are using SATA as the Bus type for `Hard Disk` make sure to add
58
+
**If you are using SATA as the Bus type for `Hard Disk` make sure to add**
65
59
66
60
```Bash
67
61
ABLOCKDEVICE="sda" PARTITIONPREFIX=""
68
62
```
69
63
70
64
to the above command.
71
65
72
-
10. This will install Archlinux and create provided user with password = `root`.
66
+
9. This will install Archlinux and create provided user with password = `root`.
73
67
The VM will be restarted and you should be able to login with your user.
74
68
The default shell for the user will be set to `zsh`.
75
69
I typically take a **VM Snapshot** at this stage.
76
70
77
-
11. The linux kernel included, as of now, is not built with support for
78
-
the vmware graphics driver. Consequently you'll be stuck to a basic resolution
79
-
of 1024x768. We'll need to build our own kernel with support for said driver.
0 commit comments