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)
(279)
Article
(37)
Keywords
Creation time
Last day
Last week
Last month
Last three months
Last year
1
2
3
4
5
6
7
...
32
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 eth0 09 multicast 10 ipv
6
nd suppress-ra 11 !
12
interface eth1
13
ip address 10 ...
12
98%
Creating KVM machines with BoxGrinder and VMBuilder
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
- sl plugin for Scientific Linux 09 10 Available platform plugins: 11 - vmware plugin for VMware
12
- ec2 plugin for Amazon Elastic Compute Cloud (Amazon EC2)
13
- virtualbox plugin ...
12
98%
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
97%
Reading and understanding database execution plans
31.10.2025
Home
»
Archive
»
2012
»
Issue 12: NAS S...
»
s 04 4> JOIN employees e ON (s.employee_id = e.employee_id) 05 5> WHERE s.sale_date > trunc(sysdate) - INTERVAL '
6
' MONTH 06
6
> AND s.eur_value >= 10; 07 Explained.
08
09 SQL> select * from table ...
12
97%
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
97%
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%
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
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%
Profiling application resource usage
14.03.2013
Home
»
Archive
»
2013
»
Issue 13: IPv6...
»
The profiling tools of interest for profiling applications within Valgrind are cachegrind [
12
] and callgrind [
13
]. The cachegrind tool primarily simulates how the application interacts with a system's cache ...
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