Sponsored Content
Full Discussion: Detecting Vmware on Linux
Top Forums Shell Programming and Scripting Detecting Vmware on Linux Post 302113199 by amittal on Wednesday 4th of April 2007 05:02:06 AM
Old 04-04-2007
Detecting Vmware on Linux

Hi,

I need help to detect Vmware on Linux and SunOS.

I need to know if Vmware is installed on the box. If yes then if it is a physical or a virtual machine.

Thanks in advance,
amittal
 

9 More Discussions You Might Find Interesting

1. Linux

Linux Mandrake 9.1 running on Vmware workstation 4

Im running WinXp and just recently installed VMware workstation v4 to emulate Linux Mandrake 9.1. It succesfully installed.. Situation: My xp home edition is static on a linksys router it is my host computer.. Linux is running on Vmware as guest operation system.. Im not sure how to configure... (2 Replies)
Discussion started by: NewINLinux
2 Replies

2. Linux

Why is linux console window in VMWare so small?

I install linux in VMWare, but Its console window is too small, Its size is 80*25, I can't change it even though I use full srceen mode in VMWare.How can I do? please help me! Thanks! (3 Replies)
Discussion started by: ChaoZhang
3 Replies

3. UNIX for Dummies Questions & Answers

Network Issue between Linux and RedHat (both on VMWare)

Hi All My first post so I hope it's ok. I have VMware workstation 5.0.0 build-13124 on an XP professional box. Within the VMware environment I have two virtual systems. The first is a Red Hat Linux (3.2.2-5) box and the second is an XP Home (sp2) box. When setting up both virtual boxes I set... (1 Reply)
Discussion started by: The_Lo_King
1 Replies

4. Red Hat

How to find VMware info from Linux?

Hi, I have two questions about Linux with VMware: (1) How to tell if the system is real or VMware virtual from a Linux platform without root privilege? (root can use 'dmidecode | grep -i vmware). The command 'dmesg | grep -i vmware' run by everyone is not always working for this purpose. (2)... (2 Replies)
Discussion started by: aixlover
2 Replies

5. Homework & Coursework Questions

Redhat LINUX 5 setting In VMWARE

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I have installed Redhat Linux 5 in VMWARE and would need to access through putty form the same desktop or... (2 Replies)
Discussion started by: SasiWipro
2 Replies

6. Virtualization and Cloud Computing

Redhat Linux 5 settings in VMWARE

I have installed Redhat Linux 5 in VMWARE and would need to access through putty form the same desktop or other desktop, Please help me what are the config setting needs to be modified We could connect through Router (Wifi) or network, also Without network since the server hosted on same... (0 Replies)
Discussion started by: SasiWipro
0 Replies

7. Emergency UNIX and Linux Support

How to configure in redhat linux on vmware?

Hi All, I installed Red-hat linux(64bit-x86) os on vmware 8,configure IP address and services but it is unable to come in to network.it is production server. please provide solution to me , it is very urgent... (3 Replies)
Discussion started by: Rajesh_Apple
3 Replies

8. Red Hat

Linux Red Hat AS3 Network card is not detecting ...

Dear Expert, I 've installed Redhat linux AS3, My machine having Inbuild network card (Intel(R) 82566DM-2 Gigabit Network Connection). I've downloaded e1000e-2.3.2 from Intel site, but its not working for my machine. I'm unable to configure the Network. ifconfig eth0 xx.xx.xx.xx netmask... (0 Replies)
Discussion started by: Mohammed Faiz
0 Replies

9. Red Hat

Installing Linux on Vmware - Help needed

Hi Friends I am trying to install linux (32 bit) on windows. so i used Oracle virtual box and Vmware player in windows and installed them. but there is no category to select Linux version 7. how to install it pls help here. (7 Replies)
Discussion started by: ded325
7 Replies
PMAP_EXTRACT(9) 					   BSD Kernel Developer's Manual					   PMAP_EXTRACT(9)

NAME
pmap_extract, pmap_extract_and_hold -- map a virtual address to a physical page SYNOPSIS
#include <sys/param.h> #include <vm/vm.h> #include <vm/pmap.h> vm_paddr_t pmap_extract(pmap_t pmap, vm_offset_t va); vm_paddr_t pmap_extract_and_hold(pmap_t pmap, vm_offset_t va, vm_prot_t prot); DESCRIPTION
The pmap_extract() function maps a virtual address to a physical page. In certain situations, callers may use pmap_extract_and_hold() instead, to ensure that the returned page is held. The pmap_extract_and_hold() function maps a virtual address to a physical page, and atomically holds the returned page for use by the caller, only if the mapping permits the given page protection. IMPLEMENTATION NOTES
Currently, the page protection requested by the caller is not verified. RETURN VALUES
The pmap_extract() function will return the physical page address associated with the virtual address va inside the physical map pmap. If the mapping does not exist, or if the pmap parameter is NULL, then NULL will be returned. The pmap_extract_and_hold() function will return the physical page address associated with the virtual address va inside the physical map pmap. If the mapping does not exist, the result is a no-op, and NULL will be returned. SEE ALSO
mutex(9), pmap(9) AUTHORS
The pmap_extract_and_hold() function was implemented by Alan L. Cox <alc@imimic.com>. This manual page was written by Bruce M Simpson <bms@spc.org>. BSD
July 21, 2003 BSD
All times are GMT -4. The time now is 07:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy