100%
30.01.2024
Rubén Llorente ... support the most recent OpenBSD release, either.
Table 1
Supported Platforms
Platform
Versions
CentOS Stream
8, 9
Rocky Linux
8, 9
Alma Linux
99%
02.06.2020
Rubén Llorente ... the EasyInstall script.
Once the setup is complete, the following command opens the ports Citadel uses:
# ufw allow 25,80,110,119,143,443,465,563,587,993,995,5222/tcp
The following commands install
99%
25.09.2023
Rubén Llorente ... ].
Figure 5: A VPN allows a smartphone with GrapheneOS (a privacy- and security-focused mobile OS) to connect directly to any machine (Test) located on a firewalled network over the Internet.
IPsec
99%
01.06.2024
Rubén Llorente ... # A single task is defined, which by default will
20 # run only against "devuan" hosts.
21 tasks:
22 upgradeall:
23 desc: Upgrade all packages
24 target:
25 tags: [devuan]
26 cmd: |
27
99%
03.02.2022
Rubén Llorente ... offers a whole range of models with different capabilities, with prices ranging from EUR29 to 109 (VAT not included; or about $25--$88). They also produce a line of Qubes OS-certified laptops and Nextcloud
99%
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
55%
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
54%
02.08.2021
with a different size (Listing 3). The output from the second command verifies that the RAM drives were created.
Listing 3
Adding RAM Drive of 32MB
$ sudo rapiddisk -a 32
rapiddisk 7.2.0
Copyright
54%
12.11.2020
f(x):
return x*x
# end def
def trapezoidal(a, b, n, h):
s = 0.0
s += h * f(a)
for i in range(1, n):
s += 2.0 * h * f(a + i*h)
# end for
s += h * f(b)
return (s/2.)
# end def
# Main
52%
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