2010年1月31日 星期日

在 Debian GNU/Linux 5.0.3 (Lenny) 上面安裝 Drupal 6.15

首先要準備一個 Debian GNU/Linux 5.0.3 (Lenny) 的系統環境,這邊是選擇使用 debian-503-i386-netinst.iso 並透過網路安裝,
在安裝過程當中語系選擇英文並且在 Software selection 時只選擇安裝 Web server 以及 SQL database 來安裝,盡量維持系統精簡,

接下來應該只要再抓 59 個套件安裝,在 2M/256K ADSL 正常情況的網路環境下五分鐘以內就可以裝好了,

到這邊為止應該已經裝好所需要的 Apache 跟 PostgreSQL 了,重新啟動系統後再安裝 drupal6 跟 php5-pgsql 套件,
# apt-get install drupal6 php5-pgsql
在設定 drupal6 的畫面中記得要輸入密碼,不然系統會改使用 ident 機制,安裝完後需要重新啟動 Apache
# /etc/init.d/apache2 restart
就可以在 http://XXX.XXX.XXX.XXX/drupal6/install.php 看到 Drupal6 接下來的安裝程序

不過此時只有英文介面,如果需要安裝繁體中文介面就要執行接下來的動作,
# wget http://ftp.drupal.org/files/projects/zh-hant-6.x-1.5.tar.gz -O - | tar xz -C /usr/share/drupal6
然後重新載入網頁就可以看到繁體中文介面,

Drupal6 初始設定完成之後馬上就會發現到目前的 Drupal6 版本並不安全,

因為 Debian GNU/Linux 5.0.3 (Lenny) 上面的 Drupal 版本只有到 6.6 版,
所以現在要去升級到目前最新穩定版本 6.15
# wget http://ftp.drupal.org/files/projects/drupal-6.15.tar.gz -O - | tar xz -C /usr/share
# wget http://ftp.drupal.org/files/projects/zh-hant-6.x-1.5.tar.gz -O - | tar xz -C /usr/share/drupal-6.15
# cd /usr/share
# chown -R root.root drupal-6.15
# mv -v drupal6 drupal-6.6
# ln -s drupal-6.15 drupal6
# cd drupal-6.15
# rm -fr profiles sites
# ln -s /etc/drupal/6/profiles
# ln -s /etc/drupal/6/sites
然後在網頁瀏灠器裡面訪問 http://XXX.XXX.XXX.XXX/drupal6/update.php 來更新資料庫

更新完後回到 [狀態報告] 就可以看到

此時算是才把 Drupal 6.15 在 Debian GNU/Linux 5.0.3 (Lenny) 上面安裝好,
不過目前都只有框架沒有內容也沒有安裝任何模組也沒有客製化的 Theme

2010年1月28日 星期四

在 Ubuntu 9.04 上面使用 hg view

之前寫過一篇 在 Ubuntu 9.04 上面手動安裝 hgview
剛剛發現原來在 ~/.hgrc 裡面加上
[extensions]
hgk=
這樣就可以使用 hg view 了~
http://mercurial.selenic.com/wiki/HgkExtension 找到的資訊

2010年1月22日 星期五

在 Linux 系統上面手動安裝 Firefox 3.6

首先到 http://www.mozilla.com/ 下載 firefox-3.6.tar.bz2 回來
然後解壓縮到 /usr/local/lib/firefox-3.6 底下
$ mkdir -p /usr/local/lib
$ tar xf firefox-3.6.tar.bz2 -C /usr/local/lib
$ mv /usr/local/lib/firefox /usr/local/lib/firefox-3.6
然後建立一個啟動圖示
$ mkdir -p .local/share/applications/
$ cat > .local/share/applications/firefox-3.6.desktop <<ENDLINE
[Desktop Entry]
Version=3.6
Name=Firefox 3.6 網頁瀏灠器
Comment=瀏灠網頁
GenericName=網頁瀏灠器
Exec=/usr/local/lib/firefox-3.6/firefox %u
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=/usr/local/lib/firefox-3.6/chrome/icons/default/default48.png
Categories=Application;Network;
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/vnd.mozilla.xul+xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;
StartupWMClass=Firefox
StartupNotify=true                                                                                                                                                                                              
ENDLINE
這樣就可以了~ :D

2010年1月17日 星期日

Google Chrome Extension: Taiwan Radio Tuner

這個 Google Chrome Extension 算是 BetaRadio 開發過程中的一個副產品
下載的網址在 https://chrome.google.com/extensions/detail/hacebidkncpkfenhpapdbkcefalehepa
使用說明整理在 http://code.google.com/p/betaradio/wiki/GoogleChromeExtension
希望大家會喜歡使用~ ;)

2010年1月9日 星期六

在 Ubuntu 8.04.3 可以使用 Google Chrome 瀏灠器來聽網路廣播~ ;)

延續上一篇文章 在 Ubuntu 8.04.3 用 Firefox 瀏灠器就可以聽網路廣播了~ :D
如果是想要在 Ubuntu 8.04.3 上面使用 Google Chrome 來收聽網路廣播的話
就要另外安裝 mozilla-mplayer 這個套件才行
然後連到 http://fd.idv.tw/radio/player.html
或者是直接安裝使用 Google Chrome Extension
http://fd.idv.tw/radio/hichannel.crx
又或者是增加一個檔案 ~/.local/share/applications/hichannel.desktop
內容填上
[Desktop Entry]
Name=hiChannel 網路廣播
Exec=google-chrome --app=http://fd.idv.tw/radio/player.html
Icon=google-chrome
Type=Application
Categories=GTK;Application;AudioVideo;Audio;Player;
這樣就是一個(偽)不用開網頁瀏灠器也可以聽網路廣播的應用程式了~ :P

2010年1月8日 星期五

在 Ubuntu 8.04.3 用 Firefox 瀏灠器就可以聽網路廣播了~ :D

要在 Ubuntu 8.04.3 底下的 Firefox 3.0.17 聽網路廣播
只安裝好 gstreamer0.10-plugins-bad, gstreamer0.10-plugins-ugly, gstreamer0.10-ffmpeg 這幾個套件
然後連到 http://fd.idv.tw/radio/player.html 就可以聽了~

Mac OS X 10.4+ 上面要裝 Flip4Mac WMV Components for QuickTime
然後用 Safari 就可以聽了~

在 Windows 上面開 IE7/IE8/Safari/Opera/Firefox/Google Chrome 都可以聽~

另外寫了一個給 Google Chrome 用的 Extension
http://fd.idv.tw/radio/hichannel.crx

Have Fun~ ^o^

P.S. 誠徵 Icon 設計師幫小弟做出 Google Chrome Extension 要使用的 Icon 尺寸分別是 19x19/32x32/48x48/128x128 的 PNG