26%
30.11.2025
need to specify the command with the desired sub-command, for which you can again get help. Typing
set address ?
takes you to a detailed syntax description (as shown in Figure 3). Thankfully
26%
20.06.2022
Installing the Ops Agent
:> agents_to_install.csv && echo '"projects/playground-gs/zones/europe-west3-c/instances/test-vm1","[{""type"":""ops-agent""}]"' > agents_to_install.csv && curl -sSO https://dl
26%
14.10.2019
is a simple broadcast (bcast
) of a Python dictionary:
from mpi4py import MPI
comm = MPI.COMM_WORLD
rank = comm.Get_rank()
if rank == 0:
data = {'key1' : [7, 2.72, 2+3j], 'key2' : ( 'abc', 'xyz')}
else
26%
30.11.2025
, libraries, and standards that aimed to give developers the ability to produce complete web applications simply in Lua. One of the results was Xavante [3], a web server written in Lua. The Kepler project has
26%
09.01.2013
in a loop.
Thus, the application can be switched to Capsicum capability mode with just two additional lines of program code:
if (cap_enter() < 0)
error("cap_enter: %s",pcap_strerror(errno));
The following
26%
24.10.2011
).
Figure 1: The researcher’s equations covered CO2 emissions during the entire product lifecycle: manufacturing, operation of a 120-watt machine eight hours a day for six years, standby (14 watts, 16 hours
26%
21.04.2016
simple: You execute it like any other MPI binary:
> mpirun -np 4 -hostfile ./hostfile hello_mpi.sapp
node 0 : Hello world
node 1 : Hello world
node 3 : Hello world
node
26%
07.10.2025
=casper/vmlinuz,initrd=casper/initrd --extra-args 'console=ttyS0,115200n8'
This command is intended as an example. It assumes that a network bridge named br0 is set up on the system and that an ISO image of Ubuntu 24.04 Server is located
26%
22.01.2013
The sudo
tools runs commands with a different user’s account. For apt-get upgrade
, this would be the all-powerful root
. Which users are allowed to use sudo with what programs is defined in the /etc
26%
02.08.2021
of terminal user interface (TUI) libraries, including Ncurses [3] and Newt [4]. Jeff Layton has previously graced these pages with a tutorial on how TUI tools are developed today [5], and yours truly followed