2012年5月20日 星期日

張忠謀的中天青年論壇感想

先前已經在Facebook簡單寫感想,但秉持開放心態,放一份在自己的部落格上,還可以內嵌當天的影片。當初看到Youtube上頭的跑馬燈廣告這場「中天青年論壇-與張忠謀對談」,所以就打開來看看了,不然先前只有看像是倉木麻衣或是Red Hot Chili Peppers這類演唱會轉播。

Youtube現場轉播的網址:
http://www.youtube.com/watch?v=arAitcfEl3I


2012年2月27日 星期一

網路訊息曝光/exposure information on the web

這年代,依賴網路為生的人,都會有社交網站的帳號,但為何不是每個有帳號的人,都能變成資訊傳播的節點,發揮媒體的功能?像是為自己公司網站帶來大量流量?一發言很多人回應,很多人轉發?以我先前擔任網站編輯,經營網路媒體的經驗告訴我,雖然媒介會隨著時代而變化,但都需要通路去散佈訊息,而不是帳號設立了,就會有人時時關心。這當中得花心力經營。

2011年5月7日 星期六

[Computer] 啟動Ubuntu後如何自動掛載其他分割區/How to auto mount another partitions when boot Ubuntu

開機時如何自動掛載Windows NTFS 分割區,並允許所有使用者能讀取/寫入

打開終端機輸入以下指令:

sudo mkdir /media/Win7Data
sudo cp /etc/fstab /etc/fstab.backup
sudo gedit /etc/fstab

在最後加上

/dev/sda1 /media/windows ntfs nls=utf8,umask=0222 0 0
按照 /etc/fstab 的設定自動重新掛載一次 (不用重開機)      

sudo mount -a

From YaYa-Ubuntu 站-楊奕農 
 
 
第二種方式:
藉由PySDM圖形化介面來操作
詳細有下面Step by step圖片教學
這邊不加累述 
How To Auto-mount Your NTFS Partition In Ubuntu 
http://maketecheasier.com/auto-mount-your-ntfs-partition-in-ubuntu/2009/04/14 

[Computer] 改Ubuntu開機選單/Editing Grub2 Bootloader

menu.lst file will not be present in newer versions of grub.So if u try to open it you will get a blank file.
proceed as follows.
1.open /boot/grub/grub.cfg as root user.
2.type sudo gedit /boot/grubgrub.cfg in terminal to open it in write mode.
3.Now you can see something called menuentry which is nothing but different booting options like ubuntu generic,ubuntu memtest,windows etc. which is repeated 5 to 6 times in the format
###some text
menu entry
//some text related to menu entry
###some text
(Ctrl+f and type menuentry to find it)
4.Find the para which has menuentry with windows7/xp/vista(depending on your windows version).generally it will be the last entry.
5.Cut that para i.e., from
###some text
menuentry windows 7
//some related text
###some text
and paste it just before the para of ubuntu generic menuentry i.e., just above its ###.
6.save it.

Note:Keep a copy of the original file in case u want to restore the default.but by this technique u can change the boot order as u like.


From Ubuntu Geek