<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule">

<channel>
	<title>wolfg&#039;s Weblog &#187; Using Desktop</title>
	<atom:link href="http://guoyong.org/category/linux/using-ubuntu-desktop/feed" rel="self" type="application/rss+xml" />
	<link>http://guoyong.org</link>
	<description>wolfg&#039;s journey with open source, linux, programming, sysadm ...</description>
	<lastBuildDate>Thu, 04 Aug 2011 15:02:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.5/cn/</creativeCommons:license>		<item>
		<title>给虚拟机的虚拟硬盘增加容量(vmdk file)</title>
		<link>http://guoyong.org/2010/03/04/576</link>
		<comments>http://guoyong.org/2010/03/04/576#comments</comments>
		<pubDate>Thu, 04 Mar 2010 09:56:03 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[gparted]]></category>
		<category><![CDATA[qemu]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[vmdk]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware-player]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=576</guid>
		<description><![CDATA[我使用虚拟机主要是为了使用Windows XP系统来访问网银、进行在线支付。当初安装时是用VMWare Player的，后来换成了VirtualBox 3。Windows XP越来越臃肿，虚拟机硬盘空间不够了。在网上搜索后找到了增加虚拟硬盘容量的方法：使用QEMN和GParted，不用安装“庞大”的VMWare软件。特别说明一下最初创建虚拟硬盘时也是使用的QEMU工具。 具体步骤如下： 1. VMDK格式转成RAW格式 $ qemu-img convert -f vmdk winxp.vmdk -O raw winxp.raw 2. 新建一个RAW格式的文件，后面会用到 $ qemu-img create -f raw temp.img 512M 3. 用cat命令把temp.img多次追加到winxp.raw文件后，达到扩容的目的。 $ cat winxp.raw temp.img temp.img temp.img temp.img temp.img temp.img temp.img temp.img &#62; winxp.img 4. 再转成原来的VMDK格式 $ qemu-img convert -f raw winxp.img -O vmdk winxp.vmdk 5. 用下载Gparted Live [...]]]></description>
			<content:encoded><![CDATA[<p>我使用虚拟机主要是为了使用Windows XP系统来访问网银、进行在线支付。当初安装时是用VMWare Player的，后来换成了VirtualBox 3。Windows XP越来越臃肿，虚拟机硬盘空间不够了。在网上搜索后找到了增加虚拟硬盘容量的方法：使用<a href="http://wiki.qemu.org/Main_Page">QEMN</a>和<a href="http://gparted.sourceforge.net/">GParted</a>，不用安装“庞大”的VMWare软件。特别说明一下最初创建虚拟硬盘时也是使用的QEMU工具。</p>
<p>具体步骤如下：<br />
1. VMDK格式转成RAW格式</p>
<div class="hl-surround"><div class="hl-main">$ qemu-img convert -f vmdk winxp.vmdk -O raw winxp.raw</div></div>
<p>2. 新建一个RAW格式的文件，后面会用到</p>
<div class="hl-surround"><div class="hl-main">$ qemu-img create -f raw temp.img 512M</div></div>
<p>3. 用cat命令把temp.img多次追加到winxp.raw文件后，达到扩容的目的。</p>
<div class="hl-surround"><div class="hl-main">$ cat winxp.raw temp.img temp.img temp.img temp.img temp.img temp.img temp.img temp.img &gt; winxp.img</div></div>
<p>4. 再转成原来的VMDK格式</p>
<div class="hl-surround"><div class="hl-main">$ qemu-img convert -f raw winxp.img -O vmdk winxp.vmdk</div></div>
<p>5. 用下载Gparted Live CD 的iso文件作为光盘启动虚拟机，可以看到硬盘物理空间已经变成了8G。修改硬盘上面的分区大小就行了，也可以创建新的分区。<br />
<a href="http://guoyong.org/blog/wp-content/uploads/gparted.png" rel="lightbox[576]"><img src="http://guoyong.org/blog/wp-content/uploads/gparted-300x197.png" alt="" title="进行中" width="300" height="197" class="alignnone size-medium wp-image-586" /></a><a href="http://guoyong.org/blog/wp-content/uploads/gparted2.png" rel="lightbox[576]"><img src="http://guoyong.org/blog/wp-content/uploads/gparted2-300x197.png" alt="" title="修改成功" width="300" height="197" class="alignnone size-medium wp-image-587" /></a></p>
<p>参考:</p>
<p><a href="http://www.cyberciti.biz/tips/howto-resize-vmware-virtual-harddisk-size.html#comments" title="http://www.cyberciti.biz/tips/howto-resize-vmware-virtual-harddisk-size.html#comments" target="_blank">www.cyberciti.biz/tips/howto-resize-vmware-virtual&#8230;</a></p>
<p><a href="http://qemu-forum.ipi.fi/viewtopic.php?t=846&#038;highlight=" title="http://qemu-forum.ipi.fi/viewtopic.php?t=846&#038;highlight=" target="_blank">qemu-forum.ipi.fi/viewtopic.php?t=846&#038;highlight=</a></p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2010/03/04/576/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>登录窗口有多个Xfce会话供选择，怎么回事？</title>
		<link>http://guoyong.org/2010/01/26/558</link>
		<comments>http://guoyong.org/2010/01/26/558#comments</comments>
		<pubDate>Tue, 26 Jan 2010 12:44:40 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[gdm]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xfce]]></category>
		<category><![CDATA[xsessions]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=558</guid>
		<description><![CDATA[登录窗口里选择会话的地方，一直有两个Xfce Session，登录后似乎略有不同。其实是在/usr/share/xsessions目录有一个符号链接default.desktop指向了xfce.desktop，删掉它后就可以了，也不影响什么。]]></description>
			<content:encoded><![CDATA[<p>登录窗口里选择会话的地方，一直有两个Xfce Session，登录后似乎略有不同。其实是在/usr/share/xsessions目录有一个符号链接default.desktop指向了xfce.desktop，删掉它后就可以了，也不影响什么。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2010/01/26/558/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>找回消失的Notification Area(Xubuntu)</title>
		<link>http://guoyong.org/2010/01/26/556</link>
		<comments>http://guoyong.org/2010/01/26/556#comments</comments>
		<pubDate>Tue, 26 Jan 2010 11:48:43 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[notification area]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xfce]]></category>
		<category><![CDATA[xfce-panel]]></category>
		<category><![CDATA[xubuntu]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=556</guid>
		<description><![CDATA[美化桌面的时候会遇到通知区域(Notification Area)Applet不见了的情况，试图再加一个到面板上也会报类似“通知区域已经存在”的错误。 解决办法是检查~/.config/xfce4/panel目录下有没有名字以systray开头的文件，删掉这些文件。 rm ~/.config/xfce4/panel/systray* 再编辑~/.config/xfce4/panel/panels.xml这个文件，如果有一行包含systray的，也删掉。 再次登入后，重新添加通知区域到面板就可以了。]]></description>
			<content:encoded><![CDATA[<p>美化桌面的时候会遇到通知区域(Notification Area)Applet不见了的情况，试图再加一个到面板上也会报类似“通知区域已经存在”的错误。</p>
<p>解决办法是检查~/.config/xfce4/panel目录下有没有名字以systray开头的文件，删掉这些文件。<br />
rm ~/.config/xfce4/panel/systray*<br />
再编辑~/.config/xfce4/panel/panels.xml这个文件，如果有一行包含systray的，也删掉。</p>
<p>再次登入后，重新添加通知区域到面板就可以了。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2010/01/26/556/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Services not starting on boot</title>
		<link>http://guoyong.org/2010/01/21/524</link>
		<comments>http://guoyong.org/2010/01/21/524#comments</comments>
		<pubDate>Wed, 20 Jan 2010 16:02:07 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[serverfault]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[upstart]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=524</guid>
		<description><![CDATA[前一段时间笔记本升级到Ubuntu 9.10后遇到了系统服务没有启动的问题，后来得知是upstart的一个bug。具体情况看看我在ServerFault回答的同样问题吧。]]></description>
			<content:encoded><![CDATA[<p>前一段时间笔记本升级到Ubuntu 9.10后遇到了系统服务没有启动的问题，后来得知是upstart的一个<a href="https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/497299">bug</a>。具体情况看看我在<a href="http://serverfault.com">ServerFault</a>回答的<a href="http://serverfault.com/questions/100240/services-not-starting-on-boot-but-will-start-manually-on-ubuntu-9-10/103532#103532">同样问题</a>吧。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2010/01/21/524/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>升级到Ubuntu 8.10</title>
		<link>http://guoyong.org/2008/11/06/362</link>
		<comments>http://guoyong.org/2008/11/06/362#comments</comments>
		<pubDate>Wed, 05 Nov 2008 22:40:12 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[ipw2200]]></category>
		<category><![CDATA[nm-applet]]></category>
		<category><![CDATA[T43]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=362</guid>
		<description><![CDATA[花了一天多的时间将笔记本（IBM Thinkpad T43）升级到了Ubuntu新发布的8.10版本。 升级过程很顺利（就是时间比较长），其间遇到了Network Manager小程序不停地弹出消息对话框，说“找不到所需的资源，无法继续”，但不影响升级包的安装。 重启系统后，Network Manager小程序居然不能加载了，在launchpad里搜索到解决办法是只在/etc/network/interfaces文件里保留下面这两行。 auto loiface lo inet loopback 第二个问题是，升级后无线网卡不工作了，用dmesg &#124; grep ipw2200查看，有如下类似的信息： ipw2200-bss.fw request_firmware failed: Reason -2ipw2200: Unable to load firmware: -2ipw2200: failed to register network google后知道是firmware加载的问题，检查/lib/firmware目录，没在当前使用中的内核目录（/lib/firmware/2.6.27-7-generic/）里找到这些firmware文件。从ipw2200的网站上下载后解压到这个目录后重启就解决了。（补充：使用原来的2.6.24内核启动系统无线网卡是正常的）]]></description>
			<content:encoded><![CDATA[<p>花了一天多的时间将笔记本（IBM Thinkpad T43）升级到了Ubuntu新发布的8.10版本。</p>
<p>升级过程很顺利（就是时间比较长），其间遇到了Network Manager小程序不停地弹出消息对话框，说“找不到所需的资源，无法继续”，但不影响升级包的安装。</p>
<p>重启系统后，Network Manager小程序居然不能加载了，在launchpad里搜索到解决办法是只在/etc/network/interfaces文件里保留下面这两行。</p>
<div class="hl-surround"><div class="hl-main">auto lo<br />iface lo inet loopback</div></div>
<p>第二个问题是，升级后无线网卡不工作了，用dmesg | grep ipw2200查看，有如下类似的信息：</p>
<div class="hl-surround"><div class="hl-main">ipw2200-bss.fw request_firmware failed: Reason -2<br />ipw2200: Unable to load firmware: -2<br />ipw2200: failed to register network</div></div>
<p>google后知道是firmware加载的问题，检查/lib/firmware目录，没在当前使用中的内核目录（/lib/firmware/2.6.27-7-generic/）里找到这些firmware文件。从ipw2200的网站上下载后解压到这个目录后重启就解决了。（补充：使用原来的2.6.24内核启动系统无线网卡是正常的）</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2008/11/06/362/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>audacious不出声了？</title>
		<link>http://guoyong.org/2008/07/19/361</link>
		<comments>http://guoyong.org/2008/07/19/361#comments</comments>
		<pubDate>Sat, 19 Jul 2008 02:40:12 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[audacious]]></category>
		<category><![CDATA[MADPlug-Message]]></category>
		<category><![CDATA[PULSEAUDIO]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=361</guid>
		<description><![CDATA[audacious不能播放mp3有一段时间了，今天找到这个问题的原因。 如果用终端运行audacious，就会在console里看到下面的错误信息： *** PULSEAUDIO: Unable to connect: Connection refusedMADPlug-Message: failed to open audio output: XMMS reverse compatibility output plugin 之前试过卸载再重装audacious，没用。 按照google到的结果提示的，发现系统里没有安装pulseaudio。而且，发现audacious里设置output plugin为alsa或oss就可以播放出来了。那pulseaudio为什么不行呢？ 修改/etc/default/pulseaudio文件，PULSEAUDIO_SYSTEM_START=1 让pulseaudio服务在系统启动时启动。 最重要的，把自己的用户加到pulse, pulse-access, pulse-rt这3个group里，这个就是最根本的原因了。]]></description>
			<content:encoded><![CDATA[<p>audacious不能播放mp3有一段时间了，今天找到这个问题的原因。</p>
<p>如果用终端运行audacious，就会在console里看到下面的错误信息：</p>
<div class="hl-surround"><div class="hl-main">*** PULSEAUDIO: Unable to connect: Connection refused<br />MADPlug-Message: failed to open audio output: XMMS reverse compatibility output plugin</div></div>
<p>之前试过卸载再重装audacious，没用。</p>
<p>按照google到的结果提示的，发现系统里没有安装pulseaudio。而且，发现audacious里设置output plugin为alsa或oss就可以播放出来了。那pulseaudio为什么不行呢？</p>
<p>修改/etc/default/pulseaudio文件，PULSEAUDIO_SYSTEM_START=1 让pulseaudio服务在系统启动时启动。</p>
<p>最重要的，把自己的用户加到pulse, pulse-access, pulse-rt这3个group里，这个就是最根本的原因了。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2008/07/19/361/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xfce 字体问题</title>
		<link>http://guoyong.org/2008/05/11/357</link>
		<comments>http://guoyong.org/2008/05/11/357#comments</comments>
		<pubDate>Sun, 11 May 2008 06:51:06 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[font]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xfce]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=357</guid>
		<description><![CDATA[昨天为了使用笔记本（T43, ATI Mobility Radeon X300显卡）的VGA OUT功能，改用了ATI的驱动（xorg-driver-fglrx），字体变小了，虽然在User Interface和Window Manager里设置了字体，但有些地方的字体还是很小，尤其是ThunderBird的邮件正文，中文字都要缩成一团了。 Google到了一个方法，就是修改~/.config/xfce4/Xft.xrdb这个文件，在里面加上这句 Xft.dpi: 96 再看User Interface的Font设置，发现里面也有DPI的设置，呵呵。]]></description>
			<content:encoded><![CDATA[<p>昨天为了使用笔记本（T43, ATI Mobility Radeon X300显卡）的VGA OUT功能，改用了ATI的驱动（xorg-driver-fglrx），字体变小了，虽然在User Interface和Window Manager里设置了字体，但有些地方的字体还是很小，尤其是ThunderBird的邮件正文，中文字都要缩成一团了。</p>
<p>Google到了一个方法，就是修改~/.config/xfce4/Xft.xrdb这个文件，在里面加上这句</p>
<div class="hl-surround"><div class="hl-main">Xft.dpi: 96</div></div>
<p>再看User Interface的Font设置，发现里面也有DPI的设置，呵呵。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2008/05/11/357/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>升级到Ubuntu 8.04</title>
		<link>http://guoyong.org/2008/05/05/353</link>
		<comments>http://guoyong.org/2008/05/05/353#comments</comments>
		<pubDate>Sun, 04 May 2008 16:45:07 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://guoyong.org/?p=353</guid>
		<description><![CDATA[五一假期用了一晚时间升级了笔记本电脑上装的Ubuntu，注意到一些变化： 1. 启动过程中如果检查硬盘不会显示纯终端界面了 2. 登录xfce后无线网自动连接，不用再输入keyring的密码，很方便 3. Firefox 升级到3.0 4. 中文字体显示效果似乎比以前好了 升级后原来的vmware-player不能用啦，按照这里的说明即可解决。]]></description>
			<content:encoded><![CDATA[<p>五一假期用了一晚时间升级了笔记本电脑上装的Ubuntu，注意到一些变化：<br />
1. 启动过程中如果检查硬盘不会显示纯终端界面了<br />
2. 登录xfce后无线网自动连接，不用再输入keyring的密码，很方便<br />
3. Firefox 升级到3.0<br />
4. 中文字体显示效果似乎比以前好了</p>
<p>升级后原来的vmware-player不能用啦，按照<a href="http://theblacklodge.org/blog/2008/04/02/installing-vmware-player-203-on-ubuntu-804-beta">这里的说明</a>即可解决。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2008/05/05/353/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>郁闷了几天，终于搞定了Ubuntu下Firefox经常crash的问题</title>
		<link>http://guoyong.org/2006/12/13/295</link>
		<comments>http://guoyong.org/2006/12/13/295#comments</comments>
		<pubDate>Wed, 13 Dec 2006 08:02:39 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[crash]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://guoyong.org/2006/12/13/295</guid>
		<description><![CDATA[有一阵子没更新了 :( 这几天用Firefox很郁闷，经常发生关闭一个tab，firefox就crash掉了的情况。从shell里启动的话，可以看到的错误信息就是“段错误”，即“segmentation fault”。 升级到Firefox 2.0后也不行。（我用的是Ubuntu 6.06) 顺便提一下，从这个网站找到了安装、卸载Firefox 2.0的脚本，很好用。 google到两个bug报告，得知是flash插件的问题，不记得什么时候更新到了最新的flash插件，版本好像是9.0。 launchpad.net/distros/ubuntu/+source/firefox/+bug/&#8230; bugzilla.mozilla.org/show_bug.cgi?id=304370 解决的方法： 如果不想看页面里的flash了，就 export XLIB_SKIP_ARGB_VISUALS=1，再启动firefox就行了。 如果还是想显示flash，那就不能用从源里安装的flash插件（flashplugin-nonfree 和 flashplayer-mozilla好像都不行），从系统里卸载这些插件。然后用firefox访问一个有flash的页面，它会提示里安装插件，安装提示进行，最后会告诉你要手工安装，也就是要到adobe的网站上下载版本是7.0的插件 install_flash_player_7_linux.tar.gz，下载后安装就可以了。]]></description>
			<content:encoded><![CDATA[<p>有一阵子没更新了 :(</p>
<p>这几天用Firefox很郁闷，经常发生关闭一个tab，firefox就crash掉了的情况。从shell里启动的话，可以看到的错误信息就是“段错误”，即“segmentation fault”。</p>
<p>升级到Firefox 2.0后也不行。（我用的是Ubuntu 6.06) 顺便提一下，从<a href="http://www.psychocats.net/ubuntu/firefox">这个网站</a>找到了安装、卸载Firefox 2.0的脚本，很好用。</p>
<p>google到两个bug报告，得知是flash插件的问题，不记得什么时候更新到了最新的flash插件，版本好像是9.0。</p>
<p><a href="https://launchpad.net/distros/ubuntu/+source/firefox/+bug/19552" title="https://launchpad.net/distros/ubuntu/+source/firefox/+bug/19552" target="_blank">launchpad.net/distros/ubuntu/+source/firefox/+bug/&#8230;</a></p>
<p><a href="https://bugzilla.mozilla.org/show_bug.cgi?id=304370" title="https://bugzilla.mozilla.org/show_bug.cgi?id=304370" target="_blank">bugzilla.mozilla.org/show_bug.cgi?id=304370</a></p>
<p>解决的方法：<br />
如果不想看页面里的flash了，就 export XLIB_SKIP_ARGB_VISUALS=1，再启动firefox就行了。<br />
如果还是想显示flash，那就不能用从源里安装的flash插件（flashplugin-nonfree 和 flashplayer-mozilla好像都不行），从系统里卸载这些插件。然后用firefox访问一个有flash的页面，它会提示里安装插件，安装提示进行，最后会告诉你要手工安装，也就是要到adobe的网站上下载版本是7.0的插件 install_flash_player_7_linux.tar.gz，下载后安装就可以了。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2006/12/13/295/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>使用GnomeBaker刻录光盘</title>
		<link>http://guoyong.org/2006/11/27/290</link>
		<comments>http://guoyong.org/2006/11/27/290#comments</comments>
		<pubDate>Mon, 27 Nov 2006 14:28:01 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>

		<guid isPermaLink="false">http://guoyong.org/2006/11/27/290</guid>
		<description><![CDATA[第一次用GnomeBaker刻录光盘，报错： cdrecord cannot open '/dev/sg0' 看来它还是调用cdrecord这个程序。感觉是权限的问题： $ ls -l /dev/sg0crw-rw---- 1 root root 21, 0 2006-11-27 21:53 /dev/sg0 于是 $ sudo chmod 777 /dev/sg0 搞定！不过，应该还有更“优雅”的解决办法吧。]]></description>
			<content:encoded><![CDATA[<p>第一次用GnomeBaker刻录光盘，报错：</p>
<div class="hl-surround"><div class="hl-main">cdrecord cannot open '/dev/sg0'</div></div>
<p>看来它还是调用cdrecord这个程序。感觉是权限的问题：</p>
<div class="hl-surround"><div class="hl-main">$ ls -l /dev/sg0<br />crw-rw---- 1 root root 21, 0 2006-11-27 21:53 /dev/sg0</div></div>
<p>于是</p>
<div class="hl-surround"><div class="hl-main">$ sudo chmod 777 /dev/sg0</div></div>
<p>搞定！不过，应该还有更“优雅”的解决办法吧。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2006/11/27/290/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu下使用usb bluetooth stick遇到的一个问题</title>
		<link>http://guoyong.org/2006/09/07/268</link>
		<comments>http://guoyong.org/2006/09/07/268#comments</comments>
		<pubDate>Thu, 07 Sep 2006 07:26:10 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[bluetooth]]></category>

		<guid isPermaLink="false">http://guoyong.org/2006/09/07/268</guid>
		<description><![CDATA[前几天在我的T43上搞定了如何使用usb的蓝牙，但在办公PC上使用时遇到一个问题： 用hcitool搜索bluetooth设备时提示 Device is not available: No such device 用lsusb可以看到设备。 参考 www.rolfs.no/2006/08/23/kernel-hci_cmd_task-hci0-c&#8230; 得到解决办法： $ sudo hciconfig hci0 up$ sudo hcitool scan]]></description>
			<content:encoded><![CDATA[<p>前几天在我的T43上搞定了如何使用usb的蓝牙，但在办公PC上使用时遇到一个问题：<br />
用hcitool搜索bluetooth设备时提示<br />
Device is not available: No such device</p>
<p>用lsusb可以看到设备。</p>
<p>参考 <a href="http://www.rolfs.no/2006/08/23/kernel-hci_cmd_task-hci0-command-tx-timeout/" title="http://www.rolfs.no/2006/08/23/kernel-hci_cmd_task-hci0-command-tx-timeout/" target="_blank">www.rolfs.no/2006/08/23/kernel-hci_cmd_task-hci0-c&#8230;</a> 得到解决办法：</p>
<div class="hl-surround"><div class="hl-main">$ sudo hciconfig hci0 up<br />$ sudo hcitool scan</div></div>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2006/09/07/268/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JDK 1.5的汉字问题</title>
		<link>http://guoyong.org/2006/08/26/263</link>
		<comments>http://guoyong.org/2006/08/26/263#comments</comments>
		<pubDate>Sat, 26 Aug 2006 14:32:51 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>

		<guid isPermaLink="false">http://guoyong.org/2006/08/26/263</guid>
		<description><![CDATA[安装Freemind后发现无法启动，在shell中启动可以看了这样的错误： Exception in thread &#34;main&#34; java.lang.IllegalArgumentException......at sun.font.TrueTypeFont.getFamilyName(TrueTypeFont.java:884)...... 按照 hyuhui.yculblog.com/post.1092211.html 的方法设置，Web Start和Java Control Panel都可以显示中文了，但Freemind启动还是报这个错误。后来google到 lists.freebsd.org/pipermail/freebsd-java/2005-Octo&#8230; ，原来是萤火虫字体影响的，只好不用这个字体了。]]></description>
			<content:encoded><![CDATA[<p>安装Freemind后发现无法启动，在shell中启动可以看了这样的错误：</p>
<div class="hl-surround"><div class="hl-main">Exception in thread &quot;main&quot; java.lang.IllegalArgumentException<br />......<br />at sun.font.TrueTypeFont.getFamilyName(TrueTypeFont.java:884)<br />......</div></div>
<p>按照 <a href="http://hyuhui.yculblog.com/post.1092211.html" title="http://hyuhui.yculblog.com/post.1092211.html" target="_blank">hyuhui.yculblog.com/post.1092211.html</a> 的方法设置，Web Start和Java Control Panel都可以显示中文了，但Freemind启动还是报这个错误。后来google到 <a href="http://lists.freebsd.org/pipermail/freebsd-java/2005-October/004410.html" title="http://lists.freebsd.org/pipermail/freebsd-java/2005-October/004410.html" target="_blank">lists.freebsd.org/pipermail/freebsd-java/2005-Octo&#8230;</a> ，原来是萤火虫字体影响的，只好不用这个字体了。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2006/08/26/263/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>今晚搞定了T43的bluetooth和infrared连接</title>
		<link>http://guoyong.org/2006/08/24/262</link>
		<comments>http://guoyong.org/2006/08/24/262#comments</comments>
		<pubDate>Thu, 24 Aug 2006 15:34:19 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[infrared]]></category>
		<category><![CDATA[T43]]></category>

		<guid isPermaLink="false">http://guoyong.org/2006/08/24/262</guid>
		<description><![CDATA[蓝牙： 我用的是USB的蓝牙设备。执行完下列命令 $ sudo mknod /dev/rcomm0 c 216 0$ sdptool add --channel=10 OPUSH$ sudo rfcomm bind /dev/rfcomm0 00:15:A0:EF:D7:94 10$ obexserver 就可以接收手机发过来的文件了。 参考了这两个帖子： ubuntuforums.org/showthread.php?t=34740 forum.ubuntu.org.cn/about741.html 红外： /etc/modprobe.d/irda-utils 里面添加这两行 alias irda0 nsc-irccoptions nsc-ircc dongle_id=0x09 io=0x2f8 irq=3 dma=3 /etc/modules 里添加一行 nsc-ircc 执行这个命令 $ sudo irattch irda0 -s 用这个命令测试 $ sudo irdadump 接收手机发来的文件 $ ircp -r ~/images 参考： forum.ubuntu.org.cn/viewtopic.php?t=18877 [...]]]></description>
			<content:encoded><![CDATA[<p>蓝牙：</p>
<p>我用的是USB的蓝牙设备。执行完下列命令</p>
<div class="hl-surround"><div class="hl-main">$ sudo mknod /dev/rcomm0 c 216 0<br />$ sdptool add --channel=10 OPUSH<br />$ sudo rfcomm bind /dev/rfcomm0 00:15:A0:EF:D7:94 10<br /><br />$ obexserver</div></div>
<p>就可以接收手机发过来的文件了。</p>
<p>参考了这两个帖子：</p>
<p><a href="http://ubuntuforums.org/showthread.php?t=34740" title="http://ubuntuforums.org/showthread.php?t=34740" target="_blank">ubuntuforums.org/showthread.php?t=34740</a></p>
<p><a href="http://forum.ubuntu.org.cn/about741.html" title="http://forum.ubuntu.org.cn/about741.html" target="_blank">forum.ubuntu.org.cn/about741.html</a></p>
<p>红外：</p>
<p>/etc/modprobe.d/irda-utils 里面添加这两行</p>
<div class="hl-surround"><div class="hl-main">alias irda0 nsc-ircc<br />options nsc-ircc dongle_id=0x09 io=0x2f8 irq=3 dma=3</div></div>
<p>/etc/modules 里添加一行</p>
<div class="hl-surround"><div class="hl-main">nsc-ircc</div></div>
<p>执行这个命令</p>
<div class="hl-surround"><div class="hl-main">$ sudo irattch irda0 -s</div></div>
<p>用这个命令测试</p>
<div class="hl-surround"><div class="hl-main">$ sudo irdadump</div></div>
<p>接收手机发来的文件</p>
<div class="hl-surround"><div class="hl-main">$ ircp -r ~/images</div></div>
<p>参考：</p>
<p><a href="http://forum.ubuntu.org.cn/viewtopic.php?t=18877" title="http://forum.ubuntu.org.cn/viewtopic.php?t=18877" target="_blank">forum.ubuntu.org.cn/viewtopic.php?t=18877</a></p>
<p><a href="http://www.thinkwiki.org/wiki/How_to_make_use_of_IrDA" title="http://www.thinkwiki.org/wiki/How_to_make_use_of_IrDA" target="_blank">www.thinkwiki.org/wiki/How_to_make_use_of_IrDA</a></p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2006/08/24/262/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>今天Beep Media Player 不工作了</title>
		<link>http://guoyong.org/2006/08/24/261</link>
		<comments>http://guoyong.org/2006/08/24/261#comments</comments>
		<pubDate>Thu, 24 Aug 2006 03:41:36 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>

		<guid isPermaLink="false">http://guoyong.org/2006/08/24/261</guid>
		<description><![CDATA[我的BMP总是不能连续地播放play list。装了几个plugin后居然没法启动了。 换成别的用户，发现可以运行，看来只是设置的问题。 决定用“狠”招 $ rm -rf ~/.bmp 再启动bmp，一切正常，而且连play list的问题也没了。]]></description>
			<content:encoded><![CDATA[<p>我的BMP总是不能连续地播放play list。装了几个plugin后居然没法启动了。</p>
<p>换成别的用户，发现可以运行，看来只是设置的问题。</p>
<p>决定用“狠”招</p>
<div class="hl-surround"><div class="hl-main">$ rm -rf ~/.bmp</div></div>
<p>再启动bmp，一切正常，而且连play list的问题也没了。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2006/08/24/261/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>昨天升级xserver-xorg-core，结果。。。</title>
		<link>http://guoyong.org/2006/08/23/260</link>
		<comments>http://guoyong.org/2006/08/23/260#comments</comments>
		<pubDate>Wed, 23 Aug 2006 14:09:36 +0000</pubDate>
		<dc:creator>wolfg</dc:creator>
				<category><![CDATA[Using Desktop]]></category>
		<category><![CDATA[xserver-xorg-core]]></category>

		<guid isPermaLink="false">http://guoyong.org/2006/08/23/260</guid>
		<description><![CDATA[今天一开机，X server不工作了。 sudo dpkg-reconfigure xserver-xorg 也不管用。 后来在ubuntu的论坛里找到了有人刚刚 post的解决办法： $ sudo aptitute&#160; update$ sudo aptitute dist-upgrade 再重启X就可以了。 后来看了 这里 和 这里 才知道是这次的更新包有问题，看来还是不要太冲动的好，不过ubuntu的社区真是没的说。]]></description>
			<content:encoded><![CDATA[<p>今天一开机，X server不工作了。</p>
<p>sudo dpkg-reconfigure xserver-xorg 也不管用。</p>
<p>后来在ubuntu的论坛里找到了有人刚刚 post的解决办法：</p>
<div class="hl-surround"><div class="hl-main">$ sudo aptitute&nbsp; update<br />$ sudo aptitute dist-upgrade</div></div>
<p>再重启X就可以了。</p>
<p>后来看了 <a href="http://karronqiu.spaces.live.com/">这里</a> 和 <a href="http://ubuntudemon.wordpress.com/2006/08/22/latest-dapper-xserver-xorg-upgrade-might-break-the-xserver/">这里</a> 才知道是这次的更新包有问题，看来还是不要太冲动的好，不过ubuntu的社区真是没的说。</p>
]]></content:encoded>
			<wfw:commentRss>http://guoyong.org/2006/08/23/260/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

