Java Wiki
No edit summary
(reverted it back to an old version due to this article being replaced by gibberish...)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
  +
[[Image:Virtual PC.png|left|frame|This is an example of a Virtual Machine.]]
== Introduction ==
 
[[Image:Virtual PC.png|left|frame|This is an example of a '''Virtual Machine'''.]]A '''virtual machine''' (VM) is a software implementation of a machine (computer) that executes programs like a real machine. A '''virtual machine''' is an environment, usually a program or operating system, which does not physically exist but is created within another environment. In this context, a VM is called a "guest" while the environment it runs within is called a "host." Virtual machines are often created to execute an instruction set different than that of the host environment. One host environment can often run multiple VMs at once. Because VMs are separated from the physical resources they use, the host environment is often able to dynamically assign those resources among them.
+
A '''virtual machine''' (VM) is a software implementation of a machine (computer) that executes programs like a real machine. A virtual machine is an environment, usually a program or operating system, which does not physically exist but is created within another environment. In this context, a VM is called a "guest" while the environment it runs within is called a "host." Virtual machines are often created to execute an instruction set different than that of the host environment. One host environment can often run multiple VMs at once. Because VMs are separated from the physical resources they use, the host environment is often able to dynamically assign those resources among them.
  +
 
The phrase "virtual machine" is commonly used to describe Sun Microsystems' [[Java]] runtime environment, the [[Java virtual machine|Java Virtual Machne]] (JVM), in which Java-specific commands are interpreted. The JVM is a virtual machine in that it executes code compiled specifically for it – known as bytecode – and abstracts use of resources for this bytecode. The [[Java]] programming language does not rely on platform-specific instruction sets, such as APIs specific to any one operating system, to display output or access resources such as files. Instead, the JVM creates virtualized resources which the bytecode accesses. These actions are then passed on to the machine's actual resources.
 
The phrase "virtual machine" is commonly used to describe Sun Microsystems' [[Java]] runtime environment, the [[Java virtual machine|Java Virtual Machne]] (JVM), in which Java-specific commands are interpreted. The JVM is a virtual machine in that it executes code compiled specifically for it – known as bytecode – and abstracts use of resources for this bytecode. The [[Java]] programming language does not rely on platform-specific instruction sets, such as APIs specific to any one operating system, to display output or access resources such as files. Instead, the JVM creates virtualized resources which the bytecode accesses. These actions are then passed on to the machine's actual resources.
   
 
== Users and Virtual Machines ==
 
== Users and Virtual Machines ==
   
A user interacting with a virtualized server can view the server as a physical machine, in the sense that the user would see access to machines resources like hard disks, RAM, processors and Ethernet connections. In fact, all of these machine resources are virtual. For instance, instead of accessing a real hard disk, the user is accessing a construct of the host environment. This construct then accesses the real disk to record the data.
+
A user interacting with a virtualized server can view the server as a physical machine, in the sense that the user would see access to machines resources like hard disks, RAM, processors and Ethernet connections. In fact, all of these machine resources are virtual. For instance, instead of accessing a real hard disk, the user is accessing a construct of the host environment. This construct then accesses the real disk to record the data.
   
 
== Quote ==
 
== Quote ==
   
"A running program is often referred to as a '''virtual machine''' - a machine that doesn't exist as a matter of actual physical reality. The '''virtual machine''' idea is itself one of the most elegant in the history of technology and is a crucial step in the evolution of ideas about software. To come up with it, scientists and technologists had to recognize that a computer running a program isn't merely a washer doing laundry. A washer is a washer whatever clothes you put inside, but when you put a new program in a computer, it becomes a new machine. . . The '''virtual machine''': A way of understanding software that frees us to think of software design as machine design." -From David Gelernter's "Truth, Beauty, and the '''Virtual Machine'''," Discover Magazine, September 1997, p. 72.
+
"A running program is often referred to as a virtual machine - a machine that doesn't exist as a matter of actual physical reality. The virtual machine idea is itself one of the most elegant in the history of technology and is a crucial step in the evolution of ideas about software. To come up with it, scientists and technologists had to recognize that a computer running a program isn't merely a washer doing laundry. A washer is a washer whatever clothes you put inside, but when you put a new program in a computer, it becomes a new machine. . . The virtual machine: A way of understanding software that frees us to think of software design as machine design." -From David Gelernter's "Truth, Beauty, and the Virtual Machine," Discover Magazine, September 1997, p. 72.
   
 
== See Also ==
 
== See Also ==
Line 22: Line 23:
   
 
{{Wikipedia}}
 
{{Wikipedia}}
 
 
JAVA RULES!!!
 

Latest revision as of 01:12, 4 September 2012

Virtual PC

This is an example of a Virtual Machine.

A virtual machine (VM) is a software implementation of a machine (computer) that executes programs like a real machine. A virtual machine is an environment, usually a program or operating system, which does not physically exist but is created within another environment. In this context, a VM is called a "guest" while the environment it runs within is called a "host." Virtual machines are often created to execute an instruction set different than that of the host environment. One host environment can often run multiple VMs at once. Because VMs are separated from the physical resources they use, the host environment is often able to dynamically assign those resources among them.

The phrase "virtual machine" is commonly used to describe Sun Microsystems' Java runtime environment, the Java Virtual Machne (JVM), in which Java-specific commands are interpreted. The JVM is a virtual machine in that it executes code compiled specifically for it – known as bytecode – and abstracts use of resources for this bytecode. The Java programming language does not rely on platform-specific instruction sets, such as APIs specific to any one operating system, to display output or access resources such as files. Instead, the JVM creates virtualized resources which the bytecode accesses. These actions are then passed on to the machine's actual resources.

Users and Virtual Machines[]

A user interacting with a virtualized server can view the server as a physical machine, in the sense that the user would see access to machines resources like hard disks, RAM, processors and Ethernet connections. In fact, all of these machine resources are virtual. For instance, instead of accessing a real hard disk, the user is accessing a construct of the host environment. This construct then accesses the real disk to record the data.

Quote[]

"A running program is often referred to as a virtual machine - a machine that doesn't exist as a matter of actual physical reality. The virtual machine idea is itself one of the most elegant in the history of technology and is a crucial step in the evolution of ideas about software. To come up with it, scientists and technologists had to recognize that a computer running a program isn't merely a washer doing laundry. A washer is a washer whatever clothes you put inside, but when you put a new program in a computer, it becomes a new machine. . . The virtual machine: A way of understanding software that frees us to think of software design as machine design." -From David Gelernter's "Truth, Beauty, and the Virtual Machine," Discover Magazine, September 1997, p. 72.

See Also[]

Links[]

Smallwikipedialogo.png This page uses content from Wikipedia. The original article was at Virtual Machine. The list of authors can be seen in the page history. As with Java Wiki, the text of Wikipedia is available under the GNU Free Documentation License.