<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
        <?xml-stylesheet type="text/css" href="http://www.dward.us/styles/feed.css"?>
<title type="html">IT</title>
<link rel="alternate" type="text/html" href="http://www.dward.us"/>
<link rel="self" type="application/atom+xml" href="http://www.dward.us/archives/it/index-atom.xml"/>
<updated>2010-02-17T11:04:53+10:00</updated>
<author>
<name>DaveQB</name>
<uri>http://www.dward.us</uri>
</author>
<id>http://www.dward.us/</id>
<generator uri="http://nanoblogger.sourceforge.net" version="3.3">
NanoBlogger
</generator>

<entry>
<title type="html">MultiBoot I hear you say</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2010/02/17/index.html#e2010-02-17T11_04_51.txt"/>
<id>http://www.dward.us/archives/2010/02/17/index.html#e2010-02-17T11_04_51.txt</id>
<published>2010-02-17T11:04:51+10:00</published>
<updated>2010-02-17T11:04:51+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[<p>A nice way to have multiple Distro's on one bootable CD.</p>
<a href="http://multicd.tuxfamily.org/">http://multicd.tuxfamily.org/</a>]]>
</div>
</content>

</entry>
<entry>
<title type="html">LDIF -> vCard</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2010/01/06/index.html#e2010-01-06T13_27_34.txt"/>
<id>http://www.dward.us/archives/2010/01/06/index.html#e2010-01-06T13_27_34.txt</id>
<published>2010-01-06T13:27:34+10:00</published>
<updated>2010-01-06T13:27:34+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
<a href="http://www.iac.ethz.ch/staff/maeder/mailtool.php">http://www.iac.ethz.ch/staff/maeder/mailtool.php</a>
<br>
I wish I could have found an offline script to do this rather then uploading all of my contacts to some place I do not know.]]>
</div>
</content>

</entry>
<entry>
<title type="html">Recover the SheevaPlug</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/11/22/index.html#e2009-11-22T19_41_17.txt"/>
<id>http://www.dward.us/archives/2009/11/22/index.html#e2009-11-22T19_41_17.txt</id>
<published>2009-11-22T19:41:17+10:00</published>
<updated>2009-11-22T19:41:17+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
<p>So you have a nice new shiny Marvell Sheeva Plug computer and you do something [no I wouldn't do experiemental things with mine] that breaks it enough you can no longer gain access over the network. So remedy this, run this command <pre>modprobe ftdi_sio vendor=0x9e88 product=0x9e8f</pre> and plug in the Plug to you computer viz the supplied USB cable. That will create /dev/ttyUSB0 by default. No use a serial terminal smulator to gain access. Minicom is what Marvell suggests in the manual, but gtkterm seems to be better. The best though, I find is good old scree. Yep screen. Just run: <pre>screen /dev/ttyUSB0 115200</pre> and you're in! You may find your device is on /dev/ttyUSB1 or up, just trial and error to get that sorted.</p>

<a href="http://www.openplug.org/plugwiki/index.php/Serial_terminal_program#Linux">http://www.openplug.org/plugwiki/index.php/Serial_terminal_program#Linux</a>]]>
</div>
</content>

</entry>
<entry>
<title type="html">Roundcube and default identity</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/11/02/index.html#e2009-11-02T15_40_37.txt"/>
<id>http://www.dward.us/archives/2009/11/02/index.html#e2009-11-02T15_40_37.txt</id>
<published>2009-11-02T15:40:37+10:00</published>
<updated>2009-11-02T15:40:37+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
<p>So when a user logs onto <a href="http://roundcube.net/">Roundcube</a> for the first time, they are added to the roundcube database, with the default identity. This identity is &lt;username&gt;@localhost. They can, of course, change this and setup more identities in the Settings, but they shouldn't have to. So I found a patch online and modied it slightly to detect the domainname used to get to roundcube and use that as the default domain. Its simply this:

<pre>
// replace $rcmail_config['mail_domain'] = '';   with:
$rcmail_config['mail_domain'] = preg_replace("/^[a-zA-Z]*\./i", "", $_SERVER['HTTP_HOST']);
</pre>

Pretty neat huh?
</p>]]>
</div>
</content>

</entry>
<entry>
<title type="html">Rsync exclude</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/09/28/index.html#e2009-09-28T11_38_35.txt"/>
<id>http://www.dward.us/archives/2009/09/28/index.html#e2009-09-28T11_38_35.txt</id>
<published>2009-09-28T11:38:35+10:00</published>
<updated>2009-09-28T11:38:35+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
<p>/dir/ means exclude the root folder /dir <br>
/dir/* means get the root folder /dir but not the contents <br>
dir/ means exclude any folder anywhere where the name contains dir/ <br>
Examples excluded: /dir/, /usr/share/mydir/, /var/spool/dir/ <br>
/dir means exclude any folder anywhere where the name contains /dir <br>
Examples excluded: /dir/, /usr/share/directory/, /var/spool/dir/ <br>
/var/spool/lpd//cf means skip files that start with cf within any folder <br>
within /var/spool/lpd <br>
</p>]]>
</div>
</content>

</entry>
<entry>
<title type="html">Rid that man-in-middle warning</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/09/03/index.html#e2009-09-03T10_35_52.txt"/>
<id>http://www.dward.us/archives/2009/09/03/index.html#e2009-09-03T10_35_52.txt</id>
<published>2009-09-03T10:35:52+10:00</published>
<updated>2009-09-03T10:35:52+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[<p>I have looked for a solution for years, but nothing could do it totally. Well here it is:</p>
<a href="http://linuxcommando.blogspot.com/2008/10/how-to-disable-ssh-host-key-checking.html">http://linuxcommando.blogspot.com/2008/10/how-to-disable-ssh-host-key-checking.html</a><br><br>
<p>So basicly, the options you need are:
<pre> 
	NoHostAuthenticationForLocalhost yes
        StrictHostKeyChecking no
</pre>
</p>]]>
</div>
</content>

</entry>
<entry>
<title type="html">Top 5 Video Editors on Linux. [link]</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/08/25/index.html#e2009-08-25T09_07_37.txt"/>
<id>http://www.dward.us/archives/2009/08/25/index.html#e2009-08-25T09_07_37.txt</id>
<published>2009-08-25T09:07:37+10:00</published>
<updated>2009-08-25T09:07:37+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
<p>Nice summary for video editing apps on Linux. I use Cinelerra and Avidemux myself. Great pair.<p/>

<p><a href="http://www.cyberciti.biz/faq/top5-linux-video-editing-system-software/">http://www.cyberciti.biz/faq/top5-linux-video-editing-system-software/</a></p>]]>
</div>
</content>

</entry>
<entry>
<title type="html">Tabs in VIM</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/08/12/index.html#e2009-08-12T12_13_51.txt"/>
<id>http://www.dward.us/archives/2009/08/12/index.html#e2009-08-12T12_13_51.txt</id>
<published>2009-08-12T12:13:51+10:00</published>
<updated>2009-08-12T12:13:51+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[<p>Yes I am trying to make better use of my screen and also needed to edit two files concurrently.</p>

<p><a href="http://linux.com/archive/feature/59533">http://linux.com/archive/feature/59533</a></p>]]>
</div>
</content>

</entry>
<entry>
<title type="html">Splitting Screen and VIM</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/08/12/index.html#e2009-08-12T11_19_46.txt"/>
<id>http://www.dward.us/archives/2009/08/12/index.html#e2009-08-12T11_19_46.txt</id>
<published>2009-08-12T11:19:46+10:00</published>
<updated>2009-08-12T11:19:46+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
<p><a href="http://daveg.outer-rim.org/entries/2006/01/11/split-vim-gnu-screen-sessions/">http://daveg.outer-rim.org/entries/2006/01/11/split-vim-gnu-screen-sessions/</a><br>"To split a screen in screen, its ctrl+a S, then ctrl+a tab to jump between the screens. In vim, its ctrl+w s to split the screen horizontally, ctrl+w v to split the screen vertically and then ctrl+w w to jump between the screens in vim."</p>

<p>Also, to resize the tab, you hit C-a and then type :resize n (n is the number of lines, also +n and -n to add or remove lines).</p>]]>
</div>
</content>

</entry>
<entry>
<title type="html">Internode for urpmi</title>
<author>
<name>DaveQB</name>
</author>
<link rel="alternate" type="text/html" href="http://www.dward.us/archives/2009/06/19/index.html#e2009-06-19T15_18_07.txt"/>
<id>http://www.dward.us/archives/2009/06/19/index.html#e2009-06-19T15_18_07.txt</id>
<published>2009-06-19T15:18:07+10:00</published>
<updated>2009-06-19T15:18:07+10:00</updated>
<category term="IT" />
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
<a href="http://forums.whirlpool.net.au/forum-replies-archive.cfm/749341.html">http://forums.whirlpool.net.au/forum-replies-archive.cfm/749341.html</a>]]>
</div>
</content>

</entry>

</feed>
