<?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>BestJQ &#187; Linux</title>
	<atom:link href="http://bestjq.com/category/it/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://bestjq.com</link>
	<description>Life is like a box of chocolate,You never know what you’re gonna get</description>
	<lastBuildDate>Tue, 04 May 2010 15:47:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>如何在Grub中设置默认启动</title>
		<link>http://bestjq.com/how-to-set-the-default-start-grub/</link>
		<comments>http://bestjq.com/how-to-set-the-default-start-grub/#comments</comments>
		<pubDate>Sun, 26 Apr 2009 12:41:23 +0000</pubDate>
		<dc:creator>Visionaer</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Grub]]></category>

		<guid isPermaLink="false">http://bestjq.com/?p=302</guid>
		<description><![CDATA[大家在装完Linux系统的时候，如果原来有Windows系统，Grub的默认启动都是从Linux启动，想要设置默认启动，需要编辑/boot/grub/目录下面的menu.lst
只需要在Linux终端下输入 gksu gedit /boot/grub/menu.lst...]]></description>
			<content:encoded><![CDATA[<p>大家在装完Linux系统的时候，如果原来有Windows系统，Grub的默认启动都是从Linux启动，想要设置默认启动，需要编辑<span style="font-size: small;">/boot/grub/目录下面的</span><span style="font-size: small;">menu.lst</span></p>
<p><span style="font-size: small;">只需要在Linux终端下输入 gksu gedit /boot/grub/menu.lst就可以来编辑了，注意直接gedit命令打开该文件是没有权限来保存的。</span></p>
<p><span style="font-size: small;">## default num，只要在这里设置，默认的是“ default        0”相对于启动时候的第一行，如果你的需要设置的启动项在第五行，只需把“0”替换成“4”就可以了（和硬盘或分区的排序是一样的）</span></p>
<p><span style="font-size: small;">当然在## timeout sec 你还可以设置超时时间， 如 timeout        10，等待10秒后从默认启动项启动</span></p>
<p><span style="font-size: small;"><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://bestjq.com/how-to-set-the-default-start-grub/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>把Ubuntu的旧Linux内核卸载掉</title>
		<link>http://bestjq.com/uninstall-the-old-kernel/</link>
		<comments>http://bestjq.com/uninstall-the-old-kernel/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 06:30:36 +0000</pubDate>
		<dc:creator>Visionaer</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[内核]]></category>
		<category><![CDATA[卸载]]></category>
		<category><![CDATA[更新]]></category>

		<guid isPermaLink="false">http://bestjq.com/?p=43</guid>
		<description><![CDATA[今天开机时，明显grub列表中的启动项多起来了，原来有2个旧的linux内核没有卸载了
选择最新版本2.6.27-10进入系统后<code>$ dpkg --get-selections&#124;grep linux</code>
libselinux1          install
linux-firmware       install
]]></description>
			<content:encoded><![CDATA[<p>今天开机时，明显grub列表中的启动项多起来了，原来有2个旧的linux内核没有卸载了<br />
选择最新版本2.6.27-10进入系统后<code>$ dpkg --get-selections|grep linux</code><br />
libselinux1                                                install<br />
linux-firmware                                          install<br />
linux-generic                                            install<br />
linux-headers-2.6.27-10                         install<br />
linux-headers-2.6.27-10-generic            install<br />
linux-headers-2.6.27-7                           install<br />
linux-headers-2.6.27-7-generic              install<br />
linux-headers-2.6.27-8                           install<br />
linux-headers-2.6.27-8-generic              install<br />
linux-headers-generic                              install<br />
linux-image-2.6.27-10-generic               install<br />
linux-image-2.6.27-7-generic                 install<br />
linux-image-2.6.27-8-generic                 install<br />
linux-image-generic                                 install<br />
linux-libc-dev                                           install<br />
linux-restricted-modules-2.6.27-10-generic  install<br />
linux-restricted-modules-2.6.27-7-generic    install<br />
linux-restricted-modules-2.6.27-8-generic    install<br />
linux-restricted-modules-common                  install<br />
linux-restricted-modules-generic                    install<br />
linux-sound-base           install<br />
linuxqq                         install<br />
syslinux                        install<br />
util-linux                       install<br />
用apt-get remove把linux-image-2.6.27-7-generic 和linux-image-2.6.27-8-generic都卸载掉</p>
<p>对于我们初学者来说内核的更新频率太高并不是什么好事情，很多软件都要重新编译，给初学者带来不少的麻烦</p>
<p>此外在红联社区看到个有趣的帖子<a href="http://www.linuxdiyf.com/bbs/redirect.php?fid=49&amp;tid=114305&amp;goto=nextoldset" target="_blank"></a></p>
<p><a href="http://www.linuxdiyf.com/bbs/redirect.php?fid=49&amp;tid=114305&amp;goto=nextoldset" target="_blank">http://www.linuxdiyf.com/bbs/redirect.php?fid=49&amp;tid=114305&amp;goto=nextoldset</a>，推荐男同胞们看下！Female小心进入！</p>
]]></content:encoded>
			<wfw:commentRss>http://bestjq.com/uninstall-the-old-kernel/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Ubuntu下播放RMVB视频</title>
		<link>http://bestjq.com/totemxine/</link>
		<comments>http://bestjq.com/totemxine/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 20:52:07 +0000</pubDate>
		<dc:creator>Visionaer</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[RMVB]]></category>
		<category><![CDATA[totem]]></category>

		<guid isPermaLink="false">http://bestjq.com/?p=71</guid>
		<description><![CDATA[网络上关于这个的帖子和文章很多但是比较乱，我这里提供一种比较简单的办法

还是使用ubuntu自带的播放器totem，其实预装的播放器是Totem-gstreamer

<span class="readmore"><a href="http://bestjq.com/totemxine/" title="Ubuntu下播放RMVB视频">阅读全文——共322字</a></span>]]></description>
			<content:encoded><![CDATA[<p>网络上关于这个的帖子和文章很多但是比较乱，我这里提供一种比较简单的办法</p>
<p>还是使用ubuntu自带的播放器totem，其实预装的播放器是Totem-gstreamer</p>
<p>1.卸载Totem-gstreamer</p>
<p><strong>sudo apt-get remove totem-gstreamer</strong></p>
<p>2.安装Totem-xine</p>
<p><strong>sudo apt-get install totem-xine</strong></p>
<p>3.安装解码包w32codecs</p>
<p><strong>sudo apt-get install w32codecs</strong></p>
<p>如果找不到w32codecs可以在以下这个页面下载deb包</p>
<p><a href="http://www.debian-multimedia.org/pool/main/w/w32codecs/" target="_blank">http://www.debian-multimedia.org/pool/main/w/w32codecs/</a></p>
<p>此方案对8.04、8.10及9.04均有效</p>
]]></content:encoded>
			<wfw:commentRss>http://bestjq.com/totemxine/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>支持截屏的LinuxQQ Preview3</title>
		<link>http://bestjq.com/linuxqqpreview3/</link>
		<comments>http://bestjq.com/linuxqqpreview3/#comments</comments>
		<pubDate>Sat, 15 Nov 2008 07:50:45 +0000</pubDate>
		<dc:creator>Visionaer</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[QQ]]></category>

		<guid isPermaLink="false">http://bestjq.com/?p=36</guid>
		<description><![CDATA[腾讯发布了 QQ for Linux 1.0 Preview 3，从这个版本开始支持好友之间互相发送文件，支持在群里截屏而在群里发送等等。在很大程度上提高了 QQ for Linux 的用户体验，同时也看到了腾讯要把 QQ for Linux 的功能做得更加完善的决心，并兑现其发布的 QQ for Linux 产品后续计划的承诺。对于长时间没有更新的eva，此版本的LinuxQQ很受Linux用户的欢迎。

<span class="readmore"><a href="http://bestjq.com/linuxqqpreview3/" title="支持截屏的LinuxQQ Preview3">阅读全文——共340字</a></span>]]></description>
			<content:encoded><![CDATA[<p>腾讯发布了 QQ for Linux 1.0 Preview 3，从这个版本开始支持好友之间互相发送文件，支持在群里截屏而在群里发送等等。在很大程度上提高了 QQ for Linux 的用户体验，同时也看到了腾讯要把 QQ for Linux 的功能做得更加完善的决心，并兑现其发布的 QQ for Linux 产品后续计划的承诺。对于长时间没有更新的eva，此版本的LinuxQQ很受Linux用户的欢迎。</p>
<p>下载：<a title="http://im.qq.com/qq/linux/" href="http://im.qq.com/qq/linux/" target="_blank"></a><a title="LinuxQQ" href="http://im.qq.com/qq/linux/" target="_blank"><span style="font-family: Arial">http://im.qq.com/qq/linux/</span></a></p>
<p><strong> QQ for Linux 1.0 Preview 3 主要变化：</strong><br />
* 支持和好友传送文件<br />
* 支持和好友/群发送图片<br />
* 支持群里截屏并传送截图<br />
* 优化代码运行效率，降低系统开销</p>
<p>QQ for Linux 1.0 Preview 3 的截图<br />
版本号<br />
<img class="size-full wp-image-1747 aligncenter" src="http://pic.yupoo.com/bestjq/171416833a44/ij1nosru.jpg" alt="" /><br />
在群里支持截屏并发送<br />
<img class="aligncenter size-full wp-image-1748" src="http://pic.yupoo.com/bestjq/831536833a43/bd77sn0l.jpg" alt="" /><br />
支持用户之间相互发送文件<br />
<img class="size-full wp-image-1751 alignnone" src="http://pic.yupoo.com/bestjq/396096836fc0/tq0awvp2.jpg" alt="" /></p>
<p><img class="aligncenter size-full wp-image-1752" src="http://pic.yupoo.com/bestjq/106896836fc0/vv4hpv6n.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://bestjq.com/linuxqqpreview3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
