added some configure examples for customization
added a simple TODO-finder cbox-buid.sh: changed some names of functions updated doc pages
This commit is contained in:
parent
e1a3f4c224
commit
bd49326856
12 changed files with 93 additions and 226 deletions
|
@ -12,8 +12,6 @@
|
|||
# development actions:
|
||||
# chroot - run first tests in a chroot environment
|
||||
# qemu - run the qemu emulation
|
||||
# devel - enable developer features like sshd, writable templates and
|
||||
# the test-suite
|
||||
# upload - copy your local files to tmpfs on a running cryptobox
|
||||
# diff - compare tmpfs-files on a running cryptobox with the original
|
||||
# merge - apply the diff to the local copy
|
||||
|
@ -80,9 +78,6 @@ SSH_CONFIG_FILE=$(get_config_file ssh_config)
|
|||
# extract the hostname of the cryptobox from the ssh_config file
|
||||
SSH_HOST=$(grep "^Host " "$SSH_CONFIG_FILE" | head -1 | sed 's/^Host *\(.*\)$/\1/')
|
||||
|
||||
# the script within the box, that does the development 'diff'
|
||||
DEVEL_FEATURES_SCRIPT="/usr/lib/cryptobox/devel-features.sh"
|
||||
|
||||
|
||||
############# include local configuration ##############
|
||||
|
||||
|
@ -173,7 +168,7 @@ function fetch_revision()
|
|||
}
|
||||
|
||||
|
||||
function upload2devel()
|
||||
function upload2box()
|
||||
# upload local files to a development cryptobox
|
||||
# this is necessary to use an "old" development cd with
|
||||
# new code - this affects only the web-interface and the
|
||||
|
@ -194,25 +189,25 @@ function upload2devel()
|
|||
echo "Copying local files to the cryptobox ... "
|
||||
if scp -F "$SSH_CONFIG_FILE" -rpq "$TMP_DIR/." cryptobox:/tmp/mirror
|
||||
then echo "Set the base for future diffs to current state ..."
|
||||
ssh -F "$SSH_CONFIG_FILE" "$SSH_HOST" "$DEVEL_FEATURES_SCRIPT" set_diff_base
|
||||
ssh -F "$SSH_CONFIG_FILE" "$SSH_HOST" "$DEV_FEATURES_SCRIPT" set_diff_base
|
||||
else echo 'ERROR: copying failed!'
|
||||
fi
|
||||
rm -rf "$TMP_DIR"
|
||||
}
|
||||
|
||||
|
||||
function merge_from_devel()
|
||||
function merge_from_box()
|
||||
# merge a diff from a running development cryptobox into
|
||||
# your local copy
|
||||
{
|
||||
echo "Check for collisions ... (dry-run)"
|
||||
if devel_diff | patch --dry-run -p1 -d "$TEMPLATE_DIR"
|
||||
if box_diff | patch --dry-run -p1 -d "$TEMPLATE_DIR"
|
||||
then echo
|
||||
echo "Applying diff ..."
|
||||
devel_diff | patch -p1 -d "$TEMPLATE_DIR"
|
||||
box_diff | patch -p1 -d "$TEMPLATE_DIR"
|
||||
echo
|
||||
echo "Set the base for future diffs to current state ..."
|
||||
ssh -F "$SSH_CONFIG_FILE" "$SSH_HOST" "$DEVEL_FEATURES_SCRIPT" set_diff_base
|
||||
ssh -F "$SSH_CONFIG_FILE" "$SSH_HOST" "$DEV_FEATURES_SCRIPT" set_diff_base
|
||||
else echo "Merging will fail - do it manually!"
|
||||
fi
|
||||
}
|
||||
|
@ -220,9 +215,9 @@ function merge_from_devel()
|
|||
|
||||
# get the diff of a running cryptobox system between its current state
|
||||
# and its original content
|
||||
function devel_diff()
|
||||
function box_diff()
|
||||
{
|
||||
ssh -F "$SSH_CONFIG_FILE" "$SSH_HOST" "$DEVEL_FEATURES_SCRIPT" diff
|
||||
ssh -F "$SSH_CONFIG_FILE" "$SSH_HOST" "$DEV_FEATURES_SCRIPT" diff
|
||||
}
|
||||
|
||||
function blanknburn_cdrw()
|
||||
|
@ -250,16 +245,16 @@ while [ $# -gt 0 ]
|
|||
;;
|
||||
diff )
|
||||
# get a diff from a running development cryptobox
|
||||
devel_diff
|
||||
box_diff
|
||||
;;
|
||||
merge )
|
||||
merge_from_devel
|
||||
merge_from_box
|
||||
;;
|
||||
harden )
|
||||
chroot "$IMAGE_DIR" "$CHROOT_START" /usr/lib/cryptobox/configure-cryptobox.sh secure
|
||||
;;
|
||||
upload )
|
||||
upload2devel
|
||||
upload2box
|
||||
;;
|
||||
chroot )
|
||||
if [ ! -x "$IMAGE_DIR/$CHROOT_START" ]
|
||||
|
|
|
@ -1,34 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CryptoBox</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" media="screen" href="/cryptobox.css" type="text/css" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="main">
|
||||
<div id="head">
|
||||
<h1>Die CryptoBox</h1>
|
||||
<h2>und zwar umsonst!</h2>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<div id="menu">
|
||||
|
||||
<a href="/cryptobox?action=init_ask" title="Ersteinrichtung">Initialisierung</a>
|
||||
<a href="/cryptobox?action=show_log" title="Ereignis-Protokoll">Protokoll</a>
|
||||
<a href="/doc/CryptoBox.html" title="Nutzer-Handbuch">Hilfe</a>
|
||||
<a href="/cryptobox?action=shutdown_ask" title="Herunterfahren">Herunterfahren</a>
|
||||
|
||||
</div>
|
||||
<div id="words">
|
||||
|
||||
|
||||
<a id="top"></a>
|
||||
<p><a href="CryptoBoxEn.html">-> english overview <-</a> <ol>
|
||||
<p><a href="/cryptobox?action=doc&page=CryptoBoxEn">-> english overview <-</a> <ol>
|
||||
|
||||
<li>
|
||||
<a href="#head-97e3ed911f9a14c537e247a2719dc86b73056dde">Überblick</a>
|
||||
|
@ -103,14 +75,14 @@
|
|||
|
||||
<h2 id="head-97e3ed911f9a14c537e247a2719dc86b73056dde">Überblick</h2>
|
||||
|
||||
<p>Die CryptoBox ist eine <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Live-cd"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Live-CD</a> mit der sich jeder alte Rechner in Sekundenschnelle in einen verschlüsselnden Server umwandeln lässt. Damit kannst du sensible Daten speichern, ohne dass du etwas über <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Kryptografie"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Kryptografie</a> wissen musst. </p>
|
||||
<p>Die CryptoBox ist eine <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Live-cd"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Live-CD</a> mit der sich jeder alte Rechner in Sekundenschnelle in einen verschlüsselnden Server umwandeln lässt. Damit kannst du sensible Daten speichern, ohne dass du etwas über <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Kryptografie"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Kryptografie</a> wissen musst. </p>
|
||||
|
||||
<h3 id="head-b44206765ef44c91cbfd0ba23b33b43a192eeb8d">Was kann die CryptoBox?</h3>
|
||||
|
||||
<ul>
|
||||
<li><p> Ein vollständiger <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Samba_%28Software%29"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Samba</a>-Dateiserver (für alle freien Betriebssysteme, sowie Windows und Mac OS) bietet Zugriff auf deine Daten. </p>
|
||||
<li><p> Ein vollständiger <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Samba_%28Software%29"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Samba</a>-Dateiserver (für alle freien Betriebssysteme, sowie Windows und Mac OS) bietet Zugriff auf deine Daten. </p>
|
||||
</li>
|
||||
<li><p> Deine Daten werden mit <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Advanced_Encryption_Standard"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">AES</a> verschlüsselt (256 Bit Schlüssellänge). </p>
|
||||
<li><p> Deine Daten werden mit <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Advanced_Encryption_Standard"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">AES</a> verschlüsselt (256 Bit Schlüssellänge). </p>
|
||||
</li>
|
||||
<li><p> Die Web-Oberfläche bietet dir kinderleichten Zugriff auf alle Funktionen der CryptoBox. </p>
|
||||
<ul>
|
||||
|
@ -118,7 +90,7 @@
|
|||
</li>
|
||||
<li><p> Konfiguration der Netzwerk- und Sicherheitseinstellungen </p>
|
||||
</li>
|
||||
<li><p> Abgesehen von deinem <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Webbrowser"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Browser</a> brauchst du keine weiteren Programme </p>
|
||||
<li><p> Abgesehen von deinem <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Webbrowser"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Browser</a> brauchst du keine weiteren Programme </p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
|
@ -172,7 +144,7 @@
|
|||
<p>unterstützte Clients</p>
|
||||
</td>
|
||||
<td>
|
||||
<p><a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Liste_der_Betriebssysteme"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">*nix; *bsd; Windows; Mac OS</a></p>
|
||||
<p><a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Liste_der_Betriebssysteme"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">*nix; *bsd; Windows; Mac OS</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -180,7 +152,7 @@
|
|||
<p>interner Fileserver</p>
|
||||
</td>
|
||||
<td>
|
||||
<p><a class="external" href="http://samba.org"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> samba</a> (Netzwerkfreigaben)</p>
|
||||
<p><a class="external" href="http://samba.org"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> samba</a> (Netzwerkfreigaben)</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -188,7 +160,7 @@
|
|||
<p>Benutzerschnittstelle</p>
|
||||
</td>
|
||||
<td>
|
||||
<p>per Browser bedienbar (<a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Perl"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Perl</a>-Webinterface via https)</p>
|
||||
<p>per Browser bedienbar (<a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Perl"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">Perl</a>-Webinterface via https)</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -196,12 +168,12 @@
|
|||
<p>Verschlüsselung</p>
|
||||
</td>
|
||||
<td>
|
||||
<p><a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Advanced_Encryption_Standard"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">AES</a> via device-mapper</p>
|
||||
<p><a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/Advanced_Encryption_Standard"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">AES</a> via device-mapper</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<p>Das <a href="CryptoBoxKonzept.html">CryptoBoxKonzept</a> beschreibt die technischen Feinheiten etwas näher. </p>
|
||||
<p>Das <a href="/cryptobox?action=doc&page=CryptoBoxKonzept">CryptoBoxKonzept</a> beschreibt die technischen Feinheiten etwas näher. </p>
|
||||
|
||||
<h2 id="head-4a62d30abaeb5cd5d2e4545aabd13e81a819504f">Nutzung</h2>
|
||||
|
||||
|
@ -209,7 +181,7 @@
|
|||
<h3 id="head-52db644c60a52bcaed2c809cb51e1255bec6eb6e">Einrichtung</h3>
|
||||
|
||||
<ol type="1">
|
||||
<li><p>Lade dir ein <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/ISO-Image"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">iso-Image</a> aus dem <a class="external" href="https://systemausfall.org/toolforge/cryptobox/download"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Download-Bereich</a> herunter. <em>[Die Entwicklung der CryptoBox befindet sich noch in einer frühen Phase. Momentan testen wir die ersten lauffähigen, funktionstüchtigen Versionen. In wenigen Tagen wird das erste Release verfügbar sein.]</em> </p>
|
||||
<li><p>Lade dir ein <a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/ISO-Image"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">iso-Image</a> aus dem <a class="external" href="https://systemausfall.org/toolforge/cryptobox/download"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Download-Bereich</a> herunter. <em>[Die Entwicklung der CryptoBox befindet sich noch in einer frühen Phase. Momentan testen wir die ersten lauffähigen, funktionstüchtigen Versionen. In wenigen Tagen wird das erste Release verfügbar sein.]</em> </p>
|
||||
</li>
|
||||
<li><p>Kopiere dieses Image auf eine CD (RW). </p>
|
||||
</li>
|
||||
|
@ -242,7 +214,7 @@
|
|||
|
||||
<p>Du hast einen Verbesserungsvorschlag oder findest gar einen Fehler: </p>
|
||||
<ul>
|
||||
<li><p> Schreib's in unsere <a class="external" href="https://systemausfall.org/trac/cryptobox"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Gedankensammelstelle</a> - wir beheben das Problem oder nehmen, bei Unklarheiten, Kontakt mit dir auf. </p>
|
||||
<li><p> Schreib's in unsere <a class="external" href="https://systemausfall.org/trac/cryptobox"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Gedankensammelstelle</a> - wir beheben das Problem oder nehmen, bei Unklarheiten, Kontakt mit dir auf. </p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
@ -262,9 +234,9 @@
|
|||
</li>
|
||||
<li><p> das System ist resistent gegenüber Schadsoftware (Viren, Würmer), da die CD nicht beschreibbar ist </p>
|
||||
</li>
|
||||
<li><p> die Übertragung des Passworts zur Aktivierung der Crypto-Daten erfolgt verschlüsselt (<a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/HTTPS"><img src="moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">HTTPS</a>) </p>
|
||||
<li><p> die Übertragung des Passworts zur Aktivierung der Crypto-Daten erfolgt verschlüsselt (<a class="interwiki" title="WikiPediaDe" href="http://de.wikipedia.org/wiki/HTTPS"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPediaDe]" height="16" width="16">HTTPS</a>) </p>
|
||||
</li>
|
||||
<li><p> basiert auf einer der stabilsten und sichersten Linux Distributionen (<a class="external" href="http://ww.debian.org"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a>) </p>
|
||||
<li><p> basiert auf einer der stabilsten und sichersten Linux Distributionen (<a class="external" href="http://ww.debian.org"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a>) </p>
|
||||
</li>
|
||||
<li><p> minimale Hardware-Anforderungen </p>
|
||||
</li>
|
||||
|
@ -286,7 +258,7 @@
|
|||
|
||||
<p>Eine CryptoBox-LiveCD wird in folgenden Schritten erstellt: </p>
|
||||
<ol type="1">
|
||||
<li><p>ein minimales <a class="external" href="http://www.debian.org"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a>-System erzeugen (mit <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=dfsbuild"><img src="moin-inter.png" alt="[DebianPackage]" height="16" width="16">dfsbuild</a>) </p>
|
||||
<li><p>ein minimales <a class="external" href="http://www.debian.org"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a>-System erzeugen (mit <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=dfsbuild"><img src="/cryptobox-img/moin-inter.png" alt="[DebianPackage]" height="16" width="16">dfsbuild</a>) </p>
|
||||
</li>
|
||||
<li><p>spezifische Anpassungen des Systems vornehmen </p>
|
||||
</li>
|
||||
|
@ -296,32 +268,32 @@
|
|||
</li>
|
||||
</ol>
|
||||
<p>Diese Schritte werden automatisiert durch ein Skript ausgeführt und können beliebig angepasst werden. </p>
|
||||
<p>Ausführlichere Infos gibt's unter <a href="CryptoBoxDev.html">CryptoBoxDev</a>. </p>
|
||||
<p>Ausführlichere Infos gibt's unter <a href="/cryptobox?action=doc&page=CryptoBoxDev">CryptoBoxDev</a>. </p>
|
||||
|
||||
<h3 id="head-ecfc074956b9f39a0fbfab314758db9cf39df4ce">Anforderungen</h3>
|
||||
|
||||
<ul>
|
||||
<li><p> ein <a class="external" href="http://www.debian.org"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a>-System (eine <em>chroot</em>-Umgebung genügt auch) </p>
|
||||
<li><p> ein <a class="external" href="http://www.debian.org"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a>-System (eine <em>chroot</em>-Umgebung genügt auch) </p>
|
||||
</li>
|
||||
<li><p> <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=qemu"><img src="moin-inter.png" alt="[DebianPackage]" height="16" width="16">qemu</a> zum Testen des erzeugten Systems in einer virtuellen Umgebung </p>
|
||||
<li><p> <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=qemu"><img src="/cryptobox-img/moin-inter.png" alt="[DebianPackage]" height="16" width="16">qemu</a> zum Testen des erzeugten Systems in einer virtuellen Umgebung </p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3 id="head-c90560cd155843d48d791e731b9b6c0ee852dc9d">Mitmachen</h3>
|
||||
|
||||
<p>Beteilige dich an der Entwicklung der CryptoBox und werde reich und schön! <img src="smile4.png" alt=";)" height="15" width="15"> <br>
|
||||
<p>Beteilige dich an der Entwicklung der CryptoBox und werde reich und schön! <img src="/cryptobox-img/smile4.png" alt=";)" height="15" width="15"> <br>
|
||||
Nee im Ernst, wir freuen uns über jeden partizipierenden Menschen. Du wirst in einem entspannten Team reichlich Erfahrungen sammeln, eine nützliche Sache voranbringen und - wer weiß - vielleicht macht dich das auch schön. Schreib eine Mail an <em>svn-cryptobox[at]lists.systemausfall.org</em> und hab Spaß. </p>
|
||||
|
||||
<h3 id="head-64a0a5e5f036e433b2a7101016e6e6af96f5a29d">Versionsverwaltung</h3>
|
||||
|
||||
<p>Wir verwenden <a class="external" href="http://subversion.tigris.org"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> subversion</a> zur Koordination der Arbeit an der CryptoBox. Der Lese-Zugang zum Repository ist öffentlich. </p>
|
||||
<p>Wir verwenden <a class="external" href="http://subversion.tigris.org"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> subversion</a> zur Koordination der Arbeit an der CryptoBox. Der Lese-Zugang zum Repository ist öffentlich. </p>
|
||||
<p>Das Repository ist über folgende Adressen erreichbar: </p>
|
||||
<dl>
|
||||
<dt>Kommandozeile</dt>
|
||||
<dd><p><a href="https://svn.systemausfall.org/svn/cryptobox"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> https://svn.systemausfall.org/svn/cryptobox</a> </p>
|
||||
<dd><p><a href="https://svn.systemausfall.org/svn/cryptobox"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> https://svn.systemausfall.org/svn/cryptobox</a> </p>
|
||||
</dd>
|
||||
<dt>Web-Interface</dt>
|
||||
<dd><p><a href="https://systemausfall.org/websvn/cryptobox"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> https://systemausfall.org/websvn/cryptobox</a> </p>
|
||||
<dd><p><a href="https://systemausfall.org/websvn/cryptobox"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> https://systemausfall.org/websvn/cryptobox</a> </p>
|
||||
</dd>
|
||||
</dl>
|
||||
|
||||
|
@ -347,9 +319,9 @@
|
|||
<h2 id="head-a3671f2dd22b53b402496f62c4f62c847220f2a1">Rechtliches</h2>
|
||||
|
||||
<ol type="1">
|
||||
<li><p>Alle Skripte unterliegen der <a class="external" href="http://www.fsf.org/licensing/licenses/gpl.html"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> GPL</a> - sie sind also quasi vollständig frei. </p>
|
||||
<li><p>Alle Skripte unterliegen der <a class="external" href="http://www.fsf.org/licensing/licenses/gpl.html"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> GPL</a> - sie sind also quasi vollständig frei. </p>
|
||||
</li>
|
||||
<li><p>Die Dokumentation unterliegt einer <em><a class="external" href="http://creativecommons.org/licenses/by-sa/2.5/"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Creative Commons</a></em>-Lizenz, damit wird die Möglichkeit der freien Verbreitung des gesammelten Wissens gewährleistet. </p>
|
||||
<li><p>Die Dokumentation unterliegt einer <em><a class="external" href="http://creativecommons.org/licenses/by-sa/2.5/"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Creative Commons</a></em>-Lizenz, damit wird die Möglichkeit der freien Verbreitung des gesammelten Wissens gewährleistet. </p>
|
||||
</li>
|
||||
<li><p>Wir übernehmen keinerlei Haftung für eventuelle Folgen, die durch die Nutzung einer CryptoBox entstehen könnten. </p>
|
||||
</li>
|
||||
|
@ -363,15 +335,3 @@
|
|||
|
||||
|
||||
|
||||
</div><!-- end of 'words' -->
|
||||
|
||||
<div id="footer">
|
||||
<a href="https://systemausfall.org/prj/cryptobox" title="Projekt-Seite">CryptoBox-Home</a> Die CryptoBox ist ein Projekt von <a href="https://systemausfall.org/senselab" title="systemausfall.org">sense.lab</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,31 +1,3 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CryptoBox</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" media="screen" href="/cryptobox.css" type="text/css" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="main">
|
||||
<div id="head">
|
||||
<h1>Die CryptoBox</h1>
|
||||
<h2>und zwar umsonst!</h2>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<div id="menu">
|
||||
|
||||
<a href="/cryptobox?action=init_ask" title="Ersteinrichtung">Initialisierung</a>
|
||||
<a href="/cryptobox?action=show_log" title="Ereignis-Protokoll">Protokoll</a>
|
||||
<a href="/doc/CryptoBox.html" title="Nutzer-Handbuch">Hilfe</a>
|
||||
<a href="/cryptobox?action=shutdown_ask" title="Herunterfahren">Herunterfahren</a>
|
||||
|
||||
</div>
|
||||
<div id="words">
|
||||
|
||||
|
||||
<a id="top"></a>
|
||||
<ol>
|
||||
|
@ -103,13 +75,13 @@
|
|||
|
||||
<h2 id="head-6eb518f032b739c4ddc4336b19cefd3fa16e20aa">Komponenten</h2>
|
||||
|
||||
<p>Eine <a href="CryptoBox.html">CryptoBox</a> CD wird in wenigen Schritten erstellt. Die Basisarbeit erledigt 'dfsbuild' und die genaue Konfiguration macht 'cbox-build'. </p>
|
||||
<p>Eine <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> CD wird in wenigen Schritten erstellt. Die Basisarbeit erledigt 'dfsbuild' und die genaue Konfiguration macht 'cbox-build'. </p>
|
||||
|
||||
<h3 id="head-734d8f8dd2dc75137657154aab53d33f64f891bd">dfsbuild</h3>
|
||||
|
||||
<p>Das Linux Grundsystem für die <a href="CryptoBox">CryptoBox</a> CD wird mit <a class="interwiki" title="DebianPackage" href=.html"http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=dfsbuild"><img src="moin-inter.png" alt="[DebianPackage]" height="16" width="16">dfsbuild</a> gebaut. Das ist ein Programm, welches eine <a class="external" href="http://www.debian.org"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a> Live-CD erzeugt.<br>
|
||||
<em>(Wir entwickeln die <a href="CryptoBox.html">CryptoBox</a> bisher auf Debian/Linux-Systemen. Prinzipiell dürfte es auch mit deiner Lieblingsdistro funktionieren, nur der anfängliche Einrichtungsaufwand wird dadurch größer.)</em> </p>
|
||||
<p>Für "dfsbuild" bietet sich <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=apt-cacher"><img src="moin-inter.png" alt="[DebianPackage]" height="16" width="16">apt-cacher</a> an. Damit brauchst du nicht für jeden Bau des Grundsystems alle Debian-Pakete erneut herunter laden. </p>
|
||||
<p>Das Linux Grundsystem für die <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> CD wird mit <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=dfsbuild"><img src="/cryptobox-img/moin-inter.png" alt="[DebianPackage]" height="16" width="16">dfsbuild</a> gebaut. Das ist ein Programm, welches eine <a class="external" href="http://www.debian.org"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Debian</a> Live-CD erzeugt.<br>
|
||||
<em>(Wir entwickeln die <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> bisher auf Debian/Linux-Systemen. Prinzipiell dürfte es auch mit deiner Lieblingsdistro funktionieren, nur der anfängliche Einrichtungsaufwand wird dadurch größer.)</em> </p>
|
||||
<p>Für "dfsbuild" bietet sich <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=apt-cacher"><img src="/cryptobox-img/moin-inter.png" alt="[DebianPackage]" height="16" width="16">apt-cacher</a> an. Damit brauchst du nicht für jeden Bau des Grundsystems alle Debian-Pakete erneut herunter laden. </p>
|
||||
<p>Installation: </p>
|
||||
<ul>
|
||||
<li><p> <tt>apt-get install dfsbuild apt-cacher</tt> </p>
|
||||
|
@ -117,17 +89,17 @@
|
|||
</ul>
|
||||
<p>Die <em>dfsbuild</em>-Dokumentation ist noch recht spärlich. Du kommst aber kaum in direkten Kontakt mit <em>dfsbuild</em>, da es durch 'cbox-build' aufgerufen wird. Die folgenden Links helfen dir vielleicht trotzdem weiter: </p>
|
||||
<ul>
|
||||
<li><p> <a class="external" href="http://www.debian-administration.org/articles/125"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Debian Administration: Building Debian CD-ROMS Part 1 - dfsbuild</a> </p>
|
||||
<li><p> <a class="external" href="http://www.debian-administration.org/articles/125"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Debian Administration: Building Debian CD-ROMS Part 1 - dfsbuild</a> </p>
|
||||
</li>
|
||||
<li><p> <a class="external" href="http://www.debian-administration.org/articles/149"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> Debian Administration: Getting in deep with dfsbuild</a> </p>
|
||||
<li><p> <a class="external" href="http://www.debian-administration.org/articles/149"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> Debian Administration: Getting in deep with dfsbuild</a> </p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3 id="head-693b97f1f140e361364dcc277c0afa779430f527">cbox-build</h3>
|
||||
|
||||
<p>Die wichtige Kleinarbeit, damit aus dem dfsbuild-System eine <a href="CryptoBox.html">CryptoBox</a> wird, erledigt <em>cbox-build.sh</em>.<br>
|
||||
Das Script und die bestehenden Konfigurationsdateien liegen im <a class="interwiki" title="SubVersion" href="/websvn/cryptobox"><img src="moin-inter.png" alt="[SubVersion]" height="16" width="16">cryptobox-Repository</a>. </p>
|
||||
<p>Mit diesem Script baust du deine eigene <a href="CryptoBox.html">CryptoBox</a>-CD. Hier ein verkürzter Überblick: </p>
|
||||
<p>Die wichtige Kleinarbeit, damit aus dem dfsbuild-System eine <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> wird, erledigt <em>cbox-build.sh</em>.<br>
|
||||
Das Script und die bestehenden Konfigurationsdateien liegen im <a class="interwiki" title="SubVersion" href="/websvn/cryptobox"><img src="/cryptobox-img/moin-inter.png" alt="[SubVersion]" height="16" width="16">cryptobox-Repository</a>. </p>
|
||||
<p>Mit diesem Script baust du deine eigene <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a>-CD. Hier ein verkürzter Überblick: </p>
|
||||
<div>
|
||||
<table>
|
||||
<tr>
|
||||
|
@ -205,7 +177,7 @@
|
|||
</table>
|
||||
</div>
|
||||
<p>Das kannst mehrere Aktionen nacheinander als Parameter angeben. </p>
|
||||
<p>Weitere Aktionen, die die Entwicklung erleichtern, werden unter <a href="CryptoBoxDevFeatures.html">CryptoBoxDevFeatures</a> beschrieben. </p>
|
||||
<p>Weitere Aktionen, die die Entwicklung erleichtern, werden unter <a href="/cryptobox?action=doc&page=CryptoBoxDevFeatures">CryptoBoxDevFeatures</a> beschrieben. </p>
|
||||
<p>Das fertige iso-Image findest du unter <em>_builddir/cd1/cryptobox.iso</em>. </p>
|
||||
|
||||
<h4 id="head-5850d37242fe07221892c0126989304825831e5c">Beispiele</h4>
|
||||
|
@ -225,11 +197,11 @@
|
|||
|
||||
<h3 id="head-b4a0271d176c624fda4d38f5c138aefe0a329bca">der CryptoBox-Kernel</h3>
|
||||
|
||||
<p>Der Kernel für die <a href="CryptoBox.html">CryptoBox</a> wird statisch kompiliert. Wenn du ihn selbst bauen/verändern willst, dann am einfachsten so: </p>
|
||||
<p>Der Kernel für die <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> wird statisch kompiliert. Wenn du ihn selbst bauen/verändern willst, dann am einfachsten so: </p>
|
||||
<ul>
|
||||
<li><p> apt-get install kernel-tree-2.6.8 </p>
|
||||
</li>
|
||||
<li><p> schnapp dir /boot/config-2.6.8 von einer gebauten <a href="CryptoBox.html">CryptoBox</a> CD und verändere sie nach deinen Wünschen </p>
|
||||
<li><p> schnapp dir /boot/config-2.6.8 von einer gebauten <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> CD und verändere sie nach deinen Wünschen </p>
|
||||
</li>
|
||||
<li><p> zum Erstellen des Debian-Pakets: <tt> make-kpkg --revision=1.dfs --rootcmd=fakeroot kernel_image</tt> </p>
|
||||
</li>
|
||||
|
@ -240,7 +212,7 @@
|
|||
<h3 id="head-d81befa59fe38bcf5ffae7c0c4c42141d74395eb">Verwendung des Subversion-Repositories</h3>
|
||||
|
||||
<p>Erstellung einer lokalen Arbeitskopie des Entwickler-Repositories: <tt>svn checkout https://svn.systemausfall.org/svn/cryptobox deincryptoboxverzeichnis</tt> </p>
|
||||
<p>Deine Änderungen an der <a href="CryptoBox.html">CryptoBox</a> klannst du per <tt>svn commit</tt> in unser Repository übertragen. Dazu musst du, aber vorher Schreibrechte erhalten (die wir gerne vergeben). <img src="smile.png" alt=":)" height="15" width="15"> </p>
|
||||
<p>Deine Änderungen an der <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> klannst du per <tt>svn commit</tt> in unser Repository übertragen. Dazu musst du, aber vorher Schreibrechte erhalten (die wir gerne vergeben). <img src="/cryptobox-img/smile.png" alt=":)" height="15" width="15"> </p>
|
||||
|
||||
<h2 id="head-488d495ca9bbbac0c903c2de823c13efa299cc43">Ablauf</h2>
|
||||
|
||||
|
@ -332,7 +304,7 @@
|
|||
<ul>
|
||||
<li><p> Du brauchst etwa 1GB Plattenplatz für den Bau einer Cryptobox. Das eigentliche CD-Image wird aber nur knapp 250MB groß. </p>
|
||||
</li>
|
||||
<li><p> Für <em>dfsbuild</em> bietet sich <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=apt-cacher"><img src="moin-inter.png" alt="[DebianPackage]" height="16" width="16">apt-cacher</a> an. Damit müssen die Debian-Pakete nicht bei jedem neuen <em>dfsbuild</em>-Vorgang erneut heruntergeladen werden. </p>
|
||||
<li><p> Für <em>dfsbuild</em> bietet sich <a class="interwiki" title="DebianPackage" href="http://packages.debian.org/cgi-bin/search_packages.pl?searchon=names&subword=1&version=all&release=all&keywords=apt-cacher"><img src="/cryptobox-img/moin-inter.png" alt="[DebianPackage]" height="16" width="16">apt-cacher</a> an. Damit müssen die Debian-Pakete nicht bei jedem neuen <em>dfsbuild</em>-Vorgang erneut heruntergeladen werden. </p>
|
||||
</li>
|
||||
<li><p> cbox-build muss für folgende Vorgänge mit root Rechten laufen: <tt>dfsbuild, config, chroot, revert</tt> </p>
|
||||
</li>
|
||||
|
@ -360,14 +332,14 @@ CONFIG_TUN=m</pre>
|
|||
<h3 id="head-032dea2c5aba735742a9e935ee55629bf2739194">Knoppix</h3>
|
||||
|
||||
<ul>
|
||||
<li><p> <a href="CryptoBoxKnoppixVerworfen.html">CryptoBoxKnoppixVerworfen</a> </p>
|
||||
<li><p> <a href="/cryptobox?action=doc&page=CryptoBoxKnoppixVerworfen">CryptoBoxKnoppixVerworfen</a> </p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3 id="head-0eec3ed15826633b2667c982fb486e988514faac">Morphix / IBuild</h3>
|
||||
|
||||
<ul>
|
||||
<li><p> <a href="CryptoBoxMorphixVerworfen.html">CryptoBoxMorphixVerworfen</a> </p>
|
||||
<li><p> <a href="/cryptobox?action=doc&page=CryptoBoxMorphixVerworfen">CryptoBoxMorphixVerworfen</a> </p>
|
||||
</li>
|
||||
</ul>
|
||||
<a id="bottom"></a>
|
||||
|
@ -379,15 +351,3 @@ CONFIG_TUN=m</pre>
|
|||
|
||||
|
||||
|
||||
</div><!-- end of 'words' -->
|
||||
|
||||
<div id="footer">
|
||||
<a href="https://systemausfall.org/prj/cryptobox" title="Projekt-Seite">CryptoBox-Home</a> Die CryptoBox ist ein Projekt von <a href="https://systemausfall.org/senselab" title="systemausfall.org">sense.lab</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,39 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CryptoBox</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" media="screen" href="/cryptobox.css" type="text/css" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="main">
|
||||
<div id="head">
|
||||
<h1>Die CryptoBox</h1>
|
||||
<h2>und zwar umsonst!</h2>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<div id="menu">
|
||||
|
||||
<a href="/cryptobox?action=init_ask" title="Ersteinrichtung">Initialisierung</a>
|
||||
<a href="/cryptobox?action=show_log" title="Ereignis-Protokoll">Protokoll</a>
|
||||
<a href="/doc/CryptoBox.html" title="Nutzer-Handbuch">Hilfe</a>
|
||||
<a href="/cryptobox?action=shutdown_ask" title="Herunterfahren">Herunterfahren</a>
|
||||
|
||||
</div>
|
||||
<div id="words">
|
||||
|
||||
|
||||
<a id="top"></a>
|
||||
<p><em>This is a first overview of the <a href="CryptoBox.html">CryptoBox</a> Live-CD. We apologize for publishing the documentation atm in german only. We started the <a href="CryptoBox.html">CryptoBox</a> project for a german speaking association. For now we're deeply into bringing this CD up and running, so we prefer coding than translating docs ;). Sorry!</em> </p>
|
||||
<p><em>This is a first overview of the <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> Live-CD. We apologize for publishing the documentation atm in german only. We started the <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> project for a german speaking association. For now we're deeply into bringing this CD up and running, so we prefer coding than translating docs ;). Sorry!</em> </p>
|
||||
<p><em>Feel free to start a translation in this wiki. Otherwise just be patient a few weeks. (it's 12th of july as i'm writing)</em> </p>
|
||||
|
||||
<h3 id="head-bcd3c71e6cd0adb01302f5903f235299682ae28a">Overview</h3>
|
||||
|
||||
<p>The <a href="CryptoBox.html">CryptoBox</a> is a Debian/Linux based live-cd. This CD boots up, starting a secure fileserver. Even non-technical users are able to store their data on its encrypted harddisk. There is no special knowledge about cryptgraphy or servers required at all. </p>
|
||||
<p>The <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> is a Debian/Linux based live-cd. This CD boots up, starting a secure fileserver. Even non-technical users are able to store their data on its encrypted harddisk. There is no special knowledge about cryptgraphy or servers required at all. </p>
|
||||
|
||||
<h3 id="head-06e39b97d2b48d950da32608efa367371bb0a9cc">Specs</h3>
|
||||
|
||||
|
@ -60,7 +32,7 @@
|
|||
<p>supported clients</p>
|
||||
</td>
|
||||
<td>
|
||||
<p><a class="interwiki" title="WikiPedia" href="http://en.wikipedia.org/wiki/Operating_System"><img src="moin-inter.png" alt="[WikiPedia]" height="16" width="16">*nix; *bsd; Windows; Mac OS</a></p>
|
||||
<p><a class="interwiki" title="WikiPedia" href="http://en.wikipedia.org/wiki/Operating_System"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPedia]" height="16" width="16">*nix; *bsd; Windows; Mac OS</a></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -68,7 +40,7 @@
|
|||
<p>internal fileserver</p>
|
||||
</td>
|
||||
<td>
|
||||
<p><a class="external" href="http://samba.org"><img src="moin-www.png" alt="[WWW]" height="11" width="11"> samba</a> (Networkshares)</p>
|
||||
<p><a class="external" href="http://samba.org"><img src="/cryptobox-img/moin-www.png" alt="[WWW]" height="11" width="11"> samba</a> (Networkshares)</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
@ -84,7 +56,7 @@
|
|||
<p>encryption</p>
|
||||
</td>
|
||||
<td>
|
||||
<p><a class="interwiki" title="WikiPedia" href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard"><img src="moin-inter.png" alt="[WikiPedia]" height="16" width="16">AES</a> via device-mapper</p>
|
||||
<p><a class="interwiki" title="WikiPedia" href="http://en.wikipedia.org/wiki/Advanced_Encryption_Standard"><img src="/cryptobox-img/moin-inter.png" alt="[WikiPedia]" height="16" width="16">AES</a> via device-mapper</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -92,11 +64,11 @@
|
|||
|
||||
<h3 id="head-8d738f62cb1a70005c64de686c424efe89f07ad2">Development</h3>
|
||||
|
||||
<p>Browse the source code in the <a class="interwiki" title="SubVersion" href="/websvn/cryptobox"><img src="moin-inter.png" alt="[SubVersion]" height="16" width="16">CryptoBox-websvn</a> </p>
|
||||
<p>Browse the source code in the <a class="interwiki" title="SubVersion" href="/websvn/cryptobox"><img src="/cryptobox-img/moin-inter.png" alt="[SubVersion]" height="16" width="16">CryptoBox-websvn</a> </p>
|
||||
|
||||
<h3 id="head-f5510e22bd4e832da55c40e1e95886a46fc05b7e">TODO</h3>
|
||||
|
||||
<p>Read more about the <a href="CryptoBox.html">CryptoBox</a> in german or try kind of a babelfish. </p>
|
||||
<p>Read more about the <a href="/cryptobox?action=doc&page=CryptoBox">CryptoBox</a> in german or try kind of a babelfish. </p>
|
||||
<a id="bottom"></a>
|
||||
|
||||
</div>
|
||||
|
@ -106,15 +78,3 @@
|
|||
|
||||
|
||||
|
||||
</div><!-- end of 'words' -->
|
||||
|
||||
<div id="footer">
|
||||
<a href="https://systemausfall.org/prj/cryptobox" title="Projekt-Seite">CryptoBox-Home</a> Die CryptoBox ist ein Projekt von <a href="https://systemausfall.org/senselab" title="systemausfall.org">sense.lab</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -1,31 +1,3 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CryptoBox</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" media="screen" href="/cryptobox.css" type="text/css" />
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="main">
|
||||
<div id="head">
|
||||
<h1>Die CryptoBox</h1>
|
||||
<h2>und zwar umsonst!</h2>
|
||||
</div>
|
||||
|
||||
<div id="content">
|
||||
<div id="menu">
|
||||
|
||||
<a href="/cryptobox?action=init_ask" title="Ersteinrichtung">Initialisierung</a>
|
||||
<a href="/cryptobox?action=show_log" title="Ereignis-Protokoll">Protokoll</a>
|
||||
<a href="/doc/CryptoBox.html" title="Nutzer-Handbuch">Hilfe</a>
|
||||
<a href="/cryptobox?action=shutdown_ask" title="Herunterfahren">Herunterfahren</a>
|
||||
|
||||
</div>
|
||||
<div id="words">
|
||||
|
||||
|
||||
<a id="top"></a>
|
||||
<ol>
|
||||
|
@ -285,7 +257,7 @@
|
|||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><p> Tastatur-Port kurzschließen <img src="smile.png" alt=":)" height="15" width="15"> </p>
|
||||
<li><p> Tastatur-Port kurzschließen <img src="/cryptobox-img/smile.png" alt=":)" height="15" width="15"> </p>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
@ -324,7 +296,7 @@
|
|||
</li>
|
||||
<li><p>die crypto-Platte neu initialisieren </p>
|
||||
</li>
|
||||
<li><p>das Backup wieder einspielen - im Idealfall natuerlich mit unserem crypto-Backup-Skript <img src="smile.png" alt=":)" height="15" width="15"> </p>
|
||||
<li><p>das Backup wieder einspielen - im Idealfall natuerlich mit unserem crypto-Backup-Skript <img src="/cryptobox-img/smile.png" alt=":)" height="15" width="15"> </p>
|
||||
</li>
|
||||
</ol>
|
||||
</li>
|
||||
|
@ -335,7 +307,7 @@
|
|||
<ul>
|
||||
<li><p> jeder Schritt der Erstellung wird per Shell-Skript reproduzierbar gemacht </p>
|
||||
</li>
|
||||
<li><p> Ziel: System ohne Unsicherheit, notfalls jedesmal neu bauen lassen <img src="smile.png" alt=":)" height="15" width="15"> </p>
|
||||
<li><p> Ziel: System ohne Unsicherheit, notfalls jedesmal neu bauen lassen <img src="/cryptobox-img/smile.png" alt=":)" height="15" width="15"> </p>
|
||||
</li>
|
||||
<li><p> Nutzerdoku in ein Wiki </p>
|
||||
</li>
|
||||
|
@ -368,15 +340,3 @@
|
|||
|
||||
|
||||
|
||||
</div><!-- end of 'words' -->
|
||||
|
||||
<div id="footer">
|
||||
<a href="https://systemausfall.org/prj/cryptobox" title="Projekt-Seite">CryptoBox-Home</a> Die CryptoBox ist ein Projekt von <a href="https://systemausfall.org/senselab" title="systemausfall.org">sense.lab</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
|
|
@ -21,3 +21,15 @@ import_authorized_keys
|
|||
key to the image directory
|
||||
- this is useful, if you secured the development cryptobox with a
|
||||
password (see 'set_root_pw')
|
||||
|
||||
set_default_???
|
||||
- change the default setting for:
|
||||
- IP
|
||||
- language
|
||||
- or idle timeout
|
||||
|
||||
set_hostname
|
||||
- change the default hostname ("cryptobox")
|
||||
|
||||
set_scan_devices
|
||||
- change the default selection of devices, that can be used as the crypto harddisk
|
||||
|
|
3
configure-examples.d/set_default_ip
Normal file
3
configure-examples.d/set_default_ip
Normal file
|
@ -0,0 +1,3 @@
|
|||
# set the default IP of the cryptobox
|
||||
|
||||
echo -n "192.168.0.23" >"$IMAGE_DIR"/usr/share/cryptobox/defaults/ip
|
3
configure-examples.d/set_default_language
Normal file
3
configure-examples.d/set_default_language
Normal file
|
@ -0,0 +1,3 @@
|
|||
# set the default language of the cryptobox
|
||||
|
||||
echo -n "en" >"$IMAGE_DIR"/usr/share/cryptobox/defaults/language
|
5
configure-examples.d/set_default_timeout
Normal file
5
configure-examples.d/set_default_timeout
Normal file
|
@ -0,0 +1,5 @@
|
|||
# set the default idle timeout of the cryptobox
|
||||
|
||||
# idle time in minutes (before turning off the crypto filesystem automatically)
|
||||
# "0" -> no automatic deactivation
|
||||
echo -n "15" >"$IMAGE_DIR"/usr/share/cryptobox/defaults/timeout
|
3
configure-examples.d/set_hostname
Normal file
3
configure-examples.d/set_hostname
Normal file
|
@ -0,0 +1,3 @@
|
|||
# change the hostname (default value: "cryptobox")
|
||||
|
||||
echo "cryptobox" >"$IMAGE_DIR"/etc/hostname
|
3
configure-examples.d/set_scan_devices
Normal file
3
configure-examples.d/set_scan_devices
Normal file
|
@ -0,0 +1,3 @@
|
|||
# change the selection of devices, that can be used as the crypto harddisk
|
||||
|
||||
sed -i '#s#^SCAN_DEVICES=.*$#SCAN_DEVICES="/dev/hda /dev/hdb /dev/hdc /dev/hde /dev/hdf /dev/hdg /dev/scd0 /dev/scd1 /dev/scd2 /dev/scd3"#' "$IMAGE_DIR"/etc/cryptobox/cryptobox.conf
|
3
tools/show_TODO.sh
Executable file
3
tools/show_TODO.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
grep "TODO" $(find -type f | grep -v "\.svn")
|
Loading…
Reference in a new issue