Skip to content

Commit 419333f

Browse files
committed
Fix formatting
1 parent 5726665 commit 419333f

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

docs/gettingstarted/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@ title: Getting started
55

66
# Getting started
77

8-
Welcome to the first steps of the analysis framework documentation!
8+
Welcome to the first steps of the analysis framework documentation!
99

1010
Let's start with some basics.
1111

12-
### Are you a registered ALICE member?
12+
## Are you a registered ALICE member?
1313
Use [this link](https://alisw.cern.ch/check) to check if your CERN account is connected to ALICE. In case you see a message saying that you are not an ALICE member, you need to fix the problem: many services are not accessible if you are not considered an ALICE member.
1414

1515
Drop an email to the ALICE Secretariat, they will help you: <[email protected]>
1616

17-
### Do you have access to lxplus?
17+
## Do you have access to lxplus?
1818
When you have a CERN account you can typically login to lxplus via SSH:
19-
```
19+
```bash
2020
2121
```
2222
If, in spite of providing the correct password, you are not allowed to connect, go on your [CERN account management page](https://cern.ch/account). You need to **Sign in** and to select **Resources and Services** like in the picture below:
2323

2424

2525
<div align="center">
26-
<img src="../images/ResAndServices.png" width="35%">
26+
<img alt="resources and services" src="../images/ResAndServices.png" width="35%">
2727
</div>
2828

2929
Then click the big **List Services** button and check if the following services are enabled for you:
3030

3131
<div align="center">
32-
<img src="../images/ListOfServices.png" width="35%">
32+
<img alt="screenshot of services" src="../images/ListOfServices.png" width="35%">
3333
</div>
3434

3535
You need:

docs/gettingstarted/certificate.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,28 +54,28 @@ This operation needs to be performed only once. With Firefox, click on [this lin
5454
Keep at hand the `myCertificate.p12` file you have previously downloaded. You need to convert it into two files (a "certificate" and a "key") in order to use the ALICE Grid services from the command line.
5555

5656
You will export your certificates to the following directory:
57-
```
57+
```bash
5858
~/.globus
5959
```
6060

6161
Now export the certificate with the following command (you will be prompted for the export password you have selected when you have generated it):
62-
```
62+
```bash
6363
openssl pkcs12 -clcerts -nokeys -in ~/Downloads/myCertificate.p12 -out ~/.globus/usercert.pem
6464
```
6565

6666
The result will be a file called `usercert.pem` in your `~/.globus` directory. Note that your input file ending with `.p12` may have a different name and may be stored in a different location.
6767

6868
Time to export the **private key**:
69-
```
69+
```bash
7070
openssl pkcs12 -nocerts -in ~/Downloads/myCertificate.p12 -out ~/.globus/userkey.pem
7171
chmod 0400 ~/.globus/userkey.pem
7272
```
7373
When it says:
74-
```
74+
```bash
7575
Enter Import Password:
7676
```
7777
you should provide it with the export password you have entered when you generated it. The next question will be:
78-
```
78+
```bash
7979
Enter PEM pass phrase:
8080
```
8181
You should provide it with another password that will be used to protect the private key. You can use the same password as before if you want, but please **do not use your CERN password** (yes, we are stressing this point a **lot**). This question will be asked twice for confirmation.
@@ -85,7 +85,7 @@ You should provide it with another password that will be used to protect the pri
8585
Your certificate will be available to the ALICE Grid command line client.
8686

8787
Enter your ALICE environment and create a "temporary access token":
88-
```
88+
```bash
8989
alienv enter O2Physics/latest
9090
alien-token-destroy
9191
alien-token-init YOUR_ALIEN_USERNAME

docs/gettingstarted/installing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ enabled=1
5656
gpgcheck=0
5757
EOF
5858
yum update -y
59-
yum install -y alice-o2-full-deps
59+
yum install -y alice-o2-full-deps
6060
yum update -y
6161
yum install -y alibuild
6262
```
@@ -162,7 +162,7 @@ sudo apt install -y curl libcurl4-gnutls-dev build-essential gfortran libmysqlcl
162162
AliBuild, our build tool, is installed as a standard ubuntu package, provided you enable the alisw PPA repository. This is done with:
163163

164164
```bash
165-
sudo add-apt-repository ppa:alisw/ppa
165+
sudo add-apt-repository ppa:alisw/ppa
166166
sudo apt update
167167
sudo apt install python3-alibuild
168168
```

0 commit comments

Comments
 (0)