<?xml version="1.0" encoding="utf-8"?>

<rdf:RDF
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/"
  xmlns:cc="http://web.resource.org/cc/"
  xmlns="http://purl.org/rss/1.0/">

<channel rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/">
<title>The Spirit of Ubuntu</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/</link>
<description></description>
<dc:language>ja-JP</dc:language>
<dc:creator></dc:creator>
<dc:date>2013-01-19T19:48:07+09:00</dc:date>


<items>
<rdf:Seq><rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2013/01/grub-os-8c48.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2013/01/1210-bluetooth-.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2013/01/vaio-type-p-44e.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2012/04/pageuppagedown-.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2012/04/post-84a1.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2012/03/zenbook-bd8b.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2012/03/mozc-dc8e.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2012/03/asus-zenbook-ub.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2012/01/post-6755.html" />
<rdf:li rdf:resource="http://eunheui.cocolog-nifty.com/ubuntu/2012/01/post-0d0e.html" />
</rdf:Seq>
</items>

</channel>

<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2013/01/grub-os-8c48.html">
<title>grub のデフォルトOSを変える</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2013/01/grub-os-8c48.html</link>
<description>起動時に Ubuntu ではなく Windows をデフォルトにするやりかた、い...</description>
<content:encoded><![CDATA[<div>起動時に Ubuntu ではなく Windows をデフォルトにするやりかた、いろいろと書かれています。</div>

<div></div>

<div></div>

<div>とりあえず、やってみたのは、</div>

<div></div>

<blockquote><p>sudo gedit /etc/default/grub</p></blockquote>

<div></div>

<div></div>

<div>で、</div>

<div></div>

<div></div>

<blockquote><p>GRUB_DEFAULT=0</p></blockquote>

<div></div>

<div></div>

<div>の行の数字を変えること。で、</div>

<div></div>

<div></div>

<blockquote><p>sudo update-grub</p></blockquote>

<div></div>

<div></div>

<div>する。</div>

<div></div>

<div></div>

<div>今のところ、うまく行っていますが、今後、カーネルのアップデートとかがあると、grub に行が増えたりして、不具合が出るのかもしれません。あるいは、13.04 になる時、0 が書き戻されてしまうとか。しばらく様子見です。</div>

<div></div>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2013-01-19T19:48:07+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2013/01/1210-bluetooth-.html">
<title>12.10 の Bluetooth まわり</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2013/01/1210-bluetooth-.html</link>
<description>Sony Vaio Type P に Ubuntu 12.10 をインストールし...</description>
<content:encoded><![CDATA[<p>Sony Vaio Type P に Ubuntu 12.10 をインストールしましたが、Bluetooth で問題があります。一つ解決。</p>

<p></p>

<p>サスペンドしても、Bluetooth/Network アダプタの電源が落ちないのです。システム設定で Bluetooth を切っておけば、電源は落ちます。なお、よく報告されている「レジュームすると Bluetooth が使えなくなる」という問題は、私のところでは発生しませんでした。</p>

<p></p>

<p>で、Bluetooth アダプタをサスペンドさせるのは、以下の方法でできました。</p>

<p></p>

<p>/etc/pm/sleep.d/10_bluetooth というファイルを作り、0755 にする。</p>

<p></p>

<p>中身は、</p>

<p></p><blockquote><p>#!/bin/bash<br />

</p>

<p></p>

<p>

. /usr/lib/pm-utils/functions<br />

case &quot;$1&quot; in<br />

&nbsp; &nbsp; hibernate|suspend)<br />

&nbsp; &nbsp; rfkill block bluetooth<br />

&nbsp; &nbsp; ;;<br />

&nbsp; &nbsp; thaw|resume)<br />

&nbsp; &nbsp; rfkill unblock bluetooth<br />

&nbsp; &nbsp; ;;<br />

&nbsp; &nbsp; *)<br />

&nbsp; &nbsp; ;;<br />

esac<br />

exit</p></blockquote><p></p>

<p>これは&nbsp; <a href="http://ubuntuforums.org/showthread.php?t=1387211">Bluetooth doesn't work after resume from sleep/standby</a> に書いてあった方法です。9.04 向けのスクリプトですが、ちゃんと動きました。</p>

<p></p>

<p>私のところで残っている問題は、Microsoft Wedge Touch Mouse がうまく使えないこと。ペアリング設定して使えるところまでは行くのですが、一旦スリープしたり電源を落としたりすると、ペアリング情報が失われてしまうようです。システム設定を見ていると、接続のスイッチが勝手にオンになったりオフになったり。</p>

<p></p>

<p>別の Bluetooth マウスは問題なく使えているので、「相性」みたいなものがあるのでしょうかねえ。</p>

<p></p>

<p>それから、Bluetooth ではありませんが、無線の Microsoft Arc Touch Mouse は何の設定もなしに使えました。USB のドングルを挿すやつなのですが、システムから見たら、ごく普通の USB マウスに見えるのでしょうか。</p>

<p></p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2013-01-16T11:07:53+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2013/01/vaio-type-p-44e.html">
<title>Vaio Type P のリジューム</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2013/01/vaio-type-p-44e.html</link>
<description>Zenbook の 12.10 へのアップグレードがあっさり終わってしまったので...</description>
<content:encoded><![CDATA[<p>Zenbook の 12.10 へのアップグレードがあっさり終わってしまったので、何も書くことのなかった8か月（かな？）でした。</p>

<p></p>

<p>今日、思い立って、2年前まで使っていた Vaio Type P (VGN-P70H) に 12.10 を入れてみたら、書くことが！</p>

<p></p>

<p>サスペンドからの復帰ができないのです。</p>

<p></p>

<p>でも、これも先達の的確な記録で、すぐ解決。</p>

<p></p>

<p>「<a href="http://f-st1029.noc.toyama.nsk.ne.jp/soft/ubuntugnome1210.html">Ubuntu GNOME Remix 12.10 関係</a>」の指摘に従い、 /etc/pm/config.d/gma500 に</p>

<blockquote><p>ADD_PARAMETERS='-quirk-vbemode-restore' </p></blockquote>

<p>と書くと、なおりました。</p>

<p>似たような指摘で、12.04 について、「/etc/pm/config.d/defaults に export PM_QUIRKS=&quot;--quirk-vbemode-restore&quot; と書く」「export PM_QUIRKS=&quot;--quirk-vbe-post --quirk-vbemode-restore&quot; と書く」というのは、私のところでは動きませんでした。</p>

<p></p>

<p>まだ他に思うように動かない部分もあるのですが、それはまた別項で。</p>

<p></p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2013-01-13T22:54:51+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2012/04/pageuppagedown-.html">
<title>PageUp、PageDown キーがほしい</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2012/04/pageuppagedown-.html</link>
<description>Asus Zenbook のキーボードにはPageUp、PageDownキーがあ...</description>
<content:encoded><![CDATA[<p>Asus Zenbook のキーボードにはPageUp、PageDownキーがありません（ｆｎキーと上向き、下向きキーのコンビネーションを使います）。</p>

<p>私はスペースバーの右のメニューキーやコントロールキーは使わないので、それらにページ上下を割り当てることにしました。</p>

<p>やりかたは <a href="http://d.hatena.ne.jp/higepon/20070421/1177119842">Ubuntu Edgy で Windows Key を Alt_L に変更 - Higepon’s blog - Mona OS and Mosh</a> に教えていただきました。</p>

<p>端末で xev を起動し、キーを押すと、keycode と割り当てられた役割が分かるので、エディターで ~/.Xmodmap というファイルを作り、</p>

<blockquote><p>keycode 135 = Next<br />keycode 105 = Prior</p></blockquote>

<p>というようような表にして保存し、再起動すればできあがりです。</p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2012-04-07T16:29:47+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2012/04/post-84a1.html">
<title>カーネルのアップデートと削除</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2012/04/post-84a1.html</link>
<description>前評判では、Ubuntu カーネルの 3.1.1 では、ASUS Zenbook...</description>
<content:encoded><![CDATA[<p>前評判では、Ubuntu カーネルの 3.1.1 では、ASUS Zenbook X31E での Bluetooth の問題が解決されているという話だったので、カーネルをアップデートしてみたのですが、解決はされていませんでした。</p>

<p>それはさておき、<span style="color: #ff3300;">カーネルのアップデート</span>のしかたをメモしておきます。</p>

<ol><li><a href="http://kernel.ubuntu.com/~kernel-ppa/mainline/">http://kernel.ubuntu.com/~kernel-ppa/mainline/</a> で新しいカーネルを探す。</li>

<li>linux-image- で始まる、自分の環境に適したファイル（私なら i386 で終わるもの）をダウンロードし、deb ファイルをダブルクリックして適用。インストールが終了したらソフトウェアセンターを終了。（名前に pae と入っているファイルは要らないのだと思います。間違っていたらごめんなさい。）</li>

<li>ファイル名の最後が -all.deb のファイルをダウンロード、インストール、ソフトウェアセンターを終了。</li>

<li>linux-headers- で始まる、自分の環境に適したファイルをダウンロード、インストール。</li>

<li>端末から、sudo update-grub
			
		</li></ol>

<p>という手順です。</p>

<p>しかし、3.3.1 では Zenbook はよけい不安定になってしまいました（Bluetooth が直っていなかったほか、 WiFi の接続が不確実になってしまいました。これは痛い）。というわけで、次は<span style="color: #ff3300;">削除</span>の手順。とほほ。<a href="http://www.liberiangeek.net/2011/11/remove-old-kernels-in-ubuntu-11-10-oneiric-ocelot/">こちら</a>によります。</p>

<ol><li>uname -r で自分が今使っているカーネルを確認</li>

<li>dpkg --list | grep linux-image で削除するカーネルのバージョンを確認</li>

<li>sudo apt-get purge linux-image-（バージョン）-generic で削除</li>

<li>sudo update-grub でブート時のメニューを更新</li></ol>

<p></p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2012-04-04T10:55:47+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2012/03/zenbook-bd8b.html">
<title>Zenbook をスリープさせる</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2012/03/zenbook-bd8b.html</link>
<description>Ubuntu 11.10 を入れただけの UX31E は、スリープができません。...</description>
<content:encoded><![CDATA[<p>Ubuntu 11.10 を入れただけの UX31E は、スリープができません。ディスプレイは消灯しますが、右脇の通電ライトは点灯したまま。ふたを開けると、ディスプレイに電気が入るだけで、何も出ません。</p>

<p>解決法は <a href="http://ubuntuforums.org/showthread.php?t=1865577&amp;page=3">Ubunutu and the asus zenbook (UX31)</a> の 2011年11月6日の GozillaMonster さんのポストにありました。</p>

<p>/etc/pm/sleep.d/20_zenbook_ux31</p><blockquote><p>#!/bin/sh<br /><br />EHCI_BUSES=&quot;0000:00:1d.0&quot;<br />XHCI_BUSES=&quot;0000:03:00.0&quot;<br /><br />case &quot;${1}&quot; in<br />&nbsp; &nbsp; hibernate|suspend)<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; # Switch USB buses off<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; for bus in $EHCI_BUSES; do<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;echo -n $bus | tee /sys/bus/pci/drivers/ehci_hcd/unbind<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; done<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; for bus in $XHCI_BUSES; do<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;echo -n $bus | tee /sys/bus/pci/drivers/xhci_hcd/unbind<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; done<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; ;;<br />&nbsp; &nbsp; resume|thaw)<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; # Switch USB buses back on<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; for bus in $EHCI_BUSES; do<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;echo -n $bus | tee /sys/bus/pci/drivers/ehci_hcd/bind<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; done<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; for bus in $XHCI_BUSES; do<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;echo -n $bus | tee /sys/bus/pci/drivers/xhci_hcd/bind<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; done<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; # Disable touch-to-tap on Zenbook touchpad<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; echo -n 0x90 0x80 &gt; /sys/devices/platform/i8042/serio4/setreg<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; echo -n c &gt; /sys/devices/platform/i8042/serio4/flags<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; ;;<br />esac</p></blockquote>



<p>/etc/pm/config.d/unload_module</p><blockquote><p>SUSPEND_MODULES=&quot;xhci_hcd&quot;</p></blockquote>


<p>を作り、0755 にしたら、スリープできるようになりました。</p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2012-03-20T00:00:52+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2012/03/mozc-dc8e.html">
<title>いろいろ設定中：mozc</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2012/03/mozc-dc8e.html</link>
<description>日本語入力の mozc を導入するのは簡単になりましたねえ。公開されたころは、い...</description>
<content:encoded><![CDATA[<p>日本語入力の mozc を導入するのは簡単になりましたねえ。公開されたころは、いろいろとコンパイルする必要があったような記憶がありますが。</p>

<p>ソフトウェアセンターからibus-mozc をインストールし、バーの中のキーボードのアイコンで ibus を再起動し、あとは日本語を選んで追加するだけ。</p>

<p><img border="0" src="http://eunheui.cocolog-nifty.com/photos/uncategorized/2012/03/19/mozc.png" title="Mozc" alt="Mozc" />


</p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2012-03-19T21:21:20+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2012/03/asus-zenbook-ub.html">
<title>ASUS Zenbook に Ubuntu</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2012/03/asus-zenbook-ub.html</link>
<description>ASUS のウルトラブック UX31E、いわゆる Zenbook を入手しました...</description>
<content:encoded><![CDATA[<p>ASUS のウルトラブック UX31E、いわゆる Zenbook を入手しました。 Ubuntu の Live CD でパーティションを切ってインストール。32ビット版が入ってしまいました。まあ、いいか。</p>

<p>よくないのは、 Bluetooth がちゃんと動かないことです。メニューバーにアイコンは出るのですが、マウスなどとペアリングしようと思っても、できません。 Atheros のアダプタがちゃんと認識されていないようです。</p>

<p>いろいろと探して、 Ubuntu Forums: <a href="http://ubuntuforums.org/showthread.php?t=1867447&amp;highlight=zenbook&amp;page=3">Bluetooth doesn't pick up devices</a> の2012年1月6日の Fryie さんの手順どおりにやって、成功しました。</p>

<p>書き換える部分は3か所だけなのですが、その後がけっこう大変で、カーネルを再コンパイルしなくてはなりません。もう少し簡単な方法がありそうな気もします。</p>

<p>Ubuntu Forums の記事は Community Documentation の <a href="https://help.ubuntu.com/community/AsusZenbook">Zenbook のページ</a>から知りました。ちなみに、このページによると、カーネルはもうすぐマルチタッチに対応するようです。
</p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2012-03-19T21:03:54+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2012/01/post-6755.html">
<title>バーを隠す</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2012/01/post-6755.html</link>
<description>Ubuntu 11.10 Gnome Classic デスクトップを使うようにな...</description>
<content:encoded><![CDATA[<p>Ubuntu 11.10 Gnome Classic デスクトップを使うようになってから、画面上端と下端のバーが自動的に隠れなくなりました。</p>

<p>解決法は、ターミナルから dconf-editor を起動し、▼org ▼gnome ▼gnome-panel ▼layout ▼toplevels と降りて行き、 bottom-panel と top-panel の auto-hide に✔を入れる、でした。</p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2012-01-25T22:21:13+09:00</dc:date>
</item>
<item rdf:about="http://eunheui.cocolog-nifty.com/ubuntu/2012/01/post-0d0e.html">
<title>リムーバブルメディアのアイコンを表示する</title>
<link>http://eunheui.cocolog-nifty.com/ubuntu/2012/01/post-0d0e.html</link>
<description>Ubuntu 11.10 （unity ではなく gnome classic の...</description>
<content:encoded><![CDATA[<p>Ubuntu 11.10 （unity ではなく gnome classic のデスクトップを使っています）になってから、USB メモリなどリムーバブルメディアのアイコンがデスクトップに出なくなりました。</p>

<blockquote><p>gsettings set org.gnome.nautilus.desktop volumes-visible true</p></blockquote>

<p>とやって、一回ログアウトすると、アイコンが出るようになります。</p>

<blockquote><p>gsettings list-recursively | grep nautilus</p></blockquote>

<p>で設定が確認できます。</p>

<p><a href="http://ubuntuforums.org/showthread.php?t=1862015">[ubuntu] Clean install of 11.10, removable media does not show on desktop. - Ubuntu Forums</a></p>

<p>で知りました。</p>]]></content:encoded>



<dc:creator>ウニ</dc:creator>
<dc:date>2012-01-15T16:00:13+09:00</dc:date>
</item>


</rdf:RDF>
