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
Copy file name to clipboardExpand all lines: versioned_docs/version-2.0.0/keploy-explained/mac-linux.md
+17-10Lines changed: 17 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,21 +21,32 @@ sidebar_label: Keploy on MacOS native
21
21
brew install lima
22
22
```
23
23
24
-
4.Paste this command next.
24
+
4.Create a Debian instance.
25
25
26
26
```bash
27
-
limactl show-ssh --format=config debian-12& add it to its ssh config
27
+
limactl create template://debian-12
28
28
```
29
29
30
-
5. Open a remote window on your code editor
31
-
6. Click on connect to host
32
-
7. Now select the configured SSH as "lima-debian"
33
-
8. Once you are in the terminal run the following commands to go into your directory
30
+
5. Start the instance
31
+
32
+
```bash
33
+
limactl start debian-12
34
+
```
35
+
36
+
6. Enter the shell of the running linux instance
37
+
38
+
```bash
39
+
limactl shell debian-12
40
+
```
41
+
42
+
7. Now you are in the linux shell of the debian instance. Now, run the following command to go the `Users` into your directory
34
43
35
44
```bash
36
45
cd /Users
37
46
```
38
47
48
+
8. Replace the `Username` with your macOS username in the following command. This will take you to your macOS home directory. (You might need to allow access to Terminal.app in a popup)
0 commit comments