<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Jörg@Home's WeBlog</title>
	<atom:link href="http://joergweis.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://joergweis.wordpress.com</link>
	<description>Hope is the first step on the road to disappointment</description>
	<lastBuildDate>Wed, 11 Jan 2012 03:39:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='joergweis.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Jörg@Home's WeBlog</title>
		<link>http://joergweis.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://joergweis.wordpress.com/osd.xml" title="Jörg@Home&#039;s WeBlog" />
	<atom:link rel='hub' href='http://joergweis.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Extend logical volume on Linux</title>
		<link>http://joergweis.wordpress.com/2012/01/03/extend-logical-volume-on-linux/</link>
		<comments>http://joergweis.wordpress.com/2012/01/03/extend-logical-volume-on-linux/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 15:59:12 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[logical]]></category>
		<category><![CDATA[lvextend]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[manager]]></category>
		<category><![CDATA[pvcreate]]></category>
		<category><![CDATA[vgextend]]></category>
		<category><![CDATA[volume]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=463</guid>
		<description><![CDATA[I am not a system administrator but I had to extend a logical volume on our search cluster nodes due to increased data usage and a storage shortage. I have not done this before and after asking a linux admin and googling some pages I discovered that all the information needed for someone not having [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=463&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am not a system administrator but I had to extend a logical volume on our search cluster nodes due to increased data usage and a storage shortage. I have not done this before and after asking a linux admin and googling some pages I discovered that all the information needed for someone not having done this before is quite insufficient and I decided to write a sum up which finally worked fine:</p>
<p><strong>Preconditions for this solution:</strong></p>
<ul>
<li>System with one SCSI controller important for below scan because host0 is used, this can be different if you have more than one SCSI controller in place</li>
<li>cfdisk or fdisk installed</li>
<li>lvm ready</li>
<li>existing Volume should be extended by a new physical volume</li>
</ul>
<p><strong>Hints:</strong></p>
<ul>
<li>sdc was the device on my system can be another one on yours</li>
<li>sdc1 will also then have another name on your system after fdisk</li>
<li>VolGroup01 was made on my system yours can have another name</li>
<li>/san mountpoint is the name on my system your mountpoint can have a different name</li>
</ul>
<p><strong>For Runaways the fast way:</strong><br />
<code style="margin-left:15px;"><br />
rescan SCSI bus_______: echo "- - -" &gt; /sys/class/scsi_host/host0/scan<br />
create lvm partitioin_: fdisk /dev/sdc<br />
create physical volume: pvcreate /dev/sdc1<br />
unmount volume________: umount /san/<br />
extend volume group___: vgextend VolGroup01 /dev/sdc1<br />
save changes__________: vgchange -a y VolGroup01<br />
extend logical volume_: lvextend /dev/VolGroup01/san /dev/sdc1<br />
check filesystem______: e2fsck -f /dev/VolGroup01/san<br />
extend filesystem_____: resize2fs /dev/VolGroup01/san<br />
mount volume__________: mount -t ext3 /dev/VolGroup01/san /san/<br />
check changes_________: df -h<br />
reboot for cowards____: shutdown -r now<br />
</code></p>
<p><strong>Detailed Doing:</strong></p>
<ul>
<li>Example for ls -l /dev/sd* before rescan</li>
<li><code>brw-rw---- 1 root disk 8, 0 Nov 9 10:21 /dev/sda<br />
brw-rw---- 1 root disk 8, 1 Nov 9 10:21 /dev/sda1<br />
brw-rw---- 1 root disk 8, 2 Nov 9 10:21 /dev/sda2<br />
brw-rw---- 1 root disk 8, 16 Nov 9 10:21 /dev/sdb<br />
brw-rw---- 1 root disk 8, 17 Nov 9 10:21 /dev/sdb1</code></li>
</ul>
<ul>
<li>Rescan of the SCSI bus</li>
<li><code>echo "- - -" &gt; /sys/class/scsi_host/host0/scan<br />
</code></li>
</ul>
<ul>
<li>Example for ls -l /dev/sd* after rescan, a new device sdc is now visible for the system</li>
<li><code>brw-rw---- 1 root disk 8, 0 Nov 9 10:21 /dev/sda<br />
brw-rw---- 1 root disk 8, 1 Nov 9 10:21 /dev/sda1<br />
brw-rw---- 1 root disk 8, 2 Nov 9 10:21 /dev/sda2<br />
brw-rw---- 1 root disk 8, 16 Nov 9 10:21 /dev/sdb<br />
brw-rw---- 1 root disk 8, 17 Nov 9 10:21 /dev/sdb1<br />
brw-rw---- 1 root disk 8, 32 Jan 3 13:52 /dev/sdc<br />
</code></li>
</ul>
<ul>
<li>Mark partition for LVM using cfdisk followed by device</li>
<li><code><code>fdisk /dev/sdc<br />
[root@tfdsypwpadmin.tdmz.hbd ~]# fdisk /dev/sdc<br />
Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklabel<br />
Building a new DOS disklabel. Changes will remain in memory only,<br />
until you decide to write them. After that, of course, the previous<br />
content won't be recoverable.The number of cylinders for this disk is set to 2610.<br />
There is nothing wrong with that, but this is larger than 1024,<br />
and could in certain setups cause problems with:<br />
1) software that runs at boot time (e.g., old versions of LILO)<br />
2) booting and partitioning software from other OSs<br />
(e.g., DOS FDISK, OS/2 FDISK)<br />
Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)Command (m for help): m<br />
Command action<br />
a toggle a bootable flag<br />
b edit bsd disklabel<br />
c toggle the dos compatibility flag<br />
d delete a partition<br />
l list known partition types<br />
m print this menu<br />
n add a new partition<br />
o create a new empty DOS partition table<br />
p print the partition table<br />
q quit without saving changes<br />
s create a new empty Sun disklabel<br />
t change a partition's system id<br />
u change display/entry units<br />
v verify the partition table<br />
w write table to disk and exit<br />
x extra functionality (experts only)Command (m for help): n<br />
Command action<br />
e extended<br />
p primary partition (1-4)<br />
p<br />
Partition number (1-4):<br />
Value out of range.<br />
Partition number (1-4): 1<br />
First cylinder (1-2610, default 1):<br />
Using default value 1<br />
Last cylinder or +size or +sizeM or +sizeK (1-2610, default 2610):<br />
Using default value 2610<br />
Command (m for help): t<br />
Selected partition 1<br />
Hex code (type L to list codes): 8e<br />
Changed system type of partition 1 to 8e (Linux LVM)<br />
Command (m for help): p</code></code>Disk /dev/sdc: 21.4 GB, 21474836480 bytes<br />
255 heads, 63 sectors/track, 2610 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes</p>
<p>Device Boot Start End Blocks Id System<br />
/dev/sdc1 1 2610 20964793+ 8e Linux LVM</p>
<p>Command (m for help): w<br />
The partition table has been altered!</p>
<p>Calling ioctl() to re-read partition table.<br />
Syncing disks.</li>
</ul>
<ul>
<li>Example for ls -l /dev/sd* after creating new partition using fdisk</li>
<li><code>brw-rw---- 1 root disk 8, 0 Nov 9 10:21 /dev/sda<br />
brw-rw---- 1 root disk 8, 1 Nov 9 10:21 /dev/sda1<br />
brw-rw---- 1 root disk 8, 2 Nov 9 10:21 /dev/sda2<br />
brw-rw---- 1 root disk 8, 16 Nov 9 10:21 /dev/sdb<br />
brw-rw---- 1 root disk 8, 17 Nov 9 10:21 /dev/sdb1<br />
brw-rw---- 1 root disk 8, 32 Jan 3 13:52 /dev/sdc<br />
brw-rw---- 1 root disk 8, 33 Jan 3 13:58 /dev/sdc1<br />
</code></li>
</ul>
<ul>
<li>Create the physical volume</li>
<li><code>[root@tfdsypwpadmin.tdmz.hbd ~]# pvcreate /dev/sdc1<br />
Physical volume "/dev/sdc1" successfully created<br />
</code></li>
</ul>
<ul>
<li>Unmount the volume</li>
<li><code>[root@tfdsypwpadmin.tdmz.hbd ~]# umount /san/<br />
</code></li>
</ul>
<ul>
<li>Extend logical volume with created physical one. We have a volume group defined with the name VolGroup01, there we will add the additional physical volume. Listing of vgdisplay:</li>
<li><code>[root@tfdsypwpadmin.tdmz.hbd ~]# vgdisplay<br />
--- Volume group ---<br />
VG Name VolGroup01<br />
System ID<br />
Format lvm2<br />
Metadata Areas 1<br />
Metadata Sequence No 2<br />
VG Access read/write<br />
VG Status resizable<br />
MAX LV 0<br />
Cur LV 1<br />
Open LV 1<br />
Max PV 0<br />
Cur PV 1<br />
Act PV 1<br />
VG Size 29.97 GB<br />
PE Size 32.00 MB<br />
Total PE 959<br />
Alloc PE / Size 959 / 29.97 GB<br />
Free PE / Size 0 / 0<br />
VG UUID 1HFeZa-IJNC-v7Wh-KKN1-VtPx-J04n-MV7YZ6<br />
[root@tfdsypwpadmin.tdmz.hbd ~]# vgextend VolGroup01 /dev/sdc1<br />
Volume group "VolGroup01" successfully extended</code></li>
</ul>
<ul>
<li>Changes are currently not visible for the node only for the volumegroup, see VolGroup01 is still of size 30GB but should be 50GB by now</li>
<li><code>[root@tfdsypwpadmin.tdmz.hbd san]# df -h<br />
Filesystem Size Used Avail Use% Mounted on<br />
/dev/mapper/VolGroup00-root<br />
16G 14G 940M 94% /<br />
/dev/sda1 99M 15M 80M 16% /boot<br />
none 3.9G 0 3.9G 0% /dev/shm<br />
/dev/mapper/VolGroup01-san<br />
30G 76M 28G 1% /san</code></li>
</ul>
<ul>
<li>Make changes persistent unmount Volume, call vgchange -a y volumegroupname and mount again</li>
<li><code>[root@tfdsypwpadmin.tdmz.hbd ~]# vgchange -a y VolGroup01<br />
1 logical volume(s) in volume group "VolGroup01" now active<br />
</code></li>
</ul>
<ul>
<li>Extend the logical volume with the size of the prior created physical volume</li>
<li><code>[root@tfdsypwpadmin.tdmz.hbd ~]# lvextend /dev/VolGroup01/san /dev/sdc1<br />
Extending logical volume san to 49.94 GB<br />
Logical volume san successfully resized</code></li>
</ul>
<ul>
<li>Extend the filesystem</li>
<li><code>[root@tfdsypwpadmin.tdmz.hbd ~]# e2fsck -f /dev/VolGroup01/san<br />
e2fsck 1.35 (28-Feb-2004)<br />
Pass 1: Checking inodes, blocks, and sizes<br />
Pass 2: Checking directory structure<br />
Pass 3: Checking directory connectivity<br />
Pass 4: Checking reference counts<br />
Pass 5: Checking group summary information<br />
/dev/VolGroup01/san: 12/3932160 files (8.3% non-contiguous), 142845/7856128 blocks<br />
[root@tfdsypwpadmin.tdmz.hbd ~]# resize2fs /dev/VolGroup01/san<br />
resize2fs 1.35 (28-Feb-2004)<br />
Resizing the filesystem on /dev/VolGroup01/san to 13090816 (4k) blocks.<br />
The filesystem on /dev/VolGroup01/san is now 13090816 blocks long.[root@tfdsypwpadmin.tdmz.hbd ~]# mount -t ext3 /dev/VolGroup01/san /san/<br />
[root@tfdsypwpadmin.tdmz.hbd ~]# df -h<br />
Filesystem Size Used Avail Use% Mounted on<br />
/dev/mapper/VolGroup00-root<br />
16G 14G 941M 94% /<br />
/dev/sda1 99M 15M 80M 16% /boot<br />
none 3.9G 0 3.9G 0% /dev/shm<br />
/dev/mapper/VolGroup01-san<br />
50G 84M 48G 1% /san</code></li>
</ul>
<ul>
<li>FINISHED</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/463/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/463/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/463/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=463&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2012/01/03/extend-logical-volume-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>
	</item>
		<item>
		<title>Erste Erfahrungen mit dem iPhone 4s oder das Batterieproblem ;-)</title>
		<link>http://joergweis.wordpress.com/2011/12/29/erste-erfahrungen-mit-dem-iphone-4s-oder-das-batterieproblem/</link>
		<comments>http://joergweis.wordpress.com/2011/12/29/erste-erfahrungen-mit-dem-iphone-4s-oder-das-batterieproblem/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 15:40:20 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[battery]]></category>
		<category><![CDATA[akku]]></category>
		<category><![CDATA[reinstall]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[iPhone 4s]]></category>
		<category><![CDATA[4s]]></category>
		<category><![CDATA[drain]]></category>
		<category><![CDATA[battery drain]]></category>
		<category><![CDATA[phantom]]></category>
		<category><![CDATA[usage]]></category>
		<category><![CDATA[phantom usage]]></category>
		<category><![CDATA[don't restore]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=458</guid>
		<description><![CDATA[Seit kurzem bin ich Besitzer des neuen iPhone 4s. Nach aller Freude über das neue Teil, Siri und schneller und überhaupt und so hat sich Akku technisch ganz schnell Ernüchterung eingestellt. Trotz Beteuerungen seitens Apple, dass mit dem 5.0.1er Firmwareupdate Akku Probleme adressiert wurden konnte ich hier leider keine signifikante Verbesserung feststellen. Wie kann man [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=458&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Seit kurzem bin ich Besitzer des neuen iPhone 4s. Nach aller Freude über das neue Teil, Siri und schneller und überhaupt und so hat sich Akku technisch ganz schnell Ernüchterung eingestellt. Trotz Beteuerungen seitens Apple, dass mit dem 5.0.1er Firmwareupdate Akku Probleme adressiert wurden konnte ich hier leider keine signifikante Verbesserung feststellen. Wie kann man feststellen dass man das Akku Problem hat. Apple beschreibt für die normale Benutzung im Standby Modus einen Verbrauch von ca. 0,5% pro Stunde. Das Akkuproblem macht sich schön im Standby Modus bemerktbar, das Gerät zieht trotz Nichtstun kontinuierlich ziemlich viel Saft. Bei mir waren das so ca. 40% über einen halben Tag hinweg was eigentlich nur 6% hätten sein sollen. Ich habe mich dann durch alle möglichen Foren und Berichte gequält und mir schon gedacht Sch**** das Ding hat ein Problem mit der Antenne und ist defekt, bis ich <a href="http://www.zdnet.com/blog/hardware/test-suggests-iphone-battery-issue-not-a-hardware-problem/16250">diesen Artikel </a>gefunden habe wo ein fixes Kerlchen herausgefunden hat, dass es offensichtlich kein Hardware Defekt ist, sondern ein Problem beim restoren von Backups gibt. Vorher hatte ich alle möglichen Hinweise auf diverse Services deaktivieren usw. usf. ausprobiert, ohne Erfolg. Die Neuinstallation mit Anlage als neues iPhone und dann alles händisch neu gesetzt brachte mich dann zum gewünschten Erfolg. Gerät ist neu geladen, war 3 h im Standby und steht immer noch bei 100%, somit für mich gecklückt und froh. Also nix an den Einstellungen herumdrehen, ist reine Zeitverschwendung, neues Gerät sofort mit neuer Firmware neu installieren und dann ja kein Restore von einem Backup machen, sondern alles neu einrichten, bis Apple einen Fix für das Problem hat.</p>
<p><a href="http://joergweis.files.wordpress.com/2011/12/foto1.png"><img class="size-medium wp-image-460 alignleft" title="Foto" src="http://joergweis.files.wordpress.com/2011/12/foto1.png?w=200&#038;h=300" alt="" width="200" height="300" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/458/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/458/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/458/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=458&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/29/erste-erfahrungen-mit-dem-iphone-4s-oder-das-batterieproblem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>

		<media:content url="http://joergweis.files.wordpress.com/2011/12/foto1.png?w=200" medium="image">
			<media:title type="html">Foto</media:title>
		</media:content>
	</item>
		<item>
		<title>iPhone 4s first review including battery life</title>
		<link>http://joergweis.wordpress.com/2011/12/25/iphone-4s-first-review-including-battery-life/</link>
		<comments>http://joergweis.wordpress.com/2011/12/25/iphone-4s-first-review-including-battery-life/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 18:36:05 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Reviews]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[UMTS]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[iPhone 4s]]></category>
		<category><![CDATA[battery life]]></category>
		<category><![CDATA[drain]]></category>
		<category><![CDATA[antenna]]></category>

		<guid isPermaLink="false">https://joergweis.wordpress.com/?p=455</guid>
		<description><![CDATA[There are a lot of articles about the iphone 4s battery issues. Starting at rumors about icloud draining ending at the infrared sensor which is used by siri when you raise your phone to your ear when using raise to speak. As far as I can state from my device there is a kind of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=455&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are a lot of articles about the iphone 4s battery issues. Starting at rumors about icloud draining ending at the infrared sensor which is used by siri when you raise your phone to your ear when using raise to speak. As far as I can state from my device there is a kind of phantom usage of about 1% drainage every few minutes in standby until you switch of siri completely, this has vanished after i have disabled siri as mentioned in this article <a href="https://discussions.apple.com/thread/3507356?start=75&amp;tstart=0">here</a>. But I do not think this is all what draines the iphones battery. The highest dropping rates come from the 3g network usage. I tried using the phone with mobile data switched off, what resulted in similar behaviour as on my iphone 4, but when you switch on mobile data you can watch the battery dropping visually. I experienced 2% in two minutes of surfing on the web, what is a not exceptable rate in comparison to my iPhone 4. So please apple follow the hints you get from your users and try to get the new comboned antenna problem right.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/455/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/455/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/455/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=455&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/25/iphone-4s-first-review-including-battery-life/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>
	</item>
		<item>
		<title>ACHTUNG Paypal Hoax / Abzocke / Betrugs Mails</title>
		<link>http://joergweis.wordpress.com/2011/12/08/achtung-paypal-hoax-abzocke-betrugs-mails/</link>
		<comments>http://joergweis.wordpress.com/2011/12/08/achtung-paypal-hoax-abzocke-betrugs-mails/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 15:17:03 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[Privatsphäre]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[achtung]]></category>
		<category><![CDATA[attention]]></category>
		<category><![CDATA[benutzerdaten]]></category>
		<category><![CDATA[betrug]]></category>
		<category><![CDATA[betrugsmail]]></category>
		<category><![CDATA[hoax]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[paypal]]></category>
		<category><![CDATA[paypal hoax]]></category>
		<category><![CDATA[paypal phishing]]></category>
		<category><![CDATA[phishing]]></category>
		<category><![CDATA[phishing mail]]></category>
		<category><![CDATA[user data]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=452</guid>
		<description><![CDATA[In den letzten Tagen habe ich einige Mails angeblich von paypal bekommen, wo ich meine Daten überprüfen sollte. Ein kurzes Studium des mitgesendeten Links in der Mail hat das als sogenanntes Phishing Mail entlarvt. Achtung also bei Mails die so aussehen, wie die Abbildung unten. Nicht schlecht gemacht aber halt trotzdem durchschaubar, zum Glück.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=452&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In den letzten Tagen habe ich einige Mails angeblich von paypal bekommen, wo ich meine Daten überprüfen sollte. Ein kurzes Studium des mitgesendeten Links in der Mail hat das als sogenanntes Phishing Mail entlarvt. Achtung also bei Mails die so aussehen, wie die Abbildung unten. Nicht schlecht gemacht aber halt trotzdem durchschaubar, zum Glück.</p>
<p><a href="http://joergweis.files.wordpress.com/2011/12/paypal_hoax.png"><img class="aligncenter size-full wp-image-453" title="paypal_hoax" src="http://joergweis.files.wordpress.com/2011/12/paypal_hoax.png?w=510" alt=""   /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/452/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=452&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/08/achtung-paypal-hoax-abzocke-betrugs-mails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>

		<media:content url="http://joergweis.files.wordpress.com/2011/12/paypal_hoax.png" medium="image">
			<media:title type="html">paypal_hoax</media:title>
		</media:content>
	</item>
		<item>
		<title>Ein Enter an einen shell Befehl senden &#8211; send a return to a shell command</title>
		<link>http://joergweis.wordpress.com/2011/12/06/ein-enter-an-einen-shell-befehl-senden-send-a-return-to-a-shell-command/</link>
		<comments>http://joergweis.wordpress.com/2011/12/06/ein-enter-an-einen-shell-befehl-senden-send-a-return-to-a-shell-command/#comments</comments>
		<pubDate>Tue, 06 Dec 2011 14:05:36 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bash scripting]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[enter]]></category>
		<category><![CDATA[expect]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[send]]></category>
		<category><![CDATA[send enter to command]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=449</guid>
		<description><![CDATA[Some of us especially the ones working in a high automated administrative environment have the need to write shell scripts issuing commands. Some of these commands like passwd or other binaries from 3rd party vendors expect you to press the enter key or an abort key stroke for continuing or aborting the operating. One of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=449&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some of us especially the ones working in a high automated administrative environment have the need to write shell scripts issuing commands. Some of these commands like passwd or other binaries from 3rd party vendors expect you to press the enter key or an abort key stroke for continuing or aborting the operating. One of the solutions out there is using expect to do this, but I wanted to avoid installing a further binary on my productional environment. So I googled around and found a solution which works fine for me. You can send any commands/character combinations to a shell command. e.g. echo -ne &#8216;\n&#8217; | crawleradmin -d $tmpCollection sends an enter to the command I issue afterwards and guess what happened, it worked. So use this method if you need it but ensure you test it in advance to avoid nasty sideeffects.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/449/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/449/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/449/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=449&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/06/ein-enter-an-einen-shell-befehl-senden-send-a-return-to-a-shell-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>
	</item>
		<item>
		<title>Alle Dateien, auch versteckte im Finder unter MacOS anzeigen</title>
		<link>http://joergweis.wordpress.com/2011/12/01/alle-dateien-auch-versteckte-im-finder-unter-macos-anzeigen/</link>
		<comments>http://joergweis.wordpress.com/2011/12/01/alle-dateien-auch-versteckte-im-finder-unter-macos-anzeigen/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 14:25:54 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Entwicklung]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[all]]></category>
		<category><![CDATA[all files]]></category>
		<category><![CDATA[alle]]></category>
		<category><![CDATA[anzeigen]]></category>
		<category><![CDATA[dateien]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[finder]]></category>
		<category><![CDATA[hidden]]></category>
		<category><![CDATA[hidden files]]></category>
		<category><![CDATA[mac os]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[versteckt]]></category>
		<category><![CDATA[versteckte]]></category>
		<category><![CDATA[versteckte dateien]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=447</guid>
		<description><![CDATA[Manchmal benötigt man einfach die Sicht auf alle Dateien in einem Ordner, vor allem wenn man zu den Technikern dieser Welt gehört. Da Apple ja bekanntlich den Benutzer vor zu viel Information und Komplexität schützt kann man diese Option nicht so einfach in den Einstellungen des Finder vornehmen. Wenn man wirklich so wie ich für [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=447&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Manchmal benötigt man einfach die Sicht auf alle Dateien in einem Ordner, vor allem wenn man zu den Technikern dieser Welt gehört. Da Apple ja bekanntlich den Benutzer vor zu viel Information und Komplexität schützt kann man diese Option nicht so einfach in den Einstellungen des Finder vornehmen. Wenn man wirklich so wie ich für die Entwicklung mit Eclipse die .plugin&#8230; Verzeichnisse und Dateien sehen will muss man auf der CommandLine = Terminal folgenden Befehl absetzen:</p>
<p><code>defaults write com.apple.Finder AppleShowAllFiles YES</code></p>
<p>mit Enter quittieren und den Finder bei gedrückter alt Taste und rechter Maustaste &#8211; Neu starten &#8211; neu starten. Ab dann sieht man alles. Wem das zuviel ist der kann die obige Zeile abändern auf ein NO am Ende und es ist wieder rückgängig gemacht. ACHTUNG es ist gut möglich dass diese Option bei einem späteren Update von Apple wieder rückgängig gemacht wird.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/447/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/447/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/447/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/447/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/447/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/447/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/447/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/447/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=447&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/01/alle-dateien-auch-versteckte-im-finder-unter-macos-anzeigen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>
	</item>
		<item>
		<title>Eclipse Indigo unter MacOS Lion oder Linux hinter einem Proxy</title>
		<link>http://joergweis.wordpress.com/2011/12/01/eclipse-indigo-unter-macos-lion-oder-linux-hinter-einem-proxy/</link>
		<comments>http://joergweis.wordpress.com/2011/12/01/eclipse-indigo-unter-macos-lion-oder-linux-hinter-einem-proxy/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 13:45:31 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Entwicklung]]></category>
		<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[behind proxy]]></category>
		<category><![CDATA[ecf]]></category>
		<category><![CDATA[ecf provider]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[eclipse.ini]]></category>
		<category><![CDATA[einstellungen]]></category>
		<category><![CDATA[hinter proxy]]></category>
		<category><![CDATA[indigo]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mac os]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[proxies]]></category>
		<category><![CDATA[proxy]]></category>
		<category><![CDATA[settings]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=440</guid>
		<description><![CDATA[Heute habe ich mir das neue Eclipse Indigo (3.7) geladen und musste diverse Plugins für die Arbeit laden. Die Update Sites haben aber alle den Dienst verweigert, sind so bei 2% immer verweilt und haben nichts weiter gemacht. Nach einiger Recherche im Netz sieht es so aus als würden die manuellen Proxy Einstellungen im GUI [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=440&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Heute habe ich mir das neue Eclipse Indigo (3.7) geladen und musste diverse Plugins für die Arbeit laden. Die Update Sites haben aber alle den Dienst verweigert, sind so bei 2% immer verweilt und haben nichts weiter gemacht. Nach einiger Recherche im Netz sieht es so aus als würden die manuellen Proxy Einstellungen im GUI nicht ziehen, da die Provider Implementierung die default die Proxy Verbindungen macht fehlerhaft implementiert ist. Um das Problem zu umgehen muss man in der eclipse.ini folgende Zeilen hinzufügen:<br />
<code><br />
-Dorg.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient<br />
-Dhttp.proxyPort=8080<br />
-Dhttp.proxyHost=XXX<br />
-Dhttp.proxyUser=XXX<br />
-Dhttp.proxyPassword=XXX<br />
-Dhttp.nonProxyHosts=localhost|127.0.0.1</code><br />
Wenn man genau wissen will wie das Ganze zustande kommt kann man <a href="http://wiki.eclipse.org/ECF_Filetransfer_Support_for_NTLMv2_Proxies">hier</a> nachsehen. Seit der Umstellung im eclipse.ini geht bei mir alles fein. Am Mac ist das ini File im Ordner Eclipse.app/Contents/MacOS zu finden. Ich persönlich finde es recht ärgerlich dass das bei so einem mittlerweile professionellen und weit verbreiteten Entwicklungstool solche Probleme macht. Verbindungen durch Proxies sollten heutzutage keine Probleme mehr machen.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/440/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/440/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/440/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=440&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/01/eclipse-indigo-unter-macos-lion-oder-linux-hinter-einem-proxy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>
	</item>
		<item>
		<title>iPhone APN Einstellungen 2.0</title>
		<link>http://joergweis.wordpress.com/2011/12/01/iphone-apn-einstellungen-2-0/</link>
		<comments>http://joergweis.wordpress.com/2011/12/01/iphone-apn-einstellungen-2-0/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 09:45:12 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[3G]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Connectivity]]></category>
		<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[APN]]></category>
		<category><![CDATA[benm]]></category>
		<category><![CDATA[daten]]></category>
		<category><![CDATA[datennetzwerk]]></category>
		<category><![CDATA[einstellungen]]></category>
		<category><![CDATA[help.benm.at]]></category>
		<category><![CDATA[installieren]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[mobil]]></category>
		<category><![CDATA[mobile daten]]></category>
		<category><![CDATA[profil]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[UMTS]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=432</guid>
		<description><![CDATA[Hi. Letztes Jahr habe ich einen Artikel hier verfasst zur Einstellung der APN Einstellungen für das mobile Datennetz beim iPhone für A1. Bei den neueren Versionen hat man jetzt nicht mehr die Möglichkeit, diese Einstellungen selbst zu machen, hier muss ein sogenanntes Profile eingespielt werden. Bei Vertragsgebundenen Telefonen ist das bereits für den jeweiligen Provider [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=432&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi. Letztes Jahr habe ich einen Artikel hier verfasst zur Einstellung der APN Einstellungen für das mobile Datennetz beim iPhone für A1. Bei den neueren Versionen hat man jetzt nicht mehr die Möglichkeit, diese Einstellungen selbst zu machen, hier muss ein sogenanntes Profile eingespielt werden. Bei Vertragsgebundenen Telefonen ist das bereits für den jeweiligen Provider eingespiel, bei netzoffenen Geräten, wie z.B. meinem iPhone 4 ist da nix drin und somit kann das mobile Datennetzwerk auch nicht aktiviert werden. Nach kurzer Recherche im Internet bin ich auf eine Seite, die mir bereits des öfteren geholfen hat gestossen <a href="http://www.giga.de/benm/2009/06/13/helpbenmat/">benm.at</a>. Die Seite ist zwar gesiedelt aber der Inhalt ist nach wie vor der gleiche. Mit dem iPhone den vorigen <a href="http://www.giga.de/benm/2009/06/13/helpbenmat/">Link</a> ansurfen und dann den Anweisungen am Bildschirm folgen. Es sollte ein Leichtes sein seinen Provider auszuwählen und dann das geeignete Profile herunterzuladen und einzuspielen. Bei mir hat das Ganze ca. 5 min. gedauert und jetzt funktioniert alles. Im Zuge der Auswahl wird dann auch das benm helpcenter url als Icon am Desktop vom iPhone abgelegt, ist aber nur ein Weblink, jedoch sehr nützlich sollte man sich die Einstellungen löschen.</p>
<p>Schrittweises Vorgehen:</p>
<ul>
<li>am iPhone Safari öffnen</li>
<li>http://help.benm.at eingeben</li>
<li>Punkt &#8220;Tethering&#8221; auswählen</li>
<li>Land auswählen</li>
<li>Provider auswählen</li>
<li>Download auswählen (Profil wird heruntergeladen und angezeigt)</li>
<li>Installieren auswählen</li>
<li>Fertig</li>
</ul>
<p>Fotostrecke:</p>
<p><a href="http://joergweis.files.wordpress.com/2011/12/foto-1.png"><img class="size-medium wp-image-434" title="Foto 1" src="http://joergweis.files.wordpress.com/2011/12/foto-1.png?w=200&#038;h=300" alt="" width="200" height="300" /></a></p>
<p style="text-align:left;"><a href="http://joergweis.files.wordpress.com/2011/12/foto-2.png"><img class="size-medium wp-image-435" title="Foto 2" src="http://joergweis.files.wordpress.com/2011/12/foto-2.png?w=200&#038;h=300" alt="" width="200" height="300" /></a></p>
<p style="text-align:left;"><a href="http://joergweis.files.wordpress.com/2011/12/foto-3.png"><img class="size-medium wp-image-436" title="Foto 3" src="http://joergweis.files.wordpress.com/2011/12/foto-3.png?w=200&#038;h=300" alt="" width="200" height="300" /></a></p>
<p style="text-align:left;"><a href="http://joergweis.files.wordpress.com/2011/12/foto-4.png"><img class="size-medium wp-image-437" title="Foto 4" src="http://joergweis.files.wordpress.com/2011/12/foto-4.png?w=200&#038;h=300" alt="" width="200" height="300" /></a></p>
<p style="text-align:left;"><a href="http://joergweis.files.wordpress.com/2011/12/foto.png"><img class="size-medium wp-image-438" title="Foto" src="http://joergweis.files.wordpress.com/2011/12/foto.png?w=200&#038;h=300" alt="" width="200" height="300" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/432/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/432/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/432/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=432&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/01/iphone-apn-einstellungen-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>

		<media:content url="http://joergweis.files.wordpress.com/2011/12/foto-1.png?w=200" medium="image">
			<media:title type="html">Foto 1</media:title>
		</media:content>

		<media:content url="http://joergweis.files.wordpress.com/2011/12/foto-2.png?w=200" medium="image">
			<media:title type="html">Foto 2</media:title>
		</media:content>

		<media:content url="http://joergweis.files.wordpress.com/2011/12/foto-3.png?w=200" medium="image">
			<media:title type="html">Foto 3</media:title>
		</media:content>

		<media:content url="http://joergweis.files.wordpress.com/2011/12/foto-4.png?w=200" medium="image">
			<media:title type="html">Foto 4</media:title>
		</media:content>

		<media:content url="http://joergweis.files.wordpress.com/2011/12/foto.png?w=200" medium="image">
			<media:title type="html">Foto</media:title>
		</media:content>
	</item>
		<item>
		<title>Das @ Zeichen im Windows Remote Desktop unter Mac OS</title>
		<link>http://joergweis.wordpress.com/2011/12/01/das-zeichen-im-windows-remote-desktop-unter-mac-os/</link>
		<comments>http://joergweis.wordpress.com/2011/12/01/das-zeichen-im-windows-remote-desktop-unter-mac-os/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 09:21:11 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[@]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[remotedesktop]]></category>
		<category><![CDATA[tastenkombination]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=430</guid>
		<description><![CDATA[Ein kleines Problem hatte sich bei mir eingestellt. In meiner Windows Remote Desktop Session vom Mac aus hatte ich immer wieder das Problem, dass ich bei Email Adressen es nicht geschafft habe ein @ Zeichen einzugeben. Dabei ist es ganz einfach. Nach ein bisschen googeln wurde ich fündig. Die Tastenkombination dafür ist CTRL-ALT-Q.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=430&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ein kleines Problem hatte sich bei mir eingestellt. In meiner Windows Remote Desktop Session vom Mac aus hatte ich immer wieder das Problem, dass ich bei Email Adressen es nicht geschafft habe ein @ Zeichen einzugeben. Dabei ist es ganz einfach. Nach ein bisschen googeln wurde ich fündig. Die Tastenkombination dafür ist CTRL-ALT-Q.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/430/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/430/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/430/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=430&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/01/das-zeichen-im-windows-remote-desktop-unter-mac-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>
	</item>
		<item>
		<title>SVN Development and DiffMerge using RapidSVN</title>
		<link>http://joergweis.wordpress.com/2011/12/01/svn-development-and-diffmerge-using-rapidsvn/</link>
		<comments>http://joergweis.wordpress.com/2011/12/01/svn-development-and-diffmerge-using-rapidsvn/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 08:36:59 +0000</pubDate>
		<dc:creator>joergweis</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[HOWTO's]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[programs]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[diff]]></category>
		<category><![CDATA[diffmerge]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[merges]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[programmer]]></category>
		<category><![CDATA[rapidsvn]]></category>
		<category><![CDATA[smultron]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[sourcecode]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://joergweis.wordpress.com/?p=428</guid>
		<description><![CDATA[Hi. After moving back to a mac for working I had to install some development tools. I need a programmers editor, a svn client and a diff and merge tool. I decided to go with Smultron, RapidSVN and DiffMerge. All the apps work fine the only problem I had was to get DiffMerge working when [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=428&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi. After moving back to a mac for working I had to install some development tools. I need a programmers editor, a svn client and a diff and merge tool. I decided to go with Smultron, RapidSVN and DiffMerge. All the apps work fine the only problem I had was to get DiffMerge working when calling a diff or merge from within RapidSVN. <a href="http://www.rapidsvn.org/index.php/OnlineHelp:Contents">See this link</a> for the right configuration and it works fine.</p>
<p>Links:</p>
<ul>
<li><a href="http://sourceforge.net/projects/smultron/">Smultron Download Link</a> newer Version of Smultron moved to the App Store for about 3$</li>
<li><a href="http://www.macupdate.com/app/mac/25426/diffmerge">DiffMerge Download Link</a></li>
<li><a href="http://rapidsvn.tigris.org/">RapidSVN Download Link</a></li>
</ul>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/joergweis.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/joergweis.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/joergweis.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/joergweis.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/joergweis.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/joergweis.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/joergweis.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/joergweis.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/joergweis.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/joergweis.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/joergweis.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/joergweis.wordpress.com/428/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/joergweis.wordpress.com/428/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/joergweis.wordpress.com/428/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=joergweis.wordpress.com&amp;blog=215773&amp;post=428&amp;subd=joergweis&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://joergweis.wordpress.com/2011/12/01/svn-development-and-diffmerge-using-rapidsvn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/9c5078cfda599f9b70ecd7b17d7edab1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">joerg(i)</media:title>
		</media:content>
	</item>
	</channel>
</rss>
