- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Virtual Machine/VM Host/VM Guest.
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 04:58 AM
тАО08-29-2008 04:58 AM
I am slightly confused b/e the following terminology:-
o Difference between Virtual Machine/VM Host/VM Guest.
o Could you also give me an example of using hpvmcreate specifing Virtual machine name,Operating system type,Virtual CPUs (vCPUs),CPU entitlement,Memory,Virtual devices,Virtual machine label,Dynamic memory which and when necessary [In a Real Time Environment]
I have it...
# hpvmcreate -P HPVM1 -O HP-UX -c 4 -r 4G
I have ommited -e.. thinking that it would take the default 10% and in due course of time If needed will use hmvmmodify to change it.I do not know how to Create Virtual Network Devices.
If you can provide the command with a sample o/p I would be very Thankful.
I have also gone through the below link:-
http://docs.hp.com/en/T2767-90105/T2767-90105.pdf
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 05:06 AM
тАО08-29-2008 05:06 AM
SolutionVirtual Machine:
The virtual servr you "build" using the VM software
VM Host:
The physical server and OS that the VM softare is installed on, and which will contain the Virtual Machines
VM Guest:
The Operating System you install on to your VM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 05:14 AM
тАО08-29-2008 05:14 AM
Re: Virtual Machine/VM Host/VM Guest.
As for the command line examples, there are many in that manual, and also take a look at examples in the hpvmcreate man page:
man hpvmcreate
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 08:02 AM
тАО08-29-2008 08:02 AM
Re: Virtual Machine/VM Host/VM Guest.
You already have 90% of a typical create command posted.
Create a 4 cpu 4GB guest called HPVM1
# hpvmcreate -P HPVM1 -O HP-UX -c 4 -r 4G
Need to add some devices.
Create a virtual switch on the Vhost with hpvmnet.
Decide on types of backing storage, raw, lv, or file.
Typical addition would be.
# hpvmcreate -P HPVM1 -O HP-UX -c 4 -r 4G -a disk:scsi::lv:/dev/vg1/rhpvm1_disk1
or
-a network:lan::vswitch:vmsw1
or
to create a dynamic dvd allowing the selection of files in a directory
-a dvd:scsi::null:/directory
or to hard assign a DVD device
-a dvd:scsi::disk:/dev/rdsk/c0t0d0
etc...
etc...
etc...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-29-2008 09:31 AM
тАО08-29-2008 09:31 AM