- Klick auf
Neue JiffyBox erstellen
- Distribution ist egal (wird später überschrieben)
- Kennwort ist auch egal (wird ja auch überschrieben)
- Warten bis die JiffyBox erstellt ist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
worker_processes 1; | |
error_log logs/error.log; | |
events { | |
worker_connections 1024; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <signal.h> | |
#include <fcntl.h> | |
#include <errno.h> | |
#include <poll.h> | |
#include <unistd.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <sys/time.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* compile with: | |
on linux: gcc -g stack_traces.c | |
on OS X: gcc -g -fno-pie stack_traces.c | |
on windows: gcc -g stack_traces.c -limagehlp | |
*/ | |
#include <signal.h> | |
#include <stdio.h> | |
#include <assert.h> |
- Setup SoftwareRAID for the CoreOS root partition without data-loss.
- Only for ext4!
- The Trick is to use the right volume label and fs-types :)
- We assume CoreOS is on
/dev/sdaX
and the second RAID Device is/dev/sdb
- Drawback: only
/
gets mirrored, Node goes down when sda fails
- Boot into any recovery system like Grml
- If not already done: install CoreOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 49834b7afd0fe31660108271ef7657a34caa6a6d Mon Sep 17 00:00:00 2001 | |
From: "Alfred E. Heggestad" <[email protected]> | |
Date: Sat, 7 Oct 2017 15:49:44 +0200 | |
Subject: [PATCH] main: keep fd handlers in list | |
Experimental code in order to try to solve | |
sockets for Windows. On windows the "int fd" is actually | |
of type "SOCKET fd" and the range goes from 0 to very large. | |
ref #61 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* compile with: | |
on linux: gcc -g stack_traces.c | |
on OS X: gcc -g -fno-pie stack_traces.c | |
on windows: gcc -g stack_traces.c -limagehlp | |
*/ | |
#include <signal.h> | |
#include <stdio.h> | |
#include <assert.h> |