Go to documentation repository
Page History
...
- Display the list of available disks using the command:
Code Block language shell lsblk
- Create a directory for mounting:
Code Block language shell sudo mkdir -p /mnt/mydisk
- Mount the selected disk in the created directory:
Code Block language shell sudo mount /dev/sda4 /mnt/mydisk
- Assign directory permissions to the ngp user:
Code Block language shell sudo chown -R ngp:ngp /mnt/mydisk
Note title Attention! If the user and the ngp group are absent on the hostmachine, you must run the following command to create them:
Code Block language shell for g in ngp disk dialout audio video render detector-pack-users; do getent group "$g" >/dev/null || sudo groupadd --system "$g"; done && sudo useradd --system --gid ngp --groups disk,dialout,audio,video,render,detector-pack-users --no-create-home --shell /usr/sbin/nologin ngp - Run the Docker image with the mounted disk:
In this particular example, the /dev/sda4 disk is mounted.Code Block language shell docker run -it -v /mnt/mydisk:/dev/sda4 axxon-one
Info title Note For further launches, to start the Docker container, use the command:
Code Block language shell docker start <container_id>
You don't need to specify the mounting parameter again, as it is saved in the container configuration.
- Create the remote archive in Axxon One, specifying the /dev/sda4 path (see Creating a remote archive).
...
Overview
Content Tools