Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/book/v1/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
* **Apache**: free and open-source cross-platform web server software
* **MariaDB**: community-developed, commercially supported fork of the MySQL relational database management system
* **Git**: distributed version control system
* **Composer**: application-level dependency manager for the PHP
* **Composer**: application-level dependency manager
* **Node.js**: JavaScript runtime environment
* **PhpMyAdmin**: open source administration tool for MySQL and MariaDB
10 changes: 10 additions & 0 deletions docs/book/v1/setup/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@ OracleLinux_9_1 Oracle Linux 9.1

Note the two columns: **NAME** and **FRIENDLY NAME**.
To install a specific distro, use the value from the **NAME** column, in this case: `AlmaLinux-9`.

> If you try to install a distro that is already installed, the installation process will fail:

```text
Downloading: AlmaLinux OS 9
Installing: AlmaLinux OS 9
A distribution with the supplied name already exists. Use --name to choose a different name.
Error code: Wsl/InstallDistro/Service/RegisterDistro/ERROR_ALREADY_EXISTS
```

Install the AlmaLinux9 distro by executing the below command:

```shell
Expand Down
2 changes: 1 addition & 1 deletion docs/book/v1/virtualhosts/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Using this tool, you configure a virtualhost for each of your applications, and
**Example**:

* `api.dotkernel.localhost`: this could be the endpoint where you host your website's API
* `frontend.dotkernel.localhost`: this could be subdomain where you host your website's frontend that will consume the API
* `frontend.dotkernel.localhost`: this could be the subdomain where you host your website's frontend that will consume the API

In the above example, the URLs are built like this:

Expand Down
2 changes: 1 addition & 1 deletion docs/book/v2/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
* **Apache**: free and open-source cross-platform web server software
* **MariaDB**: community-developed, commercially supported fork of the MySQL relational database management system
* **Git**: distributed version control system
* **Composer**: application-level dependency manager for the PHP
* **Composer**: application-level dependency manager
* **Node.js**: JavaScript runtime environment
* **PhpMyAdmin**: open source administration tool for MySQL and MariaDB
10 changes: 10 additions & 0 deletions docs/book/v2/setup/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,16 @@ OracleLinux_9_1 Oracle Linux 9.1

Note the two columns: **NAME** and **FRIENDLY NAME**.
To install a specific distro, use the value from the **NAME** column, in this case: `AlmaLinux-10`.

> If you try to install a distro that is already installed, the installation process will fail:

```text
Downloading: AlmaLinux OS 10
Installing: AlmaLinux OS 10
A distribution with the supplied name already exists. Use --name to choose a different name.
Error code: Wsl/InstallDistro/Service/RegisterDistro/ERROR_ALREADY_EXISTS
```

Install the AlmaLinux10 distro by executing the below command:

```shell
Expand Down
2 changes: 1 addition & 1 deletion docs/book/v2/virtualhosts/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Using this tool, you configure a virtualhost for each of your applications, and
**Example**:

* `api.dotkernel.localhost`: this could be the endpoint where you host your website's API
* `frontend.dotkernel.localhost`: this could be subdomain where you host your website's frontend that will consume the API
* `frontend.dotkernel.localhost`: this could be the subdomain where you host your website's frontend that will consume the API

In the above example, the URLs are built like this:

Expand Down
12 changes: 7 additions & 5 deletions wsl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,13 @@ Note the two columns: **NAME** and **FRIENDLY NAME**.
To install a specific distro, use the value from the **NAME** column, in this case: `AlmaLinux-10`.

> If you try to install a distro that is already installed, the installation process will fail:
>
> Downloading: AlmaLinux OS 10
> Installing: AlmaLinux OS 10
> A distribution with the supplied name already exists. Use --name to choose a different name.
> Error code: Wsl/InstallDistro/Service/RegisterDistro/ERROR_ALREADY_EXISTS

```text
Downloading: AlmaLinux OS 10
Installing: AlmaLinux OS 10
A distribution with the supplied name already exists. Use --name to choose a different name.
Error code: Wsl/InstallDistro/Service/RegisterDistro/ERROR_ALREADY_EXISTS
```

Install the AlmaLinux10 distro by executing the below command:

Expand Down