try this: Windows 7,WinXP SP3,NoName XPE . ;)
[+/-] |
prism in ubuntu 9.04
poster:
MarlboroMoo on
20:04
/
Comments: (0)
|
[+/-] |
sun java jdk 6 in ubuntu 9.04 |
按照以下步驟安裝 Sun Java(TM) Development Kit (JDK) 6, 並設定為預設 java.sudo apt-get install sun-java6-jdk
update-java-alternatives -s java-6-sun
ref: this.
[+/-] |
guake in ubuntu 9.04 |
guake , 一個 quake like 的 terminal, 只能說好用而已. 不過 9.04 apt soure 裡的版本(0.3.x), 設定 hotkey 有問題, 無法正常辨識 keyboard. 所以從 getdeb.net 下載安裝.wget http://old.getdeb.net/download/4288/0
sudo dpkg -i guake_0.4.0-1~getdeb1_i386.deb
[+/-] |
pps totem in ubuntu 9.04
poster:
MarlboroMoo on
20:15
/
Comments: (0)
|
在 ubuntu 9.04 裡收看 ppstream 的節目, 使用 pps totem, 一個對岸同胞寫的 totem plugin.
- 加入 ppa 的 source list.
sudo echo '### pps totem
deb http://ppa.launchpad.net/portis25/ppa/ubuntu karmic main
deb-src http://ppa.launchpad.net/portis25/ppa/ubuntu karmic main' >> /etc/apt/sources.list - 安裝.
sudo apt-get update
sudo apt-get install totem-pps - 啟動 totem 做以下設定: 選擇 "編輯(E) -> 外掛程式...", 勾選 "PPStream browser", 並按下 "設定(O)", 勾選 "Show Posters".
- 回到 totem 主畫面, 按下 F9, 右上方的下拉式選單選擇 "PPStream", 開始收看吧 ;D
[+/-] |
create cd/dvd iso in ubuntu 9.04 |
建立 iso 最簡單的方式單然是用 dd 啦, 不然用 cat 也可以! dd if=/dev/cdrom of=/tmp/whatever.iso
cat /dev/cdrom > /tmp/whatever.iso
不過今天看到有人說這些方法都不好, 因為沒有辦法即時驗證 or 修復檔案, 原文如下:
Many like to use 'dd' for creating CD/DVD iso images. This is bad. Very那就按照以下步驟使用 readom 吧:
bad. The reason this is, is 'dd' doesn't have any built-in error
checking. So, you don't know if you got all the bits or not. As such, it
is not the right tool for the job. Instead, 'reaom' (read optical media)
from the wodim package is what you should be using. It has built-in
error checking. Similarly, if you want to burn your newly creating ISO,
stay away from 'dd', and use:
wodim -v -eject /path/to/image.iso
- 取得 readom, 位於 wodim 套件裡.
sudo apt-get install wodim
- 確定 cd/dvd rom 的 device 沒有被 mount 起來.
umount /media/cdromX
- 建立 iso.
readom dev=/dev/cdrom f=/tmp/whatever.iso
ref: this, this & this.
[+/-] |
emesene in ubuntu 9.04 |
emesene 是在 ubuntu 裡可以取代 msn 的好 IM, 不過在 1.5 版之前有一個令人無法忍受的 bug, 在捲動聯絡人清單的時候很卡, 有時還會 hang 住 or 造成 cpu 的 loading, 不過 offical site 上面並沒有提供 9.04 的 deb 檔, 如果不想自己編譯 tarball, 就按照以下方法更新到 B.J. Stobiecki 維護的1.5 Weekly SVN build 吧.
- 新增 apt source list.
sudo echo '### emesene 1.5 from B.J. Stobiecki
deb http://ppa.launchpad.net/bjfs/ppa/ubuntu jaunty main
deb-src http://ppa.launchpad.net/bjfs/ppa/ubuntu jaunty main' >> /etc/apt/sources.list - 安裝.
sudo apt-get update
sudo apt-get install emesene - finish.
ref: this.