93%
30.11.2025
. The smallest configuration "Essentials Kit" is for three hosts (without HA) with two CPUs each and 192GB of VRAM: ~US$ 500 dollars plus US$ 65 or 300 dollars annual support. Prices range up to US$ 22
93%
30.11.2025
use_regex = 0
22 load_monitor = rup
23 scheduler = rr
24 protocol = tcp
25 timeout = 6
26 reentry = 15
27 quiesce_server = 1
28 server webserver1 {
29 address
93%
30.11.2025
full backup with several incremental backups every day. The shortest permissible interval between two incremental backups is 15 minutes. In an ideal case, I would lose a maximum of a quarter of an hour
93%
30.11.2025
dh_group modp1024;
09 }
10 generate_policy off;
11 }
12
13 sainfo address 192.168.2.0/24 any address 172.16.0.0/16 any {
14 pfs_group modp1024;
15 encryption_algorithm aes256;
16
92%
30.11.2025
rhcsNodename: iscsi1
15 rhcsCluster-id: 46516
16 cn: cman
17 objectclass: rhcsCman
18
19 dn: cn=clusternodes,name=cluster,dc=tuxgeek,dc=de
20 cn: clusternodes
21 objectclass: nsContainer
22
23 dn: cn
92%
30.11.2025
/forced-commands-only/yes/' > sshd_config\r"
12 expect "#"
13 send "/etc/init.d/sshd restart\r"
14 expect "#"
15 send "exit\r"
16 expect "$"
17 send "logout\r"
18 close
All of the expect commands look for shell prompts
92%
26.01.2025
the required cluster in just a few minutes. The following example assumes that all commands are run on Ubuntu 22.04, but most of the commands will probably work on other distributions with just a few minor
92%
26.03.2025
will be used in three months' time. Users will make it as easy as possible for themselves, because they just want to work; what they definitely don't want is to be forced to type a complex password every 15
92%
30.11.2025
*instanz,char __user *user, size_t count, loff_t *offset )
14 {
15 unsigned long not_copied, to_copy;
16
17 to_copy = min( count, strlen(hello_world)+1 );
18 not
92%
30.11.2025
total = summary.values.inject(0) { |sum, i| sum += i }
12 puts "Found #{total} instances in the following states:"
13 summary.keys.sort.each do |s|
14 printf "%20s %d\n", s, summary[s]
15 end
16 puts