Searched +full:apt +full:- +full:get (Results 1 – 11 of 11) sorted by relevance
3 # SPDX-License-Identifier: Apache-2.06 # .github/workflows/docker-image.yaml file if doing multiple per day12 ARG CLH_SRC_DIR="/cloud-hypervisor"23 # DL3015 ignored cause not installing openvswitch-switch-dpdk recommended packages breaks ovs_dpdk …25 RUN apt-get update \26 && apt-get -yq upgrade \27 && apt-get install --no-install-recommends -yq \28 build-essential \34 musl-tools \35 libssl-dev \[all …]
4 group: ${{ github.workflow }}-${{ github.ref }}5 cancel-in-progress: true10 runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-latest' || 'garm-jammy-16' }}12 - name: Code checkout16 fetch-depth: 017 - name: Install Docker20 sudo apt-get update21 sudo apt-get -y install ca-certificates curl gnupg22 …curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyring…23 sudo chmod a+r /usr/share/keyrings/docker-archive-keyring.gpg[all …]
1 name: Cloud Hypervisor Tests (x86-64)4 group: ${{ github.workflow }}-${{ github.ref }}5 cancel-in-progress: true9 timeout-minutes: 6011 fail-fast: false13 runner: ['garm-jammy', "garm-jammy-amd"]15 name: Tests (x86-64)16 …runs-on: ${{ github.event_name == 'pull_request' && !(matrix.runner == 'garm-jammy' && matrix.libc…18 - name: Code checkout19 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…[all …]
5 - '**/Cargo.toml'10 runs-on: ubuntu-latest12 - name: Code checkout14 - name: Install Rust toolchain15 uses: dtolnay/rust-toolchain@stable16 - name: Install build dependencies17 run: sudo apt-get update && sudo apt-get -yqq install build-essential libssl-dev18 - name: Install taplo19 run: cargo install taplo-cli --locked20 - name: Check formatting[all …]
5 ## Building UEFI Firmware for x86-649 Please note that nasm-2.15 is required for the build to succeed.14 sudo apt-get update15 sudo apt-get install uuid-dev nasm iasl build-essential python3-distutils git20 git submodule update --init26 make -C ./BaseTools36 $ sudo apt-get update37 $ sudo apt-get install uuid-dev nasm iasl build-essential python3-distutils git38 $ git clone --depth 1 https://github.com/tianocore/edk2.git -b master40 $ git submodule update --init[all …]
8 - riscv64 servers (recommended) or development boards equipped with the AIA13 We create a folder to build and run Cloud Hypervisor at `$HOME/cloud-hypervisor`16 export CLOUDH=$HOME/cloud-hypervisor28 curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh30 sudo apt-get update31 sudo apt-get install git build-essential m4 bison flex uuid-dev qemu-utils38 git clone https://github.com/cloud-hypervisor/cloud-hypervisor.git39 cd cloud-hypervisor50 wget https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-riscv64.img51 qemu-img convert -p -f qcow2 -O raw jammy-server-cloudimg-riscv64.img jammy-server-cloudimg-riscv64…[all …]
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-hypervisor29 $ sudo apt-get update30 $ sudo apt install git build-essential m4 bison flex uuid-dev qemu-utils musl-tools[all …]
7 - [TDX Homepage](https://www.intel.com/content/www/us/en/developer/tools/trust-domain-extensions/ov…10 - [KVM TDX tree](https://github.com/intel/tdx/tree/kvm): the required13 - [Guest TDX tree](https://github.com/intel/tdx/tree/guest): the Linux16 - [EDK2 project](https://github.com/tianocore/edk2): the TDVF firmware18 - [Confidential Containers project](https://github.com/confidential-containers/td-shim):21 - [TDX Linux](https://github.com/intel/tdx-linux): a collection of tools30 The host environment can also be setup with the [TDX Linux](https://github.com/intel/tdx-linux).35 … TDX VM with direct kernel boot using [TDshim](https://github.com/confidential-containers/td-shim).36 …m Linux kernel for the guest can be built with the [TDX Linux](https://github.com/intel/tdx-linux).46 sudo apt-get update[all …]
1 # How to test Vhost-user net with OpenVSwitch/DPDK3 The purpose of this document is to illustrate how to test vhost-user-net4 in cloud-hypervisor with OVS/DPDK as the backend. This document was10 …date the communication between two virtual machine, connecting them to vhost-user ports respective…12 … +----+----------+ +-------------+-----------+-------------+ +----------+----+14 … | |vhost-user|----------| vhost-user | ovs | vhost-user |----------|vhost-user| |17 … | +----------+ +-------------+-----------+-------------+ +----------+ |21 …+--+---------------------------------------------------------------------------------------------+…23 …| +---------------------------------------------------------------------------------------------+…27 …+-------------------------------------------------------------------------------------------------…[all …]
4 set -ex6 #VFIO_CUSTOM_IMAGE="-vfio"8 mkdir -p custom-image9 pushd custom-image || exit10 wget -N https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img11 export IMAGE_NAME_BASE=jammy-server-cloudimg-amd6412 qemu-img convert -p -f qcow2 -O raw $IMAGE_NAME_BASE.img $IMAGE_NAME_BASE.raw13 if [ -n "$VFIO_CUSTOM_IMAGE" ]; then14 qemu-img resize -f raw "$IMAGE_NAME_BASE.raw" 5G15 sudo sgdisk -e "$IMAGE_NAME_BASE.raw"[all …]
2 set -x4 …apt install -y libncurses-dev gawk flex bison openssl libssl-dev dkms libelf-dev libudev-dev libpc…5 sudo sed -i -- 's/# deb-src/deb-src/g' /etc/apt/sources.list6 sudo apt update7 apt-get source linux-image-unsigned-"$(uname -r)"8 pushd linux-azure*/drivers/vdpa/vdpa_sim/ || exit9 # REUSE-IgnoreStart11 # SPDX-License-Identifier: GPL-2.012 obj-m += vdpa_sim.o13 obj-m += vdpa_sim_net.o[all …]