<?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>laserman's blog &#187; linux</title>
	<atom:link href="http://blog.cipworx.org/martin/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cipworx.org/martin</link>
	<description>Linux, IT@school, Electronics, Slovenia, Mobility, ...</description>
	<lastBuildDate>Sun, 14 Mar 2010 12:38:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>/etc/init.d/knoppix-halt</title>
		<link>http://blog.cipworx.org/martin/2010/03/12/etcinit-dknoppix-halt/</link>
		<comments>http://blog.cipworx.org/martin/2010/03/12/etcinit-dknoppix-halt/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:49:24 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=289</guid>
		<description><![CDATA[In Knoppix 6.0 und 6.2 hatte ich das Problem, daÃŸ ein Diskless Knoppix, welches Ã¼berss Netz von einem &#8220;Knoppix Terminalserver&#8221; gestartet wurde, nicht ordentlich &#8216;runterfahren konnte. Um das zu reparieren, habe ich in /etc/init.d/knoppix-halt folgende Ã„nderungen vorgenommen:
# MH don&#8217;t shut down network
#ifdown -a >/dev/null 2>&#038;1
# Free modules
while read module relax; do
 case &#8220;$module&#8221; in
  [...]]]></description>
			<content:encoded><![CDATA[<p>In Knoppix 6.0 und 6.2 hatte ich das Problem, daÃŸ ein Diskless Knoppix, welches Ã¼berss Netz von einem &#8220;Knoppix Terminalserver&#8221; gestartet wurde, nicht ordentlich &#8216;runterfahren konnte. Um das zu reparieren, habe ich in <strong>/etc/init.d/knoppix-halt</strong> folgende Ã„nderungen vorgenommen:</p>
<p># MH don&#8217;t shut down network<br />
#ifdown -a >/dev/null 2>&#038;1</p>
<p># Free modules<br />
while read module relax; do<br />
 case &#8220;$module&#8221; in<br />
  *eeepc*|*_laptop*) true ;; # Unloading eeepc_laptop disables WLAN in the BIOS. Why?<br />
  # MH kein rmmod!<br />
  # *) rmmod &#8220;$module&#8221; ;;<br />
 esac<br />
done /dev/null 2>&#038;1</p>
<p># MH:   -d hinzugefÃ¼gt<br />
case &#8220;$0&#8243; in *halt|*poweroff) poweroff -d -f ;;<br />
                           *) reboot -d -f ;;<br />
esac</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2010/03/12/etcinit-dknoppix-halt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ssh</title>
		<link>http://blog.cipworx.org/martin/2010/03/12/ssh/</link>
		<comments>http://blog.cipworx.org/martin/2010/03/12/ssh/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 15:40:07 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=286</guid>
		<description><![CDATA[ssh weniger sicher aber etwas mehr bequem machen:
1.) HashKnownHosts no
in /etc/ssh/ssh_config oder in ~/.ssh/config
Danach werde ndie EintrÃ¤ge in ~/.ssh/known_hosts wieder &#8220;so wie frÃ¼her&#8221; und man kann leicht einen Eintrag finden und entfernen, wenn sich ein host key geÃ¤ndert hat.
2.)  StrictHostKeyChecking no
in /etc/ssh/ssh_config oder in ~/.ssh/config
Nachdem man seinen SchlÃ¼ssel mit ssh-copy-id auf den Zielrechner Ã¼bertragen [...]]]></description>
			<content:encoded><![CDATA[<p>ssh weniger sicher aber etwas mehr bequem machen:</p>
<p>1.) <strong>HashKnownHosts no</strong><br />
in /etc/ssh/ssh_config oder in ~/.ssh/config</p>
<p>Danach werde ndie EintrÃ¤ge in ~/.ssh/known_hosts wieder &#8220;so wie frÃ¼her&#8221; und man kann leicht einen Eintrag finden und entfernen, wenn sich ein host key geÃ¤ndert hat.</p>
<p>2.)  <strong>StrictHostKeyChecking no</strong><br />
in /etc/ssh/ssh_config oder in ~/.ssh/config</p>
<p>Nachdem man seinen SchlÃ¼ssel mit <strong>ssh-copy-id</strong> auf den Zielrechner Ã¼bertragen hat, kann man ssh in scripten benutzen, auch wenn der Zielrechner nicht in <strong>known_hosts</strong> steht.</p>
<p>z.B. ein screenshot holen:<br />
ssh >/tmp/screenshot.xwd -i id_dsa user@rechner xwd -silent -root -display 0:0</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2010/03/12/ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wireless N</title>
		<link>http://blog.cipworx.org/martin/2010/02/24/276/</link>
		<comments>http://blog.cipworx.org/martin/2010/02/24/276/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 22:07:11 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/2010/02/24/276/</guid>
		<description><![CDATA[Ich teste gerade 2 neue USB WLAN Sticks:
1.) ein weisser LogiLink WL0049
lsusb:
148f:3070 Ralink Technology, Corp.
2.) ein LogiLink WL0054 mit reverse-SMA Anschluss fÃ¼r externe Antenne
lsusb: 148f:3070 Ralink Technology, Corp.
dmesg:
usbcore: registered new interface driver rt2870
Der Chip ist also offenbar gleich, also auch der Treiber. Sowohl bei Knoppix 6.2 als auch bei ubuntu 9.10 ist ein Eintrag in [...]]]></description>
			<content:encoded><![CDATA[<p>Ich teste gerade 2 neue USB WLAN Sticks:<br />
1.) ein weisser LogiLink WL0049<br />
lsusb:<br />
148f:3070 Ralink Technology, Corp.</p>
<p>2.) ein LogiLink WL0054 mit reverse-SMA Anschluss fÃ¼r externe Antenne</p>
<p>lsusb: 148f:3070 Ralink Technology, Corp.<br />
dmesg:<br />
usbcore: registered new interface driver rt2870</p>
<p>Der Chip ist also offenbar gleich, also auch der Treiber. Sowohl bei Knoppix 6.2 als auch bei ubuntu 9.10 ist ein Eintrag in /etc/modprobe.d/blacklist.conf nÃ¶tig:<br />
<code>blacklist rt2800usb</code></p>
<p>lsmod:<br />
<code><br />
rt2870sta             488820  1<br />
rt2x00lib              29756  0<br />
input_polldev           3716  1 rt2x00lib<br />
...<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2010/02/24/276/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hercules Webcam Classic und (k)ubuntu Linux 9.10 (karmic)</title>
		<link>http://blog.cipworx.org/martin/2009/12/19/hercules-webcam-classic-und-kubuntu-linux-910-karmic/</link>
		<comments>http://blog.cipworx.org/martin/2009/12/19/hercules-webcam-classic-und-kubuntu-linux-910-karmic/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 14:30:33 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[kubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[hercules]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=265</guid>
		<description><![CDATA[Die Cam wird automatisch erkannt, es werden die Module gspca_main und gspca_ov519 geladen.
So funktioniert die Cam z.B. mit cheese und vermutlich jeder v4l2 Anwendung, aber nicht mit skype. Workaround fuer skype:
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype
]]></description>
			<content:encoded><![CDATA[<p>Die Cam wird automatisch erkannt, es werden die Module<code> gspca_main</code> und <code>gspca_ov519</code> geladen.<br />
So funktioniert die Cam z.B. mit cheese und vermutlich jeder v4l2 Anwendung, aber nicht mit skype. Workaround fuer skype:</p>
<p><code>LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2009/12/19/hercules-webcam-classic-und-kubuntu-linux-910-karmic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux!</title>
		<link>http://blog.cipworx.org/martin/2009/11/18/linux/</link>
		<comments>http://blog.cipworx.org/martin/2009/11/18/linux/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 11:59:04 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=255</guid>
		<description><![CDATA[some days ago I installed ubuntu 9.10 and try some new appications.
I used this nice article to learn about  ecryptfs and encrypt my already existing home directory. 
miro is a very nice program to download , listen &#038; watch audio and Video podcasts. For each podcast it remembers the point wherw I interrupted watching [...]]]></description>
			<content:encoded><![CDATA[<p>some days ago I installed ubuntu 9.10 and try some new appications.</p>
<p>I used this nice <a href="http://www.linux-mag.com/id/7568/2/">article</a> to learn about  <strong>ecryptfs</strong> and encrypt my already existing home directory. </p>
<p><strong>miro</strong> is a very nice program to download , listen &#038; watch audio and Video podcasts. For each podcast it remembers the point wherw I interrupted watching so I can continue from there later.<br />
 It is easily installable via apt-get, synaptic or the new ubuntu software center.</p>
<p><strong>The Bub&#8217;s Brothers</strong> is a nice Retro Game which reminds me on the Bubble Bobble that I had on my Atari ST. It is easily installable via apt-get, synaptic or the new ubuntu software center.</p>
<p><strong>AcetoneISO</strong> is a GUI/frontend for different things like mounting ISO-images and ripping Video-DVDs to avi files. Installation from getdeb is a bit tricky. For ripping it uses mencoder, but only unsing one of my 2 CPUs. I have to try this option next time:<code> -xvidencopts bitrate=900:threads=2</code></p>
<p>Together with a friend I tried <strong>RetroShare</strong>. Everything works nice and stable. We tried chat, mail and file exchange. I hope that many of my friends will use it in the future. RetroShare depends on some qt4 packages which are available from the usual ubuntu repos. </p>
<p><strong>fushi</strong> is a program for Unix/Linux newbies to learn shell-commands. It comes as a compressed perl program. I had to istall the exact right version of Compress-Raw-Zlib-2.012.tar.gz to get it running:<br />
<code> perl -e shell -MCPAN<br />
Terminal does not support AddHistory.</p>
<p>cpan shell -- CPAN exploration and modules installation (v1.9205)<br />
ReadLine support available (maybe install Bundle::CPAN or Bundle::CPANxxl?)</p>
<p>cpan[1]> install PMQS/Compress-Raw-Zlib-2.012.tar.gz   </code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2009/11/18/linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>alle 5 Minuten: DriveReady SeekComplete Error</title>
		<link>http://blog.cipworx.org/martin/2009/07/01/alle-5-minuten-driveready-seekcomplete-error/</link>
		<comments>http://blog.cipworx.org/martin/2009/07/01/alle-5-minuten-driveready-seekcomplete-error/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 10:59:40 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[hda]]></category>
		<category><![CDATA[ide]]></category>
		<category><![CDATA[munin]]></category>
		<category><![CDATA[smart]]></category>
		<category><![CDATA[smartmon]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=215</guid>
		<description><![CDATA[hab 2 neue Festpalatten eingebaut. Beide bringen Fehler in dmesg:
hda: drive_cmd: status=0x51 { DriveReady SeekComplete Error }
hda: drive_cmd: error=0x04 { DriveStatusError }
ide: failed opcode was: 0xb0
hdb: drive_cmd: status=0x51 { DriveReady SeekComplete Error }
hdb: drive_cmd: error=0x04 { DriveStatusError }
ide: failed opcode was: 0xb0
In /var/log/messages steht die Uhrzeit in menschlicher  Form.
Aha! Alle 5 Minuten &#8211; da [...]]]></description>
			<content:encoded><![CDATA[<p>hab 2 neue Festpalatten eingebaut. Beide bringen Fehler in dmesg:<br />
<code>hda: drive_cmd: status=0x51 { DriveReady SeekComplete Error }<br />
hda: drive_cmd: error=0x04 { DriveStatusError }<br />
ide: failed opcode was: 0xb0<br />
hdb: drive_cmd: status=0x51 { DriveReady SeekComplete Error }<br />
hdb: drive_cmd: error=0x04 { DriveStatusError }<br />
ide: failed opcode was: 0xb0</code></p>
<p>In /var/log/messages steht die Uhrzeit in menschlicher  Form.<br />
Aha! Alle 5 Minuten &#8211; da war mir klar, es hat mit smartmon und munin zu tun. Netz-Recherche bestätigt diese Vermutung:</p>
<p><a href="http://www.linux-noob.com/forums/index.php?showtopic=2586">http://www.linux-noob.com/forums/index.php?showtopic=2586</a></p>
<p><a href="http://lists.uugrn.org/uugrn/05/08/12458.html">http://lists.uugrn.org/uugrn/05/08/12458.html</a></p>
<p>So war&#8217;s auch bei mir: Damit munin was anzeigt , habe ich <code>smartctl -s on /dev/hda<br />
</code> gemacht. Seit dem kommen die Meldungen nicht mehr.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2009/07/01/alle-5-minuten-driveready-seekcomplete-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acer Extensa 5220</title>
		<link>http://blog.cipworx.org/martin/2009/04/08/acer-extensa-5220/</link>
		<comments>http://blog.cipworx.org/martin/2009/04/08/acer-extensa-5220/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 14:08:01 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=197</guid>
		<description><![CDATA[sidux 2009-1
Alles funktioniert, ausser WLAN. lspci zeigt den WLAN Chip als BCM4312(PCI ID: 14e4:4315) Einen funktionierenden (closed source) WLAN-Treiber gibt&#8217;s hier:  http://www.broadcom.com/docs/linux_sta/.
Kompilieren und installieren des Treibers war problemlos. Man benötigt kein acerhk (Acer Hotkeys)
Knoppix 6.1
Zunächst keine 3D-Desktop Effekte. compiz sagt: &#8220;Blacklisted PCIID 8086:2a02&#8243;.
So kann man compiz nachträglich starten:
SKIP_CHECKS=yes compiz --replace
Die Tasten für Bildschirmhelligkeit funktionieren [...]]]></description>
			<content:encoded><![CDATA[<p><strong>sidux 2009-1</strong></p>
<p>Alles funktioniert, ausser WLAN. lspci zeigt den WLAN Chip als BCM4312(PCI ID: 14e4:43<strong>15</strong>) Einen funktionierenden (closed source) WLAN-Treiber gibt&#8217;s hier: <a href="http://www.broadcom.com/docs/linux_sta/"> http://www.broadcom.com/docs/linux_sta/</a>.<br />
Kompilieren und installieren des Treibers war problemlos. Man benötigt kein acerhk (Acer Hotkeys)</p>
<p><strong>Knoppix 6.1</strong></p>
<p>Zunächst keine 3D-Desktop Effekte. compiz sagt: &#8220;Blacklisted PCIID 8086:2a02&#8243;.<br />
So kann man compiz nachträglich starten:<br />
<code>SKIP_CHECKS=yes compiz --replace</code></p>
<p>Die Tasten für Bildschirmhelligkeit funktionieren nicht. Bei sidux klappt&#8217;s.</p>
<p>WLAN:<br />
mit dem b43-Treiber und b43-fwcutter hatte ich keinen Erfolg. Leider ist auch kein ndiswrapper Modul enthalten.<br />
Ich habe den Knoppix Kernel (2.6.28.4) und auch 2.6.29-1-686(Debian Sid) probiert: Ich konnte keine Module kompilieren, weder ndiswrapper noch hybrid_wl. Immer das gleiche Problem:<br />
<code>/usr/src/linux-headers-2.6.29-1-common/arch/x86/Makefile_32.cpu: file not found</code></p>
<p>Bluetooth &#8211; hab ich nicht getestet</p>
<p>SD Cardreader: Normale SD Karte hat funktioniert, 2 verschiedene micro SD Karten mit Adapter wurden nicht erkannt?! &#8211; mit einem externen USB Cardreader funktionieren beide(auch mit Adapter).</p>
<p>Was ich an dem Gerät mag: </p>
<ul>
<li>geringer Preis</li>
<li>wird ohne Windows geliefert</li>
<li>DL DVD writer kann auch DVD-RAM lesen</li>
<li> IRDA </li>
<li>intel GMA Grafik</li>
</ul>
<p>Was mir nicht gefällt:</p>
<ul>
<li>das vorinstallierte Linpus hat keine GUI</li>
<li>Das Display spiegelt</li>
<li>Die Ethernetbuchse wackelt, hat nur manchmal Kontakt &#8211; kalte Lötstelle ?</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2009/04/08/acer-extensa-5220/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brother DCP-585CW</title>
		<link>http://blog.cipworx.org/martin/2009/03/20/brother-dcp-585cw/</link>
		<comments>http://blog.cipworx.org/martin/2009/03/20/brother-dcp-585cw/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 20:40:32 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=191</guid>
		<description><![CDATA[Für einen Kunden habe ich heute einen Brother DCP-585CW Multifunktions-Drucker/Scanner eingerichtet. Treiber und Anleitung gibt&#8217;s hier:
http://solutions.brother.com/linux
Praktisch, aber auch verwirrend: wenn man einen Speicherstick oder eine Speicherkarte in den Drucker steckt, verhält er sich wie ein USB Cardreader und reicht das Gerät über USB weiter an den PC. Das hat zur Folge, dass sich auf ubuntu [...]]]></description>
			<content:encoded><![CDATA[<p>Für einen Kunden habe ich heute einen Brother DCP-585CW Multifunktions-Drucker/Scanner eingerichtet. Treiber und Anleitung gibt&#8217;s hier:</p>
<p><a href="http://solutions.brother.com/linux/en_us/index.html">http://solutions.brother.com/linux</a></p>
<p>Praktisch, aber auch verwirrend: wenn man einen Speicherstick oder eine Speicherkarte in den Drucker steckt, verhält er sich wie ein USB Cardreader und reicht das Gerät über USB weiter an den PC. Das hat zur Folge, dass sich auf ubuntu automatisch ein Nautilus Fenster öffnet, und der Drucker selber dann nicht mehr direkt auf das Medium zugreifen kann. Also: wenn man etwas direkt vom Speichermedium drucken möchte, sollte der PC ausgeschaltet oder nicht angeschlossen sein.</p>
<p>Der Papiereinzug für 10&#215;15 Fotopapier muss manuell nach vorne geschoben werden &#8211; wir haben 7 Fotos auf Normalpapier gedruckt, bis wir das &#8216;rausgefunden hatten. Dann noch 1x mal Fotopapier verschwendet um herauszufinden, daß die glänzende Seite nach unten muß.</p>
<p>Scannen</p>
<p>Beim Scannen mit Gimp oder Xsane gabs wiederholt IO-Errors. Was besser funktionierte, war das Scan-key-tool &#8220;brscan-skey&#8221; : man drückt am DCP-585CW die &#8220;Scannen&#8221;-Taste, wäht dann &#8220;Bild einscannen&#8221; &#8211; dann öffnet sich auf den PC Gimp mit dem eingescannten Bild.</p>
<p>Ich selbst brauche keinen Scanner mehr, man kann Dokumente auch gut mit einer Digitalkamera fotografieren. Tintenstrahler hat in meiner Familie auch keiner mehr. Wir hatten die Nase voll von den teuren Patronen die immer eingetrocknet sind. Foto-Abzüge macht man besser bei Schlecker o.ä. &#8211; wenn überhaupt. </p>
<p>Der Drucker kann auch LAN und WLAN &#8211; damit habe ich mich aber nicht beschäftigt.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2009/03/20/brother-dcp-585cw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AVR mit Ethernet</title>
		<link>http://blog.cipworx.org/martin/2009/02/23/avr-mit-ethernet/</link>
		<comments>http://blog.cipworx.org/martin/2009/02/23/avr-mit-ethernet/#comments</comments>
		<pubDate>Mon, 23 Feb 2009 00:21:37 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[electronics]]></category>
		<category><![CDATA[atmega]]></category>
		<category><![CDATA[avr]]></category>
		<category><![CDATA[ethernet]]></category>
		<category><![CDATA[microcontroller]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=185</guid>
		<description><![CDATA[Hab mir bei Pollin ein AVR-NET-IO Board gekauft und heute zusammengelötet. Beim ersten Versuch lief es nicht, vermutlich war die Versorgungsspannung zu gering. Dann hab&#8217; ich mal meinen usbasp an den ISP-Port angeschlossen:

avrdude -c usbasp -p m32 -D -U flash:r:pollin.hex:i
avrdude: AVR device initialized and ready to accept instructions
Reading &#124; ################################################## &#124; 100% 0.01s
avrdude: Device signature [...]]]></description>
			<content:encoded><![CDATA[<p>Hab mir bei Pollin ein AVR-NET-IO Board gekauft und heute zusammengelötet. Beim ersten Versuch lief es nicht, vermutlich war die Versorgungsspannung zu gering. Dann hab&#8217; ich mal meinen usbasp an den ISP-Port angeschlossen:<br />
<code><br />
avrdude -c usbasp -p m32 -D -U flash:r:pollin.hex:i</p>
<p>avrdude: AVR device initialized and ready to accept instructions</p>
<p>Reading | ################################################## | 100% 0.01s</p>
<p>avrdude: Device signature = 0x1e9502<br />
avrdude: current erase-rewrite cycle count is -1062731686 (if being tracked)<br />
avrdude: reading flash memory:</p>
<p>Reading | ################################################## | 100% 9.46s</p>
<p>avrdude: writing output file "pollin.hex"</p>
<p>avrdude: safemode: Fuses OK</p>
<p>avrdude done.  Thank you.</p>
<p></code></p>
<p>&#8230;funktioniert! Der Atmega32 läuft also. Dann nochmal die Spannungen an den beiden Spannungsreglern gemessen: 5,05V und 3,4V und ein weiterer Ping-Versuch:<br />
<code>ping 192.168.0.90<br />
PING 192.168.0.90 (192.168.0.90) 56(84) bytes of data.<br />
64 bytes from 192.168.0.90: icmp_seq=1 ttl=64 time=4.06 ms<br />
64 bytes from 192.168.0.90: icmp_seq=2 ttl=64 time=1.04 ms<br />
64 bytes from 192.168.0.90: icmp_seq=3 ttl=64 time=1.04 ms<br />
64 bytes from 192.168.0.90: icmp_seq=4 ttl=64 time=1.03 ms<br />
64 bytes from 192.168.0.90: icmp_seq=5 ttl=64 time=1.03 ms</p>
<p>--- 192.168.0.90 ping statistics ---<br />
5 packets transmitted, 5 received, 0% packet loss, time 3998ms<br />
rtt min/avg/max/mdev = 1.037/1.645/4.064/1.209 ms<br />
</code></p>
<p><strong>YES!</strong><br />
ok, dann mal Telnet:<br />
<code>telnet 192.168.0.90 50290<br />
Trying 192.168.0.90...<br />
Connected to 192.168.0.90.<br />
Escape character is '^]'.<br />
GETPORT 1<br />
1<br />
GETPORT 2<br />
1<br />
GETIP<br />
192.168.0.90<br />
GETADC 3<br />
560<br />
VERSION<br />
uC: ATMega32<br />
Ver: 1.03<br />
NIC: ENC28J60<br />
</code><br />
<strong><em>YES, YES, YES! SUCCESS!</em></strong> </p>
<p>In der Anleitung fand ich 2 Fehler:
<ul>
<li>Kondensator C11 steht 2x in der Stückliste, einmal als 100nF und einmal als 22pF. Richtig: 100nF &#8211; kann man auf dem Foto erkennen.</li>
<li>Kondensator C5 steht als 100nF in der Liste. Richtig: 100uF</li>
</ul>
<p>Später pack&#8217; ich die Ethersex Firmware &#8216;rein. Vorher mach&#8217; ich mich lieber nochmal im Labor schlau wegen Fusebits und Bootloader.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2009/02/23/avr-mit-ethernet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>http://blog.cipworx.org/martin/2009/02/13/pardus-linux-20082-erste-eindrucke/</link>
		<comments>http://blog.cipworx.org/martin/2009/02/13/pardus-linux-20082-erste-eindrucke/#comments</comments>
		<pubDate>Fri, 13 Feb 2009 19:22:50 +0000</pubDate>
		<dc:creator>laserman</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[distribution]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Pardus]]></category>

		<guid isPermaLink="false">http://blog.cipworx.org/martin/?p=182</guid>
		<description><![CDATA[Die Distribution Pardus ist außerhalb der Türkei noch nicht sehr bekannt. Es gibt aber schon ein deutsches Web-Forum. Siehe Wikipedia
Die Installation auf einem Athlon XP 3000+ lief problemlos und dauerte 22 Minuten. Das Setup Tool Tasma bemerkt eine niedrige Auflösung(800&#215;600) und schlägt vor, den nvidia Treiber herunterzulande und zu installieren. Wenn man diesem Vorschlag folgt, [...]]]></description>
			<content:encoded><![CDATA[<p>Die Distribution Pardus ist außerhalb der Türkei noch nicht sehr bekannt. Es gibt aber schon ein deutsches Web-Forum. Siehe <a href="http://de.wikipedia.org/wiki/Pardus#Weblinks">Wikipedia</a></p>
<p>Die Installation auf einem Athlon XP 3000+ lief problemlos und dauerte 22 Minuten. Das Setup Tool Tasma bemerkt eine niedrige Auflösung(800&#215;600) und schlägt vor, den nvidia Treiber herunterzulande und zu installieren. Wenn man diesem Vorschlag folgt, startet der Paket-Manager(GUI für PiSi). Ich gebe &#8220;nvidia&#8221; in das Suchfeld ein und PiSi bietet diverse nvidia-Treiber für verschiedene Karten. Download &#038; Install ging sehr schnell &#8211; wie alles bisher(s.u.) und nach einem reboot hatte die gewünsche Auflösung mit Hardware-3D Beschleunigung.</p>
<p>Desktop ist KDE 3.5.10 . Standard Browser ist Firefox 3.0.5 mit Flash 10, Java 1.6 und gecko-mediaplayer(using gnome mplayer). Installation und alle Programme sind auf deutsch. Nur die deutsche Rechtschreibprüfung für OpenOffice(2.4.1) muss man selber hinzufügen.</p>
<p>Was nicht so schön war:<br />
Während der Konfiguration wurde ich sehr häufig nach dem root-Passwort gefragt.</p>
<p>Was mir sehr gut gefällt: Boot von Grub bis zum Login: nur 30 Sekunden! KDE Start: 12 Sekunden.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cipworx.org/martin/2009/02/13/pardus-linux-20082-erste-eindrucke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
