52%
12.05.2021
_await w_await aqu-sz rareq-sz wareq-sz svctm %util
sda 0.00 9.00 0.00 88.00 0.00 8.00 0.00 47.06 0.00 30.83 0.26 0.00 9.78 0.67 0.60
nvme0n1
52%
02.08.2021
.06 0.00 30.83 0.26 0.00 9.78 0.67 0.60
nvme0n1 2769.50 2682.00 29592.00 10723.25 241.00 0.00 8.01 0.00 0.11 0.02 0.01 10.68 4.00 0.14 77.60
sdb
52%
21.01.2020
on the NVMe drive and verify that the partition has been created:
$ sudo parted --script /dev/nvme0n1 mklabel gpt mkpart primary 1MB 100%
$ cat /proc/partitions | grep nvme
259 0 244198584 nvme0n1
52%
25.03.2020
mklabel gpt mkpart primary 1MB 100%
$ cat /proc/partitions | grep nvme
259 0 244198584 nvme0n1
259 2 244197376 nvme0n1p1
The next step is to create a RAID 5 volume to encompass all
52%
13.12.2022
/6): tftp-server-5.2-24.el8.x86_64.rpm 123 kB/s | 49 kB 00:00
(4/6): dhcp-server-4.3.6-47.el8.x86_64.rpm 3.9 MB/s | 529 kB 00:00
(5/6): bind
51%
07.11.2023
’ll present a quick example of using lvcreate
to create a simple RAID 1 with two devices,
# lvcreate --type raid1 -m 1 -L 500G -n lv_raid1 vg0
where the command options are:
--type raid1
: the raid
51%
03.12.2015
containers.
First Container
After a successful installation, you can create the first container with a simple command:
lxc-create -t ubuntu -n ubuntu_test
Don't forget to obtain root privileges
51%
07.10.2014
276 MB 2.5 GB 2014-03-10 19:49 982a3c 2
# dog vdi tree
ntestvm1.img---[2014-02-05 15:04]---[2014-03-01 11:42]---[2014-03-10 19:48]---(you are here)
#
# qemu-img snapshot -l sheepdog:192
51%
25.09.2023
hosts [9]. A more apt comparison is found in Listing 2, with the results posted by a Raspberry Pi 400 [10], which is essentially a Raspberry Pi 4 (Broadcom BCM2711 Cortex-A72, ARM v8 quad-core running
51%
02.08.2021
SGEMM
for N = [2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192]
A = single( rand(N,N) );
B = single( rand(N,N) );
start = clock();
C = A*B;
elapsedTime = etime(clock(), start