About creating VM - KVM

 
Thread Tools Search this Thread
Special Forums UNIX and Linux Applications Virtualization and Cloud Computing About creating VM - KVM
# 1  
Old 03-02-2010
About creating VM - KVM

Hi folks,


Host - Ubuntu 9.10 64bit
Virtualizer - KVM


I followed;
Virtualization With KVM On Ubuntu 9.10
Virtualization With KVM On Ubuntu 9.10 | HowtoForge - Linux Howtos and Tutorials


to install this Virtual Machine. The steps worked without problem. But I have following points can't be resolved:-


1)
I can't find the option on vmbuilder for selecting the packages to install. (no GUI)

2)
If the OS to be installed is an iso image what command shall I run, especially Windows?

3)
I tried to run "rdesktop" to connect the VM without success. I have no idea what shall I replace for "abcd", e.g

$ rdesktop -a 16 -N 192.168.0.200:abcd

192.168.0.200 is the host ip address.

4)
Finally I install virt-manager. It works to connect the VM

Please help. TIA


B.R.
satimis
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Virtualization and Cloud Computing

KVM guests unique ID

Hi, I wanted to know if there was a way to get a unique UUID for KVM guest from the guest OS which isn't easily modifiable. I have a software that I would like to run inside a KVM guest and want to do some license protection on it using a unique UUID. Does KVM allow multiple VMs on the same... (0 Replies)
Discussion started by: shivanik
0 Replies

2. Red Hat

KVM - VM Guest

Background : - Need to create addition 40G storage for VM guest. 1. I have created new KVM - VM guest on RHEL 5.8 server hosting server. 2. Hosting server has occupied all size with LV and there is not space to create new LV. 3. I tried to achieve this requirement by creating 40G file size and... (1 Reply)
Discussion started by: Nats
1 Replies

3. UNIX for Dummies Questions & Answers

Openstack and KVM

hi guys I want to test this environment I really have some doubts and I need to read a little bit more I have two physical servers (where Vmware ESXi used to be installed) I was thinking install KVM (if it turns out to be difficult have KVM up and running I will use ESXi) and deploy the... (1 Reply)
Discussion started by: karlochacon
1 Replies

4. UNIX and Linux Applications

KVM support on suse

Is KVM supported on suse SLES10 (0 Replies)
Discussion started by: shekhar_ssm
0 Replies

5. Red Hat

About KVM ?

Hi every body Umm. I have 4 physical servers and i need to make the 1 machine from 4 server by KVM like Vmware ESX ? Do KVM can consolidate physical servers to 1 machine ? If KVM can do it. can i find manual to do it from where thk.... (3 Replies)
Discussion started by: infjustice
3 Replies

6. Linux

application for KVM

Hi Is there an application for KVM which it can save guest's registers and system calls informations? Thanks a lot in advance! Setareh (0 Replies)
Discussion started by: setareh92
0 Replies

7. UNIX and Linux Applications

application for KVM

Hi Is there an application for KVM which it can save guest's registers and system calls informations? Thanks a lot in advance! Setareh (0 Replies)
Discussion started by: setareh92
0 Replies

8. Red Hat

Could not see virtual fc in KVM guest OS

Hi All, I have RHEL 5u4 physical system with 2 Qlogic fc cards. It hosts 2 KVM virtual machines which are also running RHEL 5u4 OS. After all these I have created a virutal HBA (refered in google) successfully on the base OS. But the same is not visible to guest OS. My question here is, ... (1 Reply)
Discussion started by: Vichu
1 Replies

9. Solaris

KVM for V880's

We have 3 V880's and we need to purchase a KVM for them. I've never purchased one before. Does anyone have a recommendation for one? (3 Replies)
Discussion started by: dangral
3 Replies
Login or Register to Ask a Question
SYSTEMD-DETECT-VIRT(1)						systemd-detect-virt					    SYSTEMD-DETECT-VIRT(1)

NAME
systemd-detect-virt - Detect execution in a virtualized environment SYNOPSIS
systemd-detect-virt [OPTIONS...] DESCRIPTION
systemd-detect-virt detects execution in a virtualized environment. It identifies the virtualization technology and can distinguish full machine virtualization from container virtualization. systemd-detect-virt exits with a return value of 0 (success) if a virtualization technology is detected, and non-zero (error) otherwise. By default, any type of virtualization is detected, and the options --container and --vm can be used to limit what types of virtualization are detected. When executed without --quiet will print a short identifier for the detected virtualization technology. The following technologies are currently identified: Table 1. Known virtualization technologies (both VM, i.e. full hardware virtualization, and container, i.e. shared kernel virtualization) +----------+----------------+--------------------------------------+ |Type | ID | Product | +----------+----------------+--------------------------------------+ |VM | qemu | QEMU software virtualization, | | | | without KVM | | +----------------+--------------------------------------+ | | kvm | Linux KVM kernel virtual machine, | | | | with whatever software, except | | | | Oracle Virtualbox | | +----------------+--------------------------------------+ | | zvm | s390 z/VM | | +----------------+--------------------------------------+ | | vmware | VMware Workstation or Server, and | | | | related products | | +----------------+--------------------------------------+ | | microsoft | Hyper-V, also known as Viridian or | | | | Windows Server Virtualization | | +----------------+--------------------------------------+ | | oracle | Oracle VM VirtualBox (historically | | | | marketed by innotek and Sun | | | | Microsystems), | | | | for legacy and KVM | | | | hypervisor | | +----------------+--------------------------------------+ | | xen | Xen hypervisor (only domU, not dom0) | | +----------------+--------------------------------------+ | | bochs | Bochs Emulator | | +----------------+--------------------------------------+ | | uml | User-mode Linux | | +----------------+--------------------------------------+ | | parallels | Parallels Desktop, Parallels Server | | +----------------+--------------------------------------+ | | bhyve | bhyve, FreeBSD hypervisor | +----------+----------------+--------------------------------------+ |Container | openvz | OpenVZ/Virtuozzo | | +----------------+--------------------------------------+ | | lxc | Linux container implementation by | | | | LXC | | +----------------+--------------------------------------+ | | lxc-libvirt | Linux container implementation by | | | | libvirt | | +----------------+--------------------------------------+ | | systemd-nspawn | systemd's minimal container | | | | implementation, see systemd- | | | | nspawn(1) | | +----------------+--------------------------------------+ | | docker | Docker container manager | | +----------------+--------------------------------------+ | | rkt | rkt app container runtime | +----------+----------------+--------------------------------------+ If multiple virtualization solutions are used, only the "innermost" is detected and identified. That means if both machine and container virtualization are used in conjunction, only the latter will be identified (unless --vm is passed). OPTIONS
The following options are understood: -c, --container Only detects container virtualization (i.e. shared kernel virtualization). -v, --vm Only detects hardware virtualization). -r, --chroot Detect whether invoked in a chroot(2) environment. In this mode, no output is written, but the return value indicates whether the process was invoked in a chroot() environment or not. --private-users Detect whether invoked in a user namespace. In this mode, no output is written, but the return value indicates whether the process was invoked inside of a user namespace or not. See user_namespaces(7) for more information. -q, --quiet Suppress output of the virtualization technology identifier. -h, --help Print a short help text and exit. --version Print a short version string and exit. EXIT STATUS
If a virtualization technology is detected, 0 is returned, a non-zero code otherwise. SEE ALSO
systemd(1), systemd-nspawn(1), chroot(2), namespaces(7) systemd 237 SYSTEMD-DETECT-VIRT(1)