29%
10.04.2015
through Webmin.
The Linux distribution is also very lightweight. The basic system starts at about 150MB and only includes the most important components for operating the environment.
Starting Out
29%
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
29%
13.02.2017
on the client and PowerShell v4 on the server.
Administration via a CSV File
In PowerShell remoting, a distinction is made between 1:1 and 1:n (fan-out) relationships. 1:1 remote management is implemented
29%
25.03.2021
).
Figure 1: The W3Techs survey lists very few installations of Hiawatha, but that doesn't begin to do justice to the server's capabilities. © W3Techs
The bottom line is that Hiawatha [1] very much
29%
20.03.2014
to, say, /dev/vtbd0 and /dev/vtnet0, which means adjusting the /etc/fstab file to match. Figure 3 shows the typical kernel boot messages.
Listing 1
Virtio in /boot/loader.conf
#Init Virt
29%
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
29%
15.04.2014
as an option and then generate the hash, for example, with sha1sum
for SHA-1:
echo -n "magazine" | sha1sum
This entry in the users
file,
ADMIN SHA-Password := "e3d5a52968cef277f476a78124d8e05f1d558953
29%
09.08.2015
of these archiving tools.
Table 1
Overview of the Test Candidates
Features
Benno MailArchiv
MailArchiva
Piler
Test version
2.1.0
4
1.1.0
Variant
29%
14.11.2013
"file1", Slot 0 successfully created.
Requesting to mount FileStorage ...
3001 OK mount requested. Device="FileStorage" (/var/lib/bareos/storage)
*
Listing 3
Status Display
*status
29%
20.05.2014
01 var http = require('http');
02 http.createServer(function (req, res) {
03 res.writeHead(200, {'Content-Type': 'text/plain'});
04 res.end('Hello from Node.js\n');
05 }).listen(3000, '127.0.0