<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>rootwar.org</title>
	<atom:link href="http://www.rootwar.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.rootwar.org</link>
	<description>Blog rund um Linux und die Computerwelt</description>
	<lastBuildDate>Tue, 10 Apr 2012 10:53:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>get mosh running under cygwin</title>
		<link>http://www.rootwar.org/?p=142</link>
		<comments>http://www.rootwar.org/?p=142#comments</comments>
		<pubDate>Tue, 10 Apr 2012 10:52:34 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.rootwar.org/?p=142</guid>
		<description><![CDATA[With Cygwin setup.exe, install: - Boost libraries - libncurses - pkg-config - make - perl Download and install ProtoBuf: http://code.google.com/p/protobuf/ ?View Code BASH1 2 3 ./configure --prefix=/usr make make install fix config.h problem: ?View Code BASH1 2 cd /usr/include for h in curses.h eti.h form.h menu.h ncurses.h panel.h term.h unctrl.h ; do ln -s ncurses/$h [...]]]></description>
			<content:encoded><![CDATA[<p>With Cygwin setup.exe, install:</p>
<p>- Boost libraries<br />
- libncurses<br />
- pkg-config<br />
- make<br />
- perl</p>
<p>Download and install ProtoBuf: http://code.google.com/p/protobuf/</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p142code6'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1426"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p142code6"><pre class="bash" style="font-family:monospace;">.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr
<span style="color: #c20cb9; font-weight: bold;">make</span>
<span style="color: #c20cb9; font-weight: bold;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></td></tr></table></div>

<p>fix config.h problem:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p142code7'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1427"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p142code7"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>include
<span style="color: #000000; font-weight: bold;">for</span> h <span style="color: #000000; font-weight: bold;">in</span> curses.h eti.h form.h menu.h ncurses.h panel.h term.h unctrl.h ; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> ncurses<span style="color: #000000; font-weight: bold;">/</span><span style="color: #007800;">$h</span> <span style="color: #007800;">$h</span> ;<span style="color: #000000; font-weight: bold;">done</span></pre></td></tr></table></div>

<p>Download and install Mosh:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p142code8'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1428"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p142code8"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">PKG_CONFIG_PATH</span>=<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>local<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>pkgconfig<span style="color: #000000; font-weight: bold;">/</span>
.<span style="color: #000000; font-weight: bold;">/</span>configure <span style="color: #007800;">CXXFLAGS</span>=<span style="color: #ff0000;">&quot;-I/usr/include/ncurses&quot;</span> <span style="color: #660033;">--prefix</span>=<span style="color: #000000; font-weight: bold;">/</span>usr</pre></td></tr></table></div>

<p>Install the IO::Pty Perl module:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p142code9'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1429"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p142code9"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">perl</span> <span style="color: #660033;">-MCPAN</span> <span style="color: #660033;">-e</span> shell
cpan<span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #c20cb9; font-weight: bold;">install</span> IO::Pty</pre></td></tr></table></div>

<p>or simply</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p142code10'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p14210"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p142code10"><pre class="bash" style="font-family:monospace;">cpan IO::Pty</pre></td></tr></table></div>

<p>have fun <img src='http://www.rootwar.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=142</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ifolder unter Ubuntu Server</title>
		<link>http://www.rootwar.org/?p=115</link>
		<comments>http://www.rootwar.org/?p=115#comments</comments>
		<pubDate>Wed, 09 Sep 2009 15:44:02 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[iFolder]]></category>
		<category><![CDATA[SuSE]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://rootwar.org/wordpress/?p=115</guid>
		<description><![CDATA[ifolder ist eine super sache, viele werden Dropbox kennen. Nur ich möchte meine Daten nicht auf irgendwelche Wolken verteilen. Ich will MEINE Daten auf MEINEM Server liegen haben. Wirklich brauchbar ist hier nur iFolder. Also dachte ich, rann an den Speck, nach tutorials gegooglet und nicht brauchbares gefunden. Außer ein Repository: ?View Code BASH1 2 [...]]]></description>
			<content:encoded><![CDATA[<p>ifolder ist eine super sache, viele werden Dropbox kennen. Nur ich möchte meine Daten nicht auf irgendwelche Wolken verteilen. Ich will MEINE Daten auf MEINEM Server liegen haben. Wirklich brauchbar ist hier nur iFolder.</p>
<p>Also dachte ich, rann an den Speck, nach tutorials gegooglet und nicht brauchbares gefunden. Außer ein Repository:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p115code12'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p11512"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p115code12"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>marceloshima<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu jaunty main 
deb-src http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>marceloshima<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu jaunty main</pre></td></tr></table></div>

<p>Leider habe ich auch damit iFolder nicht zum laufen gebracht (der Client läuft spitze aus diesem auf Repo)</p>
<p>Nach 2 Tagen und einer Nacht verzweiflung, habe ich mich dann entschieden  eine SuSE VM aufzusetzten, schnell meinem Server ein Gig mehr Arbeitsspeicher gegönnt und von dieser Seite:</p>
<p><a href="http://www.decriptor.com/2009/07/21/ifolder-appliance-0-0-9/" title="http://www.decriptor.com/2009/07/21/ifolder-appliance-0-0-9/" target="_blank">http://www.decriptor.com/2009/07/21/ifolder-appliance-0-0-9/</a></p>
<p>Die XEN-Appliance geladen. Und was soll ich sagen? Es rennt perfekt!<br />
Endlich habe ich meine notes zwischen zuhause und arbeit synchron.</p>
<p>Meine Musik auf dem Server genauso wie auf dem MacBook und meine Bilder werden auch automatisch gebackuped.</p>
<p>Super sache! Ausprobieren lohnt sich.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=115</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Jaunty und der alte Amarok 1.4</title>
		<link>http://www.rootwar.org/?p=109</link>
		<comments>http://www.rootwar.org/?p=109#comments</comments>
		<pubDate>Tue, 05 May 2009 19:26:34 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[amarok]]></category>

		<guid isPermaLink="false">http://rootwar.org/wordpress/?p=109</guid>
		<description><![CDATA[leider gibt es unter Jaunty nur den neuen Amarok2 der aber leider meiner Meinung nach nichts taugt. Also wieder zurück auf den alten, nur wie? zum Glück gibt es ein Repository somit editiert eure /etc/apt/sources.list und fügt folgende Quellen hinzu: ?View Code BASH1 2 deb http://ppa.launchpad.net/bogdanb/ppa/ubuntu jaunty main deb-src http://ppa.launchpad.net/bogdanb/ppa/ubuntu jaunty main danach noch der [...]]]></description>
			<content:encoded><![CDATA[<p>leider gibt es unter Jaunty nur den neuen Amarok2 der aber leider meiner Meinung nach nichts taugt.<br />
Also wieder zurück auf den alten, nur wie?</p>
<p>zum Glück gibt es ein Repository somit editiert eure /etc/apt/sources.list und fügt folgende Quellen hinzu:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p109code16'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10916"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p109code16"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>bogdanb<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu jaunty main
deb-src http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>bogdanb<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu jaunty main</pre></td></tr></table></div>

<p>danach noch der key:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p109code17'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10917"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p109code17"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--recv-keys</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com \
0x1d7e9dd033e89ba781e32a24b9f1c432ae74ae63</pre></td></tr></table></div>

<p>dann ein Quellen update, Amarok2 entfernen und wieder den guten alten installieren:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p109code18'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10918"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p109code18"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> remove amarok
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> amarok14</pre></td></tr></table></div>

<p>viel spaß</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=109</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[howto] erstellen einer torrent datei</title>
		<link>http://www.rootwar.org/?p=106</link>
		<comments>http://www.rootwar.org/?p=106#comments</comments>
		<pubDate>Sat, 11 Apr 2009 17:04:09 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[torrent]]></category>

		<guid isPermaLink="false">http://rootwar.org/wordpress/?p=106</guid>
		<description><![CDATA[unter linux fällt das eigentlich ziemlich leicht mit ctorrent. unter ubunut als deb erhältlich und in gentoo ziemlich schnell per emerge compiliert. danach einfach ein: ?View Code BASH1 ctorrent -t -u http://tracker.de/announce.php -s yourfile.torrent yourfile und ihr habt eure torrent, viel spaß beim seeden]]></description>
			<content:encoded><![CDATA[<p>unter linux fällt das eigentlich ziemlich leicht mit ctorrent.<br />
unter ubunut als deb erhältlich und in gentoo ziemlich schnell per emerge compiliert.</p>
<p>danach einfach ein:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p106code20'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10620"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p106code20"><pre class="bash" style="font-family:monospace;">ctorrent <span style="color: #660033;">-t</span> <span style="color: #660033;">-u</span> http:<span style="color: #000000; font-weight: bold;">//</span>tracker.de<span style="color: #000000; font-weight: bold;">/</span>announce.php <span style="color: #660033;">-s</span> yourfile.torrent yourfile</pre></td></tr></table></div>

<p>und ihr habt eure torrent, viel spaß beim seeden</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=106</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>openXchange und funambol in einem xen image</title>
		<link>http://www.rootwar.org/?p=98</link>
		<comments>http://www.rootwar.org/?p=98#comments</comments>
		<pubDate>Sat, 11 Apr 2009 14:47:40 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[funambol]]></category>
		<category><![CDATA[openXchange]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://rootwar.org/wordpress/?p=98</guid>
		<description><![CDATA[da ich in letzterzeit viel mit openxchange und funambol gespielt habe und ich nirgendswo ein xen image gefunden habe, werde ich einfach selbst eins für die allgemeinheit zur verfügung stellen. Das Image bassiert auf Ubuntu Server 8.04.2 OX Build 6.8.1-6811 Funambol DS-Server 7 alle XenVorbereitungen sind erledigt (tls verschoben, hwclock aus dem Runlevel, xvc als [...]]]></description>
			<content:encoded><![CDATA[<p>da ich in letzterzeit viel mit openxchange und funambol gespielt habe und ich nirgendswo ein xen image gefunden habe, werde ich einfach selbst eins für die allgemeinheit zur verfügung stellen.</p>
<p>Das Image bassiert auf<br />
Ubuntu Server 8.04.2<br />
OX Build 6.8.1-6811<br />
Funambol DS-Server 7</p>
<p>alle XenVorbereitungen sind erledigt (tls verschoben, hwclock aus dem Runlevel, xvc als Console und XenKernel in /boot)</p>
<p>mit dem Image kann man nach dem booten direkt los spielen, nur ein context und user muss angelegt werden.<br />
Danach ist ein einloggen über http://oxserverip oder syncen über http://oxserverip:8080/funambol/ds möglich.</p>
<p>lasst mich wissen falls irgendwas nicht passt oder ihr Hilfe braucht.</p>
<p>hier das torrent file: <a href="http://rootwar.org/wordpress/wp-content/uploads/2009/04/ox.torrent">ox.torrent</a></p>
<p>und hier der HTTP-Mirror (only 60kb/s)<br />
<a href="http://rootwar.org/ox-xen-img.tar.gz">ox-xen-img.tar.gz</a></p>
<p>hier eine beispiel conf für xen:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.rootwar.org/wp-content/plugins/wp-codebox/wp-codebox.php?p=98&amp;download=xenconf">xenconf</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p9823"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
</pre></td><td class="code" id="p98code23"><pre class="txt" style="font-family:monospace;">root@natalie:~# cat /etc/xen/ox
#general
name = &quot;ox&quot;;
memory = 1024;
vcpus = 4;
&nbsp;
#booting
kernel = &quot;/boot/ox/vmlinuz-2.6.24-23-xen&quot;;
ramdisk = &quot;/boot/ox/initrd.img-2.6.24-23-xen&quot;;
&nbsp;
#virtual harddisk
disk = [ 'phy:/dev/natalie/ox,hda1,w'];
root = &quot;/dev/hda1&quot;;
&nbsp;
#virtual network
vif = [ 'bridge=intern'];</pre></td></tr></table></div>

<p>und hier die readme.txt, ist aber auch im image unter /root/readme</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left2">Download <a href="http://www.rootwar.org/wp-content/plugins/wp-codebox/wp-codebox.php?p=98&amp;download=readme.txt">readme.txt</a></span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p9824"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
</pre></td><td class="code" id="p98code24"><pre class="txt" style="font-family:monospace;">So, hier mal die Wichtigsten Sachen zum durchstarten:
&nbsp;
Passwörter:
root = 123
oxadminmaster = admin_master_password
configdb = db_password
für funambol:
admin = sa
&nbsp;
System infos:
OX Build 6.8.1-6811
Ubuntu Server 8.04.2
Funambol DS-Server 7
&nbsp;
hwclockfirstime.sh und hwclock.sh wurden aus den Runlevels entfernt
/lib/tls wurde nach /lib/tls.unused verschoben
in /etc/event.d/tty1 wurde tty1 auf xvco geändert
&nbsp;
todo:
das rootpasswort ändern (passwd)
ein passwort für den root des SQL-Servers festlegen
und anschließend das passwort mit /opt/openxchange/sbin/changedatabase auch openxchange mitteilen.
das Adminpasswort vom funambolserver muss auch geändert werden, ist aber selbsterklärend über die Admingui
(/opt/Funambol/admin/bin/funamboladmin) 
&nbsp;
um loszulegen (zum spielen auch ohne die passwörter geändert zu haben) muss ein context und ein user angelegt werden:
context:
$ /opt/open-xchange/sbin/createcontext -A oxadminmaster -P admin_master_password -c 1
-u oxadmin -d &quot;Context Admin&quot; -g Admin -s User -p admin_password -L defaultcontext
-e oxadmin@example.com -q 1024 --access-combination-name=all
&nbsp;
user:
$ /opt/open-xchange/sbin/createuser -c 1 -A oxadmin -P admin_password -u testuser
-d &quot;Test User&quot; -g Test -s User -p secret -e testuser@example.com
--imaplogin testuser --imapserver 127.0.0.1 --smtpserver 127.0.0.1
&nbsp;
alle syncml fähigen geräte könnt ihr dann über die url:
http://oxserver:8080/funambol/ds
mit dem nutzer und passwort den ihr voher in openxchange angelegt habt.
&nbsp;
Die SyncDatenbanken heißen:
oxcal (Kalender in vcard form, meistens Handys)
oxevent
oxtask
oxscal (Kalender in SIF-E form, z.B. Outlook)
oxstask
&nbsp;
oxcard (Kontakte in vcard form, meistens Handys)
oxscad (Kontakte in SIF-E form, z.B. Outlook)
&nbsp;
Hoffe ich habe nix vergessen
ansonsten viel Spaß beim mailen, planen und syncen</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=98</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>VirtualBox und wie man von USB Bootet</title>
		<link>http://www.rootwar.org/?p=90</link>
		<comments>http://www.rootwar.org/?p=90#comments</comments>
		<pubDate>Thu, 12 Mar 2009 14:31:30 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[Usb]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://rootwar.org/wordpress/?p=90</guid>
		<description><![CDATA[lange hat mich das Problem gequält in VirtualBox von usb zu booten, aber hier endlich die lösung: ?View Code BASH1 2 sudo VBoxManage internalcommands createrawvmdk -register -filename /home/acid/.VirtualBox/HardDisks/usb.vmdk -rawdisk /dev/sdb sudo chmod 600 /home/acid/.VirtualBox/HardDisks/usb.vmdk und danach für den User Zugriffsrechte auf das Device gewähren, also entweder per udev Regel oder man added den user in [...]]]></description>
			<content:encoded><![CDATA[<p>lange hat mich das Problem gequält in VirtualBox von usb zu booten, aber hier endlich die lösung:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p90code26'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p9026"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p90code26"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> VBoxManage internalcommands createrawvmdk  <span style="color: #660033;">-register</span> <span style="color: #660033;">-filename</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>acid<span style="color: #000000; font-weight: bold;">/</span>.VirtualBox<span style="color: #000000; font-weight: bold;">/</span>HardDisks<span style="color: #000000; font-weight: bold;">/</span>usb.vmdk <span style="color: #660033;">-rawdisk</span> <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sdb
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">600</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>acid<span style="color: #000000; font-weight: bold;">/</span>.VirtualBox<span style="color: #000000; font-weight: bold;">/</span>HardDisks<span style="color: #000000; font-weight: bold;">/</span>usb.vmdk</pre></td></tr></table></div>

<p>und danach für den User Zugriffsrechte auf das Device gewähren, also entweder per udev Regel oder man added den user in die Gruppe &#8220;disk&#8221;</p>
<p>hoffe es hilft</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=90</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>windows XP uns SP3 das bei 2/3 hängt</title>
		<link>http://www.rootwar.org/?p=81</link>
		<comments>http://www.rootwar.org/?p=81#comments</comments>
		<pubDate>Wed, 04 Mar 2009 20:45:48 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[windows]]></category>
		<category><![CDATA[sp3]]></category>

		<guid isPermaLink="false">http://rootwar.org/wordpress/?p=81</guid>
		<description><![CDATA[so heute hatte ich das problem das ich auf einem Win XP Rechner SP3 installieren musste (um Remote App nutzen zu können) leider ist die Installation bei 2/3 einfach hängen geblieben, nach ein wenig googlen bin ich dann auf den Tipp gestoßen den Prozess shmgrate.exe zu killen, uns siehe da, die Installation läuft weiter und [...]]]></description>
			<content:encoded><![CDATA[<p>so heute hatte ich das problem das ich auf einem Win XP Rechner SP3 installieren musste (um Remote App nutzen zu können)</p>
<p>leider ist die Installation bei 2/3 einfach hängen geblieben, nach ein wenig googlen bin ich dann auf den Tipp gestoßen den Prozess shmgrate.exe zu killen, uns siehe da, die Installation läuft weiter und schließt sauber ab!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=81</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PSP und UPNP bzw RSS</title>
		<link>http://www.rootwar.org/?p=48</link>
		<comments>http://www.rootwar.org/?p=48#comments</comments>
		<pubDate>Tue, 03 Mar 2009 18:29:38 +0000</pubDate>
		<dc:creator>acid</dc:creator>
				<category><![CDATA[psp]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[netzwerk]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[upnp]]></category>

		<guid isPermaLink="false">http://rootwar.org/wordpress/?p=48</guid>
		<description><![CDATA[Ich hab eine PS3 und somit auf meinem Server natürlich auch einen UPNP/DLNA Server (MediaTomb) leider ist die psp nicht fähig diesen zu nutzen, somit habe ich mir ein kleines bashscript geschrieben welches mir aus meiner mp3 und Bild sammlung pro ordner einen rss feed erstellt. Ein kleines php script auf einem extra internen virtual [...]]]></description>
			<content:encoded><![CDATA[<p>Ich hab eine PS3 und somit auf meinem Server natürlich auch einen UPNP/DLNA Server (MediaTomb)</p>
<p>leider ist die psp nicht fähig diesen zu nutzen, somit habe ich mir ein kleines bashscript geschrieben welches mir aus meiner mp3 und Bild sammlung pro ordner einen rss feed erstellt. Ein kleines php script auf einem extra internen virtual host präsentiert mir diese dann alle sauber strukturiert sodass ich nach dem abonnieren über Netzwerk-Rss-Feeds &#8220;Ordner-orientiert&#8221; auf meine MP3 sammlung zurückgreifen kann.</p>
<p>leider muss ich es von hand starten sobald neue lieder/bilder hinzukommen bzw gelöscht werden. Deshalb werde ich das script demnächst in python umschreiben und mir inotify zunutze machen und somit einen kleinen daemon erstellen.</p>
<p>Das Bashscript werde ich aber schonmal hier veröffentlichen: <a href="http://rootwar.org/psplib.tar.gz">psplib.tar.gz</a></p>
<p>enthalten ist das eigentliche script in dem noch ein paar parameter configuriert werden müssen</p>
<p>den inhalt von htdocs solltet ihr in eurem internen webserver ablegen. Außerdem solltet ihr hier dann noch einen symlink auf den einstiegspunkt eurer mp3 sammlung anlegen.<br />
Meine mp3s liegen in /storage/mp3s somit habe ich in /var/www/musik/htdocs/ einen symlink storage der auf /storage/mp3s zeigt.</p>
<p>das bashscript kämmt eure mp3 sammlung durch und erstell für jeden ordner eine xml, die index.php (oder wie immer ihr sie auch nennt) stellt dann eine liste der ganzen xmls dar, jetzt müsst ihr nur noch mit der psp hierhin browsen und die feeds abonnieren.</p>

<a href='http://www.rootwar.org/?attachment_id=73' title='pct2000'><img width="100" height="50" src="http://www.rootwar.org/wp-content/uploads/2009/03/pct2000-100x50.jpg" class="attachment-thumbnail" alt="pct2000" title="pct2000" /></a>
<a href='http://www.rootwar.org/?attachment_id=74' title='pct2001'><img width="100" height="50" src="http://www.rootwar.org/wp-content/uploads/2009/03/pct2001-100x50.jpg" class="attachment-thumbnail" alt="pct2001" title="pct2001" /></a>
<a href='http://www.rootwar.org/?attachment_id=75' title='pct2002'><img width="100" height="50" src="http://www.rootwar.org/wp-content/uploads/2009/03/pct2002-100x50.jpg" class="attachment-thumbnail" alt="pct2002" title="pct2002" /></a>
<a href='http://www.rootwar.org/?attachment_id=76' title='pct2003'><img width="100" height="50" src="http://www.rootwar.org/wp-content/uploads/2009/03/pct2003-100x50.jpg" class="attachment-thumbnail" alt="pct2003" title="pct2003" /></a>
<a href='http://www.rootwar.org/?attachment_id=77' title='pct2004'><img width="100" height="50" src="http://www.rootwar.org/wp-content/uploads/2009/03/pct2004-100x50.jpg" class="attachment-thumbnail" alt="pct2004" title="pct2004" /></a>
<a href='http://www.rootwar.org/?attachment_id=78' title='pct2005'><img width="100" height="50" src="http://www.rootwar.org/wp-content/uploads/2009/03/pct2005-100x50.jpg" class="attachment-thumbnail" alt="pct2005" title="pct2005" /></a>
<a href='http://www.rootwar.org/?attachment_id=79' title='pct2006'><img width="100" height="50" src="http://www.rootwar.org/wp-content/uploads/2009/03/pct2006-100x50.jpg" class="attachment-thumbnail" alt="pct2006" title="pct2006" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.rootwar.org/?feed=rss2&#038;p=48</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

