| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 | 30 | 31 |
最新的記事
- Linux 下使用...
- Debian -...
- 筆記 : 學習 LVM...
- 救援 Grub 必備指令
- Virtual...
- 記錄兩個好用的...
- firefox 3...
- 使用 vim...
- 使用 tar 指令做...
- linux...
- Debian -...
- 筆記 : 學習 LVM...
- 救援 Grub 必備指令
- Virtual...
- 記錄兩個好用的...
- firefox 3...
- 使用 vim...
- 使用 tar 指令做...
- linux...
記事分類
人氣指數
當日人次:
累積人次:
累積人次:
連結書籤
誰來我家
我推薦誰
目前無名單
搜尋欄位
我的活動曆
贊助商
其它資訊
本部落所刊登之內容,皆由作者個人所提供,不代表 yam天空部落 本身立場。
檢視方式: 列表 摘要
September 29, 2008
wesley1981 - Linux | 2008-09-29 21:52:38
在颱風來之前將手邊的 Webcam 插入 Eee box 的 usb port ,之後就匆忙的開車回中壢了。
因為想知道這款 Logitech, Inc. QuickCam IM Webcam 是否可正常在 Linux 下運作,
因此上網找了一些資料後再實作一翻,沒想到可以做監控了。
以下就是設定的筆記囉:
觀看全文...
因為想知道這款 Logitech, Inc. QuickCam IM Webcam 是否可正常在 Linux 下運作,
因此上網找了一些資料後再實作一翻,沒想到可以做監控了。
以下就是設定的筆記囉:
觀看全文...
September 26, 2008
wesley1981 - Linux | 2008-09-26 00:58:41
話說回來前幾天才剛解決了 EeeBox 安裝 Debian 的問題,
原來裝 Debian 4.0r0 網卡驅動部份怪怪的,所以就裝了新
版本 Debian 4.0r4 後就沒問題了,那就開始來練習架站吧!
以下就從 DNS Server 開始來玩起,記錄安裝的過程如下:
觀看全文...
原來裝 Debian 4.0r0 網卡驅動部份怪怪的,所以就裝了新
版本 Debian 4.0r4 後就沒問題了,那就開始來練習架站吧!
以下就從 DNS Server 開始來玩起,記錄安裝的過程如下:
觀看全文...
September 18, 2008
wesley1981 - Linux | 2008-09-18 01:01:01
這幾天因為幫主管裝了一台機器而碰到需要將兩顆750G的硬碟做成1.5T的單一partition,
在安裝系統過程中發現,怎麼裝都裝不好,在重開機後都會有問題。最後就先只裝系統
於250G的Hard Disk,另外的兩顆750G等裝完再用指令去建立。
因為建立LVM的過程中都是參考鳥哥Linux私房菜的LVM篇,但成功建立後卻怕自己只是
邊看邊做才會,所以隔天就拿一顆250G的外接式隨身硬碟來練習 LVM 。
以下記錄著練習時的所有動作:
觀看全文...
在安裝系統過程中發現,怎麼裝都裝不好,在重開機後都會有問題。最後就先只裝系統
於250G的Hard Disk,另外的兩顆750G等裝完再用指令去建立。
因為建立LVM的過程中都是參考鳥哥Linux私房菜的LVM篇,但成功建立後卻怕自己只是
邊看邊做才會,所以隔天就拿一顆250G的外接式隨身硬碟來練習 LVM 。
以下記錄著練習時的所有動作:
觀看全文...
September 10, 2008
wesley1981 - Linux | 2008-09-10 15:46:03
This will restore grub if you already had grub installed but lost it to a windows
install or some other occurence that erased/changed your MBR so that grub
no longer appears at start up or it returns an error.
Solve Step by Step:
‧sudo grub
‧grub> find /boot/grub/stage1 <---- 此行文末有重要說明
(hd0,7)
‧grub> root (hd0,7)
‧grub> setup (hd0)
‧grub> quit
That is it. Grub will be installed to the mbr.
When you reboot, you will have the grub menu at startup.
以上資訊從google取得,出處我已找不到link,若有冒犯請留言告知。
但記錄此篇內容主要是要提醒以下內容:
‧若本機linux是將/boot 獨立分割出來要用以下方式:
grub> find /grub/stage1
‧若本機linux不是將/boot 獨立分割出來(在/ 根目錄)要用以下方式:
grub> find /boot/grub/stage1
若沒注意到上面的差別可是會出現 Error 15: File not found. 喔,切記切記!
install or some other occurence that erased/changed your MBR so that grub
no longer appears at start up or it returns an error.
Solve Step by Step:
‧sudo grub
‧grub> find /boot/grub/stage1 <---- 此行文末有重要說明
(hd0,7)
‧grub> root (hd0,7)
‧grub> setup (hd0)
‧grub> quit
That is it. Grub will be installed to the mbr.
When you reboot, you will have the grub menu at startup.
以上資訊從google取得,出處我已找不到link,若有冒犯請留言告知。
但記錄此篇內容主要是要提醒以下內容:
‧若本機linux是將/boot 獨立分割出來要用以下方式:
grub> find /grub/stage1
‧若本機linux不是將/boot 獨立分割出來(在/ 根目錄)要用以下方式:
grub> find /boot/grub/stage1
若沒注意到上面的差別可是會出現 Error 15: File not found. 喔,切記切記!
August 31, 2008
wesley1981 - Linux | 2008-08-31 12:07:54
打從裝好 Debian 後有嘗試著將 vmware & virtualbox 裝起來玩過,
但一直都沒有裝過QEMU。今天就來玩看看囉,記錄一下安裝過程:
1. :: 安裝 qemu ::
‧apt-get install qemu
2. :: 使用安裝 debian 的 netinst 的 iso 檔來讓 qemu 開機 ::
‧qemu -cdrom debian-40r1-i386-netinst.iso (此時可看到安裝的畫面囉)
‧此時沒辦法安裝 debian,因為我們還沒建立一個空間給debian使用
先感受一下未使用kqemu時的速度後就Ctrl + c 跳開此執行
3. :: 為了加速下載qemu ,可使用 kqemu來達到這樣的需求 ::
( 此次使用 kqemu-source 來安裝,安裝前確定 source.list 有加入 deb-src 站台)
‧mkdir -p /root/kqemu
‧apt-get source kqemu-source
‧cd kqemu-1.3.0~pre11 (此目錄因當時下載的版本而有所不同)
‧./configure
‧make && make install
‧modprobe kqemu
‧ls /dev/kqemu ( 因為將kqemu.ko載入了,在/dev 下應要產生一個kqemu )
4. :: 使用加速後的 qemu ::
‧qemu -kernel-kqemu -cdrom debian-40r1-i386-netinst.iso (此時會覺得比之前沒有kqemu快的多)
5. :: 建立一個1024M的映像檔來裝 debian 吧 ::
‧qemu-img create -f qcow debian.img 2048M
‧qemu -kernel-kqemu -hda debian.img -cdrom debian-40r1-i386-netinst.iso \
-boot d -m 128 -soundhw all localtime -net nic -net tap
6. :: 開啟以建立的 debian.img
‧qemu-kernel-kqemu -hda debian.img -m 512 -net nic -net tap
開始玩 debain 吧 - Just For Fun.
Reference:
http://zh.wikipedia.org/wiki/QEMU
http://jay-notebook.blogspot.com/2008/01/qemu2.html
http://wiki.debian.org.tw/index.php/QEMU
但一直都沒有裝過QEMU。今天就來玩看看囉,記錄一下安裝過程:
1. :: 安裝 qemu ::
‧apt-get install qemu
2. :: 使用安裝 debian 的 netinst 的 iso 檔來讓 qemu 開機 ::
‧qemu -cdrom debian-40r1-i386-netinst.iso (此時可看到安裝的畫面囉)
‧此時沒辦法安裝 debian,因為我們還沒建立一個空間給debian使用
先感受一下未使用kqemu時的速度後就Ctrl + c 跳開此執行
3. :: 為了加速下載qemu ,可使用 kqemu來達到這樣的需求 ::
( 此次使用 kqemu-source 來安裝,安裝前確定 source.list 有加入 deb-src 站台)
‧mkdir -p /root/kqemu
‧apt-get source kqemu-source
‧cd kqemu-1.3.0~pre11 (此目錄因當時下載的版本而有所不同)
‧./configure
‧make && make install
‧modprobe kqemu
‧ls /dev/kqemu ( 因為將kqemu.ko載入了,在/dev 下應要產生一個kqemu )
4. :: 使用加速後的 qemu ::
‧qemu -kernel-kqemu -cdrom debian-40r1-i386-netinst.iso (此時會覺得比之前沒有kqemu快的多)
5. :: 建立一個1024M的映像檔來裝 debian 吧 ::
‧qemu-img create -f qcow debian.img 2048M
‧qemu -kernel-kqemu -hda debian.img -cdrom debian-40r1-i386-netinst.iso \
-boot d -m 128 -soundhw all localtime -net nic -net tap
6. :: 開啟以建立的 debian.img
‧qemu-kernel-kqemu -hda debian.img -m 512 -net nic -net tap
開始玩 debain 吧 - Just For Fun.
Reference:
http://zh.wikipedia.org/wiki/QEMU
http://jay-notebook.blogspot.com/2008/01/qemu2.html
http://wiki.debian.org.tw/index.php/QEMU
August 18, 2008
wesley1981 - Linux | 2008-08-18 15:41:49
:: terminator - 可以將多個VTE切隔成水平 or 垂直的格式 ::
‧apt-get install terminator
‧terminator
:: ttyrec - 類似於 script 指令,但不同的是可以將自己下的指令錄下來後再撥放 ::
‧apt-get install ttyrec
‧ttyrec my_record (開始記錄並寫到my_record)
‧exit (離開 ttyrec)
‧ttyplay my_record (撥放剛剛所記錄的動作)
August 16, 2008
wesley1981 - Linux | 2008-08-16 11:40:33
之前安裝 vmwre server 2.0 rc 1 後發現,我無法安裝 vmware console plugin
來看 vmware virtual machine,以下是在 vmware 官網看到的解決方式 :
When you attempt to install or use the VMware Remote Console add-on with Firefox 3.0.1, the error VMware Remote Console Plug-in could not be installed because it is not compatible with Firefox 3.0.1 is displayed.
Workaround:
On the host system:
1. Back up the original zip file, for example:
cp /usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi
/usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi.bak
To use Firefox 3.0.1 on Windows clients, follow the same steps for vmware-vmrc-win32-x86.xpi.
2. Unzip the appropriate .xpi package to a temporary directory, for example:
mkdir /tmp/xpi-out && cd /tmp/xpi-out
unzip /usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi
On Windows hosts, first rename the .xpi file with the .zip extension so you can unzip it.
3. Edit the install.rdf file in the unzipped output, and change the compatibility field from
3.0.0. to 3.0. (or 3.0.1.*). <-------------- 最重要的地方
4. Zip the edited file:
zip -r /usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi *
On Windows hosts, after zipping the .zip file, rename it with the .xpi extension.
5. Re-install the VMware Remote Console add-on.
以上過程中若還是無法安裝,請重新啟動 firefox 後再試一次。
Reference:
Vmware 官網 (來源 link 找不到了)
觀看全文...
來看 vmware virtual machine,以下是在 vmware 官網看到的解決方式 :
When you attempt to install or use the VMware Remote Console add-on with Firefox 3.0.1, the error VMware Remote Console Plug-in could not be installed because it is not compatible with Firefox 3.0.1 is displayed.
Workaround:
On the host system:
1. Back up the original zip file, for example:
cp /usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi
/usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi.bak
To use Firefox 3.0.1 on Windows clients, follow the same steps for vmware-vmrc-win32-x86.xpi.
2. Unzip the appropriate .xpi package to a temporary directory, for example:
mkdir /tmp/xpi-out && cd /tmp/xpi-out
unzip /usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi
On Windows hosts, first rename the .xpi file with the .zip extension so you can unzip it.
3. Edit the install.rdf file in the unzipped output, and change the compatibility field from
3.0.0. to 3.0. (or 3.0.1.*). <-------------- 最重要的地方
4. Zip the edited file:
zip -r /usr/lib/vmware/webAccess/tomcat/apache-tomcat-xxxx/webapps/ui/plugin/vmware-vmrc-linux-x86.xpi *
On Windows hosts, after zipping the .zip file, rename it with the .xpi extension.
5. Re-install the VMware Remote Console add-on.
以上過程中若還是無法安裝,請重新啟動 firefox 後再試一次。
Reference:
Vmware 官網 (來源 link 找不到了)
觀看全文...
yam天空部落 建置維護 © 1999~2008 webs-tv inc. All Rights Reserved.

:: 資訊 ::(5)




