2017年7月31日 星期一

hyperv and virtualbox


Reference:  https://derekgusoff.wordpress.com/2012/09/05/run-hyper-v-and-virtualbox-on-the-same-machine/



To disable Hyper-V in order to use VirtualBox, open a command prompt as administrator and run the command:
bcdedit /set hypervisorlaunchtype off
You’ll need to reboot, but then you’ll be all set to run VirtualBox. To turn Hyper-V back on, run:
bcdedit /set hypervisorlaunchtype auto
and then reboot.

2017年7月24日 星期一

MS SQL 版本

http://mypaper.pchome.com.tw/nut0322/post/1320672366


SQL產品有5種版本
Enterprise Edition(32位元和64位元)
完整版, 有全部的功能, 可容納大量的資料, 設計大型DB環境時應選用
Standard Edition(32位元和64位元)
可以容納大量的資料, 包括電子商務, 企業倉儲和企業營運方案需要的功能
適合中小型組織採用
如果組織使用的資料庫會包含大量資料, 但不需要Enterprise Edition的全部功能,
則可以採用Standard Edition
Workgroup Edition(只有32位元)
適合小型組織採用
如果只需處理小型伺服器上的少量資料, 可以採用此版本
Developer Edition(32位元和64位元)
開發人員使用的
包含Enterprise Edition 所有功能, 但不能當作正式伺服器
Express Edition(只有32位元)
免費的
只適合處理非常少量的資料
如果只需要處理極少量資料, 可以採用此版本

2017年7月13日 星期四

Git user guide

http://rogerdudler.github.io/git-guide/

2017年7月12日 星期三

Intall phantomjs in centos 7



introuduction :

phantomjs  look in https://github.com/ariya/phantomjs


code:


 yum install fontconfig freetype freetype-devel fontconfig-devel libstd
 mkdir -p /opt/phantomjs
 cd /opt/phantomjs/
 wget  https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 .
 tar -xjvf phantomjs-2.1.1-linux-x86_64.tar.bz2
 ln -s /opt/phantomjs/phantomjs-2.1.1-linux-x86_64/bin/phantomjs  /usr/bin/phantomjs
 phantomjs /opt/phantomjs/phantomjs-2.1.1-linux-x86_64/example/hello.js



reference 
https://www.bonusbits.com/wiki/HowTo:Install_PhantomJS_on_CentOS