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
.execute("echo 'Im in a secure environment!'", cee.languages.BASH)
76
+
.then((result) => {
77
+
console.log(result);
78
+
})
79
+
.catch((error) => {
80
+
console.error(error);
81
+
});
79
82
```
80
83
81
84
In order to use useLXC, follow the instructions below to setup LXC.
@@ -86,23 +89,9 @@ In order to use useLXC, follow the instructions below to setup LXC.
86
89
87
90
LXC are Linux containers, that run the code in a different and secure environment. To use them, you need to install them first. LXC are only available on Linux-Systems.
88
91
89
-
### Installation
92
+
In order to use this package with LXC, you need to install an unprivileged container.
90
93
91
-
```sh
92
-
$ sudo apt-get install lxc
93
-
```
94
-
95
-
Create the Linux-Container
96
-
97
-
```sh
98
-
$ lxc-create -t download -n cee
99
-
```
100
-
101
-
Start the created container
102
-
103
-
```sh
104
-
$ lxc-start -n cee -d
105
-
```
94
+
**Follow these instructions: [linuxcontainers.org](https://linuxcontainers.org/lxc/getting-started/#creating-unprivileged-containers-as-a-user)**
0 commit comments