顯示具有 virtualbox 標籤的文章。 顯示所有文章
顯示具有 virtualbox 標籤的文章。 顯示所有文章

2011年8月11日 星期四

安裝 VirtualBox 在 windows 7 x64

      VirtualBox是一個跨平台的虛擬化應用軟體這是什麼意思呢一方面,它可以安裝在您現有的英特爾或AMD的CPU電腦,無論是運行在Windows,MacLinux或Solaris作業系統。其次,的功能可以擴展您現有的電腦,以便可以運行多個操作系統(多個虛擬機)在同一時間因此可以運行 Windows和Linux Mac上運行 Windows Server2008在你的Linux服務器運行 Linux在您的Windows PC,等等所有現有的應用程序一起您可以安裝運行許多虛擬隨你喜歡 - 唯一的實際的限制是磁碟空間和記憶體

VirtualBox是看似簡單但也很強大。它可以到處跑,從小型嵌入式系統或桌上型的機器,一路數據中心的部署,甚至雲端環境。



你可以從這裡下載 http://www.virtualbox.org/wiki/Downloads

並按照下列步驟安裝 ..

Step1  下載  VirtualBox 4.1.2 for Windows hosts x86/amd64 並執行安裝


3


Step2  直接選取Next 下一步


Step3  建立桌面上跟選單內的捷徑 並按Next 下一步



Step4 點選Install 開始安裝



Step5 安裝完成點選Finish 就可以開始使用了


其它相關的資訊可以由 VirtualBox的使用手冊裡查尋

2010年3月9日 星期二

VirtualBox 2.2.4 for fedora code 10 x86_64

this paper say how to install virtualbox for fedora code 10 x86_64fast ~ we can go to this link download virtualbox
http://www.virtualbox.org/wiki/Linux_Downloads
then you will to run the machine,you will got a message that the VirtualBox Kernel had not been setup.

I ran:
Code:
/etc/init.d/vboxdrv setup
It failed, saying that kernel files were not found.
Code:
Stopping VirtualBox kernel module                          [  OK  ]
Recompiling VirtualBox kernel module                       [FAILED]
(Look at /var/log/vbox-install.log to find out what went wrong)
The logfile printed out the following:
Code:
which: no dkms in (/sbin:/usr/sbin:/bin:/usr/bin)
Makefile:127: *** Error: unable to find the sources of your current Linux kernel. Specify KERN_DIR=<directory> and run Make again.  Stop.
 
so you mast run some commands if you already have the packages installed.

Code:
# yum groupinstall "Development Tools"
# yum groupinstall "Development Libraries"
# yum install unifdef rpm-build
Now to make old config and modules because vboxdrv complains about it
Code:
$ cd ~/usr/src/kernels/2.6.27.25-170.2.72.fc10.x86_64/
$ make oldconfig
$ make prepare
$ make
vboxdrv failed during module compilation, so I decided to build the entire kernel just to make sure. Do not run 'make install' since we don't need it.
Code:
# export KERN_DIR=/usr/src/kernels/2.6.27.25-170.2.72.fc10.x86_64/
# /etc/init.d/vboxdrv setup
Stopping VirtualBox kernel module                          [  OK  ]
Recompiling VirtualBox kernel module                       [  OK  ]
Starting VirtualBox kernel module                          [  OK  ]