Sponsored Content
Full Discussion: Virtualization problems
Special Forums UNIX and Linux Applications Virtualization and Cloud Computing Virtualization problems Post 302513459 by danilosevilla on Wednesday 13th of April 2011 09:51:20 AM
Old 04-13-2011
Virtualization problems

Hi everyone.
Last week we have some hardware problems in our Unixware 7 server, and i decided to change this physical machine into a virtual machine.
The scenario is:

architecture=IA32
bus_types=PCI2.10,ISA,PnP1.0
hostname=tecsup2uw.tecsupaqp.edu
hw_provider=Generic AT
hw_serial=UW7B00001
kernel_stamp=98/04/03
machine=Pentium
num_cg=1
num_cpu=1
os_base=UNIX_SVR5
os_provider=SCO
release=5
srpc_domain=
sysname=UnixWare
user_limit=10
version=7


My procedure:
  • I made an image of my HD with Acronis True Image Home Edition - Version 11 - The format of this image is "*.tib".
  • With VMWare Converter Standalone Version 4.3.0. i convert the phisical machine (image "tib") into a virtual machine.
  • Well at this point, everithing was OK, but when i startup the new virtualized machine, it crash with the error:

psm_time_spin_adjust: invalid delay factor (10000 375 256)
Kernel Page Fault from (cs:eip) = (0000100:C002C44A):
eax=74C08559 ebx=00000000 ecx= FFDAAC0 ..... and other address directions i presume.

Raw stack dump begins at =xFFFDAAC8 :
.
.
.
other address directions i presume.
.
.
.

System has halted and may be powered off (Press any key to rebbot) Smilie

Someone know what is the problem ?.
Please any help will be apreciated. It's at certain point urgent.
Thanks.
Danilo.
 

10 More Discussions You Might Find Interesting

1. Solaris

Virtualization with Solaris 10

Hello all, For my internship assignment I have a Sunfire 880 at my disposal for comparing virtualization with the normal mostly Windows based servers in the company. Are there any applications like VirtualBox or Vmware that can be used on a Sparc-system equipped with Solaris 10? I tried... (1 Reply)
Discussion started by: regi86
1 Replies

2. Virtualization and Cloud Computing

Virtualization problem

Hi, I am having a virtualization problem with a machine that runs on Fedora Core 4. I created a IDE virtual machine running FEDORA CORE 4. Then I restored the original servers partition one by one. Everything works until I restore root. Then When I load up I get mount: error 6 mounting ext3... (1 Reply)
Discussion started by: mojoman
1 Replies

3. Virtualization and Cloud Computing

Hardware virtualization

Hello to all In my organization we want to pass to move the systems to an virtualized environment, nevertheless, considering the absence of resources, the idea is to acquire the versers and that the department (I) do the facilities, tests, etc. Wearing out the possible minimal cost in... (1 Reply)
Discussion started by: aalvarez77
1 Replies

4. UNIX for Advanced & Expert Users

Virtualization Related Help!!

Hi, My script needs to find out if it is running on a virtual machine. If it is then it needs to find out. 1 . The number of virtual processors. 2 . Actual physical box onto which the virtual machine is hosted. 3 .Processors on the physical machine. Actually there are some commands like... (1 Reply)
Discussion started by: prasi_in
1 Replies

5. HP-UX

Virtualization Software

Hello peopel I am interesting in implement a virtualization system on HP-UX v3. I have some Integrity servers with this OS installed but I want to virtualize one of them because I have a problem that has no solution in HP-UX and I have to install RedHat for this reason. Then I don't know what... (1 Reply)
Discussion started by: Lekram
1 Replies

6. Red Hat

Redhat Virtualization 2.2

Hi Friends, Is there any one who is working on Redhat Virtualization (RHEV -- KVM)? Regards, Arumon (4 Replies)
Discussion started by: arumon
4 Replies

7. HP-UX

Virtualization options for HP-UX 11.31

Hello, I am looking for a virtualization option for HP-UX that will allow VMs to run completely independent of each other with full Operating System capabilities (not a guest OS with limited features/access), with their own IP addresses and dedicated resources that will not interfere with any... (4 Replies)
Discussion started by: bstring
4 Replies

8. Linux

Virtualization best practices

Hello admins and gurus I have a controversial topic: now we are investing in a new Linux OS that will hold our Sybase database. The server will virtualized on a VMware server hosted on SAN storage. Now the question is, when we install the database engine is it better - in terms of performance -... (1 Reply)
Discussion started by: abohmeed
1 Replies

9. Virtualization and Cloud Computing

Virtualization on vmware

Got tired of messing around with real hardware old and others.. Decided to spend some $$ for a QUAD-core dual cpu laptop with 8 gig of ram and 1 TB disk space.. running VMware workstation 10 on windows 8.0 , with a pair of solx86 vcs 5.1 cluster and a pair of rhel 6.4 vcs 6.x cluster.. ... (0 Replies)
Discussion started by: ppchu99
0 Replies

10. UNIX for Advanced & Expert Users

Solaris Virtualization

Hello All, To start with, I am not an expert of solaris and VMs. Unfortunately, I can't find a direct or understandable (at least to me) answer to my question online. So please, excuse me if my question will sound dumb to you. :o We have 2 remaining solaris 8 servers are on sparc... (9 Replies)
Discussion started by: forextrafun
9 Replies
CPUCTL(4)						   BSD Kernel Interfaces Manual 						 CPUCTL(4)

NAME
cpuctl -- cpuctl pseudo device SYNOPSIS
To compile this driver into the kernel, place the following lines in your kernel configuration file: device cpuctl Alternatively, to load the driver as a module at boot time, place the following in loader.conf(5): cpuctl_load="YES" DESCRIPTION
The special device /dev/cpuctl presents interface to the system CPU. It provides functionality to retrieve CPUID information, read/write machine specific registers (MSR) and perform CPU firmware updates. For each CPU present in the system, the special device /dev/cpuctl%d with the appropriate index will be created. For multicore CPUs such a special device will be created for each core. Currently, only i386 and amd64 processors are supported. IOCTL INTERFACE
All of the supported operations are invoked using the ioctl(2) system call. Currently, the following ioctls are defined: CPUCTL_RDMSR cpuctl_msr_args_t *args CPUCTL_WRMSR cpuctl_msr_args_t *args Read/write CPU machine specific register. The cpuctl_msr_args_t structure is defined in <sys/cpuctl.h> as: typedef struct { int msr; /* MSR to read */ uint64_t data; } cpuctl_msr_args_t; CPUCTL_MSRSBIT cpuctl_msr_args_t *args CPUCTL_MSRCBIT cpuctl_msr_args_t *args Set/clear MSR bits according to the mask given in the data field. CPUCTL_CPUID cpuctl_cpuid_args_t *args Retrieve CPUID information. Arguments are supplied in the following structure: typedef struct { int level; /* CPUID level */ uint32_t data[4]; } cpuctl_cpuid_args_t; It is equivalent to the CPUCTL_CPUID_COUNT request with level_type set to 0. CPUCTL_CPUID_COUNT cpuctl_cpuid_count_args_t *args Retrieve CPUID information. Arguments are supplied in the following structure: typedef struct { int level; /* CPUID level */ int level_type; /* CPUID level type */ uint32_t data[4]; } cpuctl_cpuid_count_args_t; The level field indicates the CPUID level to retrieve, it is loaded into the %eax register before the CPUID instruction is executed, The level_type field indicates the CPUID level type to retrieve, it is loaded into the %ecx register. The data field is used to store the received CPUID data. That is, data[0] contains the value of %eax register after the CPUID instruction is executed, data[1] is for %ebx, data[2] for %ecx, and data[3] for %edx. CPUCTL_UPDATE cpuctl_update_args_t *args Update CPU firmware (microcode). The structure is defined in <sys/cpuctl.h> as: typedef struct { void *data; size_t size; } cpuctl_update_args_t; The data field should point to the firmware image of size size. For additional information refer to cpuctl.h. RETURN VALUES
[ENXIO] The operation requested is not supported by the device (e.g., unsupported architecture or the CPU is disabled). [EINVAL] Incorrect request was supplied, or microcode image is not correct. [ENOMEM] No physical memory was available to complete the request. [EFAULT] The firmware image address points outside the process address space. FILES
/dev/cpuctl SEE ALSO
hwpmc(4), cpucontrol(8) HISTORY
The cpuctl driver first appeared in FreeBSD 7.2. AUTHORS
The cpuctl module and this manual page were written by Stanislav Sedov <stas@FreeBSD.org>. BUGS
Yes, probably, report if any. BSD
June 20, 2014 BSD
All times are GMT -4. The time now is 04:34 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy