<?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>Walker News &#187; Guide</title>
	<atom:link href="http://www.walkernews.net/tag/guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.walkernews.net</link>
	<description>A capsule of walker's experience in life...</description>
	<lastBuildDate>Sun, 29 Jan 2012 16:29:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Install And Start Telnet Server In Red Hat Linux?</title>
		<link>http://www.walkernews.net/2008/11/19/how-to-install-and-start-telnet-server-in-red-hat-linux/</link>
		<comments>http://www.walkernews.net/2008/11/19/how-to-install-and-start-telnet-server-in-red-hat-linux/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 17:26:48 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[Remote Access]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Telnet]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=1403</guid>
		<description><![CDATA[If you really can't live with Linux without using the insecure telnet protocol, how could you install and turn on the telnet daemon in Linux server?]]></description>
			<content:encoded><![CDATA[Every server administrators should and must know that telnet protocol is not secure, because data packets transfer between telnet server and client not encrypted.<br />
<span id="more-1403"></span><br />
That&#8217;s to say, anyone who use sniffer to capture network packets can read the plain text transfer over <!--wgadh-->the network. If the packets captured contain login credentials, the server access and security control will be compromised.<br />
<br />Thus, by default, most Linux distributions install <a href="http://www.walkernews.net/2007/07/21/how-to-setup-ssh-port-forwarding-in-3-minutes/" title="How to configure SSH port forwarding in 3 minutes or less?" rel="bookmark">SSH server</a> and not telnet. <a href="http://www.walkernews.net/tag/linux/" title="All posts related to Linux in WalKerNews.net" rel="bookmark">Red Hat Linux</a> even explicitly categorize telnet server as one of the &#8220;legacy network servers&#8221;.<br />
<br />However, what if you really want the Linux machine running such insecure protocol? <br />
<br /><span class="subhead">How to install and start the insecure telnet server (in Red Hat Linux Enterprise 4)?</span><br />
<ol>
<li>Look for the telnet-server RPM file in the installation CD/DVD and install it from command line, e.g. <code>rpm -Uvh telnet-server-0.17-31.EL4.3</code>.
<br />Alternatively, login to GNOME Desktop, go to Application menu, System Settings, and click Add/Remove Applications to bring up Package Management window:<br />
<br /><div style="max-width:500px;"><img src="http://www.walkernews.net/wp-content/uploads/2008/11/linux-telnet-server.jpg" alt="How to install and start telnet server in Red Hat Linux?" title="How to install and start telnet server in Red Hat Linux?" width="450" height="417" class="size-full wp-image-1404" /></div><sup>How to install and start telnet server in Red Hat Linux?</sup><br />
<br />Select Legacy Network Server (tick the check box), click Details link to bring up Legacy Network Server Package Details window, and select Telnet-Server to proceed with the installation.<br />
&nbsp;</li>
<li>At <a href="http://www.walkernews.net/2008/07/07/linux-dummy-guide-how-to-send-email-with-content-and-attachment/" title="How to send email with attachment in Linux command prompt?" rel="bookmark">Linux command prompt</a>, execute <code>chkconfig telnet on</code> to allow the xinetd spawns telnet-server processes upon client requests.
<br />Alternatively, edit the telnet configuration file (/etc/xinetd.d/telnet) and change <code>disable = yes</code> to <code>disable = no</code>.<br />
&nbsp;</li>
<li>Make sure the xinetd is running on your Linux default runlevel. To be sure, configure xinetd to start at runlevel 3, 4, and 5:
<pre>
chkconfig --level 345 xinetd on
</pre>
<br />If xinetd is not currently running (run <code>ps -elf | grep xinetd</code>), execute <code>service xinetd start</code> or <code>service xinetd restart</code> to start/restart it.
</li>
</ol>
<br />The running xinetd (extend Internet service daemon) listens to telnet client request on port 23 and spawn the telnet-server (/usr/sbin/in.telnetd) upon request, shut it down when telnet client drop the connection.<br />
<br />To confirm xinetd is listening to port 23, execute the <a href="http://www.walkernews.net/2007/05/27/linux-commands-to-check-network-connection/" title="One of the useful Linux utility to check network connection." rel="bookmark">netstat utility</a>:<br />
<pre>
netstat -tulpan | grep 23
</pre>
<br />
<ul class="related_post"><li><a href="http://www.walkernews.net/2008/11/20/how-to-fix-telnet-rejection-error-of-name-or-service-not-known-illegal-seek/" title="How To Fix Telnet Rejection Error of Name or Service Not Known: Illegal Seek">How To Fix Telnet Rejection Error of Name or Service Not Known: Illegal Seek</a></li><li><a href="http://www.walkernews.net/2009/03/18/how-to-allow-root-login-to-telnet-server-in-linux/" title="How To Allow Root Login To Telnet Server In Linux?">How To Allow Root Login To Telnet Server In Linux?</a></li><li><a href="http://www.walkernews.net/2008/11/06/linux-how-to-backup-and-restore-directory-with-tar-over-ssh-connection/" title="Linux: How To Backup And Restore Directory With Tar Over SSH Connection?">Linux: How To Backup And Restore Directory With Tar Over SSH Connection?</a></li><li><a href="http://www.walkernews.net/2009/05/11/how-to-use-putty-generated-rsa-key-to-login-linux-openssh-server/" title="How To Use Putty-generated RSA Key To Login Linux OpenSSH Server?">How To Use Putty-generated RSA Key To Login Linux OpenSSH Server?</a></li><li><a href="http://www.walkernews.net/2009/05/03/how-to-create-putty-based-rsa-public-key-for-openssh-server/" title="How To Create Putty-based RSA Public-key For OpenSSH Server?">How To Create Putty-based RSA Public-key For OpenSSH Server?</a></li><li><a href="http://www.walkernews.net/2009/03/22/how-to-fix-server-refused-our-key-error-that-caused-by-putty-generated-rsa-public-key/" title="How To Fix &#8220;Server Refused Our Key&#8221; Error That Caused By Putty Generated RSA Public Key?">How To Fix &#8220;Server Refused Our Key&#8221; Error That Caused By Putty Generated RSA Public Key?</a></li><li><a href="http://www.walkernews.net/2008/11/21/how-to-check-what-kernel-build-options-enabled-in-the-linux-kernel/" title="How To Check What Kernel Build Options Enabled In The Linux Kernel?">How To Check What Kernel Build Options Enabled In The Linux Kernel?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/11/19/how-to-install-and-start-telnet-server-in-red-hat-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Windows Live Messenger Does Not Display Music Playing In Windows Media Player</title>
		<link>http://www.walkernews.net/2008/11/13/windows-live-messenger-does-not-display-music-playing-in-windows-media-player/</link>
		<comments>http://www.walkernews.net/2008/11/13/windows-live-messenger-does-not-display-music-playing-in-windows-media-player/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 18:37:07 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Chat]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[IM]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[Personal Message]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Windows Live Messenger]]></category>
		<category><![CDATA[Windows Media Player]]></category>
		<category><![CDATA[WLM]]></category>
		<category><![CDATA[WMP]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=1359</guid>
		<description><![CDATA[How to fix the problem of Windows Live Messenger cannot display the title of song or music playing in Windows Media Player?]]></description>
			<content:encoded><![CDATA[<span class="subhead2">Problem:</span> Windows Live Messenger is not showing or displaying title of song played in <a href="http://www.walkernews.net/2008/08/17/windows-media-player-how-to-embed-wmv-file-in-html-code/" title="Windows Media Player: How to embed WMV file in HTML?" rel="bookmark">Windows Media Player</a>, i.e. none of the MSN contacts can see what song you&#8217;re listening to.<br />
<span id="more-1359"></span><br />
<span class="subhead2">Reason:</span> In order to display song or music title as &#8220;Personal Message&#8221; <!--wgadh-->in Windows Live Messenger, both <a href="http://www.walkernews.net/2007/06/12/storm-codec-ii-dominant-windows-media-player/" title="Storm Codec is the most popular Windows media player in China." rel="bookmark">Windows Media Player</a> and <a href="http://www.walkernews.net/2007/06/13/meebo-as-super-proxy-to-instant-messaging/" title="Meebo is a portal to all popular IM tools." rel="bookmark">Windows Live Messenger</a> must be configured for this feature.<br />
<br />Needless to say, the song or music must be playback in Windows Media Player (version 9 and above only).<br />
<br />(Note, it&#8217;s possible to display information of music playback in non-WMP player. But for this post, it&#8217;s about WMP and WLM :-).<br />
<br />Lastly, please be reminded that this feature is only available on Windows 2000 and above.<br />
<br />I think the second and third reason is straightforward. So, is time to look at how to configure Windows Live Messenger and Windows Media Player to display the song title you&#8217;re listening to for the online MSN contacts:<br />
<br /><span class="subhead">Configure Windows Live Messenger to display music title as personal message</span><br />
<br /><img style="float:left; margin:0 5px 0 0;" src="http://www.walkernews.net/wp-content/uploads/2008/11/live-messenger-personal-message-a.jpg" alt="How to display music information in Windows Live Messenger as Personal Message?" title="How to display music information in Windows Live Messenger as Personal Message?" width="295" height="144" class="size-full wp-image-1367" />Go to Windows Live Messenger, click the down-arrow icon of Personal Message box and click <span class="subhead2">Show What I&#8217;m Listening To</span>.<br />
<br />Alternatively, go to Tools menu, click Options and then the Personal option on left pane, make sure the <span class="subhead2">Show song information from Windows Media Player as a personal message</span> check-box is checked.<br />
<br /><span class="subhead">Configure Windows Media Player (version 11 on Windows Vista SP1) to show song title in Windows Live Messenger</span><br />
<br />In Windows Media Player, press ALT+T to bring up Tools menu, go to Plug-ins sub-menu and make sure the Windows Live Messenger Music Plugin is checked.<br />
<br /><span class="subhead">Note:</span><br />
<br />The song title display in Windows Live Messenger, change accordingly as Windows Media Player playing the playlist from track to track.<br />
<br />Once the music / song stop playing (press STOP not PAUSE, or simply close Windows Media Player), the last personal message before you playing the music/song is displayed in Windows Live Messenger (it&#8217;s empty if nothing was set there).<br />
<br /><span style="font-weight:bold;color:#F00;font-weight:bold;">For Windows 7</span>, <a href="http://www.walkernews.net/2009/12/07/windows-live-messenger-not-show-music-listening-in-windows-7-with-windows-media-player-12/" rel="bookmark">Windows Live Messenger will not show music playing by Windows Media Player 12</a> unless the songs are added to Windows 7 Music Library.<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2009/04/08/how-to-fix-windows-live-messenger-login-error-code-80048820/" title="How To Fix Windows Live Messenger Login Error Code 80048820?">How To Fix Windows Live Messenger Login Error Code 80048820?</a></li><li><a href="http://www.walkernews.net/2009/04/09/guide-to-fix-windows-live-messenger-login-error-80048820/" title="Guide To Fix Windows Live Messenger Login Error 80048820">Guide To Fix Windows Live Messenger Login Error 80048820</a></li><li><a href="http://www.walkernews.net/2008/12/23/create-animated-display-picture-for-msn-or-windows-live-messenger/" title="Create Animated Display Picture For MSN Or Windows Live Messenger">Create Animated Display Picture For MSN Or Windows Live Messenger</a></li><li><a href="http://www.walkernews.net/2008/12/21/how-to-create-muggin-for-msn-or-windows-live-messenger-display-picture/" title="How To Create Muggin For MSN Or Windows Live Messenger Display Picture?">How To Create Muggin For MSN Or Windows Live Messenger Display Picture?</a></li><li><a href="http://www.walkernews.net/2008/09/22/open-facebook-in-stealth-mode-appears-offline-after-login/" title="Open Facebook In Stealth Mode &#8211; Appears Offline After Login">Open Facebook In Stealth Mode &#8211; Appears Offline After Login</a></li><li><a href="http://www.walkernews.net/2008/06/11/tweak-windows-media-player-to-display-chinese-characters/" title="Tweak Windows Media Player To Display Chinese Characters">Tweak Windows Media Player To Display Chinese Characters</a></li><li><a href="http://www.walkernews.net/2008/11/19/how-to-install-and-start-telnet-server-in-red-hat-linux/" title="How To Install And Start Telnet Server In Red Hat Linux?">How To Install And Start Telnet Server In Red Hat Linux?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/11/13/windows-live-messenger-does-not-display-music-playing-in-windows-media-player/feed/</wfw:commentRss>
		<slash:comments>37</slash:comments>
		</item>
		<item>
		<title>How To Fix IE 7 Print Error In Windows Vista?</title>
		<link>http://www.walkernews.net/2008/11/12/how-to-fix-ie-7-print-error-in-windows-vista/</link>
		<comments>http://www.walkernews.net/2008/11/12/how-to-fix-ie-7-print-error-in-windows-vista/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:20:47 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Low Integrity]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Protected Mode]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Vista SP1]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=1347</guid>
		<description><![CDATA[You may have deleted the low integrity folders that have caused IE 7 running in Protected Mode fail to print a web page.]]></description>
			<content:encoded><![CDATA[<span class="subhead2">Problem</span>: You cannot print web page in IE 7 that is running in Protected Mode on Windows Vista machine.<br />
<span id="more-1347"></span><br />
<span class="subhead2">Reason</span>: When IE 7 running <a href="http://www.walkernews.net/2007/05/25/office-2007-validation-failed-by-ie7-protected-mode/" title="Office 2007 genuine validation failed because of IE 7 running in Protected Mode on Windows Vista. " rel="bookmark">Protected Mode</a> in Windows Vista, the browser processes require &#8220;low integrity&#8221; folder to function properly. You might have deleted the low integrity folder accidentally (via <!--wgadh3--><a href="http://www.walkernews.net/2007/09/04/vista-performance-tool-restore-free-disk-space/" title="Why you should regularly run Disk Cleanup to housekeep unwanted, temporarily files keeps in Windows Vista?" rel="bookmark">disk cleanup</a> program) and this cause IE 7 printing error.<br />
<br /><span class="subhead2">Symptom</span>: IE 7 displays an error message similar to this:<br />
<br />Cannot find &#8220;file:///%userprofile%/AppData/Local/Temp/Low/NZ0LISWM.htm&#8221;. Make sure the path or Internet address is correct.<br />
<br />After OK button, another Script Error box appears to tell &#8220;object required at line 2069 of res://ieframe.dll/preview.dlg&#8221;.<br />
<br /><span class="subhead2">Solution</span>: To run IE 7 with Protected Mode off (less secure) or to recreate the missing low integrity folder (%userprofile%/AppData/Local/Temp/Low).<br />
<br /><span class="subhead">Turn off or disable IE 7 Protected Mode in Windows Vista</span><br />
<br />If the IE 7 status bar is set to display, there is a Protected Mode status on the right hand side. Just double click the status (as highlighted: &#8220;Internet | Protected Mode: On&#8221;) to bring up Internet Security Properties dialog box and disable Protected Mode option (as shown in the following screenshot). Then, restart IE 7 or open another new instance (with Protected Mode status shown as Off) to load the page and try to print again.<br />
<br /><div style="max-width:500px;"><img src="http://www.walkernews.net/wp-content/uploads/2008/11/ie7-protected-mode.jpg" alt="How to turn off or disable IE 7 Protected Mode?" title="How to turn off or disable IE 7 Protected Mode?" width="435" height="205" class="size-full wp-image-1348" /></div><sup>How to turn off or disable IE 7 Protected Mode?</sup><br />
<br />Note: The Internet Security Properties setting is also accessible by clicking Tools menu (on the Toolbars; at top-right corner), Internet Options, Security tab.<br />
<br /><span class="subhead">Recreate low integrity folder for IE 7 running in Protected Mode</span><br />
<br /><div style="max-width:500px;"><img src="http://www.walkernews.net/wp-content/uploads/2008/11/ie-print-error.jpg" alt="How to fix IE 7 print error? That is to recreate the low integrity folder for IE 7 running in Protected Mode." title="How to fix IE 7 print error? That is to recreate the low integrity folder for IE 7 running in Protected Mode." width="500" height="110" class="size-full wp-image-1349" /></div><sup>How to fix IE 7 print error? That is to recreate the low integrity folder for IE 7 running in Protected Mode.</sup><br />
<br />Open an <a href="http://www.walkernews.net/2007/05/21/open-command-prompt-here-with-elevated-privilege/" title="Create shortcut of an elevated Open Command Window Here in Windows Vista." rel="bookmark">elevated Command Prompt window</a> to create a folder named <span class="subhead2">low</span> in the Temp of your user profile folder:<br />
<pre>
mkdir %userprofile%\AppData\Local\Temp\Low
</pre>
<br />Then, execute this command to set integrity level to low for the folder created:<br />
<pre>
ICACLS %userprofile%\AppData\Local\Temp\Low /setintegritylevel (OI)(CI)low
</pre>
<br />Note: You may <a href="http://www.walkernews.net/2007/06/27/copy-and-paste-text-in-command-prompt/" title="How to enable copy and paste feature in Windows Command Prompt window?" rel="bookmark">turn on copy-paste feature of Command Prompt window</a> to cut down typing efforts.<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2008/06/12/how-to-cut-mp3-as-mobile-phone-ringtone/" title="How To Cut MP3 As Mobile Phone Ringtone">How To Cut MP3 As Mobile Phone Ringtone</a></li><li><a href="http://www.walkernews.net/2009/04/12/how-to-completely-remove-or-uninstall-nokia-pc-suite/" title="How To Completely Remove Or Uninstall Nokia PC Suite? ">How To Completely Remove Or Uninstall Nokia PC Suite? </a></li><li><a href="http://www.walkernews.net/2009/04/12/how-to-fix-windows-vista-system-tray-icons-disabled-or-greyed-out-problem/" title="How To Fix Windows Vista System Tray Icons Disabled Or Greyed Out Problem?">How To Fix Windows Vista System Tray Icons Disabled Or Greyed Out Problem?</a></li><li><a href="http://www.walkernews.net/2008/11/03/how-to-copy-or-backup-file-that-is-open-in-another-program/" title="How To Copy Or Backup File That Is Open In Another Program?">How To Copy Or Backup File That Is Open In Another Program?</a></li><li><a href="http://www.walkernews.net/2008/10/29/windows-vista-multiple-networks-wireless-to-public-wifi-and-wired-to-private-lan/" title="Windows Vista Multiple Networks: Wireless To Public WIFI and Wired To Private LAN">Windows Vista Multiple Networks: Wireless To Public WIFI and Wired To Private LAN</a></li><li><a href="http://www.walkernews.net/2008/10/25/how-to-use-infrared-to-send-files-from-windows-vista-to-nokia-n73/" title="How To Use Infrared To Send Files From Windows Vista To Nokia N73?">How To Use Infrared To Send Files From Windows Vista To Nokia N73?</a></li><li><a href="http://www.walkernews.net/2008/06/18/how-to-check-windows-last-boot-up-time/" title="How To Check Windows Last Boot Up Time">How To Check Windows Last Boot Up Time</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/11/12/how-to-fix-ie-7-print-error-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nokia N73 Unable Activate N73 Mass Storage Mode?</title>
		<link>http://www.walkernews.net/2008/11/10/nokia-n73-unable-activate-n73-mass-storage-mode/</link>
		<comments>http://www.walkernews.net/2008/11/10/nokia-n73-unable-activate-n73-mass-storage-mode/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 16:02:20 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Cellphone]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[Mass Storage]]></category>
		<category><![CDATA[N73]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[USB Drive]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=1330</guid>
		<description><![CDATA[How to resolve the problem when yours Nokia N73 rejects to activate its Mass Storage mode (a.k.a. USB flash drive) and suggest you to reconfigure Messaging application settings from using memory card?]]></description>
			<content:encoded><![CDATA[When you connect the <a href="http://www.walkernews.net/tag/nokia/" title="All posts related to Nokia in WalkerNews.net" rel="bookmark">Nokia N73</a> to computer USB port via Pop-Port interface cable (CA-53), the data cable connection mode pops up and you make a decision to use Mass Storage mode (i.e. to <a href="http://www.walkernews.net/2008/11/09/how-to-instantly-access-nokia-n73-memory-card-as-usb-drive/" title="How to instantly connect Nokia N73 as USB drive without installing device drive or Nokia PC Suite program?" rel="bookmark">use Nokia N73 memory card as a USB drive</a> directly, without accessing the <a href="http://www.walkernews.net/2008/07/25/nokia-software-updater-upgrade-nokia-phone-firmware-at-home/" title="Nokia PC Suite includes many useful programs of Nokia to exclusively deal with Nokia cell phones." rel="bookmark">Nokia PC Suite</a>).<br />
<span id="more-1330"></span><br />
After a while, another message printed on screen, suggested that N73 is &#8220;Unable to activate mass <!--wgadh3-->storage mode. Memory card is in use by Messaging application. Change the selected memory in Messaging settings first.&#8221;<br />
<br />Now, what you could do? Well, the message printed includes error (the reason of failure) and solution to fix the error reported.<br />
<br />If you have configured N73 to use Mini SD memory card as storage media for its Messaging application (e.g. SMS, <a href="http://www.walkernews.net/2007/05/01/nokia-video-manager-and-nokia-mms-maker/" title="Download Nokia MMS Maker to easily create MMS." rel="bookmark">MMS</a>, Email, etc), you have to temporarily reset it back to phone memory and retry the Mass Storage mode:<br />
<ul>
<li>Click the <a href="http://www.walkernews.net/2007/04/02/using-n73-symbian-s60-shortcut-key/" title="Symbian S60 User Interface - Where is the menu key in Nokia N73?" rel="bookmark">Menu key</a> to access Menu screen and then access to <span class="subhead2">Messag.</span></li>
<li>While in <span class="subhead2">Messaging</span> screen, click the <span class="subhead2">Options</span> menu followed by <span class="subhead2">Settings</span> menu</li>
<li>In <span class="subhead2">Settings</span> screen, scroll through the list of menu to access <span class="subhead2">Other</span> option</li>
<li>Go to <span class="subhead2">Memory In Use</span> and change the Messaging storage media form memory card (e.g. N73SD, the memory card description I&#8217;ve set) to Phone Memory. Click OK to save the change.</li>
</ul>
<br /><br /><div style="max-width:500px;"><img src="http://www.walkernews.net/wp-content/uploads/2008/11/nokia-n73-mass-storage-mode-c.jpg" alt="How to configure N73 to use phone memory or external memory card as Messaging storage media?" title="How to configure N73 to use phone memory or external memory card as Messaging storage media?" width="480" height="634" class="size-full wp-image-1332" /></div><sup>How to configure N73 to use phone memory or external memory card as Messaging storage media?</sup><br /><br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2008/11/09/how-to-instantly-access-nokia-n73-memory-card-as-usb-drive/" title="How To Instantly Access Nokia N73 Memory Card As USB Drive?">How To Instantly Access Nokia N73 Memory Card As USB Drive?</a></li><li><a href="http://www.walkernews.net/2008/10/25/how-to-use-infrared-to-send-files-from-windows-vista-to-nokia-n73/" title="How To Use Infrared To Send Files From Windows Vista To Nokia N73?">How To Use Infrared To Send Files From Windows Vista To Nokia N73?</a></li><li><a href="http://www.walkernews.net/2008/11/19/how-to-install-and-start-telnet-server-in-red-hat-linux/" title="How To Install And Start Telnet Server In Red Hat Linux?">How To Install And Start Telnet Server In Red Hat Linux?</a></li><li><a href="http://www.walkernews.net/2008/11/13/windows-live-messenger-does-not-display-music-playing-in-windows-media-player/" title="Windows Live Messenger Does Not Display Music Playing In Windows Media Player">Windows Live Messenger Does Not Display Music Playing In Windows Media Player</a></li><li><a href="http://www.walkernews.net/2008/11/07/how-to-configure-or-disable-google-chrome-proxy-server-settings-independently/" title="How To Configure Or Disable Google Chrome Proxy Server Settings Independently?">How To Configure Or Disable Google Chrome Proxy Server Settings Independently?</a></li><li><a href="http://www.walkernews.net/2008/11/06/linux-how-to-backup-and-restore-directory-with-tar-over-ssh-connection/" title="Linux: How To Backup And Restore Directory With Tar Over SSH Connection?">Linux: How To Backup And Restore Directory With Tar Over SSH Connection?</a></li><li><a href="http://www.walkernews.net/2008/11/03/how-to-copy-or-backup-file-that-is-open-in-another-program/" title="How To Copy Or Backup File That Is Open In Another Program?">How To Copy Or Backup File That Is Open In Another Program?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/11/10/nokia-n73-unable-activate-n73-mass-storage-mode/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Instantly Access Nokia N73 Memory Card As USB Drive?</title>
		<link>http://www.walkernews.net/2008/11/09/how-to-instantly-access-nokia-n73-memory-card-as-usb-drive/</link>
		<comments>http://www.walkernews.net/2008/11/09/how-to-instantly-access-nokia-n73-memory-card-as-usb-drive/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 14:14:09 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Cellphone]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[Mass Storage]]></category>
		<category><![CDATA[N73]]></category>
		<category><![CDATA[Nokia]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[USB Drive]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=1322</guid>
		<description><![CDATA[How could I access to my Nokia N73 mini SD card as if it is a USB flash drive without installing Nokia PC Suite application?]]></description>
			<content:encoded><![CDATA[If you simply want to copy files to or from the memory card in <a href="http://www.walkernews.net/tag/n73/" title="All posts related Nokia N73 in WalkerNews.net" rel="bookmark">Nokia N73</a>, there are two ways to do it but both methods do not require installation of <a href="http://www.walkernews.net/2008/07/25/nokia-software-updater-upgrade-nokia-phone-firmware-at-home/" title="Nokia PC Suites include Nokia Software Updater to upgrade Nokia phone firmware at your own pace." rel="bookmark">Nokia PC Suite</a>.<br />
<span id="more-1322"></span><br />
The first and simple way is by <span class="subhead">removing the Mini SD card</span> from Nokia N73 and access the memory card via a card reader. Some modern laptops built with such card reader that normally support multiple flash memory card formats.<br />
<br />As one of the expensive Nokia NSeries smart phone, N73 allows add / remove memory card in online <!--wgadh3-->mode. To remove memory card while N73 powered on, press the power button and select &#8220;Remove Mem. Card&#8221; option from the quick menu.<br />
<br />Alternatively, press the <a href="http://www.walkernews.net/2007/04/02/using-n73-symbian-s60-shortcut-key/" title="Are you familiar with Symbian S60 user interface shortcut? The menu key is labelled as A in the screenshot." rel="bookmark">Menu key</a>, go to Tools and then Memory. While in Memory Card screen, go to Options and select &#8220;Remove Mem. Card&#8221;.<br />
<br />Wait for the <span class="subhead2">Remove Memory Card and press &#8220;OK&#8221;</span> message printed on screen, then you may proceed to remove the Mini SD card and then only press OK. Once you&#8217;ve done with the memory card, simply insert it back to N73 Mini SD card slot gently (without needs of power it off).<br />
<br />If there is no card reader to access the Mini SD card, what you could do? Well, the N73 itself is a ready card reader. Indeed, N73 supports <span class="subhead">USB mass storage mode</span>.<br />
<br />So long as the OS supports USB mass storage device (e.g. Windows Vista SP1 on my home Desktop and Dell Latitude; supposing that most modern OSes such Mac OS X, <a href="http://www.walkernews.net/2008/01/15/how-to-install-rhel4-in-hp-netserver-lh3000/" title="How to install RHEL4 on a bloody HP NetServer LH3 machine?" rel="bookmark">RHEL</a>, etc, is able to detect and access it as normal), the Mini SD memory card in Nokia N73 will appears as a <a href="http://www.walkernews.net/2007/03/22/how-to-configure-usb-sata-hard-disk/" title="Using a SATA-to-USB converter to access an external SATA hard disk as USB drive." rel="bookmark">USB drive</a>, to allow files copy easily without needs of installing additional device driver or application.<br />
<blockquote>Although the <a href="http://www.walkernews.net/2008/07/22/download-nokia-video-manager-to-convert-movie-in-h264-mp4-format/" title="Nokia PC Suite includes Nokia Video Manager to efficiently convert video to H.264 MP4 format supported by Nokia N73." rel="bookmark">Nokia PC Suite</a> is not a must-have program to access N73 USB mass storage function, an optimized driver ensures achieving USB 2.0 full speed file transfer via Nokia proprietary Port-Port interface.
</blockquote>
<br /><span class="subhead">How to configure Nokia N73 mass storage mode to access memory card as USB drive?</span><br />
<br />Click the menu key, access to Tools and then Data Cbl. While in Data Cable screen, make sure Data Cable Mode is either set to <span class="subhead2">Mass Storage</span> or <span class="subhead2">Ask On Connection</span>.<br />
<br />Then, connect the phone to a computer USB port via CA-53 cable. N73 will prompt you to select mode of connection if the Data Cable Mode is set to &#8220;Ask On Connection&#8221;.<br />
<br />This is extremely useful when I&#8217;ve to copy files to or from the &#8220;expensive&#8221; Nokia phone I ever own (so far) with a computer that has not yet installed with Nokia PC Suite application, but there must be a card reader OR CA-53 cable AND a computer that supports USB mass storage device (both hardware and software). The bulky <a href="http://www.walkernews.net/2008/07/25/nokia-software-updater-upgrade-nokia-phone-firmware-at-home/" title="What can you do if you the Nokia Software Updater cannot detects Nokia N73 in Windows Vista?" rel="bookmark">Nokia PC Suite</a>, is not a must-have program in either cases.<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2008/11/10/nokia-n73-unable-activate-n73-mass-storage-mode/" title="Nokia N73 Unable Activate N73 Mass Storage Mode?">Nokia N73 Unable Activate N73 Mass Storage Mode?</a></li><li><a href="http://www.walkernews.net/2008/10/25/how-to-use-infrared-to-send-files-from-windows-vista-to-nokia-n73/" title="How To Use Infrared To Send Files From Windows Vista To Nokia N73?">How To Use Infrared To Send Files From Windows Vista To Nokia N73?</a></li><li><a href="http://www.walkernews.net/2008/11/19/how-to-install-and-start-telnet-server-in-red-hat-linux/" title="How To Install And Start Telnet Server In Red Hat Linux?">How To Install And Start Telnet Server In Red Hat Linux?</a></li><li><a href="http://www.walkernews.net/2008/11/13/windows-live-messenger-does-not-display-music-playing-in-windows-media-player/" title="Windows Live Messenger Does Not Display Music Playing In Windows Media Player">Windows Live Messenger Does Not Display Music Playing In Windows Media Player</a></li><li><a href="http://www.walkernews.net/2008/11/07/how-to-configure-or-disable-google-chrome-proxy-server-settings-independently/" title="How To Configure Or Disable Google Chrome Proxy Server Settings Independently?">How To Configure Or Disable Google Chrome Proxy Server Settings Independently?</a></li><li><a href="http://www.walkernews.net/2008/11/06/linux-how-to-backup-and-restore-directory-with-tar-over-ssh-connection/" title="Linux: How To Backup And Restore Directory With Tar Over SSH Connection?">Linux: How To Backup And Restore Directory With Tar Over SSH Connection?</a></li><li><a href="http://www.walkernews.net/2008/11/03/how-to-copy-or-backup-file-that-is-open-in-another-program/" title="How To Copy Or Backup File That Is Open In Another Program?">How To Copy Or Backup File That Is Open In Another Program?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/11/09/how-to-instantly-access-nokia-n73-memory-card-as-usb-drive/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How Easy To Access Web Search Engine In Google Chrome</title>
		<link>http://www.walkernews.net/2008/11/09/how-easy-to-access-web-search-engine-in-google-chrome/</link>
		<comments>http://www.walkernews.net/2008/11/09/how-easy-to-access-web-search-engine-in-google-chrome/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 09:11:07 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=1307</guid>
		<description><![CDATA[Google Chrome makes it easier to access to web search engine, but do you find it useful? As for myself, I want to give it thumbs up.]]></description>
			<content:encoded><![CDATA[No one will be happier if there are no web search engines available to locate pieces of information from billions of web pages virtually stored in World Wide Web.<br />
<span id="more-1307"></span><br />
Thus, <a href="http://www.walkernews.net/2008/10/22/google-chrome-has-more-effective-flash-video-cache-technique-than-ie7-and-firefox-3/" title="Google Chrome is more efficient to use for watching online flash video, such as YouTube, FLURL, etc." rel="bookmark">Google Chrome</a> user interface presents easier way to access a user&#8217;s default Web search engine, be it Google Search, Microsoft Live Search, Yahoo! Search, Wikia Search, etc.<br />
<br /><span class="subhead">Access web search engine in Google Chrome Address bar</span><br />
<br />This first method is the simplest and fastest way to access user&#8217;s default Web search engine:<br />
<br /><!--wgadh3-->While Google Chrome window is active, press <span class="subhead2">CTRL+T</span> (to open a tabbed window) OR <span class="subhead2">CTRL+D</span> (to set input cursor to Address bar or to highlight text in Address bar) AND type your search term (in Address bar, of course) follow by pressing ENTER key.<br />
<br />In this way, you can access the default Web search engine with one hot key (CTRL+D or CTRL+T, depend on you expectation) and start typing the keywords followed by ENTER key.<br />
<br /><div style="max-width:500px;"><img src="http://www.walkernews.net/wp-content/uploads/2008/11/google-chrome-search-function-3.jpg" alt="Access to web search engine service is easy in Google Chrome." title="Access to web search engine service is easy in Google Chrome." width="487" height="205" class="size-full wp-image-1311" /></div><sup>Access to web search engine service is easy in Google Chrome.</sup><br />
<br />If the default Web search engine is set to Google Search, all Google Search features are available in Google Chrome Address bar, e.g. typing either one of these double-quoted search terms (without including the double-quotation mark) in Address bar: &#8220;pi&#8221; (reference tool), &#8220;3ft in m&#8221; (calculator / converter), &#8220;time london&#8221; (local time), &#8220;define:addict&#8221; (dictionary), etc.<br />
<br /><span class="subhead">Access web search engine with the highlighted keywords</span><br />
<br />This second method is not faster than the first, but it&#8217;s faster and convenient in its nature. For example, if you would like to search the web for this &#8220;friendly&#8221; botanical name &#8220;Centella asiatica&#8221; or a even &#8220;weird&#8221; scientific name &#8220;Callorhinchus milii&#8221;, do you think it&#8217;s easier to type the keywords manually or to copy and paste?<br />
<br />If the keyword is found on a web page open in <a href="http://www.walkernews.net/2008/09/21/how-to-copy-youtube-video-or-flv-file-from-google-chrome-cache-folder/" title="How to manually retrieve YouTube flash video cached by Google Chrome flash player plugin?" rel="bookmark">Google Chrome</a>, you can easily find out more relevant online information of this keyword, by just <span class="subhead2">highlighting the text and right click</span>, there is a <span class="subhead2">Search <em>&lt;name of default search engine&gt;</em> For &#8220;<em>&lt;the highlighted text&gt;</em>&#8220;</span> option in the Context menu (i.e. no need to go through extra steps &#8211; copy &#038; paste). <br />
<br /><span class="subhead">How to set default web search engine in Google Chrome?</span><br />
<br /><img style="float:right;margin:0 0 0 5px;" src="http://www.walkernews.net/wp-content/uploads/2008/11/google-chrome-search-function-1.jpg" alt="How to configure Google Chrome default web search engine?" title="How to configure Google Chrome default web search engine?" width="210" height="92" class="size-full wp-image-1309" />To configure the default search engine used by <a href="http://www.walkernews.net/2008/11/05/how-to-find-and-copy-swf-or-jpg-file-from-google-chrome-cache-folder/" title="ChromeCacheView - a freeware used to easily view and copy Google Chrome cache files, such as the Shockwave flash, jpeg pictures, mp3, wav, midi, etc." rel="bookmark">Google Chrome</a>, click the spanner button (tooltips as Customize and Control Google Chrome) on top-right corner and select Options from the drop down menu.<br />
<br />In the Google Chrome Options dialog box, go to Basic tab (default tab shown), select your favourite web search engine as the default of Google Chrome.<br />
<br />If your favourite is not there, click Manage button to add in more web search engines to the list, or select one from the list and click Make Default.<br />
<br />An additional note, <a href="http://www.walkernews.net/2008/10/23/videocacheview-save-flash-video-from-web-browser-cache-folder/" title="How to easily copy or retrieve flash video played in web various web browsers, including Google Chrome?" rel="bookmark">Google Chrome</a> is smart as it can detect any web search services that you’ve used in a web page and automatically add them to the list.<br />
<br />For example, if you&#8217;ve used the Google Custom Search box in this page, <a href="http://www.walkernews.net" title="Walker News - a capsule of Walker experience in life..." rel="bookmark">WalkerNews.net</a> is automatically included in Google Chrome Search Engines list:<br />
<br /><div style="max-width:500px;"><img src="http://www.walkernews.net/wp-content/uploads/2008/11/google-chrome-search-function.jpg" alt="Google Chrome automatically detects web search services on a page and automatically add it to the list." title="Google Chrome automatically detects web search services on a page and automatically add it to the list." width="483" height="211" class="size-full wp-image-1317" /></div><sup>Google Chrome automatically detects web search services on a page and automatically add it to the list.</sup><br />
<br />So, you might no need to worry about the Add button. In most cases, just select the listed search engines and set it as default by pressing Make Default button.<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2008/09/21/how-to-copy-youtube-video-or-flv-file-from-google-chrome-cache-folder/" title="How To Copy YouTube Video or FLV File From Google Chrome Cache Folder?">How To Copy YouTube Video or FLV File From Google Chrome Cache Folder?</a></li><li><a href="http://www.walkernews.net/2008/11/07/how-to-configure-or-disable-google-chrome-proxy-server-settings-independently/" title="How To Configure Or Disable Google Chrome Proxy Server Settings Independently?">How To Configure Or Disable Google Chrome Proxy Server Settings Independently?</a></li><li><a href="http://www.walkernews.net/2008/11/05/how-to-find-and-copy-swf-or-jpg-file-from-google-chrome-cache-folder/" title="How To Find and Copy SWF Or JPG File From Google Chrome Cache Folder?">How To Find and Copy SWF Or JPG File From Google Chrome Cache Folder?</a></li><li><a href="http://www.walkernews.net/2008/11/03/how-to-copy-or-backup-file-that-is-open-in-another-program/" title="How To Copy Or Backup File That Is Open In Another Program?">How To Copy Or Backup File That Is Open In Another Program?</a></li><li><a href="http://www.walkernews.net/2008/10/29/windows-vista-multiple-networks-wireless-to-public-wifi-and-wired-to-private-lan/" title="Windows Vista Multiple Networks: Wireless To Public WIFI and Wired To Private LAN">Windows Vista Multiple Networks: Wireless To Public WIFI and Wired To Private LAN</a></li><li><a href="http://www.walkernews.net/2008/10/25/how-to-use-infrared-to-send-files-from-windows-vista-to-nokia-n73/" title="How To Use Infrared To Send Files From Windows Vista To Nokia N73?">How To Use Infrared To Send Files From Windows Vista To Nokia N73?</a></li><li><a href="http://www.walkernews.net/2008/10/03/how-to-send-program-file-as-attachment-in-gmail/" title="How To Send Program File As Attachment In Gmail?">How To Send Program File As Attachment In Gmail?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/11/09/how-easy-to-access-web-search-engine-in-google-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Configure Or Disable Google Chrome Proxy Server Settings Independently?</title>
		<link>http://www.walkernews.net/2008/11/07/how-to-configure-or-disable-google-chrome-proxy-server-settings-independently/</link>
		<comments>http://www.walkernews.net/2008/11/07/how-to-configure-or-disable-google-chrome-proxy-server-settings-independently/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 17:46:52 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[Proxy Server]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=1299</guid>
		<description><![CDATA[Is there a way to disable or configure Google Chrome proxy server settings without affecting Internet Explorer proxy server settings?]]></description>
			<content:encoded><![CDATA[Thanks God, the <a href="http://www.walkernews.net/2008/10/29/windows-vista-multiple-networks-wireless-to-public-wifi-and-wired-to-private-lan/" title="How to configure Windows Vista dual network connections, so that wired LAN network to access corporate network while wireless network connect to public WIFI network?" rel="bookmark">free public WIFI is still working in office</a>. So, I&#8217;m happily using this free channel to stay connected with the World Wide Web, watching <a href="http://www.walkernews.net/2008/08/16/youtube-downloader-download-youtube-video-for-my-mom/" title="Online YouTube downloader used to directly download YouTube video for offline browsing." rel="bookmark">YouTube</a> and other leisure browsing activities as much as I wish to have, but without worry of being &#8220;top surfer&#8221; in the weekly proxy server usage report (simply because I don&#8217;t have to go through corporate <a href="http://www.walkernews.net/2007/05/11/google-hack-using-google-as-proxy-server/" title="How to use Google translator as web proxy server?" rel="bookmark">proxy server</a> to surf Internet :-p).<br />
<span id="more-1299"></span><br />
<!--wgadh-->Because of the insecure wireless network (thus I can connect to it so easily), I use IE7 to login to websites that require user authentication (e.g. <a href="http://www.walkernews.net/2008/06/25/how-to-email-executable-program-file-in-gmail-or-hotmail/" title="How to send email with program file attachments in Gmail or Hotmail?" rel="bookmark">Gmail, Hotmail</a>, MSN, etc) via corporate <a href="http://www.walkernews.net/2007/08/02/squid-child-process-exited-due-to-signal-25/" title="How to resolve Squid proxy server problem of child process exited due to signal 25" rel="bookmark">proxy server</a>.<br />
<br />For all other sites that not require user login (e.g. Google News, blogs, Meta Cafe, forum, etc), I would like to use <a href="http://www.walkernews.net/2007/11/20/how-to-view-rss-feed-in-xml-format-with-firefox/" title="How to use Firefox to view RSS feed in XML format?" rel="bookmark">Firefox</a> or <a href="http://www.walkernews.net/2008/10/22/google-chrome-has-more-effective-flash-video-cache-technique-than-ie7-and-firefox-3/" title="Google Chrome is more efficient than IE7 and Firefox 3.x" rel="bookmark">Google Chrome</a> to directly access Internet via the insecure, free public WIFI.<br />
<br />However, Google Chrome doesn&#8217;t provide an user interface (UI) to enable or disable proxy server settings. Indeed, Google Chrome is sharing Internet Properties settings (inetcpl.cpl, a Control Panel item that appears as Internet Options) with <a href="http://www.walkernews.net/tag/ie7/" title="All posts related to IE7 in WalkerNews.net" rel="bookmark">Internet Explorer</a>.<br />
<br />I.e. <a href="http://www.walkernews.net/2008/11/05/how-to-find-and-copy-swf-or-jpg-file-from-google-chrome-cache-folder/" title="ChromeCacheView is a cache viewer freeware for Google Chrome web browser." rel="bookmark">Google Chrome</a> uses proxy server if Internet Explorer is using proxy server; both IE and Google Chrome is sharing the same proxy server settings. If I disable proxy server in Internet Properties, I can&#8217;t use IE7 to read Gmail via proxy server too.<br />
<br />So, how to force Google Chrome to ignore proxy server settings defined for IE7?<br />
<br /><span class="subhead">How to enable or disable proxy server settings for Google Chrome without affecting IE7?</span><br />
<br />I thought I would have to download Google Chrome source code and customize it :-p. Luckily, there is an ready-made option switch called <code>--proxy-server</code> to define proxy server independently for Google Chrome, i.e. &#8211;proxy-server overwrites Google Chrome default behaviour of sharing proxy server settings with Internet Explorer.<br />
<br />So, I right click the Google Chrome shortcut and add <code>--proxy-server=</code> to chrome.exe in order to forcibly disable Google Chrome proxy server settings, while still allows Internet Explorer 7 to surf Net via corporate proxy server:<br />
<br /><div style="max-width:500px;"><img src="http://www.walkernews.net/wp-content/uploads/2008/11/independent-google-chrome-proxy-server.jpg" alt="Independent Google Chrome proxy server setting." title="Independent Google Chrome proxy server setting." width="500" height="276" class="size-full wp-image-1300" /></div><sup>Independent Google Chrome proxy server setting.</sup><br />
<br />
With reference:<br />
<a href="http://groups.google.com/group/google-chrome-help-suggestions/browse_thread/thread/2c54fa23f3e0970a" target="_blank" rel="nofollow">Google Chrome Help &#8211; Independent Proxy Settings for Chrome</a><br />
<a href="http://www.ericdlarson.com/misc/chrome_command_line_flags.html" target="_blank">Google Chrome Command Line Switches</a>.<br />
<ul class="related_post"><li><a href="http://www.walkernews.net/2008/11/09/how-easy-to-access-web-search-engine-in-google-chrome/" title="How Easy To Access Web Search Engine In Google Chrome">How Easy To Access Web Search Engine In Google Chrome</a></li><li><a href="http://www.walkernews.net/2008/09/21/how-to-copy-youtube-video-or-flv-file-from-google-chrome-cache-folder/" title="How To Copy YouTube Video or FLV File From Google Chrome Cache Folder?">How To Copy YouTube Video or FLV File From Google Chrome Cache Folder?</a></li><li><a href="http://www.walkernews.net/2008/12/26/how-to-relocate-or-change-google-chrome-cache-folder-location/" title="How To Relocate Or Change Google Chrome Cache Folder Location?">How To Relocate Or Change Google Chrome Cache Folder Location?</a></li><li><a href="http://www.walkernews.net/2008/11/19/how-to-install-and-start-telnet-server-in-red-hat-linux/" title="How To Install And Start Telnet Server In Red Hat Linux?">How To Install And Start Telnet Server In Red Hat Linux?</a></li><li><a href="http://www.walkernews.net/2008/11/13/windows-live-messenger-does-not-display-music-playing-in-windows-media-player/" title="Windows Live Messenger Does Not Display Music Playing In Windows Media Player">Windows Live Messenger Does Not Display Music Playing In Windows Media Player</a></li><li><a href="http://www.walkernews.net/2008/11/10/nokia-n73-unable-activate-n73-mass-storage-mode/" title="Nokia N73 Unable Activate N73 Mass Storage Mode?">Nokia N73 Unable Activate N73 Mass Storage Mode?</a></li><li><a href="http://www.walkernews.net/2008/11/06/linux-how-to-backup-and-restore-directory-with-tar-over-ssh-connection/" title="Linux: How To Backup And Restore Directory With Tar Over SSH Connection?">Linux: How To Backup And Restore Directory With Tar Over SSH Connection?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/11/07/how-to-configure-or-disable-google-chrome-proxy-server-settings-independently/feed/</wfw:commentRss>
		<slash:comments>36</slash:comments>
		</item>
	</channel>
</rss>

