<?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>Simpleman &#38; Simple Life</title>
	<atom:link href="http://xuming.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://xuming.info</link>
	<description>Learn to write and appreciate</description>
	<lastBuildDate>Fri, 26 Mar 2010 08:01:18 +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 keep Ubuntu 9.10 clean</title>
		<link>http://xuming.info/2010/03/how-to-keep-ubuntu-9-10-clean/</link>
		<comments>http://xuming.info/2010/03/how-to-keep-ubuntu-9-10-clean/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 07:57:19 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[autoremove]]></category>
		<category><![CDATA[clean]]></category>
		<category><![CDATA[deborphan]]></category>
		<category><![CDATA[localepurge]]></category>
		<category><![CDATA[Tweak]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1447</guid>
		<description><![CDATA[事先说明，以下内容为多个链接的总结，不保证对您的系统同样有效，出了问题不要找我，呵呵。 Ubuntu 系统用的时间长了后，大家会发现存在很多其实已经不用的安装包和一些配置文件，占用了宝贵的硬盘空间，如何删除这些文件呢？方法如下，一般按照先后顺序执行： 1. 清除 Residual Config Packages 定位到 System/Administration/Synaptic Package Manager，选中 residual config，然后在右侧选中一个需要删除的安装包，右键选择 Mark for Complete Removal。（可以 Ctrl+A 全部选中后再选择 Removal） 然后选择 Apply，会出现一个对话框提示将要删除的安装包。 2. 清除 partial packages Partial Packages 和 Residual Packages 的区别是，Partial 的安装包在下载的过程中被中断了，没有下载完整，而 Residual 的则是下载完整了。 ming@nw8440:~$ sudo apt-get autoclean 3. 清除不需要的 locale 设置相关数据 ming@nw8440:~$ sudo apt-get install localepurge    # 对我来说，只需要 en 即可，其他都删除。安装的时候只选择 en 即可。 [...]]]></description>
			<content:encoded><![CDATA[<p>事先说明，以下内容为多个链接的总结，不保证对您的系统同样有效，出了问题不要找我，呵呵。</p>
<p>Ubuntu 系统用的时间长了后，大家会发现存在很多其实已经不用的安装包和一些配置文件，占用了宝贵的硬盘空间，如何删除这些文件呢？方法如下，一般按照先后顺序执行：</p>
<p><strong>1. 清除 Residual Config Packages</strong></p>
<p>定位到 System/Administration/Synaptic Package Manager，选中 residual config，然后在右侧选中一个需要删除的安装包，右键选择 Mark for Complete Removal。（可以 Ctrl+A 全部选中后再选择 Removal）</p>
<p><a href="http://xuming.info/wp-content/uploads/2010/03/screenshot_01.png"><img class="alignleft size-medium wp-image-1448" title="screenshot_01" src="http://xuming.info/wp-content/uploads/2010/03/screenshot_01-300x188.png" alt="" width="300" height="188" /></a></p>
<p>然后选择 Apply，会出现一个对话框提示将要删除的安装包。</p>
<p><strong>2. 清除 partial packages</strong></p>
<p>Partial Packages 和 Residual Packages 的区别是，Partial 的安装包在下载的过程中被中断了，没有下载完整，而 Residual 的则是下载完整了。<br />
 ming@nw8440:~$ sudo apt-get autoclean</p>
<p><strong>3. 清除不需要的 locale 设置相关数据</strong></p>
<p>ming@nw8440:~$ sudo apt-get install localepurge    # 对我来说，只需要 en 即可，其他都删除。安装的时候只选择 en 即可。<br />
 安装了 localepurge 的好处是每次安装一个程序，都会自动删除除了之前在安装 locale 时选择的语言，即我这里只会安装 en 的内容，其他语言的内容都会被自动清理。如安装一个程序，会自动在安装的最后出现：<br />
 ming@nw8440:~$ sudo apt-get install deborphan<br />
 &#8230;&#8230;<br />
 Setting up deborphan (1.7.28) &#8230;</p>
<p>localepurge: Disk space freed in /usr/share/locale: 124K<br />
 localepurge: Disk space freed in /usr/share/man: 24K</p>
<p>Total disk space freed by localepurge: 148K</p>
<p><strong>4. 清除 orphaned packages</strong></p>
<p>ming@nw8440:~$ sudo apt-get install deborphan    # 安装<br />
 ming@nw8440:~$ sudo deborphan | xargs sudo apt-get -y remove &#8211;purge        ＃ 使用 deborphan 清理</p>
<p><strong>5. 使用 Ubuntu Tweak 删除下载到本地的 Package 和一些已经卸载的软件的配置文件</strong></p>
<p>打开 Ubuntu Tweak 后选择 Package Cleaner</p>
<p><strong>参考内容：</strong><br />
 <a href="http://www.ubuntugeek.com/cleaning-up-all-unnecessary-junk-files-in-ubuntu.html">http://www.ubuntugeek.com/cleaning-up-all-unnecessary-junk-files-in-ubuntu.html</a><a href="http://ubuntuforums.org/showthread.php?t=140920"></p>
<p>http://ubuntuforums.org/showthread.php?t=140920</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/03/how-to-keep-ubuntu-9-10-clean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBackup VCB backup encounter 156 error</title>
		<link>http://xuming.info/2010/03/netbackup-vcb-backup-encounter-156-error/</link>
		<comments>http://xuming.info/2010/03/netbackup-vcb-backup-encounter-156-error/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 07:20:32 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[NetBackup]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[156]]></category>
		<category><![CDATA[Quiesced]]></category>
		<category><![CDATA[Snapshot]]></category>
		<category><![CDATA[VCB]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1444</guid>
		<description><![CDATA[如何解决一些虚拟机不能通过 VCB 成功备份的情况？ NetBackup 通过 VCB 备份 VI 3.x/vSphere 4 的虚拟机时，总会是不是的发现某些 VM 出现 156 号错误，显示快照建立失败，如何去处理呢？ 典型的报错如: Creating a quiesced snapshot failed because the created snapshot operation exceeded the time limit for holding off I/O in the frozen virtual machine. 总的思路：确定真的是不能通过 VCB 成功备份再考虑传统的备份方法。 解决步骤(需要说明的是 VMware Tools 的安装和卸载需要重启服务器才能生效，需要慎重使用)： 1. 查看是否安装了最新的 VMware Tools，如果不是则尝试升级到最新版本； 2. 如果还是不行，则再次卸载 VMware Tools，然后将 sync [...]]]></description>
			<content:encoded><![CDATA[<p>如何解决一些虚拟机不能通过 VCB 成功备份的情况？</p>
<p>NetBackup 通过 VCB 备份 VI 3.x/vSphere 4 的虚拟机时，总会是不是的发现某些 VM 出现 156 号错误，显示快照建立失败，如何去处理呢？</p>
<p>典型的报错如: Creating a quiesced snapshot failed because the created snapshot operation exceeded the time limit for holding off I/O in the frozen virtual machine.</p>
<p>总的思路：确定真的是不能通过 VCB 成功备份再考虑传统的备份方法。</p>
<p>解决步骤(需要说明的是 VMware Tools 的安装和卸载需要重启服务器才能生效，需要慎重使用)：<br />
 1. 查看是否安装了最新的 VMware Tools，如果不是则尝试升级到最新版本；<br />
 2. 如果还是不行，则再次卸载 VMware Tools，然后将 sync driver 这个服务设置为 disable，同时设置 VSS 服务为 Automatic。之后再次安装 VMware Tools；<br />
 3. 如果还是不行，则尝试在需要备份的虚拟机负载较低的时候发起 VCB 备份，看看是否能够备份成功；<br />
 4. 如果还是不行，有两个选择：<br />
 1). 在 NetBackup 中设置对这台虚拟机备份的策略，在 Snapshot client options 中设定 disable VM quiesce 为 1，即在创建快照前不需要 quiesing 的动作，但需要强调的是如果不进行 quiesing 的动作，则不能保证备份的有效性，在恢复时有可能造成某些文件丢失和部分应用的出错；<br />
 2).  只能老老实实的安装传统的备份 Agent 通过传统方式备份了。不过还是有选择的，可以选择通过对文件系统（分区）级别的快照来加快备份速速，我在这里就不详细描述了。</p>
<p>#####<br />
 # 新的解决方法<br />
 ######################################</p>
<p>上面所记录的是几个月前我对 NBU 通过 VCB 备份出现 156 错误的总结，今天看了两篇 VMware 的官方文档，有了新的认识。<br />
 文档一：<a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1007696">Troubleshooting Volume Shadow Copy (VSS) quiesce related issues</a><br />
 文档二：<a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1009073">Unable to take a quiesced VMware snapshot of a virtual machine</a></p>
<p>总的思路：</p>
<p>1. 卸载当前机器上的 VMware Tools，重启虚机；<br />
 2. 登录虚机，在重新安装 VMware Tools 之前，确保如下两个服务（其目的是为了安装 VMware Tools 时能够成功安装“VMware Snapshot Provider”服务）：<br />
 a. &#8220;COM+ System Application Service&#8221; 服务开启，设置其启动类型为 Manual;<br />
 b. &#8220;COM+ Event System Service&#8221; 服务开启，设置其启动类型为 Automatic;<br />
 如果符合上面的两个条件，开始安装 VMware Tools，之后重启虚机。<br />
 3. 重新尝试在 NBU 上发起 VCB 备份策略，在备份的时候查看如下几个服务：<br />
 a.  确保&#8221;COM+ System Application&#8221;服务当前开启，其启动类型为 Manual；<br />
 b.  确保“COM+ Event System Service”当前开启，其启动类型为 Automatic；<br />
 c.  确保 &#8220;Volume Shadow Copy Service&#8221;启动类型为 Manual；<br />
 d.  确保“Microsoft Software Shadow Copy Provider Service”启动类型为 Manual；<br />
 e.  确保“VMware Snapshot Provider”服务当前启动，启动类型为 Manual。</p>
<p>#####<br />
# 要重复强调的几点<br />
##################################</p>
<p>对于负载较高的虚拟机，如运行着 SQL, Exchange 的虚拟机，或者虚拟机是域控制器，使用 VCB 的快照方式备份不能保证应用的一致性，推荐使用传统的备份 Agent 方式备份。如果希望做到快速恢复，可以考虑系统本身通过快照方式备份和恢复，应用使用专门的备份客户端恢复。</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/03/netbackup-vcb-backup-encounter-156-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>三则关于 Novell 的新闻</title>
		<link>http://xuming.info/2010/03/%e4%b8%89%e5%88%99%e5%85%b3%e4%ba%8e-novell-%e7%9a%84%e6%96%b0%e9%97%bb/</link>
		<comments>http://xuming.info/2010/03/%e4%b8%89%e5%88%99%e5%85%b3%e4%ba%8e-novell-%e7%9a%84%e6%96%b0%e9%97%bb/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 04:37:05 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Citrix]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[Novell]]></category>
		<category><![CDATA[PlateSpin]]></category>
		<category><![CDATA[Xen]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1441</guid>
		<description><![CDATA[1. Elliott Associates 风险对冲基金公司意欲收购 Novell 发生时间：2010年3月2日 参考： http://dealbook.blogs.nytimes.com/2010/03/02/elliott-associates-offers-to-buy-novell/ http://www.prnewswire.com/news-releases/elliott-offers-to-acquire-novell-86009382.html 2. Novell SLES 11 将会完全支持 KVM 将在今年发布的 SLES 11 将会完全支持 KVM，有分析人士认为这是 Novell 抛弃 Xen 投向 KVM 怀抱的开始。（注：Red Hat 从 RHEL 5.3 开始已经抛弃 Xen）。如果 Novell 也抛弃 Xen，Xen 这个虚拟化平台将彻底成为一个社区维护的产品了，不知道 Citrix 是不是非常后悔当年为什么要买 Xen 而不是其他。 不过 Novell 官方宣布将会同时支持 KVM 和 Xen，似乎此地无银三百两，呵呵。 Novell 之前收购的 PlateSpin 技术可以理解为支持 P2V 和 V2V 的 Convert [...]]]></description>
			<content:encoded><![CDATA[<p>1. Elliott Associates 风险对冲基金公司意欲收购 Novell</p>
<p>发生时间：2010年3月2日</p>
<p>参考：<br />
<a href="http://dealbook.blogs.nytimes.com/2010/03/02/elliott-associates-offers-to-buy-novell/">http://dealbook.blogs.nytimes.com/2010/03/02/elliott-associates-offers-to-buy-novell/</a><br />
<a href="http://www.prnewswire.com/news-releases/elliott-offers-to-acquire-novell-86009382.html">http://www.prnewswire.com/news-releases/elliott-offers-to-acquire-novell-86009382.html</a></p>
<p>2. Novell SLES 11 将会完全支持 KVM</p>
<p>将在今年发布的 SLES 11 将会完全支持 KVM，有分析人士认为这是 Novell 抛弃 Xen 投向 KVM 怀抱的开始。（注：Red Hat 从 RHEL 5.3 开始已经抛弃 Xen）。如果 Novell 也抛弃 Xen，Xen 这个虚拟化平台将彻底成为一个社区维护的产品了，不知道 Citrix 是不是非常后悔当年为什么要买 Xen 而不是其他。</p>
<p>不过 Novell 官方宣布将会同时支持 KVM 和 Xen，似乎此地无银三百两，呵呵。</p>
<p>Novell 之前收购的 PlateSpin 技术可以理解为支持 P2V 和 V2V 的 Convert 工具，可以很方便的将 Xen 虚机转换为 KVM 虚机。嗯，看来转换的代价不是很大，就等你宣布抛弃拉。</p>
<p>参考：<a href="http://www.virtualization.info/2010/03/novell-to-fully-support-kvm-in-sles-11.html">http://www.virtualization.info/2010/03/novell-to-fully-support-kvm-in-sles-11.html</a></p>
<p>3. Citrix 和 Novell 建立新的伙伴关系，并表示对于 KVM 的关注</p>
<p>几周之前，Citrix 和 Novell 宣布了在虚拟化方面建立新的伙伴关系，主要两部分内容：<br />
1). The first one is focused on providing joint technical support to those customers that run SUSE Linux Enterprise Server as a XenServer guest OS.<br />
2). The second one grants the use of Platespin Recon for Citrix and its Solutions Advisors partners.</p>
<p>别的不想多说，只想指出一点，据说 Citrix 目前在虚拟化底层的 Hypervisor 层方面无意与其他公司竞争，Citrix 更多的是关注如何在多种 Hypersior 底层技术上搭建其核心产品 VDI &#8211; XenDesktop 平台。有了这种主导思想，也就不难理解为什么 Citrix 对于 KVM 也表示关注了。</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/03/%e4%b8%89%e5%88%99%e5%85%b3%e4%ba%8e-novell-%e7%9a%84%e6%96%b0%e9%97%bb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware announces the end life of VCB</title>
		<link>http://xuming.info/2010/03/vmware-announces-the-end-life-of-vcb/</link>
		<comments>http://xuming.info/2010/03/vmware-announces-the-end-life-of-vcb/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 03:58:59 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[VADP]]></category>
		<category><![CDATA[VCB]]></category>
		<category><![CDATA[vStorage]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1439</guid>
		<description><![CDATA[近期 VMware 发送邮件通知客户 VCB &#8211; VMware Consolidated Backup framework 的生命周期将会结束，VMware 的下一代产品将不再支持 VCB，取而代之的是 vStorage APIs for Data Protection (VADP)。需要指出的是当前 vSphere 4.0 是明确支持 VCB 和 VADP 两种备份方式的。 关于 vStorage API 相比 VCB 的优点，可以参见我之前的一篇 blog http://xuming.info/2010/01/vcb-%E7%9A%84%E7%BB%88%E7%BB%93%E8%80%85-vstorage/]]></description>
			<content:encoded><![CDATA[<p>近期 VMware 发送邮件通知客户 VCB &#8211; VMware Consolidated Backup framework 的生命周期将会结束，VMware 的下一代产品将不再支持 VCB，取而代之的是 vStorage APIs for Data Protection (VADP)。需要指出的是当前 vSphere 4.0 是明确支持 VCB 和 VADP 两种备份方式的。</p>
<p>关于 vStorage API 相比 VCB 的优点，可以参见我之前的一篇 blog <a href="http://xuming.info/2010/01/vcb-%E7%9A%84%E7%BB%88%E7%BB%93%E8%80%85-vstorage/">http://xuming.info/2010/01/vcb-%E7%9A%84%E7%BB%88%E7%BB%93%E8%80%85-vstorage/</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/03/vmware-announces-the-end-life-of-vcb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Desktop On Ubuntu 9.10 Summary</title>
		<link>http://xuming.info/2010/03/google-desktop-on-ubuntu-9-10-summary/</link>
		<comments>http://xuming.info/2010/03/google-desktop-on-ubuntu-9-10-summary/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 10:44:07 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Summary]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1436</guid>
		<description><![CDATA[$ uname -a Linux nw8440 2.6.31-19-generic #56-Ubuntu SMP Thu Jan 28 02:39:34 UTC 2010 x86_64 GNU/Linux $ date Mon Mar  1 18:43:41 CST 2010 如何安装 推荐先安装如下软件包， $ sudo apt-get install wv catdoc    # 用于对 Windows Office 的文件，如 Word, Powerpoint，Excel 等文件进行索引 $ sudo apt-get install 然后到这个页面 http://desktop.google.com/zh/linux/download.html 下载对应的 Google Desktop 并安装 如何卸载 $ sudo dpkg -r [...]]]></description>
			<content:encoded><![CDATA[<p>$ uname -a<br />
Linux nw8440 2.6.31-19-generic #56-Ubuntu SMP Thu Jan 28 02:39:34 UTC 2010 x86_64 GNU/Linux<br />
$ date<br />
Mon Mar  1 18:43:41 CST 2010</p>
<p><strong>如何安装</strong></p>
<p>推荐先安装如下软件包，<br />
$ sudo apt-get install wv catdoc    # 用于对 Windows Office 的文件，如 Word, Powerpoint，Excel 等文件进行索引<br />
$ sudo apt-get install <br />
然后到这个页面 http://desktop.google.com/zh/linux/download.html 下载对应的 Google Desktop 并安装</p>
<p><strong>如何卸载</strong></p>
<p>$ sudo dpkg -r google-desktop-linux</p>
<p><strong>注意</strong></p>
<p>如果是覆盖安装，不会删除已经存在的索引文件；<br />
如果是卸载安装，则会删除已经存在的索引文件。</p>
<p><strong>快捷方式</strong></p>
<p>默认是快速敲击 Ctrl 键两次出现 Google Desktop 输入框。这个是可以修改的。</p>
<p><strong>如何备份索引文件</strong></p>
<p>备份如下两个文件<br />
~/.google                        ＃ 这是个文件<br />
/var/cache/google/desktop        ＃ 这是个目录</p>
<p><strong>如何恢复索引文件</strong></p>
<p>先停止 Google Desktop，然后覆盖上面备份的两个文件或目录。</p>
<p><strong>如何停止和开启 Google Desktop</strong></p>
<p>1. 右键点击运行在任务栏的 Google Desktop 图标；<br />
2. 选择 Exit，出现&#8221;Are you sure you want to quit Google Desktop?&#8221;的提示；<br />
3. 选择 Yes 退出。</p>
<p>可以在开始菜单中选择  &#8220;Google Desktop&#8221; &gt; &#8220;Google Desktop.&#8221; 开启。</p>
<p>注意，在安装 Google Desktop 之后，用户每次登录 GUI 界面都是都是自动启动 Google Desktop 的。</p>
<p><strong>关于索引的更新频率</strong></p>
<p>Google Desktop 的索引在系统处于闲置状态时自动在后台运行，一般初次索引完毕需要数个小时，最好在初次索引的时候在完成之前不要关机。</p>
<p>一旦初次索引完成之后，会自动根据计算机的数据变化自动更新。注意：Only kernel versions 2.6.13 and up support immediate real-time indexing. For Kernels lower than 2.6.13, Google Desktop will refresh the index periodically to keep you up to date。</p>
<p><strong>关于 Google Desktop 软件本身的自动升级</strong></p>
<p>Linux 平台的 Google Desktop 软件本身会自动升级，无需用户干预。具体看：http://desktop.google.com/support/linux/bin/answer.py?answer=62874&amp;cbid=eohtea7rchsb&amp;src=cb&amp;lev=answer</p>
<p><strong>关于搜索的技巧</strong></p>
<p>Google Web Search 中适用的高级搜索技巧对于 Google Desktop 同样适用，如：</p>
<p>filetype:pdf        # 只搜索 pdf 后缀的文件<br />
dogs -cats            # 搜索包含 dogs 同时不包含 cats 的结果<br />
&#8220;like this&#8221;            # 使用引号搜索包含空格等特殊符号的内容</p>
<p><strong>支持索引的文件类型</strong></p>
<p>支持如下类型的文件<br />
*  PDF and PostScript<br />
*  Text files (including source code)<br />
*  HTML<br />
*  OpenOffice.org Writer, Calc, and Impress files<br />
*  Microsoft .doc (Word), .xls (Excel), and .ppt (Powerpoint) files<br />
*  Media files and metadata (such as artist and album information)<br />
*  File names for most other files on your internal hard drives </p>
<p>Linux 版本的 Google Desktop 不支持如下文件<br />
1. Filenames starting with a dot (&#8220;.&#8221;) which are hidden files.<br />
2. Filenames ending with a tilde (&#8220;~&#8221;), which are usually backup files generated by text editors like VIM. </p>
<p>不搜索如下目录的文件<br />
* /boot<br />
* /dev/<br />
* /lib<br />
* /proc<br />
* /tmp </p>
<p><strong>参考：</strong><br />
http://desktop.google.com/en/linux/gettingstarted.html</p>
<p>http://desktop.google.com/support/linux/?hl=en</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/03/google-desktop-on-ubuntu-9-10-summary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NetBackup Database Server is down (93)</title>
		<link>http://xuming.info/2010/02/netbackup-database-server-is-down-93/</link>
		<comments>http://xuming.info/2010/02/netbackup-database-server-is-down-93/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 01:58:01 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[NetBackup]]></category>
		<category><![CDATA[93]]></category>
		<category><![CDATA[Catalog]]></category>
		<category><![CDATA[catstore]]></category>
		<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1427</guid>
		<description><![CDATA[快要春节了，不想惹事，不想折腾。可是，唉，今天一早发现打开 NetBackup 控制台时，出现 Database Server is down 的提示，具体表现如下： 在点击 Activity Monitor 时，出现如下报错： 在点击 Media 时，出现如下错误： 故障原因： NetBackup Master Server 的数据库所在的分区空间使用满了，为保证数据库的数据完整性，关闭了 Media Manager server 数据库。 仔细查看，可以发现某些服务器在 Netbackup\db\images\ 的文件特别大，如下图： 两种方法解决： 1. 压缩 catalog 定位到 Host Properties/Master Server/Golbal Attributes/，选择 compress catalog interval after x days。 2. 使用 ALTPATH 修改 images 这个目录的路径，这个没有具体去研究 上述两种方法是官方推荐的方法，注意第一种方法压缩 catalog 时需要注意，如果您的 Master Server 版本是 6.0.3 [...]]]></description>
			<content:encoded><![CDATA[<p>快要春节了，不想惹事，不想折腾。可是，唉，今天一早发现打开 NetBackup 控制台时，出现 Database Server is down 的提示，具体表现如下：</p>
<p>在点击 Activity Monitor 时，出现如下报错：</p>
<p><img src="http://xuming.info/wp-content/uploads/2010/02/screenshot_01.png" alt="" width="432" height="117" /></p>
<p>在点击 Media 时，出现如下错误：</p>
<p><img src="http://xuming.info/wp-content/uploads/2010/02/screenshot_06.png" alt="" /></p>
<p>故障原因： NetBackup Master Server 的数据库所在的分区空间使用满了，为保证数据库的数据完整性，关闭了 Media Manager server 数据库。</p>
<p>仔细查看，可以发现某些服务器在 Netbackup\db\images\ 的文件特别大，如下图：</p>
<p><img src="http://xuming.info/wp-content/uploads/2010/02/screenshot_05.png" alt="" width="481" height="318" /></p>
<p>两种方法解决：<br />
 1. 压缩 catalog<br />
 定位到 Host Properties/Master Server/Golbal Attributes/，选择 compress catalog interval after x days。<br />
 2. 使用 ALTPATH 修改 images 这个目录的路径，这个没有具体去研究</p>
<p>上述两种方法是官方推荐的方法，注意第一种方法压缩 catalog 时需要注意，如果您的 Master Server 版本是 6.0.3 之前的，会存在一个问题，具体查看 http://seer.entsupport.symantec.com/docs/283528.htm</p>
<p>不过以上两种方法，我目前都没有采用，我只是零时将一些 catstore 文件迁移到其他地方，然后使用 nbdb_admin -start 命令启动 NetBackup 的数据库，如下图：</p>
<p><img src="http://xuming.info/wp-content/uploads/2010/02/screenshot_07.png" alt="" width="470" height="52" /></p>
<p>之后，NetBackup Database server 恢复正常。目前在考虑迁移 Master Server 到一台新的服务器上，采用备份和恢复 catalog 的方法。</p>
<p><br class="spacer_" /></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/02/netbackup-database-server-is-down-93/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vBlock (EMC/Cisco/VMware) vs SMT (NetApp/Cisco/VMware )</title>
		<link>http://xuming.info/2010/01/vblock-emcciscovmware-vs-smt-netappciscovmware/</link>
		<comments>http://xuming.info/2010/01/vblock-emcciscovmware-vs-smt-netappciscovmware/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 07:45:27 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[6100]]></category>
		<category><![CDATA[FCoE]]></category>
		<category><![CDATA[SMT]]></category>
		<category><![CDATA[vBlock]]></category>

		<guid isPermaLink="false">http://xuming.info/2010/01/vblock-emcciscovmware-vs-smt-netappciscovmware/</guid>
		<description><![CDATA[今天下午，Cisco 的代理商到公司介绍了 vBlock 的一些技术，主要还是 FCoE 的一些应用，中间比较感兴趣的是 6100 控制器的一些技术背景。结合昨天 NetApp/Cisco/VMware 三家发起的 SMT，等我有空整理一下笔记，现在先把题目放在这，稍候补充内容。^_^]]></description>
			<content:encoded><![CDATA[<p>今天下午，Cisco 的代理商到公司介绍了 vBlock 的一些技术，主要还是 FCoE 的一些应用，中间比较感兴趣的是 6100 控制器的一些技术背景。结合昨天 NetApp/Cisco/VMware 三家发起的 SMT，等我有空整理一下笔记，现在先把题目放在这，稍候补充内容。^_^</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/01/vblock-emcciscovmware-vs-smt-netappciscovmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware release the draft of vSphere 4.0 Hardening Guide</title>
		<link>http://xuming.info/2010/01/vmware-release-the-draft-of-vsphere-4-0-hardening-guide/</link>
		<comments>http://xuming.info/2010/01/vmware-release-the-draft-of-vsphere-4-0-hardening-guide/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 02:37:18 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Guideline]]></category>
		<category><![CDATA[Hardening]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1423</guid>
		<description><![CDATA[目前还是草稿阶段，不是正式版。 相比 VI3 的 Hardening Guide 具有如下亮点： * 结构上更清晰明了 &#8211; 使用了标准的文档格式，在文档结构上，模板定义上以及参考文档引用方面都相比 VI3 的对应部分更正式。 * 推荐设置方面选择更多 &#8211; 这份文档将所有的操作指引划分为三个安全等级，而不是为所有的场景给出一个笼统的推荐。这样做的好处是管理员可以有更多的选择，更好的根据自身环境的需求做出更好的配置。 需要指出的是，这个 Hardening Guide 有超过 100 个操作指引，主要按照如下几个部分进行划分： * Introduction * Virtual Machines * Host * vNetwork * vCenter * Console OS (for ESX) 如何获得：http://communities.vmware.com/community/vmtn/general/security?view=documents]]></description>
			<content:encoded><![CDATA[<p>目前还是草稿阶段，不是正式版。</p>
<p>相比 VI3 的 Hardening Guide 具有如下亮点：</p>
<p>* 结构上更清晰明了 &#8211; 使用了标准的文档格式，在文档结构上，模板定义上以及参考文档引用方面都相比 VI3 的对应部分更正式。<br />
* 推荐设置方面选择更多 &#8211; 这份文档将所有的操作指引划分为三个安全等级，而不是为所有的场景给出一个笼统的推荐。这样做的好处是管理员可以有更多的选择，更好的根据自身环境的需求做出更好的配置。</p>
<p>需要指出的是，这个 Hardening Guide 有超过 100 个操作指引，主要按照如下几个部分进行划分：</p>
<p> * Introduction<br />
 * Virtual Machines<br />
 * Host<br />
 * vNetwork<br />
 * vCenter<br />
 * Console OS (for ESX)</p>
<p>如何获得：<a href="http://communities.vmware.com/community/vmtn/general/security?view=documents">http://communities.vmware.com/community/vmtn/general/security?view=documents</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/01/vmware-release-the-draft-of-vsphere-4-0-hardening-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>免费的虚拟机分区调整工具 &#8211; PARAGON Partition Manager 10 for Virtual Machines</title>
		<link>http://xuming.info/2010/01/%e5%85%8d%e8%b4%b9%e7%9a%84%e8%99%9a%e6%8b%9f%e6%9c%ba%e5%88%86%e5%8c%ba%e8%b0%83%e6%95%b4%e5%b7%a5%e5%85%b7-paragon-partition-manager-10-for-virtual-machines/</link>
		<comments>http://xuming.info/2010/01/%e5%85%8d%e8%b4%b9%e7%9a%84%e8%99%9a%e6%8b%9f%e6%9c%ba%e5%88%86%e5%8c%ba%e8%b0%83%e6%95%b4%e5%b7%a5%e5%85%b7-paragon-partition-manager-10-for-virtual-machines/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 02:04:00 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[GPT]]></category>
		<category><![CDATA[Paragon]]></category>
		<category><![CDATA[Partition]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1413</guid>
		<description><![CDATA[PARAGON 将其全功能的 Partition Manager 10 Professional 重新定制，推出了针对各种平台的虚拟机的分区调整工具 &#8211; Partition Manager 10 for Virtual Machines，支持目前所有的虚拟化产品，如 vSphere 4.0, Hyper-V, Xen 等等，支持 Windows 和 Linux 虚拟机。最重要的是，这个版本目前免费下载免费使用，但据说只有前 5000 个下载是免费的。 主要功能如下： 支持 GPT &#8211; GPT (GUID Partition Table) 磁盘是 Windows 7/Vista, Server 2008, Mac OS X 和 Linux 支持的分区类型； 合并分区 &#8211; 可以将原先的多个分区合并为一个分区； 可用空间跨分区调整 &#8211; 可以在相邻的两个分区之间调整磁盘可用空间； 备份/恢复 &#8211; 可以针对单个分区或者整个虚拟硬盘进行备份； 智能磁盘碎片整理 &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>PARAGON 将其全功能的 Partition Manager 10 Professional 重新定制，推出了针对各种平台的虚拟机的分区调整工具 &#8211; Partition Manager 10 for Virtual Machines，支持目前所有的虚拟化产品，如 vSphere 4.0, Hyper-V, Xen 等等，支持 Windows 和 Linux 虚拟机。最重要的是，这个版本目前免费下载免费使用，但据说只有前 5000 个下载是免费的。</p>
<p><a href="http://xuming.info/wp-content/uploads/2010/01/partition-manager-10-free-too.png"><img class="alignleft size-medium wp-image-1414" title="partition-manager-10-free-too" src="http://xuming.info/wp-content/uploads/2010/01/partition-manager-10-free-too-300x144.png" alt="" width="300" height="144" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><a href="http://xuming.info/wp-content/uploads/2010/01/partition-manager-10-free-tool.jpg"><img class="alignleft size-medium wp-image-1415" title="partition-manager-10-free-tool" src="http://xuming.info/wp-content/uploads/2010/01/partition-manager-10-free-tool-300x231.jpg" alt="" width="300" height="231" /></a></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><strong>主要功能如下：</strong><br />
 支持 GPT &#8211; GPT (GUID Partition Table) 磁盘是 Windows 7/Vista, Server 2008, Mac OS X 和 Linux 支持的分区类型；<br />
 合并分区 &#8211; 可以将原先的多个分区合并为一个分区；<br />
 可用空间跨分区调整 &#8211; 可以在相邻的两个分区之间调整磁盘可用空间；<br />
 备份/恢复 &#8211; 可以针对单个分区或者整个虚拟硬盘进行备份；<br />
 智能磁盘碎片整理 &#8211; 针对 FAT 和 NTFS 文件系统，有 27 种碎片整理的策略可供选择；<br />
 系统启动修复 &#8211; 可以修复大部分的系统启动故障；<br />
 文件传输 &#8211; 可以在虚拟机关机的情况下，传输文件到其他虚拟机或者物理机上；<br />
 虚拟操作 &#8211; 可以在具体操作前进行预览，一般用于记录多个操作然后一次进行；<br />
 查看修改虚拟磁盘 &#8211; 可以直接查看文件系统的 metadata，对虚拟磁盘上的扇区直接查看和修改。</p>
<p><strong>支持的文件系统：</strong><br />
 * NTFS (v1.2, v3.0, v3.1)<br />
 * FAT16<br />
 * FAT32<br />
 * Linux Ext2FS<br />
 * Linux Ext3FS<br />
 * Linux Ext4FS<br />
 * Linux Swap<br />
 * Apple HFS+<br />
 * Other file systems (in the sector-by-sector mode)</p>
<p>安装文件和对应使用手册下载地址：<a href="http://www.paragon-software.com/business/pm-vm/download.html">http://www.paragon-software.com/business/pm-vm/download.html</a> <br />
 据说有 5000 个下载的限制，所以大家抓紧吧。</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/01/%e5%85%8d%e8%b4%b9%e7%9a%84%e8%99%9a%e6%8b%9f%e6%9c%ba%e5%88%86%e5%8c%ba%e8%b0%83%e6%95%b4%e5%b7%a5%e5%85%b7-paragon-partition-manager-10-for-virtual-machines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Converter P2V 最佳实践</title>
		<link>http://xuming.info/2010/01/vmware-converter-p2v-%e6%9c%80%e4%bd%b3%e5%ae%9e%e8%b7%b5/</link>
		<comments>http://xuming.info/2010/01/vmware-converter-p2v-%e6%9c%80%e4%bd%b3%e5%ae%9e%e8%b7%b5/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 09:49:32 +0000</pubDate>
		<dc:creator>xuming</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Best Parctise]]></category>
		<category><![CDATA[Converter]]></category>
		<category><![CDATA[P2V]]></category>
		<category><![CDATA[V2V]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://xuming.info/?p=1410</guid>
		<description><![CDATA[VMware 官方发布了使用 Converter 工具进行虚拟机转换的最佳实践，对转换之前的准备工作，如何转换以及转换成功之后的后续工作进行了总结。 地址：http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&#38;cmd=displayKC&#38;externalId=1004588]]></description>
			<content:encoded><![CDATA[<p>VMware 官方发布了使用 Converter 工具进行虚拟机转换的最佳实践，对转换之前的准备工作，如何转换以及转换成功之后的后续工作进行了总结。</p>
<p>地址：http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1004588</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://xuming.info/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://xuming.info/2010/01/vmware-converter-p2v-%e6%9c%80%e4%bd%b3%e5%ae%9e%e8%b7%b5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
