requires SSL
pop3 server: pop.gmail.com, port 995
smtp server: smtp.gmail.com, port 465
check "My server requires authentication"
[ref] http://mail.google.com/support/bin/answer.py?answer=76147
2008年12月28日 星期日
2008年12月25日 星期四
為什麼鍋子會作成圓的?
[Q] 為什麼鍋子會作成圓柱形 半橢球形的?
[Guestimate]
0. 體積與表面積 /面積與周長-> 國中數學 相同長度的線段 圍成圓形與長方形 正方形 三角形的面積哪個最大?
定周長 面積大小次序為 圓形> 正方形> 三角形, 圓形> 正方形> 長方形
1. 施工方便?
2. 麵團 食物料理?
[Guestimate]
0. 體積與表面積 /面積與周長-> 國中數學 相同長度的線段 圍成圓形與長方形 正方形 三角形的面積哪個最大?
定周長 面積大小次序為 圓形> 正方形> 三角形, 圓形> 正方形> 長方形
1. 施工方便?
2. 麵團 食物料理?
2008年12月21日 星期日
為何外觀尺寸小的洗衣機能和尺寸較大的洗衣機有相同的洗衣容量?
[Q] 為何外觀尺寸小的洗衣機能和尺寸較大的洗衣機有相同的洗衣容量?
[Guestimate]
洗衣容量相同 > 洗衣內槽容量相同
洗衣內槽容量相同 & 外觀體積小 >
脫水槽與其他零件如隔板 擋板 電路 馬達 水管 避震系統所佔的體積必須縮小>
有些部分可能根本就被切掉了...
[Guestimate]
洗衣容量相同 > 洗衣內槽容量相同
洗衣內槽容量相同 & 外觀體積小 >
脫水槽與其他零件如隔板 擋板 電路 馬達 水管 避震系統所佔的體積必須縮小>
有些部分可能根本就被切掉了...
2008年12月18日 星期四
Dual boot Ubuntu and Vista on two Hard disks
[Q] 如何dual boot Ubuntu and Vista?
Ubuntu 在HD1, Vista 在HD2
[try]
0. (Single boot) enter BIOS each time at boot to change the default first boot HD
1. http://www.linuxquestions.org/questions/linux-general-1/grub-chainloader-boots-from-primary-but-not-from-extended-partition-686628/
"...
I wanted to add another small OS to my multiboot system and, as I hadn't any more available primary partitions, I took out ... an extended partition into which I created two logical partitions...
Code:
title Haiku (400 MB image)
rootnoverify (hd1,4)
makeactive
chainloader +1
But this wouldn't boot and gave this error message:
Quote:
Error 12: Invalid device requested
...
When you say "chainloading" it means that a boot loader is installed on the target partition. The chainloader function transfers control from the main boot code (MBR) to the partition boot code.
..."
2. 參考 https://answers.launchpad.net/ubuntu/+source/grub/+question/21283
xxx 在終端機下命令 sudo update-grub xxx(沒用)
在終端機下命令 sudo fdisk -l 確認vista/linux 所在的HD與Partition
備分 /boot/grub/menu.lst
修改 sudo gedit /boot/grub/menu.lst
2.1. timeout 10
2.2. 不要 hidemenu
#hidemenu
2.3. 尋找
### END DEBIAN AUTOMAGIC KERNELS LIST
# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root
# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/hda1
title Windows Vista
root (hd1,0)
savedefault
makeactive
chainloader +1
2.4. 存檔,重新開機
2.5. 如果Vista 不在hd1的第一個Partition(hd1,0)???
3. http://ubuntuforums.org/showthread.php?t=664401
" ...
I have swapped the boot order in the BIOS so the system boots the second physical disk, where I have installed GRUB into the MBR and it happily boots Gutsy installed on the second physical disk.
I want to chainload the MBR of the first physical disk but I can't work our how to do it - All I can manage with chainloading is to load from the partitions.
If you want to use grub to boot windows on a second disk (i.e. second in the Bios boot order), you need to add map commands to the menu.lst entry:
http://www.gnu.org/software/grub/man...OS_002fWindows
http://users.bigpond.net.au/hermanzo...irst_hard_disk
...
title WIndows XP
rootnoverify (hd1)
map (hd1) (hd0)
chainloader +1
"
Ubuntu 在HD1, Vista 在HD2
[try]
0. (Single boot) enter BIOS each time at boot to change the default first boot HD
1. http://www.linuxquestions.org/questions/linux-general-1/grub-chainloader-boots-from-primary-but-not-from-extended-partition-686628/
"...
I wanted to add another small OS to my multiboot system and, as I hadn't any more available primary partitions, I took out ... an extended partition into which I created two logical partitions...
Code:
title Haiku (400 MB image)
rootnoverify (hd1,4)
makeactive
chainloader +1
But this wouldn't boot and gave this error message:
Quote:
Error 12: Invalid device requested
...
When you say "chainloading" it means that a boot loader is installed on the target partition. The chainloader function transfers control from the main boot code (MBR) to the partition boot code.
..."
2. 參考 https://answers.launchpad.net/ubuntu/+source/grub/+question/21283
xxx 在終端機下命令 sudo update-grub xxx(沒用)
在終端機下命令 sudo fdisk -l 確認vista/linux 所在的HD與Partition
備分 /boot/grub/menu.lst
修改 sudo gedit /boot/grub/menu.lst
2.1. timeout 10
2.2. 不要 hidemenu
#hidemenu
2.3. 尋找
### END DEBIAN AUTOMAGIC KERNELS LIST
# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root
# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/hda1
title Windows Vista
root (hd1,0)
savedefault
makeactive
chainloader +1
2.4. 存檔,重新開機
2.5. 如果Vista 不在hd1的第一個Partition(hd1,0)???
3. http://ubuntuforums.org/showthread.php?t=664401
" ...
I have swapped the boot order in the BIOS so the system boots the second physical disk, where I have installed GRUB into the MBR and it happily boots Gutsy installed on the second physical disk.
I want to chainload the MBR of the first physical disk but I can't work our how to do it - All I can manage with chainloading is to load from the partitions.
If you want to use grub to boot windows on a second disk (i.e. second in the Bios boot order), you need to add map commands to the menu.lst entry:
http://www.gnu.org/software/grub/man...OS_002fWindows
http://users.bigpond.net.au/hermanzo...irst_hard_disk
...
title WIndows XP
rootnoverify (hd1)
map (hd1) (hd0)
chainloader +1
"
2008年12月17日 星期三
Asus K8N, socket764, 技嘉AGP8x顯卡
AsusK8N, socket764, 技嘉AGP8x顯卡, 創見512M + 勤茂512M
再度莫名原因無法正常啟動 螢幕無輸出 鍵盤無反應 連嗶嗶聲都沒聽到
感覺BIOS似乎還有反應
按下 Power四秒後 鍵盤電源有切斷 但CPU風扇仍繼續轉
AGP顯卡 接觸不良? 拔插了兩次, 重新開機 還是沒反應
用創見換下勤茂 CMOS電池抬高再放下
重新開機 怪了 聽到好幾聲 嗶嗶聲
螢幕 鍵盤又都回來了
真的是DRAM的問題嗎?
還是CMOS?
還是AGP顯卡?
再度莫名原因無法正常啟動 螢幕無輸出 鍵盤無反應 連嗶嗶聲都沒聽到
感覺BIOS似乎還有反應
按下 Power四秒後 鍵盤電源有切斷 但CPU風扇仍繼續轉
AGP顯卡 接觸不良? 拔插了兩次, 重新開機 還是沒反應
用創見換下勤茂 CMOS電池抬高再放下
重新開機 怪了 聽到好幾聲 嗶嗶聲
螢幕 鍵盤又都回來了
真的是DRAM的問題嗎?
還是CMOS?
還是AGP顯卡?
2008年12月5日 星期五
為何雙槽洗衣機能和單槽有相同的洗衣容量?
[Q] 雙槽/2的體積通常比單槽小 為何能和單槽容量相同?
e.g.
東元 7公斤大容量微電腦單槽洗衣機 W0732MB 珍珠藍
‧洗衣/脫水容量7Kg
‧機體尺寸:高920*寬551*深546(mm)
ES-105T
產 品 名 稱: SAMPO 半自動雙槽洗衣機
產 品 規 格: 洗衣:10.5 KG
尺寸:寬870 * 高945 * 深500 (mm)
[A] 容量的限制主要在高速運轉的脫水機部分
洗衣容量可能有12kg, 但脫水只能到6~8kg?
e.g.
東元 7公斤大容量微電腦單槽洗衣機 W0732MB 珍珠藍
‧洗衣/脫水容量7Kg
‧機體尺寸:高920*寬551*深546(mm)
ES-105T
產 品 名 稱: SAMPO 半自動雙槽洗衣機
產 品 規 格: 洗衣:10.5 KG
尺寸:寬870 * 高945 * 深500 (mm)
[A] 容量的限制主要在高速運轉的脫水機部分
洗衣容量可能有12kg, 但脫水只能到6~8kg?
2008年12月1日 星期一
如何拆解洗衣機軸心?
[Q] 如何拆解洗衣機軸心?
[try1] 正典行題庫【第74題】GE奇異美製洗衣機,洗衣棒軸心磨損需美製特殊工具更換
http://tw.myblog.yahoo.com/mw8650/article?mid=1410&prev=1744&next=1159&l=f&fid=10
[try2] 一群內行人的天堂
http://photo.easy-digi.com/Blog/ReplyDiary.php?user=soly88&id=1570&CateID=474
[try1] 正典行題庫【第74題】GE奇異美製洗衣機,洗衣棒軸心磨損需美製特殊工具更換
http://tw.myblog.yahoo.com/mw8650/article?mid=1410&prev=1744&next=1159&l=f&fid=10
[try2] 一群內行人的天堂
http://photo.easy-digi.com/Blog/ReplyDiary.php?user=soly88&id=1570&CateID=474
訂閱:
文章 (Atom)