15%
15.08.2016
. Running the binary on a single four-core node produces the following output:
> mpirun -np 4 -hostfile ./hostfile ./hello
node 1 : Hello world
node 2 : Hello world
node 3 : Hello world
node 0 : Hello world
15%
28.11.2023
follows the SSH format and structure:
Host Ubuntu-SRE_Penguin
User penguin
HostName 127.0.0.1
Port 3092
IdentityFile "/Users/penguin/.ssh/ubuntu-sre-id_ed25519"
The file path separators
15%
28.11.2023
import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello, World!'
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)
To dockerize this application, you would
15%
06.08.2013
.fetch(msgid, '(UID)')
043 match = REUID.match(data[0])
044 msguid = match.group('uid')
045 logging.debug("Found UID %s" % ( msguid ))
046 result = imap.uid('COPY', msguid, targetfolder)
047
15%
07.07.2021
TaskProlog script that will print a batch job's
# job ID and node list to the job's stdout
#
if [ X"$SLURM_STEP_ID" = "X" -a X"$SLURM_PROCID" = "X"0 ]
then
echo "print =========================================="
echo
15%
10.11.2021
of compression on the command line, as well:
$ 7z a -m0=lzma -mx=9 files.7z file.data
This command specifies the lzma
compression method and compression level 9
(maximum).
Because 7z
has many options
15%
05.12.2014
[<-] 220 mx.google.com ESMTP t2fjm4427fd213ply.2523 - gsmtp
[->] EHLO smtp.box.tld
[<-] 250 SMTPUTF8
[->] STARTTLS
[<-] 220 2.0.0 Ready to start TLS
[->] EHLO smtp.box.tld
[<-] 250 SMTPUTF8
[->] AUTH LOGIN
15%
30.11.2020
kopano-server-packages
# exit
Listing 2
Community Kopano on Ubuntu 18.04
$ wget https://download.kopano.io/community/core%3A/core-10.0.6.349.8669778-Ubuntu_18.04-amd64.tar.gz
$ tar xfz
15%
05.12.2019
for individual MIB values, all of which later end up in the snmp
table:
[[inputs.snmp.field]]
name = "hostname"
oid = "RFC1213-MIB::sysName.0"
is_tag = true
[[inputs.snmp.field]]
name = "RAMFree"
oid = "1.3.6.1.4.1.2021.4.6.0
15%
18.02.2018
-bundler ruby-foreman ruby2.3-dev rake
Debian 8 and Ubuntu 14.04 only offer Ruby 2.1 and 2.0 in their repositories, so you need to build Ruby and the required helpers from the source code (Listing 2); however