File tree Expand file tree Collapse file tree
learning-paths/servers-and-cloud-computing/ran Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ Add the ACfL `apt` package repository to your system. These instructions apply f
152152After that, the ACfL Ubuntu package repository is now ready to use. Run the commands below to install the dependencies needed.
153153
154154
155- ``` bash
155+ ``` console
156156sudo apt update
157157sudo apt install -y wget gnupg gpg environment-modules python3 libc6-dev
158158wget -qO - https://developer.arm.com/packages/ACfL%3AUbuntu-22/jammy/Release.key | sudo tee /etc/apt/trusted.gpg.d/developer-arm-com.asc
Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ exec -l $SHELL
7070
7171Verify OCI CLI is installed using the ` --version ` option:
7272
73- ``` bash { target="ubuntu:latest", env_source="$HOME/ .bashrc" }
74- cat $HOME /.bashrc && oci --version
73+ ``` bash { target="ubuntu:latest", env_source=".bashrc" }
74+ oci --version
7575```
7676
7777Configure OCI CLI using the ` setup config ` command:
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ The source code is available from the [GitLab repository](https://gitlab.arm.com
3838Use ` git ` to download the code:
3939
4040``` bash
41- cd $HOME
4241git clone https://git.gitlab.arm.com/networking/ral.git
4342```
4443
@@ -74,7 +73,7 @@ Use the features available on your hardware when you run `cmake` in the next sec
7473
7574If your platform supports only Neon (` asimd ` ), set up the build with:
7675
77- ``` bash { cwd="$HOME/ral/build" }
76+ ``` bash
7877cmake -DBUILD_TESTING=On -DARMRAL_ARCH=NEON ..
7978```
8079
@@ -102,15 +101,15 @@ cmake -DBUILD_TESTING=On -DARMRAL_ARCH=SVE -DCMAKE_INSTALL_PREFIX=/home/ubuntu/a
102101
103102Build the library using ` make ` :
104103
105- ``` bash { cwd="$HOME/ral/build" }
104+ ``` bash
106105make
107106```
108107
109108## Install the library
110109
111110Install the library:
112111
113- ``` bash { cwd="$HOME/ral/build" }
112+ ``` bash
114113sudo make install
115114```
116115
You can’t perform that action at this time.
0 commit comments