1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-04-27 12:25:03 +02:00

fix Ubuntu OpenSSL package name in README and update docs to reflect changes

Signed-off-by: l0rem1psum <iswenxuan@gmail.com>
This commit is contained in:
l0rem1psum 2023-05-24 16:36:15 +08:00
parent 30a1e0961e
commit 830e4af0c5
3 changed files with 34 additions and 33 deletions

View File

@ -146,27 +146,27 @@ For other platforms, please use the [Vagrantfile](#setting-up-vagrant) that we h
### Debian, Ubuntu and related distributions ### Debian, Ubuntu and related distributions
```console ```console
$ sudo apt-get install \ $ sudo apt-get install \
pkg-config \ pkg-config \
libsystemd-dev \ libsystemd-dev \
libdbus-glib-1-dev \ libdbus-glib-1-dev \
build-essential \ build-essential \
libelf-dev \ libelf-dev \
libseccomp-dev \ libseccomp-dev \
libclang-dev \ libclang-dev \
libssl-devel libssl-dev
``` ```
### Fedora, Centos, RHEL and related distributions ### Fedora, CentOS, RHEL and related distributions
```console ```console
$ sudo dnf install \ $ sudo dnf install \
pkg-config \ pkg-config \
systemd-devel \ systemd-devel \
dbus-devel \ dbus-devel \
elfutils-libelf-devel \ elfutils-libelf-devel \
libseccomp-devel \ libseccomp-devel \
clang-devel \ clang-devel \
openssl-devel openssl-devel
``` ```

View File

@ -14,7 +14,7 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: <<-SHELL config.vm.provision "shell", inline: <<-SHELL
set -e -u -o pipefail set -e -u -o pipefail
yum update -y yum update -y
yum install -y git gcc docker systemd-devel dbus-devel libseccomp-devel yum install -y git gcc docker systemd-devel dbus-devel libseccomp-devel wget openssl-devel
grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0" grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0"
service docker start service docker start
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
@ -23,4 +23,3 @@ Vagrant.configure("2") do |config|
config.ssh.username = 'root' config.ssh.username = 'root'
config.ssh.insert_key = 'true' config.ssh.insert_key = 'true'
end end

View File

@ -17,26 +17,28 @@ To compile and run, Youki itself depends on some underlying libraries being inst
#### Debian, Ubuntu and related distributions #### Debian, Ubuntu and related distributions
```console ```console
$ sudo apt-get install \ $ sudo apt-get install \
pkg-config \ pkg-config \
libsystemd-dev \ libsystemd-dev \
libdbus-glib-1-dev \ libdbus-glib-1-dev \
build-essential \ build-essential \
libelf-dev \ libelf-dev \
libseccomp-dev \ libseccomp-dev \
libclang-dev libclang-dev \
libssl-dev
``` ```
#### Fedora, Centos, RHEL and related distributions #### Fedora, CentOS, RHEL and related distributions
```console ```console
$ sudo dnf install \ $ sudo dnf install \
pkg-config \ pkg-config \
systemd-devel \ systemd-devel \
dbus-devel \ dbus-devel \
elfutils-libelf-devel \ elfutils-libelf-devel \
libseccomp-devel \ libseccomp-devel \
clang-devel clang-devel \
openssl-devel
``` ```
--- ---