Skip to content

Commit f356119

Browse files
fix(docs): steps for limactl installation
Co-authored-by: Mridul Tripathi <[email protected]> Signed-off-by: Chirag Ghosh <[email protected]>
1 parent a4cf356 commit f356119

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

versioned_docs/version-2.0.0/keploy-explained/mac-linux.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,32 @@ sidebar_label: Keploy on MacOS native
2121
brew install lima
2222
```
2323

24-
4. Paste this command next.
24+
4. Create a Debian instance.
2525

2626
```bash
27-
limactl show-ssh --format=config debian-12 & add it to its ssh config
27+
limactl create template://debian-12
2828
```
2929

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
3443

3544
```bash
3645
cd /Users
3746
```
3847

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)
49+
3950
```bash
4051
cd /{Username}
4152
```

0 commit comments

Comments
 (0)