Lines Matching +full:apt +full:- +full:get

1 - [Building Cloud Hypervisor](#building-cloud-hypervisor)
2 - [Preparation](#preparation)
3 - [Install prerequisites](#install-prerequisites)
4 - [Clone and build](#clone-and-build)
5 - [Containerized builds and tests](#containerized-builds-and-tests)
9 We recommend users use the pre-built binaries that are mentioned in the README.md file in the root …
13 We create a folder to build and run `cloud-hypervisor` at `$HOME/cloud-hypervisor`
16 $ export CLOUDH=$HOME/cloud-hypervisor
29 $ sudo apt-get update
30 $ sudo apt install git build-essential m4 bison flex uuid-dev qemu-utils musl-tools
32 $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
34 $ rustup target add x86_64-unknown-linux-musl # x86-64
35 $ rustup target add aarch64-unknown-linux-musl # AArch64
44 $ git clone https://github.com/cloud-hypervisor/cloud-hypervisor.git
45 $ cd cloud-hypervisor
46 $ cargo build --release
48 # We need to give the cloud-hypervisor binary the NET_ADMIN capabilities for it to set TAP interfac…
49 $ sudo setcap cap_net_admin+ep ./target/release/cloud-hypervisor
52 $ cargo build --release --target=x86_64-unknown-linux-musl --all # x86-64
53 $ cargo build --release --target=aarch64-unknown-linux-musl --all # AArch64
57 This will build a `cloud-hypervisor` binary under
58 `$CLOUDH/cloud-hypervisor/target/release/cloud-hypervisor`.
71 $ cd cloud-hypervisor
72 $ ./scripts/dev_cli.sh build --release
82 $ ./scripts/dev_cli.sh tests --unit
85 Run the `./scripts/dev_cli.sh --help` command to view all the supported