<?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>All We Want Is ...</title>
	<atom:link href="http://www.cheandazlina.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.cheandazlina.com</link>
	<description>TO HAVE IT OUR WAY</description>
	<lastBuildDate>Thu, 02 Sep 2010 08:11:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Tell if Your Processor Supports VT</title>
		<link>http://www.cheandazlina.com/?p=596</link>
		<comments>http://www.cheandazlina.com/?p=596#comments</comments>
		<pubDate>Thu, 02 Sep 2010 08:10:37 +0000</pubDate>
		<dc:creator>che</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VT]]></category>

		<guid isPermaLink="false">http://www.cheandazlina.com/?p=596</guid>
		<description><![CDATA[Virtualization Technology (VT) is a set of enhancements to newer processors that improve performance for running a virtual machine by offloading some of the work to the new cpu extensions. Both AMD and Intel have processors that support this technology, but how do you tell if your system can handle it? It’s quite simple: We’ll [...]]]></description>
			<content:encoded><![CDATA[<p>Virtualization Technology (VT) is a set of enhancements to newer  processors that improve performance for running a virtual machine by  offloading some of the work to the new cpu extensions. Both AMD and  Intel have processors that support this technology, but how do you tell  if your system can handle it?</p>
<p>It’s quite simple: We’ll need to take a peek inside the /proc/cpuinfo  file and look at the flags section for one of two values, vmx or svm.</p>
<ul>
<li><strong>vmx</strong> – (intel)</li>
<li><strong>svm</strong> – (amd)</li>
</ul>
<p>You can use grep to quickly see if either value exists in the file by running the following command:</p>
<blockquote><p>egrep ‘(vmx|svm)’ /proc/cpuinfo</p></blockquote>
<p>If your system supports VT, then you’ll see vmx or svm in the list of  flags. My system has two processors, so there are two separate  sections:</p>
<blockquote><p>flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr  pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm  syscall nx lm constant_tsc pni monitor ds_cpl <strong>vmx</strong> est tm2 ssse3 cx16 xtpr lahf_lm<br />
flags            : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat  pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm  constant_tsc pni monitor ds_cpl <strong>vmx</strong> est tm2 ssse3 cx16 xtpr lahf_lm</p></blockquote>
<p>VT technology can still be disabled in your computer’s BIOS, however, so  you’ll want to check there to make sure that it hasn’t been disabled.  The flags in cpuinfo simply mean that your processor supports it.</p>
<p>Source: http://www.howtogeek.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cheandazlina.com/?feed=rss2&amp;p=596</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Password Protect your Linux GRUB menu</title>
		<link>http://www.cheandazlina.com/?p=591</link>
		<comments>http://www.cheandazlina.com/?p=591#comments</comments>
		<pubDate>Tue, 31 Aug 2010 07:00:31 +0000</pubDate>
		<dc:creator>che</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[GRUB]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[single-user]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.cheandazlina.com/?p=591</guid>
		<description><![CDATA[Did you know that without this protection, a user can just reboot your system, enters it in &#8220;single-user&#8221; mode and get instant root access to your system? It is time to protect your GRUB menu with a password and add an additional layer of security in 4 simple steps: 1.) Log in as root and [...]]]></description>
			<content:encoded><![CDATA[<p>Did you know that without this protection, a user can just reboot your system, enters it in &#8220;single-user&#8221; mode and get instant root access to your system?<br />
It is time to protect your GRUB menu with a password and add an additional layer of security in 4 simple steps:</p>
<p>1.) Log in as root and execute the following command:<br />
&#8220;grub-md5-crypt&#8221;</p>
<p>2.) Enter the desired password and re-confirm it.<br />
Once that is done, it will generate a md5 hash key:</p>
<p>e.g: $1$6OIyj/$k3tMWdt2uSFViufz1YsgF/</p>
<p>3.) Add this MD5 password to your /boot/grub/grub.conf by adding the following line (before the title line):</p>
<p>password &#8211;md5 [your hash key]</p>
<p>4.) Save the file and try to restart in single-user mode.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cheandazlina.com/?feed=rss2&amp;p=591</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t access your Google Apps mail account</title>
		<link>http://www.cheandazlina.com/?p=586</link>
		<comments>http://www.cheandazlina.com/?p=586#comments</comments>
		<pubDate>Sun, 29 Aug 2010 16:17:12 +0000</pubDate>
		<dc:creator>che</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[captcha]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[Google Apps]]></category>
		<category><![CDATA[IMAP]]></category>

		<guid isPermaLink="false">http://www.cheandazlina.com/?p=586</guid>
		<description><![CDATA[Sometimes when configuring your e-mail client, you cannot for some reason access your Google Apps mail account. (https://mail.google.com/a/&#60;your domain&#62;/#) If you are sure all your settings are correct and it prompts you something like &#8220;web login required&#8221; error the solution is in clearing the Captcha cache. The system tries to be smart and to protect [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes when configuring your e-mail client, you cannot for some reason access your Google Apps mail account. (https://mail.google.com/a/&lt;your domain&gt;/#)<br />
If you are sure all your settings are correct and it prompts you something like &#8220;web login required&#8221; error the solution is in clearing the Captcha cache.</p>
<p>The system tries to be smart and to protect you from automated login. Or basically to make  sure it is really you trying to access the account.<br />
Go to the following URL:</p>
<p>https://www.google.com/a/&lt;your domain&gt;/UnlockCaptcha</p>
<p>Clear the cache by entering your username and password following by a picture challenge.<br />
After doing this procedure, try your e-mail client again.</p>
<p>More information can be found using the link below from GMail Help:</p>
<p>http://mail.google.com/support/bin/answer.py?answer=78754</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cheandazlina.com/?feed=rss2&amp;p=586</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily switch off the Active Corners on your Mac</title>
		<link>http://www.cheandazlina.com/?p=576</link>
		<comments>http://www.cheandazlina.com/?p=576#comments</comments>
		<pubDate>Mon, 23 Aug 2010 06:52:56 +0000</pubDate>
		<dc:creator>che</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Active Corners]]></category>
		<category><![CDATA[AppleScript]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://www.cheandazlina.com/?p=576</guid>
		<description><![CDATA[Hi again, This time I like to share a small script called Lava Corners Switch. I have no idea who actually wrote it and the author of the script did not sign it off. Just open AppleScript Editor (typing it in spotlight) or go to Macintosh HD &#8211; Applications &#8211; Utilities &#8211; AppleScript Editor and [...]]]></description>
			<content:encoded><![CDATA[<p>Hi again,</p>
<p>This time I like to share a small script called <a title="Lava Corners Switch" href="http://" target="_blank">Lava Corners Switch</a>. I have no idea who actually wrote it and the author of the script did not sign it off.<br />
Just open AppleScript Editor (typing it in spotlight) or go to Macintosh HD &#8211; Applications &#8211; Utilities &#8211; AppleScript Editor and paste the following code:</p>
<pre>property tl : 1
property tr : 1
property br : 1
property bl : 1
property runs : 0

if runs is 0 then
 set tl to do shell script "defaults read com.apple.dock wvous-tl-corner"
 set tr to do shell script "defaults read com.apple.dock wvous-tr-corner"
 set bl to do shell script "defaults read com.apple.dock wvous-bl-corner"
 set br to do shell script "defaults read com.apple.dock wvous-br-corner"

 do shell script "defaults write com.apple.dock wvous-tl-corner -int 1; defaults write com.apple.dock wvous-br-corner -int 1; defaults write com.apple.dock wvous-bl-corner -int 1; defaults write com.apple.dock wvous-tr-corner -int 1; killall Dock"
 set runs_A to 1
end if

if runs is 1 then
 do shell script ("defaults write com.apple.dock wvous-tl-corner -int " &amp; tl &amp; "; defaults write com.apple.dock wvous-br-corner -int " &amp; br &amp; "; defaults write com.apple.dock wvous-bl-corner -int " &amp; bl &amp; "; defaults write com.apple.dock wvous-tr-corner -int " &amp; tr &amp; "; killall Dock")
 set runs_A to 0
end if

set runs to runs_A</pre>
<p>Save the file and drag it into your Dock. After that, just simply click to activate and deactivate accordingly.</p>
<p>/Che</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cheandazlina.com/?feed=rss2&amp;p=576</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change your Mac&#8217;s login background to match your own desktop</title>
		<link>http://www.cheandazlina.com/?p=579</link>
		<comments>http://www.cheandazlina.com/?p=579#comments</comments>
		<pubDate>Sat, 21 Aug 2010 15:55:56 +0000</pubDate>
		<dc:creator>che</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.cheandazlina.com/?p=579</guid>
		<description><![CDATA[Here is a small guide on how to change your login screen background to match your desktop picture in (Snow) Leopard. First what you need to know is the location of your background pictures. When you click on System Preferences, under Personal choose Desktop &#38; Screensaver you will see a few folders with desktop pictures. [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a small guide on how to change your login screen background to match your desktop picture in (Snow) Leopard.</p>
<p>First what you need to know is the location of your background pictures.<br />
When you click on System Preferences, under Personal choose Desktop &amp; Screensaver you will see a few folders with desktop pictures.<br />
These folders are linked to the following location on your Macintosh HD:</p>
<p>/Library/Desktop/Pictures/</p>
<p>Now when you get your standard Mac installation, you background is set to Leopard Aurora (in the Nature folder) same as your login background.<br />
After you change your Desktop background, your login background stays the same.</p>
<p>To change that you have to go to the following location on your Macintosh HD:</p>
<p>/System/Library/CoreServices/</p>
<p>In this folder you will find a file called DefaultDesktop.jpg. All you have to do is to copy your current Dekstop background picture found in /Library/Desktop/Pictures/&lt;folder&gt;/&#8230;jpg<br />
to this location and rename the file to DefaultDesktop.jpg.</p>
<p>Note: you might need to type in your password to authorize the change.</p>
<p>/Che</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cheandazlina.com/?feed=rss2&amp;p=579</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
