Skip to content

Commit 22de548

Browse files
authored
Merge pull request #520 from chirag-ghosh/fix/lima-installation
fix(docs): steps for limactl installation
2 parents 363806a + 3faef94 commit 22de548

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

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

Lines changed: 17 additions & 10 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
```
@@ -102,10 +113,6 @@ echo \
102113
sudo apt-get -y update
103114
```
104115

105-
```bash
106-
sudo apt-get -y update
107-
```
108-
109116
```bash
110117
sudo apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
111118
```

0 commit comments

Comments
 (0)