techPowerUp! Forums

Go Back   techPowerUp! Forums > Software > Linux / BSD / Mac OS X

Reply
 
Thread Tools
Old Mar 15, 2012, 02:14 PM   #1
Easy Rhino
Linux Advocate
 
Easy Rhino's Avatar
 
Join Date: Nov 2006
Posts: 10,284 (4.27/day)
Thanks: 1,219
Thanked 2,789 Times in 1,801 Posts

System Specs

qemu-kvm

ive been screwing around with enterprise level virtualization and i have to say the package that comes with centos/redhat 6 is quite good. qemu-kvm is very very fast when virtualizing linux systems. all of this is done on the command line and i could not be happier.

Last edited by Easy Rhino; Mar 15, 2012 at 05:15 PM.
Easy Rhino is offline  
Reply With Quote
Old Mar 15, 2012, 02:50 PM   #2
AthlonX2
Better Than You
 
AthlonX2's Avatar
 
Join Date: Sep 2006
Location: Toledo,Ohio
Posts: 5,450 (2.22/day)
Thanks: 730
Thanked 1,572 Times in 994 Posts

System Specs

um....is that like dosbox
AthlonX2 is offline  
Reply With Quote
Old Mar 15, 2012, 05:15 PM   #3
Easy Rhino
Linux Advocate
 
Easy Rhino's Avatar
 
Join Date: Nov 2006
Posts: 10,284 (4.27/day)
Thanks: 1,219
Thanked 2,789 Times in 1,801 Posts

System Specs

lol, no.
Easy Rhino is offline  
Reply With Quote
Old Mar 16, 2012, 03:16 AM   #4
rahulyo
200 Posts
 
Join Date: Feb 2009
Location: Nasik,India
Posts: 336 (0.21/day)
Thanks: 86
Thanked 11 Times in 10 Posts

System Specs

Ya its better n easy. Few commands n virtual machine (OS) install .
rahulyo is offline  
Reply With Quote
Old Mar 16, 2012, 07:33 AM   #5
W1zzard
Benevolent Dictator
 
W1zzard's Avatar
 
Join Date: May 2004
Location: Stuttgart, Germany
Posts: 13,873 (4.17/day)
Thanks: 184
Thanked 10,456 Times in 3,219 Posts
Send a message via ICQ to W1zzard Send a message via AIM to W1zzard Send a message via MSN to W1zzard Send a message via Skype™ to W1zzard

System Specs

i'm missing some kind of free gui based management thing for qemu-kvm that lets me do common VM tasks
W1zzard is offline  
Reply With Quote
Old Mar 16, 2012, 08:28 AM   #6
v12dock
1000 Posts
 
v12dock's Avatar
 
Join Date: Dec 2008
Location: Central Illinois
Posts: 1,300 (0.79/day)
Thanks: 286
Thanked 244 Times in 164 Posts

System Specs

I though qemu was a processor emulator not hypervisor

OpenVZ and Xen are the two linux hypervisor's that I know of
v12dock is offline  
Reply With Quote
Old Mar 16, 2012, 06:17 PM   #7
Easy Rhino
Linux Advocate
 
Easy Rhino's Avatar
 
Join Date: Nov 2006
Posts: 10,284 (4.27/day)
Thanks: 1,219
Thanked 2,789 Times in 1,801 Posts

System Specs

Quote:
Originally Posted by W1zzard View Post
i'm missing some kind of free gui based management thing for qemu-kvm that lets me do common VM tasks
virt-manager is the gui that can be used to do exactly this.

Quote:
Originally Posted by v12dock View Post
I though qemu was a processor emulator not hypervisor

OpenVZ and Xen are the two linux hypervisor's that I know of
from the open source project:QEMU is a generic and open source machine emulator and virtualizer.

When used as a machine emulator, QEMU can run OSes and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performance.

When used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. QEMU supports virtualization when executing under the Xen hypervisor or using the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, server and embedded PowerPC, and S390 guests.
Easy Rhino is offline  
Reply With Quote
Old Mar 18, 2012, 09:19 AM   #8
v12dock
1000 Posts
 
v12dock's Avatar
 
Join Date: Dec 2008
Location: Central Illinois
Posts: 1,300 (0.79/day)
Thanks: 286
Thanked 244 Times in 164 Posts

System Specs

How does it compare to OpenVZ or Xen

I had a VPS with OpenVZ and the node was WAY over sold. Ran like complete shit, ended up switching Xen still waiting for it come online so I can test it out
v12dock is offline  
Reply With Quote
Old Mar 18, 2012, 12:04 PM   #9
W1zzard
Benevolent Dictator
 
W1zzard's Avatar
 
Join Date: May 2004
Location: Stuttgart, Germany
Posts: 13,873 (4.17/day)
Thanks: 184
Thanked 10,456 Times in 3,219 Posts
Send a message via ICQ to W1zzard Send a message via AIM to W1zzard Send a message via MSN to W1zzard Send a message via Skype™ to W1zzard

System Specs

Quote:
Originally Posted by Easy Rhino View Post
virt-manager is the gui that can be used to do exactly this.
does that work under windows ? remotely ? i don't have X installed on the server
W1zzard is offline  
Reply With Quote
Old Mar 18, 2012, 12:19 PM   #10
Aquinus
3500 Posts
 
Aquinus's Avatar
 
Join Date: Jan 2012
Location: Dover, New Hampshire, USA
Posts: 4,512 (8.86/day)
Thanks: 1,441
Thanked 1,425 Times in 1,065 Posts

System Specs

Quote:
Originally Posted by W1zzard View Post
does that work under windows ? remotely ? i don't have X installed on the server
It will not run under Windows as KVM is a kernel-level virtualization built for the Linux kernel.

It allows remote management (through KVM) using VNC (password optional, but I do recommend one.)

You don't need X installed on the server. You can install X Server on a windows machine, open an X tunnel using SSH, and open virt-manager and it will be displayed on your Windows box. I work with KVM in a business environment and it is a very nice platform (we have something like 8 QEMU/KVM virtual machines in production running on a dual-quad core xeon server with hyperthreading and 24gb of memory). Virt-manager makes it very easy to manage QEMU/KVM but the CLI tools gives you much more control.


Quote:
Originally Posted by Easy Rhino View Post
When used as a machine emulator, QEMU can run OSes and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performance.
I thought it could only run under the architecture it was compiled for.

Last edited by Aquinus; Mar 18, 2012 at 12:27 PM.
Aquinus is online now  
Crunching for Team TPU
Reply With Quote
Old Mar 18, 2012, 05:12 PM   #11
Easy Rhino
Linux Advocate
 
Easy Rhino's Avatar
 
Join Date: Nov 2006
Posts: 10,284 (4.27/day)
Thanks: 1,219
Thanked 2,789 Times in 1,801 Posts

System Specs

Quote:
Originally Posted by W1zzard View Post
does that work under windows ? remotely ? i don't have X installed on the server
on the linux end, you only need to setup whatever basic x-server packages exist for your distribution and tunnel in. for centos it is xorg-x11-xauth. if you are remotely logging in from windows you can use Xming as a remote display server and whenever you launch a program that requires a display it will handle it for you. if yuo remote from another linux box you can use a vnc client.

Last edited by Easy Rhino; Mar 18, 2012 at 05:21 PM.
Easy Rhino is offline  
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Cheap, DVI, PS/2, USB KVM? TRWOV General Hardware 1 Sep 16, 2011 07:17 PM
Mouse without borders soft kvm theoneandonlymrk General Software 3 Sep 14, 2011 12:03 AM
PS3 + KVM DVI Switch = no picture Nosada General Hardware 0 Feb 9, 2010 05:50 PM
Need a new kvm? GREASEMONKEY General Hardware 1 Mar 7, 2009 05:59 AM
Good KVM Switch for Gaming jim85213 ATITool 0 Dec 8, 2005 12:38 AM


All times are GMT. The time now is 10:45 AM.


Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
no new posts