10%
07.10.2014
Sheepdog Server in Action
# ps -ef|egrep '([c]orosyn|[s]heep)'
root 491 1 0 13:04 ? 00:00:30 corosync
root 581 1 0 1:13 PM ? 00:00:03 sheep -p 7000 /var
10%
17.01.2023
yum install ohpc-slurm-server
Last metadata expiration check: 0:22:28 ago on Sun 04 Dec 2022 08:29:36 AM EST.
Dependencies
10%
04.04.2023
$ sudo yum install ohpc-slurm-server
Last metadata expiration check: 0:22:28 ago on Sun 04 Dec 2022 08:29:36 AM EST.
Dependencies resolved
10%
10.09.2012
to logfiles, and it’s pretty simple to use:
[laytonjb@test1 ~]$ logger "This is a test"
...
[root@test1 ~]# tail -n 2 /var/log/messages
Aug 22 15:54:47 test1 avahi-daemon[1398]: Invalid query packet.
Aug 22 17:00
10%
28.11.2022
/s, 133M issued at 133M/s, 81.6M total
0B repaired, 163.06% done, no estimated completion time
scan: resilvered (draid1:3d:5c:1s-0) 20.2M in 00:00:00 with 0 errors on Mon Oct 24 17:11:22 2022
10%
02.08.2021
-4096B, (W) 4096B-4096B, (T) 4096B-4096B, ioengine=libaio, iodepth=32
fio-3.16
Starting 1 process
Jobs: 1 (f=1): [w(1)][100.0%][w=1733KiB/s][w=433 IOPS][eta 00m:00s]
test: (groupid=0, jobs=1): err= 0: pid
10%
05.02.2019
| revenue |
18 +---+------+---------+
19 | 1 | 2016 | 100.00 |
20 | 2 | 2016 | 0.00 |
21 | 3 | 2016 | 999.99 |
22 | 1 | 2017 | 500.00 |
23 | 2 | 2017 | 0.00 |
24 | 3 | 2017 | 100.00 |
25 | 1 | 2018
10%
04.11.2011
-server 192.168.1.2;
filename "/pxelinux.0";
host node01 {
hardware ethernet 00:11:22:33:44:a0;
fixed-address 192.168.1.101;
}
host node01-bmc {
hardware ethernet 00:11:22:33:44:8d;
fixed-address 192
10%
16.10.2012
to the screen (STDOUT; line 15).
Listing 1: SSH Script
01 #!/usr/bin/php
02
03
04 $ssh = ssh2_connect('192.168.1.85', 22);
05 ssh2_auth_password($ssh, 'khess', 'password');
06 $stream = ssh2_exec
10%
02.06.2020
= sol.copy()
10
11 for j in range(0,ny-1):
12 sol[0,j] = 10.0
13 sol[nx-1,j] = 1.0
14 # end for
15
16 for i in range(0,nx-1):
17 sol[i,0] = 0.0
18 sol[i,ny-1] = 0.0
19 # end for
20
21 # Iterate
22