心情不能講出來 至少我還可以打出來
謝謝妳這些陪我的日子 有妳在真好 真想跟妳當一輩子的好朋友
在我最寂寞的時候陪我 雖然我知道妳只是碰巧在我身邊
謝謝妳常常陪我去運動,我很懶但是妳總是那麼有活力,害我都不好意思偷懶,嘴巴說是我陪妳去運動,其實是妳陪我運動
謝謝妳常常陪我去吃飯,廣達附近的東西都被我們吃的差不多了吧,也害妳胖了,不過妳還是很瘦啦
謝謝妳找我去溯溪,讓我有機會一路上都握著妳的手
謝謝妳陪我去逛夜市,新莊、士林、蘆洲、板橋各大夜市,雖然很常一逛就是三四個小時,但我不覺得累,卻想一直走下去
謝謝妳吃東西不挑,不管是路邊攤滷肉飯還是鹹酥雞,妳都吃的津津有味
謝謝妳陪我講電話,動不動就一個小時起跳,創下最高三個半小時通話量,我想前無古人後無來者了
謝謝妳在我生日送我的蛋糕,真的很窩心,那天晚上我真的很開心
謝謝妳陪我去吃蝦拼的時候穿得這麼漂亮,讓我同事們都覺得妳是刻意為我打扮的,讓我很有面子
謝謝妳送我的網霜,第一次有女生發覺我臉乾,送我保養品,ㄤㄢ不分的妳,總是讓我聽的霧煞煞
以上的每個線索,都想解釋成妳對我有好感,卻又是那麼的證據不足,這個案子到底什麼時候能破?還是懸案?
曖昧 - 是愛情最美的時候,但同時這也是最殘酷的,何其有幸的我同時經歷了
感謝這城市擁擠的交通,能夠讓我再多跟你相處幾分鐘
不敢開口是怕造成妳的困擾、怕背叛我們的友情、怕影響妳工作....其實是怕妳離開我
今天的我睡不著,只希望能見妳一面,緊緊的抱著妳
2011年3月30日 星期三
2011年3月24日 星期四
Upgrade Xen 3.0 on CentOS 5.4 x86_64 to Xen 3.4.2
http://www.syntaxtechnology.com/2010/01/upgrade-xen-3-0-on-centos-5-4-x86_64-to-xen-3-4-2/
2011年3月23日 星期三
install intel DeviceID:10D3 ethernet driver
when fc8 installed, intel ethernet driver not installed.
1. lspci | grep "Ethernet ",
06:00.0 Ethernet controller: Intel Corporation Unknown device 10d3
2. google "10D3 intel ethernet", found it's intel chip 82574L and google it, then download e1000e-1.3.10a.tar.gz
3. untar e1000e-1.3.10a.tar.gz, make install, the e1000e.ko will cp to /lib/modules/... and auto generate modules.dep(alias)
4. vim /etc/sysconfig/network-scripts/ifcfg-ethX
IPADDR=xxx
ONBOOT=yes
...
1. lspci | grep "Ethernet ",
06:00.0 Ethernet controller: Intel Corporation Unknown device 10d3
2. google "10D3 intel ethernet", found it's intel chip 82574L and google it, then download e1000e-1.3.10a.tar.gz
3. untar e1000e-1.3.10a.tar.gz, make install, the e1000e.ko will cp to /lib/modules/... and auto generate modules.dep(alias)
4. vim /etc/sysconfig/network-scripts/ifcfg-ethX
IPADDR=xxx
ONBOOT=yes
...
2011年3月10日 星期四
Setting up a PXE install for Linux (CentOS-5.4)
We need
A linux server with the following setup.
3. get vmlinuz and initrd according to distro(CentOS-5.4), from http://ftp.cse.yzu.edu.tw/pub/Linux/CentOS/5.4/os/x86_64/images/pxeboot/ , put to /tftpboot/linux-install/distros/centos-5.4/
4. vim /tftpboot/pxelinux.cfg/01-88-88-88-88-87-44, add lines
5. vim /etc/exports, add line
/work/exports/dvdrom *(ro,no_root_squash,no_all_squash)
/work/exports/dvdrom is the install source.
Server setup done. Boot client machine, setup ip, nfs, should be ok,
Surprise, we can use vnc to install, that's great.
ref
http://ftp.cse.yzu.edu.tw/pub/Linux/CentOS/5.4/os/x86_64/images/pxeboot/
http://www.pyrosoft.co.uk/blog/2008/04/03/setting-up-a-pxe-install-for-linux/
http://www.syntaxtechnology.com/2010/06/setting-up-a-pxe-boot-server-on-centos-5-5/
A linux server with the following setup.
- A DHCP server.
- A TFTP server
- vmlinuz and initrd.img from your distribution of choice
- The PXELINUX.0 boot loader and a suitable config file
- NFSD, and iso source(CentOS-5.4) to be exported.
3. get vmlinuz and initrd according to distro(CentOS-5.4), from http://ftp.cse.yzu.edu.tw/pub/Linux/CentOS/5.4/os/x86_64/images/pxeboot/ , put to /tftpboot/linux-install/distros/centos-5.4/
4. vim /tftpboot/pxelinux.cfg/01-88-88-88-88-87-44, add lines
kernel linux-install/distros/centos-5.4/vmlinuz
append initrd=linux-install/distros/centos-5.4/initrd.img console=ttyS1,115200n8(if client machine have no video card, and use serial port to output)
5. vim /etc/exports, add line
/work/exports/dvdrom *(ro,no_root_squash,no_all_squash)
/work/exports/dvdrom is the install source.
Server setup done. Boot client machine, setup ip, nfs, should be ok,
Surprise, we can use vnc to install, that's great.
ref
http://ftp.cse.yzu.edu.tw/pub/Linux/CentOS/5.4/os/x86_64/images/pxeboot/
http://www.pyrosoft.co.uk/blog/2008/04/03/setting-up-a-pxe-install-for-linux/
http://www.syntaxtechnology.com/2010/06/setting-up-a-pxe-boot-server-on-centos-5-5/
訂閱:
意見 (Atom)
kgdb
--0313-- ken 不好意思 请教一下 之前你有交过我 在没有coredump的情况下 可以用gdb直接载入ko.debug, 然后dis -l register_bcache, 我记得使用方式是不是这样, 不过我现在dis -l出现错误^^" [root@...
-
" Scheduling while atomic " means that a thread has called schedule() during an operation which is supposed to be atomic (ie u...
-
== param sync and buffer == man fio: sync=bool Use synchronous I/O for buffered writes. For the majority of I/...
-
modules dependencies ---> /lib/modules/2.6.31.5-127.fc12.x86_64/modules.dep For example, if /lib/modules/2.6.29/kernel/a.ko dep...