本来感觉ORACLE VM 很简单,没想到还是有点技术含量,
ORACLE VM 的性能还是很快,比VMWARE 的跑起来快了很多
现在把安装过程中的问题总结如下
安装ORACLE VM SERVER
- 这个安装没有什么特殊的,就象安装LINUX差不多,根据提示一路走下去就够了
- 特别注意一点,就是把/给大点,否则,在以后安装VM MANAGER 的时候会出现/空间不够的错误
- 还有一点,就是把swap 给足够大,否则,在安装VM MANAGER 的时候会出现SWAP太小的错误
ORACLE VM 安装WINDOWS2003 SERVER
- 根据ORACLE NOTE:750023.1
- 但出现Fails "virt-install: error: no such option: --hvm" 错误,解决方法参考NOTES:467579.1
- 特别注意一点NOTES:467579.1 中的CPU的类型问题,我用的是HP 的PC SERVER ,需要修改BIOS 的相关VM 的设置
- virt-install --hvm --name=WindowsServ03sp1 --ram=500 --bridge=xenbr0 --vif-type=ioemu --file /OVS/running_pool/WindowsServ03sp1/System.img --file-size=6 --vnc --vnclisten=0.0.0.0 --cdrom=/OVS/iso_pool/new/en_windows_server_2003_with_sp1_enterprise.iso

Starting install...
libvir: Xen Daemon error : GET operation failed:
Unable to connect to graphical console; DISPLAY is not set. Please connect to localhost:5902
Domain installation still in progress. You can reconnect
to the console to complete the installation process.
- 在WINDOWS 上用VNCVIEW 打开
$ vncviewer linux5.us.oracle.com:5902
这个说明不请,第一个VM 不需要加PORT 的
- TIP: Click help for a detailed explanation of this page.
Bookmark Go to End
Subject: Installing Windows Guests on Oracle VM
Doc ID: 750023.1 Type: HOWTO
Modified Date : 16-NOV-2008 Status: PUBLISHED
In this Document
Goal
Solution
References

--------------------------------------------------------------------------------
@ (AuthWiz 2.5.5)
@ Click here to edit in wizard.

Applies to:
Oracle VM - Version: 2.1.2 to 2.1.2
Information in this document applies to any platform.
Goal
To Install Windows Guests on Oracle VM.
Solution
1. Create a windows directory under /OVS/running_pool:
[root@linux5 running_pool]# mkdir WindowsServ03sp1
[root@linux5 running_pool]#
2. Using virt-install start the Windows install:
[root@linux5 running_pool]# virt-install --hvm --name=WindowsServ03sp1 --ram=500 --bridge=xenbr0 --vif-type=ioemu --file /OVS/running_pool/WindowsServ03sp1/System.img --file-size=6 --vnc --vnclisten=0.0.0.0 --cdrom=/OVS/iso_pool/new/en_windows_server_2003_with_sp1_enterprise.iso

Starting install...
libvir: Xen Daemon error : GET operation failed:
Unable to connect to graphical console; DISPLAY is not set. Please connect to localhost:5902
Domain installation still in progress. You can reconnect
to the console to complete the installation process.
[root@linux5 running_pool]#
3. Use vncviewer to continue install:
$ vncviewer linux5.us.oracle.com:5902

Then after pressing then to accept License.
You can press to continue install or partition disk as need be.

Chose Filesystem press to continue:

After this is complete the install will stop.
During the installation of Microsoft Windows? XP and Microsoft Windows? 2003 as hardware virtualized guests, the domain requires a restart and attempts to find the installation CDROM.
Oracle VM Server does not find the CDROM.
To workaround this problem:
a. Move the p_w_picpath configuration file to the windows directory (as we will edit this to import into VM Manager):
[root@test WindowsServ03sp1]# ls -l
total 599076
-rwxr-xr-x 1 root root 6442450944 Nov 14 16:16 System.img
[root@test WindowsServ03sp1]# cp /etc/xen/WindowsServ03sp1 `pwd`/vm.cfg
[root@test WindowsServ03sp1]# ls -l
total 599080
-rwxr-xr-x 1 root root 6442450944 Nov 14 16:16 System.img
-rw-r--r-- 1 root root 526 Nov 14 15:54 vm.cfg

[root@test WindowsServ03sp1]# more vm.cfg
# Automatically generated xen config file
name = "WindowsServ03sp1"
builder = "hvm"
memory = "500"
#disk = [ 'file:/OVS/running_pool/WindowsServ03sp1/System.img,hda,w', ]
#
disk = [ 'file:/OVS/running_pool/WindowsServ03sp1/System.img,hda,w',
'file:/OVS/iso_pool/new/en_windows_server_2003_with_sp1_enterprise.iso,hdc:cdrom,r',
]
#
vif = [ 'type=ioemu, mac=00:16:3e:31:75:b2, bridge=xenbr0', ]
uuid = "260d5aa9-1608-6520-432c-3bc943b12547"
device_model = "/usr/lib/xen/bin/qemu-dm"
kernel = "/usr/lib/xen/boot/hvmloader"
vnc=1
vncunused=1
vnclisten='0.0.0.0'
timer_mode=0
apic=1
acpi=1
pae=1
#
vcpus=1
serial = "pty" # enable serial console
on_reboot = 'restart'
on_crash = 'restart'
[root@jsobecki-linux5 WindowsServ03sp1]#
Restart the hardware virtualized guest with the xm create command. The installation continues.
[root@test WindowsServ03sp1]# xm create vm.cfg
Using config file "./vm.cfg".
Started domain WindowsServ03sp1
[root@test WindowsServ03sp1]#
- 通过以上修改WINDOWS安装将继续
- 如果原来是VMWARE 做成的IMMAGE ,想在ORACLE VM 上继续使用,参考467765.1
附加信息:
某些新电脑如果设置不好,可能会导致安装失败,不过这个问题其实是属于Oracle VM的Linux有点老的不能很好支持新硬件的问题。比如 我所遇到过的 联想 ThinkPad E8400/SATA硬盘就遇到安装失败的问题,后来解决办法如下:
1)在BIOS里面,需要把ACHI(SATA中)Disable;需要把CPU VT属性打开
2)安装需要在Boot:提示下输入 Linux acpi=off noapic
才能正确安装
3)启动的时候,要进入grub (enter)进行注入参数!

转载于:https://blog.51cto.com/tonyzeng/273393

Oracle VM + Windows2003 Server 配置相关推荐

  1. 通过Oracle VM Manager管理配置虚拟机

    安装篇 通过Oracle vm manager配置vm,加载镜像,如下图,只能加载在资源列表中的server上的镜像文件. 因而需要把Oracle Linux镜像放到服务器aie-x4-2c上 服务器 ...

  2. Oracle VM VirtualBox上配置新的Ubuntu20.04

    目录 一.VM VirtualBox的安装 二.下载ubuntu 20.04 三.解决 window10 没有64位系统选项的解决方法 四.创建虚拟机 下面我列举几个注意点,可供参考: 1)问题:没有 ...

  3. Oracle VM VirtualBox虚拟机配置(配置Windows7为例)

    为了学习DX11故配置了一套虚拟机的环境,将其中细则记录一番. Win7(32位)+VS2013的配置,主要原因是和学校机房一样比较方便问老师,试过VS2010的古早界面不太舒服,当然安装2010~2 ...

  4. Oracle VM VirtualBox安装配置Mac OS

    一.在 Windows 10 上创建 macOS 虚拟机需要哪些文件? 在深入研究"操作方法"之前,您需要下载并安装基本工具.本教程详细介绍了如何使用Oracle VirtualB ...

  5. oracle vm virtualBox中配置独立的ip给ubuntu

    step1# 打开vm以后设置中找到网络 ,将连接方式修改为桥接网卡即可. step2# ubunut命令行中执行 ifconfig -a 查看本机局域网ip

  6. oracle vm 产品介绍,Oracle VM Server for SPARC 产品概述

    Oracle VM Server for SPARC 产品概述 Oracle VM Server for SPARC 为 Oracle 的 SPARC T 系列服务器提供高效的企业级虚拟化功能.使用 ...

  7. oracle ldom ipmp,在 Oracle VM Server for SPARC 虚拟网络中使用基于链路的 IPMP

    在 Oracle VM Server for SPARC 虚拟网络中使用基于链路的 IPMP 虚拟网络设备和虚拟交换机设备支持网络堆栈的链路状态更新.默认情况下,虚拟网络设备会报告其虚拟链路(到虚拟交 ...

  8. oracle vm3.4安装,受支持的平台 - Oracle® VM Server for SPARC 3.4 安装指南

    受支持的平台 如果硬件平台支持多个版本的 Oracle VM Server for SPARC 软件,则错误修复仅应用于最新版本的软件.要获得标准支持,必须使用最新的 Oracle VM Server ...

  9. [推荐]Windows2003 Server 设置大全(一)

    作者: liulanghai    时间: 2005-1-4 10:25     标题: [推荐]Windows2003 Server 设置大全 一.windows server 2003 3790版 ...

最新文章

  1. 【学习笔记】新基建/新动能——部分学习笔记
  2. how to collect staff from lovespace
  3. FinTech浪潮已到,五大金融场景将迎变革
  4. Gigaset ME/pure/pro体验:就是这个德味
  5. 微博多尺度序列推荐算法实践
  6. 敏捷外包工程系列之二:人员结构(敏捷外包工程,敏捷开发,产品负责人,客户价值)...
  7. 【Dism++ 最新版 官网 下载地址,(如旧Dism++地址失效),绿色清洁管理电脑工具】
  8. 基于Springboot实现商品进销存管理系统
  9. latex参考文献编译不成功
  10. base64换行问题处理
  11. directshow视频旋转90度
  12. 20190904携程机试
  13. 获取数据库表格的字段名、类型、长度、注释等属性
  14. Java定时任务技术分析
  15. 【观点】“马云:金融是要为外行人服务,这个观点其实并不新鲜
  16. C语言 神奇的式子:n=n(n-1) 涵义,作用及其应用场景
  17. Android调用JNI的实现方法
  18. IRIS(Incorporated Research Institutions for Seismology)常用功能介绍
  19. 安装Jetbrains Mono字体,换换口味
  20. XBOX360新手扫盲

热门文章

  1. PHP5与MySQL数据库操作
  2. PostgreSQL代码分析,查询优化部分,canonicalize_qual
  3. [转]Effective C# 原则7: 选择恒定的原子值类型数据
  4. 一致性哈希和哈希槽对比
  5. Spark性能调优-RDD算子调优篇
  6. 从未来所思考到的事情
  7. Golang slice 的底层实现
  8. golang 一段代码不甚明白
  9. 百度推广为什么出现在右侧
  10. Outh2协议有哪四种授权模式?