Monster Oasis
覺得累就是進步的開始!

2009/04/27

gentoo NFS

Filed under: System/Linux/Unix* — Tags: , — 10:21 pm

在 gentoo 要裝 NFS client 要裝

emerge -av net-fs/nfs-utils portmap

/etc/init.d/portmap start

EDIT: /etc/fstab 加一行
freenas.monster.tw:/mnt/data/public     /m1 nfs rw,addr=172.30.0.xx    0 0

有 showmount 可以看 NFS 有 export 那些 directory 出來
Related URL:
  1. Protected: emerge 不見的救法
  2. gentoo emerge command
  3. [gentoo] 排除舊的 lib 相容問題
  4. [monster] monster.tw 記錄 / memo / ubuntu / 裝 圖形介面 / GUI / gnome desktop / ip address / setting
  5. Protected: 兩個版本的 Linux ( CENTOS vs GENTOO ) 作 mysql + senna small compare
  6. gentoo linux ifconfig
  7. 查主機溫度
  8. 裝新的 www.monster.com.tw 過程記錄
  9. 在 gentoo 裝 oracle sqlplus package
  10. Protected: sqlrelay server install / setup / SOP / 設定 / 啟動

2009/04/26

6月是游泳月

Filed under: Exercise — Tags: , , — 8:56 pm

每兩週就有一個開放水域的游泳活動:

  1. 5/31 : 游龜山島 , http://www.masterswim.org.tw/modules/news/article.php?storyid=43
  2. 6/14 : 游外木山 , http://www.masterswim.org.tw/modules/news/article.php?storyid=51
  3. 6/28 : 游石門水庫 ,  http://www.masterswim.org.tw/modules/news/article.php?storyid=48

5d3886bd15b87b5f60754d39fc5c6497

Related URL:
  1. [記錄] 2010.0718 石門水庫長泳
  2. [記錄] 2010 外木山長泳
  3. [記錄] 游烏石港
  4. 2010年,外木山試水溫 – 24度
  5. Plan for 5/23 烏石港 swimming / 水溫 / 洋流方向
  6. 報名?
  7. 松山運動中心 map
  8. 完成台東超級鐵人三項 123K – Enjoy the racing! I’m finish 2009 Taitung 123K International Triathlon
  9. 123K 賽前
  10. 2009 臺東123公里國際鐵人三項 / 公告 / 地圖 / 準備項目 / T1 T2 轉換區 steps / misc

2009 台北101國際登高賽

Filed under: Exercise — Tags: — 8:38 pm

今年 101 登高終於抽中籤了, 可是 … 5/17 要去騎塔塔加 , 所以得放棄 101 了 , 有人要挑戰一下嗎?
http://www.taipei-101.com.tw/runup2009/

f6086d73649ac7cdbc07c151ec2dbc91

Related URL:
  1. 2010年 A級賽事 – 東京馬拉松 – IAAF ROAD RACE GOLD LABEL
  2. 2009基隆市外木山海上4000公尺長泳
  3. 2009 5/31 海上長泳 – 迎向龜山
  4. 海外馬拉松日期 / Popular Marathon in the world
  5. 2009 游 石門水庫 開始報名了
  6. 北橫獨騎 , 板橋 –> 三民 –> 羅浮 –> 巴陵 –> 明池 –> 員山 –> 宜蘭
  7. 完成國道馬拉松21K
  8. 2009 蘭陽海上長泳 – 迎向龜山
  9. Protected: 游泳訓練的方法
  10. Protected: 阿汎完成台東123K鐵人三項

海外馬拉松日期 / Popular Marathon in the world

Filed under: Exercise — Tags: , , — 7:12 pm

New York City Marathon
http://www.nycmarathon.org/

波士頓馬拉松 BOSTON MARATHON – 4月
http://www.bostonmarathon.org/

東京馬拉松 – Tokyo Marathon – 3月,要抽籤
http://www.tokyo42195.org/

JAL 檀香山馬拉松 – JAL Honolulu Marathon – 12月
http://www.honolulumarathon.jp/

河口湖日刊馬拉松 11月
http://nikkansports-marathon.com/

全球 Marathon Guide
http://www.marathonguide.com/

海外跑馬心得
http://www.taipeimarathon.org.tw/%E5%BF%83%E6%83%85%E6%95%85%E4%BA%8B/nymarathon.htm

 

PS: 若有人要組團海外跑馬, 可以告訴我嗎?

Related URL:
  1. RUNNER’S WORLD 首選全球知名的馬拉松 – The World’s Top 10 Marathons
  2. 2010 東京馬拉松照片 – day 3
  3. 挑戰自我 – 2010東京馬拉松系列整理首頁 / 照片 / 成績記錄
  4. 2010 東京馬拉松照片 – day 5
  5. 2010 東京馬拉松照片 – day 4
  6. 2010 東京馬拉松照片 – day 2
  7. 2010 東京馬拉松照片 – day 1
  8. 東京マラソン 2010.2.28 開催
  9. ★東京馬拉松計劃 – map / hotel / schedule
  10. 這些報全馬

Posting Source Code

Filed under: Uncategorized — 12:33 pm

8cdaf48a2f382d9d7d87a404318126cf

2009/04/23

SQL 的 union 的作法

Filed under: DATABASE,JOB — Tags: , , — 9:06 pm

The UNION query allows you to combine the result sets of 2 or more “select” queries. It removes duplicate rows between the various “select” statements.

select count(1) from (
      — 賣家
      select ctrl_rowid
      from bidleader.sold_record s
      where s.ctrl_date like ’200701%’
      group by ctrl_rowid
      union
      — 買家
      select p_ctrl_rowid  ctrl_rowid
      from bidleader.sold_record s
      where s.ctrl_date like ’200701%’
      group by p_ctrl_rowid
) t

Related URL:
  1. install oracle 11g steps
  2. 一些 memcache 的資料
  3. Protected: Oracle down time / problem records / 經典
  4. Database administrator
  5. 在 gentoo 裝 oracle sqlplus package
  6. Graphical Database Schema Metadata Browser – SchemaSpy
  7. wordpress 的 schema
  8. Oracle documentation library
  9. MySQL – Optimizing Database Structure
  10. Protected: 規格表 schema

2009/04/22

突然就不能用 Live writer po 文到 wordpress 去了

Filed under: Uncategorized — 10:44 pm

就像這樣 …

15480f7b6ab3a08248bad4e79bac37d8

每年的4月22日是 世界地球日

Filed under: PHOTO — Tags: — 2:28 pm

http://zh.wikipedia.org/wiki/%E4%B8%96%E7%95%8C%E5%9C%B0%E7%90%83%E6%97%A5

P010 P008 P011

2009/04/21

Sun 買 MySQL , Oracle 買 Sun

Filed under: Software — Tags: , , , — 10:48 pm

相關新聞 :  http://news.cnet.com/8301-11424_3-10223448-90.html

Related URL:
  1. install oracle 11g steps
  2. 一些 memcache 的資料
  3. Protected: Oracle down time / problem records / 經典
  4. Database administrator
  5. 在 gentoo 裝 oracle sqlplus package
  6. Graphical Database Schema Metadata Browser – SchemaSpy
  7. wordpress 的 schema
  8. Oracle documentation library
  9. MySQL – Optimizing Database Structure
  10. Protected: 規格表 schema

2009/04/16

各種 file system 的大比較表

Filed under: System/Linux/Unix* — Tags: , , , , , , — 3:07 pm

不過想想, 因為可用的 OS 實在是不多 , Linux , Solaris , FreeBSD , 刪一刪似乎適合的 file system 答案也就出現了

http://en.wikipedia.org/wiki/Comparison_of_file_systems

另外有大大作了 file system 實戰的 lab , 可以參考看看:

http://tetralet.luna.com.tw/index.php?op=ViewArticle&articleId=214&blogId=1

下頁»

www.monster.com.tw , © Copyright 2008