search:
News
Articles
Tech Tools
Subscribe
Archive
Whitepapers
Digisub
Write for Us!
Newsletter
Shop
DevOps
Cloud Computing
Virtualization
HPC
Linux
Windows
Security
Monitoring
Databases
all Topics...
Search
Login
Search
Refine your search
Sort order
Date
Score
Content type
Article (Print)
(293)
Article
(43)
Keywords
Creation time
Last day
Last week
Last month
Last three months
Last year
1
2
3
4
5
6
7
...
34
Next »
100%
Dynamic routing in Linux with Quagga
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
password 8 ZDF339a.20a3E 05 log file /var/log/quagga/zebra.log 06 service password-encryption 07 !
08
interface eth
0
09 multicast 10 ipv6 nd suppress-ra 11 !
12
interface eth1
13
ip address 10 ...
12
97%
Creating KVM machines with BoxGrinder and VMBuilder
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
"/home": 11 size: 1
12
"swap":
13
size:
0
.5 14 cpus: 1 15 memory: 1024 16 packages: 17 - @core 18 - @mysql 19 - acpid The only mandatory items are the name, the os ...
12
97%
The PHP FastCGI process manager, PHP-FPM
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
-load after 10 seconds"; 07 // Terminate request...
08
fastcgi_finish_request(); 09 // ... but still continue processing this: 10 create_preview(); 11 }
12
else show('preview.png');
13
14 //... 15 16 ...
12
96%
Using Expect scripts to automate tasks
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
set send_slow {1 .1} 06 proc send {ignore arg} { 07 sleep .1
08
exp_send -s -- $arg 09 } 10 } 11 set timeout -1
12
spawn $env(SHELL)
13
match_max 100000 ...
12
96%
Reading and understanding database execution plans
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
(dbms_xplan.display );<+>2<+> 10 11
12
-----------------------------------------------------3------4----
13
| Id | Operation | Name | Bytes | Cost | 14 ...
12
96%
Introduction to OpenMP programming
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
PRIVATE (id) 06 07 id = omp_get_thread_num()
08
write(*,*) 'Thread ',id,' Checking in' 09 10 IF (id ==
0
) THEN 11 WRITE(*,*) ' Number of threads in use is ',omp_get_num_threads()
12
ENDIF
13
14 ...
12
94%
How to configure and use jailed processes in FreeBSD
14.03.2013
Home
»
Archive
»
2013
»
Issue 13: IPv6...
»
to jail>; 10 j.hostname =
; 11 j.ip_number =
;
12
/* call system call */
13
i = jail(&j); 14 [...] 15 execv(
, ...); 16 [...] 17 exit(
0
); 18 ...
13
94%
A web application with MongoDB and Bottle
14.03.2013
Home
»
Archive
»
2013
»
Issue 13: IPv6...
»
>My little Bottle example 06 07
08
09
Hi World..here is my little survey!
10 11
12
What is your favorite club?
13
13
93%
Nagios alerts implemented via VoIP
14.03.2013
Home
»
Archive
»
2013
»
Issue 13: IPv6...
»
=/opt/pjsua.conf 06 SOUNDFILE=/tmp/alert.wav 07 TEXT2WAVE=/usr/bin/text2wave
08
DURATION=20 09 NUMBER=01234567890 10 MESSAGE="Monitoring Alert" 11
12
# Setting a lock file
13
# We can't make more than one call 14 ...
13
93%
Web applications with Flask
14.03.2013
Home
»
Archive
»
2013
»
Issue 13: IPv6...
»
rel="stylesheet" href="style.css" /> 05 {% endblock %} 06 07
08
09 {% for item in seq %} 10
{{ item }}
11 {% endfor %}
12
13
14