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
If the output starts with `WSL version: 2.x.x.x`, you are ready to use **WSL2** and can proceed to [install AlmaLinux10](wsl/README.md).
28
+
If the output starts with `WSL version: 2.x.x.x`, you are ready to use **WSL2** and can proceed to [install AlmaLinux 10](wsl/README.md).
29
29
30
30
## Install WSL2
31
31
@@ -57,4 +57,4 @@ To test, run again the following command:
57
57
wsl -v
58
58
```
59
59
60
-
This time the output should display `WSL version: 2.x.x.x`, which means that your system is ready for using **WSL2** and you can proceed to [install AlmaLinux10](wsl/README.md).
60
+
This time the output should display `WSL version: 2.x.x.x`, which means that your system is ready for using **WSL2** and you can proceed to [install AlmaLinux 10](wsl/README.md).
Copy file name to clipboardExpand all lines: docs/book/v1/setup/installation.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Install AlmaLinux9
1
+
# AlmaLinux 9 Installation
2
2
3
3
Before proceeding with the installation, we need to make sure that no other WSL2 distribution (aka: _distro_) is running.
4
4
This is important because this installation will fail if required ports are already in use by another distro.
@@ -19,7 +19,7 @@ If there is no other distro installed, you will see the below output (an empty l
19
19
NAME STATE VERSION
20
20
```
21
21
22
-
In this case, you can jump to the [installation](#install-almalinux9-1) section.
22
+
In this case, you can jump to the [installation](#install-almalinux-9) section.
23
23
24
24
If you have other distros installed, the output could look similar to the below:
25
25
@@ -30,10 +30,10 @@ If you have other distros installed, the output could look similar to the below:
30
30
```
31
31
32
32
Make sure that the **STATE** column reads **Stopped** for all distros.
33
-
If any of them reads **Running**, you must stop if first by executing `wsl -t <distro-name>`, for example: `wsl -t AlmaLinux-10`.
34
-
Once you have stopped all distros, you can continue to the [installation](#install-almalinux9-1) section.
33
+
If any of them reads **Running**, you must stop if first by executing `wsl -t <distro-name>` after replacing `<distro-name>` with the name of the distro you want to stop.
34
+
Once you have stopped all distros, you can continue to the [installation](#install-almalinux-9) section.
35
35
36
-
## Install AlmaLinux9
36
+
## Install AlmaLinux 9
37
37
38
38
List the available Linux distros by executing:
39
39
@@ -82,7 +82,7 @@ A distribution with the supplied name already exists. Use --name to choose a dif
Install the AlmaLinux9 distro by executing the below command:
85
+
Install the **AlmaLinux 9** distro by executing the below command:
86
86
87
87
```shell
88
88
wsl --install -d AlmaLinux-9
@@ -101,7 +101,7 @@ Enter new UNIX username:
101
101
```
102
102
103
103
As per the last line, the installation process now prompts you to enter a username.
104
-
This is the username you will use inside AlmaLinux9, and it can be any alphanumeric string (for example `dotkernel`):
104
+
This is the username you will use inside **AlmaLinux 9**, and it can be any alphanumeric string (for example `dotkernel`):
105
105
106
106
Next, you are prompted to change the password associated with your chosen username (you will not see what you are typing, that's a security measure in Linux regarding passwords):
107
107
@@ -123,5 +123,5 @@ Finally, you should see the following message:
123
123
124
124
```text
125
125
passwd: all authentication tokens updated successfully.
The installation process will ask for your AlmaLinux9 password, then iterate over each task in the playbook and output a short summary with the results.
69
+
The installation process will ask for your **AlmaLinux 9** password, then iterate over each task in the playbook and output a short summary with the results.
70
70
71
71
Once finished, check if everything works by opening in your browser:
72
72
73
73
*[http://localhost/](http://localhost/): Apache's default home page
74
74
*[http://localhost/info.php](http://localhost/info.php): PHP info page
75
75
*[http://localhost/phpmyadmin/](http://localhost/phpmyadmin/): PhpMyAdmin (login with `root` + the root password you configured in `config.yml` under `mariadb` -> `root_password`)
76
76
77
-
The installation is complete, your AlmaLinux9 development environment is ready to use.
77
+
The installation is complete, your **AlmaLinux 9** development environment is ready to use.
78
78
79
-
> Restart your `Windows Terminal` to find a new option in the tab selector, called **AlmaLinux-9** - clicking it will open a new tab connected to **AlmaLinux9**.
79
+
> Restart your `Windows Terminal` to find a new option in the tab selector, called **AlmaLinux-9** - clicking it will open a new tab connected to **AlmaLinux 9**.
80
80
81
-
## Running AlmaLinux9
81
+
## Running AlmaLinux 9
82
82
83
83
Open `Windows Terminal`.
84
84
85
-
Start AlmaLinux9 by executing:
85
+
Start **AlmaLinux 9** by executing:
86
86
87
87
```shell
88
-
wsl -d AlmaLinux9
88
+
wsl -d AlmaLinux-9
89
89
```
90
90
91
91
OR
92
92
93
93
Locate the app selector dropdown in `Windows Terminal`'s title bar and click `AlmaLinux-9`.
94
-
This will open a new tab connected to AlmaLinux9.
94
+
This will open a new tab connected to **AlmaLinux 9**.
95
95
96
96
### Note
97
97
98
-
> To run your applications using WSL2, you always need to be connected to your AlmaLinux9 distribution.
98
+
> To run your applications using WSL2, you always need to be connected to your **AlmaLinux 9** distribution.
99
99
> For this, all you need to do is to keep open an instance of Windows Terminal that is connected to it.
Copy file name to clipboardExpand all lines: docs/book/v1/setup/system-requirements.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# System requirements
1
+
# AlmaLinux 9 System requirements
2
2
3
3
If you're not already using it, we recommend you to install [Windows Terminal](https://apps.microsoft.com/detail/9n0dx20hk701?hl=en-US&gl=US).
4
4
It is a modern tool that incorporates the power of multiple already known command-line applications like `Windows PowerShell`, `Linux shell`, and more...
If the output starts with `WSL version: 2.x.x.x`, you are ready to use **WSL2** and can proceed to [install AlmaLinux9](installation.md).
26
+
If the output starts with `WSL version: 2.x.x.x`, you are ready to use **WSL2** and can proceed to [install AlmaLinux 9](installation.md).
27
27
28
28
## Install WSL2
29
29
@@ -55,4 +55,4 @@ To test, run again the following command:
55
55
wsl -v
56
56
```
57
57
58
-
This time the output should display `WSL version: 2.x.x.x`, which means that your system is ready for using **WSL2** and you can proceed to [install AlmaLinux9](installation.md).
58
+
This time the output should display `WSL version: 2.x.x.x`, which means that your system is ready for using **WSL2** and you can proceed to [install AlmaLinux 9](installation.md).
This process will ask for your AlmaLinux10 password, iterate over the list of configured `virtualhosts` and output a short summary with the results.
23
+
This process will ask for your **AlmaLinux 9** password, iterate over the list of configured `virtualhosts` and output a short summary with the results.
24
24
Your virtualhost should be accessible and ready to use.
25
25
26
26
You will install your project under the `html` directory of your project, for example `/var/www/example.localhost/html`.
@@ -31,7 +31,7 @@ You will install your project under the `html` directory of your project, for ex
31
31
32
32
## Good to know
33
33
34
-
* To run your installed projects, you need to start AlmaLinux9 first.
34
+
* To run your installed projects, you need to start **AlmaLinux 9** first.
35
35
* If you work with virtualhosts, your projects are created under `/var/www/`.
36
36
* You can still run PHP scripts under the default Apache project directory, located at `/var/www/html/`.
37
37
* If you encounter write permission issues, see [this guide](https://docs.dotkernel.org/development/v1/faq/#how-do-i-fix-common-permission-issues).
Copy file name to clipboardExpand all lines: docs/book/v2/setup/installation.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# Install AlmaLinux10
1
+
# AlmaLinux 10 Installation
2
2
3
3
Before proceeding with the installation, we need to make sure that no other WSL2 distribution (aka: _distro_) is running.
4
4
This is important because this installation will fail if required ports are already in use by another distro.
@@ -19,21 +19,21 @@ If there is no other distro installed, you will see the below output (an empty l
19
19
NAME STATE VERSION
20
20
```
21
21
22
-
In this case, you can jump to the [installation](#install-almalinux10-1) section.
22
+
In this case, you can jump to the [installation](#install-almalinux-10) section.
23
23
24
24
If you have other distros installed, the output could look similar to the below:
25
25
26
26
```text
27
27
NAME STATE VERSION
28
-
* AlmaLinux-8 Stopped 2
28
+
AlmaLinux-8 Stopped 2
29
29
* AlmaLinux-9 Running 2
30
30
```
31
31
32
32
Make sure that the **STATE** column reads **Stopped** for all distros.
33
-
If any of them reads **Running**, you must stop if first by executing `wsl -t <distro-name>`, for example: `wsl -t AlmaLinux-9`.
34
-
Once you have stopped all distros, you can continue to the [installation](#install-almalinux10-1) section.
33
+
If any of them reads **Running**, you must stop if first by executing `wsl -t <distro-name>` after replacing `<distro-name>` with the name of the distro you want to stop.
34
+
Once you have stopped all distros, you can continue to the [installation](#install-almalinux-10) section.
35
35
36
-
## Install AlmaLinux10
36
+
## Install AlmaLinux 10
37
37
38
38
List the available Linux distros by executing:
39
39
@@ -82,7 +82,7 @@ A distribution with the supplied name already exists. Use --name to choose a dif
Install the AlmaLinux10 distro by executing the below command:
85
+
Install the **AlmaLinux 10** distro by executing the below command:
86
86
87
87
```shell
88
88
wsl --install -d AlmaLinux-10
@@ -101,7 +101,7 @@ Enter new UNIX username:
101
101
```
102
102
103
103
As per the last line, the installation process now prompts you to enter a username.
104
-
This is the username you will use inside AlmaLinux10, and it can be any alphanumeric string (for example `dotkernel`):
104
+
This is the username you will use inside **AlmaLinux 10**, and it can be any alphanumeric string (for example `dotkernel`):
105
105
106
106
Next, you are prompted to change the password associated with your chosen username (you will not see what you are typing, that's a security measure in Linux regarding passwords):
107
107
@@ -122,5 +122,5 @@ Finally, you should see the following message:
0 commit comments