@@ -48,31 +48,31 @@ The table below describes each package flavor and their characteristics:
48
48
``` sh
49
49
# Debian-based distributions
50
50
arch=$( dpkg --print-architecture)
51
- curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot_3.1.0 -1_${arch} .deb
52
- curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot+caps_3.1.0 -1_${arch} .deb # optional
51
+ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot_3.1.1 -1_${arch} .deb
52
+ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot+caps_3.1.1 -1_${arch} .deb # optional
53
53
sudo apt install -y ./* .deb
54
54
55
55
# RHEL-based distributions
56
56
arch=$( uname -m)
57
57
sudo yum install -y epel-release # required on some distributions
58
- sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot-3.1.0 -1.el7.${arch} .rpm
59
- sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot+caps-3.1.0 -1.el7.${arch} .rpm # optional
58
+ sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot-3.1.1 -1.el7.${arch} .rpm
59
+ sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot+caps-3.1.1 -1.el7.${arch} .rpm # optional
60
60
```
61
61
62
62
#### Hardened flavor
63
63
64
64
``` sh
65
65
# Debian-based distributions
66
66
arch=$( dpkg --print-architecture)
67
- curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot-hardened_3.1.0 -1_${arch} .deb
68
- curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot-hardened+caps_3.1.0 -1_${arch} .deb # optional
67
+ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot-hardened_3.1.1 -1_${arch} .deb
68
+ curl -fSsL -O https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot-hardened+caps_3.1.1 -1_${arch} .deb # optional
69
69
sudo apt install -y ./* .deb
70
70
71
71
# RHEL-based distributions
72
72
arch=$( uname -m)
73
73
sudo yum install -y epel-release # required on some distributions
74
- sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot-hardened-3.1.0 -1.el7.${arch} .rpm
75
- sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.0 /enroot-hardened+caps-3.1.0 -1.el7.${arch} .rpm # optional
74
+ sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot-hardened-3.1.1 -1.el7.${arch} .rpm
75
+ sudo yum install -y https://github.com/NVIDIA/enroot/releases/download/v3.1.1 /enroot-hardened+caps-3.1.1 -1.el7.${arch} .rpm # optional
76
76
```
77
77
78
78
## From source
0 commit comments