|
By physical immortality, I mean the type in the movie "Highlander", but proper immortality so that you can't even have your head chopped off.
I used to think it would be great to be a 25 year old 'Highlander' for ever, but after reading the below, not...
Started by steppewar on
, 20 posts
by 14 people.
Answer Snippets (Read the full thread at davidicke):
Highlander....
The whole point is about doing just the opposite from really important subjects .
|
|
How can I obtain the physical machine name that my jvm is running in?
(Physical = OS, up to vmware...)
Started by ripper234 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Your comment "(Physical = OS, up to vmware...)" needs.
What you mean by Physical Machine Name.
|
|
How do I tell lsof I need to list only physical files (not sockets, not TCP/IP connections, only physical files)?
Started by FractalizeR on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Egrep 'REG|DIR' , assuming by "physical files" you mean regular files and directories.
|
Ask your Facebook Friends
|
When we get the address of a function or any object for that matter,is it the virtual address or physical address of that object??
Started by mawia on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
On some old systems (e.g., DOS), they would be physical, allowing you.
The operating system is responsible for translating them into physical addresses through the virtual the boundaries" and GPFs.
|
|
Is it possible to convert physical environments to virtual machines?
Answer Snippets (Read the full thread at superuser):
Http://www.vmware.com/products/converter/
This is the system I use when I go from physical.
|
|
Is there any way to copy a physical hard drive to a virtual drive for use in Vmware Workstation?
Started by Nick Berardi on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
VMware (and I think most VM vendors) have "physical) to image the physical disk to the....
In VMWare Workstation, File->import supports a physical machine as the source
Sure is, you can the files on the shared drive, and copy them.
|
|
Hello, I'm not able to get the current physical path within Application_Start using
HttpContext.Current.Request.PhysicalApplicationPath
because there is no Request object at that time.
How else can I get the physical path?
Started by Alex on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Protected void Application_Start(object sender, EventArgs e) { string path = Server.MapPath("/"); }
try Server.MapPath("~")
use
server.mappath() in asp.net
apllication.startuppath in c# windows application .
|
|
Is it possible to translate a server relative virtual path to physical path in PHP?
e.g. if I have a url:
/home/index.php
then find the physical path of index.php somehow from some other script??
Started by r_honey on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You're looking for realpath
$path = 'mydir/index.php'; echo realpath($path);.
Prepend $_SERVER["DOCUMENT_ROOT"] to the script path.
|
|
How to list physical disks in windows? In order to obtain a list of "\.\PhysicalDrive0" available.
Started by CiNN on
, 7 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You can enumerate the drive letters with (or without) GetLogicalDrives, then call QueryDosDevice() to find out which physical drive the letter is mapped.
Mounted disk partitions, not physical drives.
|
|
I have a machine setup with VMWare Server 2.0. There are several VMs running on the VMWare server and I have several physical drives. I would like to give one of the VMs exclusive access to one entire physical drive. Is it possible to essential give a...
Started by heavyd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
I suppose creating a virtual machine without a hard disk and than using VMX Builder... .
VMWare workstation supports physical disk access AFAIK however.
Hyper-V does support physical disk access.
Up deploying on Hyper-V for that very reason.
|