15%
14.05.2013
a new user and log in to get a terminal:
net user cr0wn password /ADD
In this example, I have added the user cr0wn
to the windows account with the password password
. Something to consider when doing
15%
29.09.2020
capacity for the backup.
At the time of my tests, the current version was 1.0.6. For upcoming version 1.0.7, the developer announced stable support for backing up individual partitions. This feature
15%
22.05.2023
the CPU with floating-point arithmetic while exercising its caches and the system's memory:
stress-ng --matrix 0 -t 1m --tz --times
The zero count syntax requests one stressor to run on each CPU
15%
11.04.2016
; in Listing 3, the bridge device is then configured with its IP address and other parameters.
Listing 2
Network Configuration (1)
[Match]
Name=enp2s25
[Network]
Bridge=docker0
Listing 3
15%
07.06.2019
(-l) starts off with a continuously updating single line providing network traffic statistics for the monitored interface:
$ vnstat -l
Monitoring eth0... (press CTRL-C to stop)
rx: 108 kbit
15%
11.06.2014
at the command line:
$ sudo slappasswd -s secret
{SSHA}f0pv70XFFox5UqKc6A4Uy39NcxkqcJbc
The complete line returned will be needed later for the configuration file, so copy it to a temporary editor window
15%
13.06.2016
]
Name=docker0
[Network]
DNS=192.168.100.1
Address=192.168.100.42/24
Gateway=192.168.100.1
Listing 3
Network Configuration (2)
[Match]
Name=enp2s25
[Network]
Bridge=docker0
15%
28.11.2021
Compiler: Apple LLVM 12.0.5 (clang-1205.0.22.9) GCC 4.2.1 CLANG 12.0
Darwin : 20.4.0 : Darwin Kernel Version 20.4.0:
PageSize:16KB
Apple M1 8C8T
RAM size: 16384 MB, # CPU hardware threads: 8
RAM usage
15%
18.12.2013
_limit; counter++)
26 {
27 my_record.x = counter;
28 my_record.y = counter + 1;
29 my_record.z = counter + 2;
30 my_record.value = (float) counter * 10.0;
31 fwrite(&my_record, sizeof(struct rec), 1, ptr
15%
20.10.2016
writing code. Columns 1 to 5 could be used for statement labels such as the following:
...
SUM = 0.0
D0 100 I=1,10
SUM = SUM + REAL(I)
100 CONTINUE
...
Y = X1 + X2 + X3