12%
22.05.2023
Note that if you are seeing the following error when changing node roles,
$ sudo drbdadm secondary r0
0: State change failed: (-12) Device is held open by someone
Command 'drbdsetup-84 secondary 0
12%
06.10.2022
distributions based on RHEL 8, the migration process is fairly simple. The first step is to make sure you have enough space on your partitions: 250MB on /usr
, 1.5GB on /var
, and 50MB on /boot
. Failure
12%
09.01.2013
=/var/log/one/accounting.log
04
05 case "$1" in
06 "on"|"off")
07 mode=$1
08 shift
09 ;;
10 *)
11 echo "$0 error: wrong mode." >&2
12 exit 1
13 ;;
14 esac
15
16 if [ "$1
12%
01.02.2013
at the output of uptime
[1] on OS X:
13:03 up 2 days, 12:01, 2 users, load averages: 0.52 0.59 0.63
The uptime
command displays the load average in its common form, averaging the last one, five, and 15
12%
11.10.2016
Query themselves. A W3Techs [2] statistic even suggests that jQuery is used on two-thirds of all websites worldwide.
Dismantling
On June 9, 2016, the developers released jQuery version 3.0 [3]; an update followed
12%
09.04.2019
-length file problem" by Theodore Ts'o, March 12, 2009: http://thunk.org/tytso/blog/2009/03/12/delayed-allocation-and-the-zero-length-file-problem/
The Author
Federico Lucifredi http://@0xf2
12%
12.09.2013
=$dbh->prepare('select burncpu(?)');
12 $sth->execute((($ENV{QUERY_STRING}+0) || .5).'s');
13
14 while( my $row=$sth->fetchrow_arrayref ) {
15 print "@$row\n";
16 }
Workaround
The script is simple, but the attentive
12%
05.12.2016
of commands requires Make, GCC, and the developer packages for Glib (libglib2.0-dev on Ubuntu systems).
On Windows machines, Zmanda offers a ready-to-install Amanda client, which is free of charge
12%
04.08.2020
// (c) 2020 by Federico Lucifredi
04
05 #include
06 #include
07 #include
08 #include
09 #include
10 #include
11 #include
12
13
12%
25.09.2023
.getenv("REDIS_HOST", "localhost")
07 r = redis.Redis(host=redis_host, port=6379, decode_responses=True)
08
09 @app.route('/')
10 def hello():
11 count = r.incr('counter')
12 return f'Hello, you have visited {count} times.'
13