From 6cb11649b53fe97cbddda0c3fc882caf33af0393 Mon Sep 17 00:00:00 2001 From: Timur Aitov Date: Mon, 23 Oct 2023 13:50:08 +0300 Subject: [PATCH] TEST --- AUTHORS | 7 ++++--- README.md | 2 +- demo/qemu/README.md | 8 ++++---- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/AUTHORS b/AUTHORS index f1989818..60a82fa3 100644 --- a/AUTHORS +++ b/AUTHORS @@ -5,12 +5,12 @@ one corporation may be contributing. The revision history in source control give The project was started by Timur Aitov , first commit was made on 2018-05-29. -It's hard to imagine YANET project without these people even if they didn't contribute to the code much: - Alexey Esin - Alexander Leonov +It's hard to imagine YANET project without this person: Dmitry Ershov List of most significant contributors: + Alexey Esin + Alexander Leonov Aleksei Belov Boris Litvinenko Andrey Elsukov @@ -21,6 +21,7 @@ List of most significant contributors: Eugene Mamchits Kirill Smorodinnikov Sergey Kacheev + Stepan Balayan Aleksandr Kostrikov Vladislav Krivolapov Vyacheslav Saushev diff --git a/README.md b/README.md index a26bb46b..932559c1 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ docker pull yanetplatform/builder Add alias for run commands on docker: ``` -alias yanet-builder="docker run --rm -it -v /run/yanet:/run/yanet -v $PWD:/project yanetplatform/builder" +alias yanet-builder="docker run --rm -it -v /run/yanet:/run/yanet -v \$PWD:/project yanetplatform/builder" ``` Once setup `build_autotest` directory: diff --git a/demo/qemu/README.md b/demo/qemu/README.md index 1cec8cbc..27037dc6 100644 --- a/demo/qemu/README.md +++ b/demo/qemu/README.md @@ -29,7 +29,7 @@ docker pull linkacloud/d2vm:v0.2.0-1934915 Add alias for run commands on docker: ``` -alias d2vm="docker run --rm -i -t --privileged -v /var/run/docker.sock:/var/run/docker.sock -v $PWD:/build -w /build linkacloud/d2vm:v0.2.0-1934915" +alias d2vm="docker run --rm -i -t --privileged -v /var/run/docker.sock:/var/run/docker.sock -v \$PWD:/build -w /build linkacloud/d2vm:v0.2.0-1934915" ``` Make build directory: @@ -72,7 +72,7 @@ d2vm build -p root -f demo/qemu/yanet/Dockerfile -o build_vm/yanet.qcow2 --force ## Run virtual machines Run `Host A` with one interface: ``` -sudo qemu-system-x86_64 -name "Host A" \ +sudo qemu-system-x86_64 -name "Host A" -serial mon:stdio -display none \ -enable-kvm -cpu host -m 256 \ -drive file=build_vm/host_a.qcow2,format=qcow2,if=virtio \ -nic tap,ifname=tap_host_a,model=virtio-net-pci,mac=00:00:00:00:11:02 @@ -80,7 +80,7 @@ sudo qemu-system-x86_64 -name "Host A" \ Run `Host B` with one interface: ``` -sudo qemu-system-x86_64 -name "Host B" \ +sudo qemu-system-x86_64 -name "Host B" -serial mon:stdio -display none \ -enable-kvm -cpu host -m 256 \ -drive file=build_vm/host_b.qcow2,format=qcow2,if=virtio \ -nic tap,ifname=tap_host_b,model=virtio-net-pci,mac=00:00:00:00:22:02 @@ -88,7 +88,7 @@ sudo qemu-system-x86_64 -name "Host B" \ Run `YANET` with two interfaces with multiqueue enabled: ``` -sudo qemu-system-x86_64 -name "YANET" \ +sudo qemu-system-x86_64 -name "YANET" -serial mon:stdio -display none \ -enable-kvm -cpu host -m 4096 -smp 4 \ -drive file=build_vm/yanet.qcow2,format=qcow2,if=virtio \ -device virtio-net-pci,netdev=dev0,mac=00:00:00:00:33:01,id=net0,vectors=17,mq=on -netdev tap,ifname=tap_yanet_ki0,id=dev0,vhost=on,queues=8 \