<?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>Cauwenbergh.be weblog</title>
	<atom:link href="http://blog.cauwenbergh.be/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.cauwenbergh.be</link>
	<description>When communication is needed</description>
	<lastBuildDate>Tue, 06 Jul 2010 14:58:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Apple Macbook Pro Bluetooth issue</title>
		<link>http://blog.cauwenbergh.be/mac-os/apple-macbook-pro-bluetooth-issue.html</link>
		<comments>http://blog.cauwenbergh.be/mac-os/apple-macbook-pro-bluetooth-issue.html#comments</comments>
		<pubDate>Tue, 06 Jul 2010 14:55:48 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[failure]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macbook]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=135</guid>
		<description><![CDATA[macbook bluetooth not working, apple bluetooth werkt niet]]></description>
			<content:encoded><![CDATA[<p>Sometimes the bluetooth device of my mac suddenly disappears and could not be used untill cold reboot!<br />
The message i got on my dutch version of Mac OS is: Bluetooth apparaat niet beschikbaar<br />
Steps to take to solve the issue:<br />
<script type="text/javascript"><!--
google_ad_client = "pub-1114332043095871";
/* 468x60, blog.cauwenbergh tussen post */
google_ad_slot = "7932083405";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Most of the time a hold down of powerbutton and restart will help, but if not:<br />
1) Put your mac in sleep state and wake him again, sometimes it helps&#8230;<br />
2) click on the apple icon and choose restart<br />
3) if the steps from above does not work, unplug all devices and also the power, then choose shut down and restart without power and devices, in most cases the BT is back working!</p>
<p>Hope this will help you&#8230; Last solution is an SMC reset as described on apple&#8217;s supportsite.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/mac-os/apple-macbook-pro-bluetooth-issue.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Master Master Replication on CentOS 5</title>
		<link>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html</link>
		<comments>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html#comments</comments>
		<pubDate>Tue, 22 Jun 2010 18:00:25 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=127</guid>
		<description><![CDATA[This tutorial describes how to set up a MySQL master-master replication. This is usefull is one of the servers drops down, the other can take over without any data loss, it will also be used as slave for the live one.
Step 1:
Install mysql on master 1 (slave 2) and slave 1 (master2).
#yum install mysql-server mysql
Master [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial describes how to set up a MySQL master-master replication. This is usefull is one of the servers drops down, the other can take over without any data loss, it will also be used as slave for the live one.</p>
<p><span style="text-decoration: underline;"><strong>Step 1:</strong></span><br />
Install mysql on master 1 (slave 2) and slave 1 (master2).<br />
#yum install mysql-server mysql</p>
<p>Master 1 (slave 2) ip: 10.0.0.1<br />
Slave 1 (master 2) ip: 10.0.0.2<br />
<!--adsense--><br />
<span style="text-decoration: underline;"><strong>Step 2:</strong></span><br />
On Master 1, change /etc/my.cnf as follow:</p>
<p>[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
old_passwords=1<br />
user=mysql<br />
log-bin=mysql-bin<br />
server-id=1</p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 3:</strong></span><br />
Logon to mysql on master 1 (in our case the server with ip 10.0.0.1):<br />
mysql&gt; grant replication slave on *.* to &#8216;<span style="color: #339966;">repl</span>&#8216;@&#8217;%&#8217; identified by &#8216;<span style="color: #339966;">WhatYouwant</span>&#8216;;</p>
<p>After this restart the mysql on master 1</p>
<p><span style="color: #999999;"><em>We used the % but you can set here also 10.0.0.2 for a more secure server!</em></span></p>
<p><span style="text-decoration: underline;"><strong>Step 4:</strong></span><br />
On slave 1 (in our case the server with ip 10.0.0.2) edit /etc/my.cnf as follow:</p>
<p>[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
user=mysql<br />
old_passwords=1<br />
server-id=2</p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 5:</strong></span><br />
Logon to mysql master 1:<br />
mysql&gt; show master status;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| File             | Position | Binlog_Do_DB | Binlog_Ignore_DB |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| <span style="color: #ff0000;">mysql-bin.000007</span> |     <span style="color: #ff0000;">2013</span> |              |                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
1 row in set (0.00 sec)</p>
<p><span style="text-decoration: underline;"><strong>Step 6:</strong></span></p>
<p>Logon to mysql on slave 1 and use the infomation from step 5:<br />
mysql&gt;CHANGE MASTER TO MASTER_HOST=&#8217;10.0.0.1&#8242;, MASTER_USER=&#8217;<span style="color: #339966;">repl</span>&#8216;, MASTER_PASSWORD=&#8217;<span style="color: #339966;">WhatYouWant</span>&#8216;, MASTER_LOG_FILE=&#8217;<span style="color: #ff0000;">mysql-bin.000007</span>&#8216;, MASTER_LOG_POS=<span style="color: #ff0000;">2013</span>;<br />
mysql&gt;start slave;<br />
mysql&gt;show slave status\G</p>
<p><span style="color: #808080;">*************************** 1. row ***************************<br />
Slave_IO_State: Waiting for master to send event<br />
Master_Host: 10.0.0.1<br />
Master_User: repl<br />
Master_Port: 3306<br />
Connect_Retry: 60<br />
Master_Log_File: mysql-bin.000007<br />
Read_Master_Log_Pos: 2013<br />
Relay_Log_File: mysqld-relay-bin.000003<br />
Relay_Log_Pos: 2150<br />
Relay_Master_Log_File: mysql-bin.000007<br />
Slave_IO_Running: Yes<br />
Slave_SQL_Running: Yes<br />
Replicate_Do_DB:<br />
Replicate_Ignore_DB:<br />
Replicate_Do_Table:<br />
Replicate_Ignore_Table:<br />
Replicate_Wild_Do_Table:<br />
Replicate_Wild_Ignore_Table:<br />
Last_Errno: 0<br />
Last_Error:<br />
Skip_Counter: 0<br />
Exec_Master_Log_Pos: 2013<br />
Relay_Log_Space: 2150<br />
Until_Condition: None<br />
Until_Log_File:<br />
Until_Log_Pos: 0<br />
Master_SSL_Allowed: No<br />
Master_SSL_CA_File:<br />
Master_SSL_CA_Path:<br />
Master_SSL_Cert:<br />
Master_SSL_Cipher:<br />
Master_SSL_Key:<br />
Seconds_Behind_Master: 0<br />
1 row in set (0.00 sec)<br />
</span><br />
<!--adsense--><br />
<span style="text-decoration: underline;"><strong>Step 7:</strong></span><br />
Now we going to make slave 1 -&gt; master 2 and master 1 -&gt; slave 2 so the master-master replication will work!<br />
On slave 1 (ip 10.0.0.2) we add a rule to /etc/my.cnf:<br />
[mysqld]<br />
datadir=/var/lib/mysql<br />
socket=/var/lib/mysql/mysql.sock<br />
user=mysql<br />
old_passwords=1<br />
server-id=2<br />
<em>log-bin</em></p>
<p>[mysqld_safe]<br />
log-error=/var/log/mysqld.log<br />
pid-file=/var/run/mysqld/mysqld.pid</p>
<p><span style="text-decoration: underline;"><strong>Step 8:</strong></span><br />
On slave 1 (ip 10.0.0.2 in our example) create the replication in mysql:<br />
mysql&gt; grant replication slave on *.* to &#8216;repl&#8217;@'%&#8217; identified by &#8216;<span style="color: #99cc00;">WhatYouWant</span>&#8216;;</p>
<p><span style="color: #999999;">You can change the % to be more safe in 10.0.0.1!</span></p>
<p>mysql&gt; show master status;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| File              | Position | Binlog_Do_DB | Binlog_Ignore_DB |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
| <span style="color: #ff00ff;">mysqld-bin.000005</span> |      <span style="color: #ff00ff;">314</span> |              |                  |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+<br />
1 row in set (0.00 sec)</p>
<p><span style="text-decoration: underline;"><strong>Step 9:</strong></span><br />
On master 1 (ip 10.0.0.1 in our example) add the user to mysql (use information from step 8):</p>
<p>mysql&gt;CHANGE MASTER TO MASTER_HOST=&#8217;10.0.0.2&#8242;, MASTER_USER=&#8217;repl&#8217;,  MASTER_PASSWORD=&#8217;<span style="color: #99cc00;">WhatYouWant</span>&#8216;, MASTER_LOG_FILE=&#8217;<span style="color: #ff00ff;">mysqld-bin.000005</span>&#8216;,  MASTER_LOG_POS=<span style="color: #ff00ff;">314</span>;</p>
<p><span style="text-decoration: underline;"><strong>Step 10:</strong></span><br />
Restart both mysql services on master 1 (slave 2) and slave 1 (master 2).</p>
<p>On master 1:<br />
mysql&gt; start slave;</p>
<p>On slave 1:<br />
mysql&gt; show master status;</p>
<p>On master 1:<br />
mysql&gt; show slave status\G<br />
<!--adsense--></p>
<pre>So now you can test on both servers if your config works! Hope you enjoy the tutorial and have a safe configuration! If you want safe hosting with this solution you can also take hosting by <a title="Netdistri bvba" href="http://netdistri.eu" target="_blank">Netdistri bvba</a>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/mysql-master-master-replication-on-centos-5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install postfix mailserver only for forwarding</title>
		<link>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html</link>
		<comments>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html#comments</comments>
		<pubDate>Tue, 01 Jun 2010 20:49:06 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Dutchzone]]></category>
		<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Netdistri]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=124</guid>
		<description><![CDATA[For some reasons i only had to install a mailserver for forwarding mails to other mailaddresses. So on Centos here you have it:
#yum install postfix smtpd
edit /etc/postfix/main.cf
myhostname = your.domain.tld
virtual_alias_domains = redirectdomain1.tld, redirectdomain2.tld
virtual_alias_maps = hash:/etc/postfix/virtual
edit /etc/postfix/virtual
address@redirectdomain1.tld   addresto@domainto.tld
@redirectdomain2.tld  addresstocatchall@domaintoxx.tld
After this run the following commands:
# postalias /etc/aliases
# postmap /etc/postfix/access
# postmap /etc/postfix/virtual
# postmap /etc/postfix/transport
# cp /etc/aliases /etc/postfix/
# newaliases
# postfix [...]]]></description>
			<content:encoded><![CDATA[<p>For some reasons i only had to install a mailserver for forwarding mails to other mailaddresses. So on Centos here you have it:</p>
<p>#yum install postfix smtpd</p>
<p>edit /etc/postfix/main.cf</p>
<p>myhostname = your.domain.tld</p>
<p>virtual_alias_domains = redirectdomain1.tld, redirectdomain2.tld<br />
virtual_alias_maps = hash:/etc/postfix/virtual</p>
<p>edit /etc/postfix/virtual</p>
<p>address@redirectdomain1.tld   addresto@domainto.tld</p>
<p>@redirectdomain2.tld  addresstocatchall@domaintoxx.tld</p>
<p>After this run the following commands:</p>
<p># postalias /etc/aliases<br />
# postmap /etc/postfix/access<br />
# postmap /etc/postfix/virtual<br />
# postmap /etc/postfix/transport<br />
# cp /etc/aliases /etc/postfix/<br />
# newaliases<br />
# postfix reload</p>
<p>Now the server is ready to forward your mails!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/linux/install-postfix-mailserver-only-for-forwarding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobistar Internet Everywhere on Snow Leopard 10.6.x</title>
		<link>http://blog.cauwenbergh.be/iphone-gsm/mobistar-internet-everywhere-on-snow-leopard-10-6-x.html</link>
		<comments>http://blog.cauwenbergh.be/iphone-gsm/mobistar-internet-everywhere-on-snow-leopard-10-6-x.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 17:06:41 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Iphone - GSM]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=122</guid>
		<description><![CDATA[New driver internetmodem Icon 225]]></description>
			<content:encoded><![CDATA[<p>Yesterday i downloaded the latest driver for my Qualcom Icon 225 modem and installed this driver on my macbook.</p>
<p>The driver is working very good, starting faster and connecting is also better.</p>
<p>You can find the driver here: <a title="Driver Icon 225" href="http://www.option.com/en/support/software-download/" target="_blank">http://www.option.com/en/support/software-download/</a> Just fill your serialnumber in and choose the latest macdriver! Change the extention to dmg if it is not so, install an ignore the error!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/iphone-gsm/mobistar-internet-everywhere-on-snow-leopard-10-6-x.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hello Proximus are you pro?</title>
		<link>http://blog.cauwenbergh.be/iphone-gsm/hello-proximus-are-you-pro.html</link>
		<comments>http://blog.cauwenbergh.be/iphone-gsm/hello-proximus-are-you-pro.html#comments</comments>
		<pubDate>Wed, 23 Dec 2009 07:11:22 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Iphone - GSM]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=115</guid>
		<description><![CDATA[proximus 3G Iphone]]></description>
			<content:encoded><![CDATA[<p>After weeks still marked as a residential customer by Proximus, unless i called many time to solve this issue, so until today have some problems with their services:</p>
<p>- Can not login to the fleetmanagement tool</p>
<p>- Can not call to the right customernumber because they don&#8217;t recognize me as a business customer</p>
<p>- 3G coverage problem in my home, not that i need this but it is annoying because need to do the switch off manual on my iphone (follow my twitter about this issue)</p>
<p>- Having a discussion about the offer they made to me, did an official complaint about this still waiting for the answer</p>
<p>The good part is I have coverage and people can reach me&#8230;</p>
<p>So i doubt that there is one provider in Belgium who will do it right!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/iphone-gsm/hello-proximus-are-you-pro.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobistar has screwed it again&#8230;</title>
		<link>http://blog.cauwenbergh.be/iphone-gsm/mobistar-has-screwed-it-again.html</link>
		<comments>http://blog.cauwenbergh.be/iphone-gsm/mobistar-has-screwed-it-again.html#comments</comments>
		<pubDate>Sun, 22 Nov 2009 07:19:08 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Iphone - GSM]]></category>
		<category><![CDATA[mobistar coverage in area Dudzele]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/no-category/mobistar-has-screwed-it-again.html</guid>
		<description><![CDATA[On 22th of october Mobistar lost the network coverage in the area of Dudzele, which means that in out office we could not receive or make any calls by our cellular phones, after calling the helpdesk (5595) we get an number for this case and on 23th of October everything seems to work again!!! Happy [...]]]></description>
			<content:encoded><![CDATA[<p>On 22th of october Mobistar lost the network coverage in the area of Dudzele, which means that in out office we could not receive or make any calls by our cellular phones, after calling the helpdesk (5595) we get an number for this case and on 23th of October everything seems to work again!!! Happy me on that day, because after a day of complaining customers they are back satisfied&#8230; And then suddenly on the 5th of november again no network coverage, we called to the support, again we get a lucky number for a new case, on the 6th of November nothing changed, complaints from out customers and so on, so called back to the support of Mobistar but they told me nothing had been done for the casenumber&#8230; (you can read this in the letter i send to Mobistar nv). After that we have decided to change our cellular phones to an other provider (so Proximus here we come, and now we are!). After this we only changed the phonenumber to call, not the datacards, after 3 days suddenly Mobistar cutted off our datacard (Internet Everywhere), little mistake i think, so we called to the support again, the answer: Sorry, but we can not reactivate your sim for data, you have to take a new simcard etc&#8230; So Mobistar when do you learn how to do it right?<br />
<span id="more-92"></span><br />
Here is my letter to Mobistar (in dutch):<br />
&#8212;<br />
Betreft: dossiernr. 8251240 + voorgaande dossier<br />
Geachte,</p>
<p>Naar aanleiding van de recente problemen met de dekking in ons kantoor en het wegvallen<br />
van deze dekking zowel tijdens gesprekken als in stand-by waar wij op dat ogenblik niet meer<br />
bereikbaar zijn voor onze klanten zouden wij graag bevestiging krijgen zoals de dame aan de<br />
support ons meedeelde.</p>
<p>Als trouwe business klant vind ik het maar al te erg dat zelfs de support tegenwoordig<br />
gedurende 4 minuten nodig heeft alvorens me te woord kunnen te staan. Daarboven komt te<br />
staan dat dossier 8251240 gemeld werd op donderdag 05/11/2009 en er pas in de<br />
voormiddag van vrijdag 06/11/2009 actie ondernomen is door de diensten van Mobistar om<br />
dit dossier te overhandigen aan een technische dienst! Omstreeks 13u30 heb ik nogmaals<br />
contact gehad met het nr. 5995 waar men enkel kon zeggen dat er in de loop van de<br />
namiddag iemand van Sony-Ericsson naar het probleem ging kijken!</p>
<p>Dergelijk voorval hadden we ook al met een vorig dossier (nr. 8116700) dat betrekking had<br />
op de dekking in ons kantoor, het vorige dossier is echter nog niet zo lang geleden dat ons<br />
alles goed in het geheugen zat van de hinder die onze klanten hierdoor ondervonden.<br />
Laat staan over het probleem met mijn MacBook Pro waar OS Snow Leopard op staat en de<br />
Internet Everywhere dienst van Mobistar, hierop blijkt volgens uw support geen oplossing te<br />
zijn voor het installeren van de USB-modem, van professionele service is dan weinig te<br />
merken als men enkel kan zeggen dat ik dan maar een oud besturingssysteem moet<br />
installeren op mijn laptop. Er is wel degelijk een oplossing maar die mocht men niet geven liet<br />
men toen vallen. Wel na 2 dagen zoeken had ik de oplossing, uw dienst nog steeds niet tot op<br />
heden! Hiervan is het dossiernr. 7703930</p>
<p>Wij hopen dan ook snel reactie te krijgen zodat wij de mogelijkheid hebben zonder verdere<br />
kosten over te stappen naar een andere mobiele provider. Mijn klantnr. is YYYYYYYYYYYY</p>
<p>Hoogachtend,</p>
<p>Robin Cauwenbergh<br />
8380 Dudzele<br />
&#8212;<br />
The reaction of Mobistar was that i can leave without any further costs!!! And on the day of 19th november they send me an sms that the problem is solved, that nice but on that time i allready had an other provider! In this story i must say the people at the Mobistar supportdesk did their work perfect, so don&#8217;t blame them but the other departments have screwed everything!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/iphone-gsm/mobistar-has-screwed-it-again.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keygenguru malware injection on server</title>
		<link>http://blog.cauwenbergh.be/no-category/keygenguru-malware-injection-on-server.html</link>
		<comments>http://blog.cauwenbergh.be/no-category/keygenguru-malware-injection-on-server.html#comments</comments>
		<pubDate>Thu, 29 Oct 2009 13:45:38 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[No Category]]></category>
		<category><![CDATA[injection]]></category>
		<category><![CDATA[keygenguru]]></category>
		<category><![CDATA[malware]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/no-category/keygenguru-malware-injection-on-server.html</guid>
		<description><![CDATA[Some days ago one of our webservers started showing now and then by visiting a website a blank page of a popup, it only show in the source some javascript&#8230; After days we scanned the whole system:
#grep -H &#8220;eval(base64_decode&#8221; /var/www/vhosts/* -R &#124; cut -d: -f1 > /tmp/results_scan
]]></description>
			<content:encoded><![CDATA[<p>Some days ago one of our webservers started showing now and then by visiting a website a blank page of a popup, it only show in the source some javascript&#8230; After days we scanned the whole system:</p>
<p>#grep -H &#8220;eval(base64_decode&#8221; /var/www/vhosts/* -R | cut -d: -f1 > /tmp/results_scan</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/no-category/keygenguru-malware-injection-on-server.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Update blog pages</title>
		<link>http://blog.cauwenbergh.be/no-category/update-blog-pages.html</link>
		<comments>http://blog.cauwenbergh.be/no-category/update-blog-pages.html#comments</comments>
		<pubDate>Thu, 01 Oct 2009 11:19:05 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Dutchzone]]></category>
		<category><![CDATA[Netdistri]]></category>
		<category><![CDATA[No Category]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=86</guid>
		<description><![CDATA[Today put some new pages on the blog about the why and how between Dutchzone and Netdistri bvba.
Some people started me asking always the same questions so here are the answers now 

Vandaag heb ik even de pagina&#8217;s bijgevoegd over hoe het nu zit tussen Dutchzone en Netdistri bvba en wat er nog waar gebeurt.
Steeds [...]]]></description>
			<content:encoded><![CDATA[<p>Today put some new pages on the blog about the why and how between Dutchzone and Netdistri bvba.<br />
Some people started me asking always the same questions so here are the answers now <img src='http://blog.cauwenbergh.be/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<!--adsense--><br />
Vandaag heb ik even de pagina&#8217;s bijgevoegd over hoe het nu zit tussen Dutchzone en Netdistri bvba en wat er nog waar gebeurt.<br />
Steeds meer mensen komen met deze vragen en daarom hierbij dus de antwoorden! (enkel in het Engels)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/no-category/update-blog-pages.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobistar Internet Everywhere after Leopard Upgrade</title>
		<link>http://blog.cauwenbergh.be/internet-seo-money/mobistar-internet-everywhere-after-leopard-upgrade.html</link>
		<comments>http://blog.cauwenbergh.be/internet-seo-money/mobistar-internet-everywhere-after-leopard-upgrade.html#comments</comments>
		<pubDate>Fri, 11 Sep 2009 16:09:07 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[Internet - SEO - Money]]></category>
		<category><![CDATA[Iphone - GSM]]></category>
		<category><![CDATA[mobistar]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[support]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=63</guid>
		<description><![CDATA[Today after upgrading to Mac Snow Leopard (Mac OS 10.6) my internet everywhere usb-modem let hang the whole macbook, so i called to Mobistar support desk for Internet 0800-85953 and choose in the menu option 2 for technical information. Here they say the only solution is to reinstall my old OS, so there was no [...]]]></description>
			<content:encoded><![CDATA[<p>Today after upgrading to Mac Snow Leopard (Mac OS 10.6) my internet everywhere usb-modem let hang the whole macbook, so i called to Mobistar support desk for Internet 0800-85953 and choose in the menu option 2 for technical information. Here they say the only solution is to reinstall my old OS, so there was no easy way they say, you can only put your system back to the boxinstallation and reinstall everything, yeahhh duh, not me was my idea&#8230; He also say i don&#8217;t know when we got a sollution, and you can not change your usb-modem for an other, this is not allowed by persons in higher ranking in the company! So, i&#8217;m searching on the website of http://www.option.com for a newer driver for my Qualcomm 3G  ICON GI0225 usbmodem, after 2 minutes got the download page and downloaded the driver (<a title="qualcomm driver GI0225 Mobistar" href="http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip">http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip</a>). I removed first my Internet Everywhere from Mobistar, then installed the new driver, after that rebooted and then reinstalled Internet Everywhere, because my mac keeps the newest files everything is working now again&#8230; SO MOBISTAR LEARN HOW TO GET CUSTOMERS SATISFIED AND DON&#8217;T SEND THEM AWAY WITHOUT A SOLUTION!!!!</p>
<p><!--adsense--></p>
<p>Voor deze ene keer zal ik het ook in het nederlands posten gezien de meeste mensen het zo beter gaan vinden en omdat het over een Belgisch product gaat. Vandaag heb ik Snow Leopard op mijn Macbook Pro gezet, allemaal leuk, geen enkel probleem gehad tot ik deze namiddag lekken mijn Mobistar Internet Everywhere ging gebruiken, toen liep het systeem vast van zodra de USB-Modem in de computer ging&#8230; Dus ik bel even Mobistar op 0800-85953 (want op het gewone nummer kunnen ze een Business klant niet helpen met Internet Everywhere toestanden) nu goed ik kies daar optie 2 voor technische problemen, zo slim ben ik dus nog&#8230; Krijg ik daar een heer aan de lijn en die zegt meneer gebruikt een Mac en heeft een nieuw besturingssysteem, wel dan zit er niets anders op dan je systeem opnieuw naar het vroegere systeem te zetten, allemaal leuk maar dat is niet zo leuk om te doen, je kan eerst alles backuppen, daarna lekker alles terug installeren. Dus ik wijs hen erop dat ze hun klanten toch iets moeten kunnen bieden, onderbreekt die gast mij en zegt: meneer, we weten een oplossing maar we mogen ze van onze overste niet aanbieden, dus bedank ik mooi en dacht ik nogmaals opnieuw installeren, jakkes no way! Ik ben op het internet op zoek gegaan bij de fabrikant van mijn USB-modem (Option) Qualcomm GI0225 en vond daar toevallig wel nieuwe werkende drivers&#8230; Hoe ga je te werk, dat vond ik na een paar pogingen: 1) verwijder je bestaande Mobistar software 2) reboot je Mac 3) installeer de nieuwe driver (<a title="driver qualcomm GI0225" href="http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip">http://blog.cauwenbergh.be/downloads/Option72Driverv2.15.0for.dmg.zip</a>) 4) reboot je Mac nogmaals en dan stop je gewoon je modem van Mobistar weer in, laat de software installeren van die stick, geen probleem enkel de nieuwe bestanden blijven behouden dus overschrijven van je nieuwe driver doet hij niet! EN OPGELOST je hebt weer Internet&#8230;</p>
<p>DUS MOBISTAR WEET WEER HOE DE KLANT NIET GELUKKIG TE MAKEN EN HEM SNEL WEG TE ZENDEN IPV. DE TECHNISCHE MENSEN EEN OPLOSSING TE LATEN ZOEKEN DIE ECHT NIET MOEILIJK IS!!!! ZOU IK NU KORTING KRIJGEN VOOR DE OPLOSSING DIE IK ZELF MOEST ZOEKEN???</p>
<p><!--adsense--></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/internet-seo-money/mobistar-internet-everywhere-after-leopard-upgrade.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Mounting issues over samba share</title>
		<link>http://blog.cauwenbergh.be/no-category/mounting-samba-vfat-ntfs.html</link>
		<comments>http://blog.cauwenbergh.be/no-category/mounting-samba-vfat-ntfs.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 14:20:12 +0000</pubDate>
		<dc:creator>Robin</dc:creator>
				<category><![CDATA[No Category]]></category>

		<guid isPermaLink="false">http://blog.cauwenbergh.be/?p=58</guid>
		<description><![CDATA[Today installed a new centos server and samba does it again (failure sharing external drives), ok the drives are windowsdrives vfat (fat32) and ntfs (ntfs-3g).
So after struggling a while installed swat when i suddenly see the shares on the other windows-lan-computers&#8230; But we can not write to the disks we have to mount them without [...]]]></description>
			<content:encoded><![CDATA[<p>Today installed a new centos server and samba does it again (failure sharing external drives), ok the drives are windowsdrives vfat (fat32) and ntfs (ntfs-3g).</p>
<p>So after struggling a while installed swat when i suddenly see the shares on the other windows-lan-computers&#8230; But we can not write to the disks we have to mount them without any restrictions:</p>
<h6># mount -o  auto,users,umask=000,dmask=000,fmask=000,uid=65534,gid=65534 /dev/youwanttomount /mnt/directory</h6>
<p>Also learned how to force busy drives <img src='http://blog.cauwenbergh.be/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   # umount -l</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.cauwenbergh.be/no-category/mounting-samba-vfat-ntfs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
