100%
30.01.2024
Rubén Llorente ...
8, 9
Debian
11, 12
Ubuntu
20.04, 22.04
FreeBSD
13.x
OpenBSD
7.3
I recommend the downloadable installer, but I will skip
61%
02.06.2020
Rubén Llorente ... shell (SSH). The primary function of BBSs, however, has not changed.
The original Citadel was written in 1981 and has a convoluted story [2]. The implementation discussed in this article, technically
61%
25.09.2023
Rubén Llorente ... is nothing but Linux firmware designed for router duty. Its main drawback is that, unlike common Linux distributions, it is not redistributable because it comes with proprietary features [2]. Additionally
61%
01.06.2024
Rubén Llorente ... _host
02 known_hosts_file: /home/sake/.ssh/known_hosts2
03
04 # Every server is labeled with the "devuan" tag
05 servers:
06 horse:
07 user: root
08 host: horse.operationalsecurity.es
09 tags
61%
03.02.2022
Rubén Llorente ... encryption, hard disk encryption, and SSH access. Whether this is true, and whether a Nitrokey is worth the cost, is what I intend to determine in this article.
I am reviewing Nitrokey Storage 2, the most
61%
04.12.2024
Rubén Llorente ... from a reputable source [9], because both OpenBSD's HTTP daemon and reverse proxy are extremely simple to set up.
2. Load your cloud-init configuration into your host provider, which should have
38%
02.02.2021
5221548db 58 seconds ago 5.67MB
80dc7d447a48 About a minute ago 167MB
alpine 3.9 78a2ce922f86 5 months ago 5.55MB
The command you really
35%
11.05.2021
, 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);
gFlops = 2*N*N*N / (elapsedTime * 1e+9);
disp(sprintf("N = %4d
35%
09.08.2015
.
Figure 1: Sed syntax structure.
To put multiple commands on one line use the -e option:
sed -e 'command1' -e 'command2' ... -e 'commandN' ....
Or, you can add these commands from a script file
35%
30.11.2020
):
11
12 s = 0.0
13 s += h * f(a)
14 for i in range(1, n):
15 s += 2.0 * h * f(a + i*h)
16 # end for
17 s += h * f(b)
18 return (s/2.)
19 # end def
20
21
22 # Main section
23 comm = MPI