VMWARE 6.0 Beta Released

The most known Virtualization System is under heavy development, and many interesting features will be in the final version. The most interesting? Integration with the Eclipse IDE.
I have only a doubt: what about Fusion? Will be a different project or it’s only the beta name for VMWARE for MacOSX? Will they be merged?
Release Notes on
New Support for 32-Bit and 64-Bit Operating Systems
This release provides experimental support for the following operating systems now in Beta:
- 32-bit and 64-bit Windows Vista as host and guest operating systems
- 32-bit and 64-bit Red Hat Enterprise Linux 4.5 (Beta, formerly called 4.0 Update 5) and Red Hat
Enterprise Linux 5.0 (Beta) as host and guest operating systems- 32-bit and 64-bit SUSE Linux Enterprise Server 9 SP4 (Beta) as host and guest operating systems
- 32-bit and 64-bit Solaris 10 Update 3 as guest operating system
This release provides full support for the following operating systems:
- 32-bit and 64-bit Ubuntu Linux 6.10 as host and guest operating systems
- 32-bit and 64-bit Mandriva Linux 2007 as host and guest operating systems
- 32-bit Novell Netware 6.5 SP5 as guest operating system
New Features in This Release
- Multiple Monitor Support — At the click of a button, the guest can now
span monitors and also reflect the monitor topology — meaning that applications, task bars, and
so on inside the guest appear as you would expect them to on a multi-monitor system. You can specify how many
monitors a virtual machine can detect, regardless of how many monitors are attached to the host. This feature
is especially useful if you plan to deploy the virtual machine to a different host after you create it. You can also
specify what screen resolution to use and how much video memory to allocate.- Easy Upgrade or Downgrade of VMware Virtual Machines — A new Convert Hardware Version wizard
steps you through the process of upgrading or downgrading virtual machines between Workstation versions 4, 5, and 6.
The wizard helps you determine which virtual hardware version to use for various VMware products. You have the
choice of either changing the version of the original virtual machine or creating a full clone.- Automation Via Expanded VIX 2.0 API — The VIX API (formerly known as the Programming API)
is now compatible with Workstation 6. This API allows you to write scripts and programs to automate virtual
machine operations. This release of the API is available in the C language. There are additional language
bindings for Perl, COM, and shell scripts (vmrun).- Enhanced Import Functionality (Windows Hosts Only) —
Included in this release is the Importer wizard from the VMware Converter product. Using the Importer wizard
enables you to convert a virtual machine from one
VMware virtual machine format to another, and convert virtual machines or system images from popular third-party vendors.- Automatic Update to the Latest Version of VMware Tools — You can now set
VMware Tools to automatically upgrade itself when the virtual machine is powered on.- Integrated Virtual Debuggers — With the new Workstation IDE (integrated
development environment) plug-ins, software developers are provided with menu
items and toolbar buttons in Visual Studio (Windows only) or Eclipse (Windows
or Linux) to easily develop and debug programs in virtual machines.- Appliance View for Virtual Appliances — Rather than having users see a
console view for an appliance, you can now configure the new appliance view. It gives
you a brief description of the type of server or appliance and provides a link that opens
the browser on the guest system and connects to the correct port for the server console.- Run Virtual Machines in the Background — You can now leave virtual
machines and teams running in the background when you exit Workstation. On the host, a
system tray icon indicates how many virtual machines are running in the background. Click
the icon to open a virtual machine.- Enhanced File Sharing and Copy and Paste Functionality — You can now use
shared folders on a Solaris guest. You can copy and paste text and files between Linux and
Windows hosts and Linus, Windows, and Solaris guests.- Cross-Platform Drag-and-Drop Functionality — You can now drag and drop files
and directories from a Linux or Windows host to a Linux, Solaris, or Windows guest, and vice versa.- Virtual Machines Can Act as VNC Servers — You can set a virtual machine
to act as a VNC server without having to install any specialized VNC software in the
guest.- New Online Help System for Workstation — The help system includes full-text search, bookmarking ability, index, and table of contents.
Note that for this beta release, you need an Internet connection to use the help system.- Battery Information Is Now Reported in the Guest — If you use a laptop to
run a guest in full screen mode, you will now be able to see status information about the
host’s battery.- Increased RAM Support — The previous limit of 4GB total RAM that could be
used for all virtual machines combined has been removed. The amount of memory used
by all virtual machines combined is now limited only by the amount of the host
computer’s RAM and page file size. The maximum amount of memory that can be allocated per virtual
machine has been raised from 3.6GB to 8GB.- Support for Paravirtualized Linux Kernels — If you have a VMware VMI
(Virtual Machine Interface) 3.0 enabled kernel in a Linux guest operating system, you can now
enable paravirtual support in the virtual machine.- User Interface for Mapping a Virtual Disk to a Drive Letter on the Windows Host
- Support for High-Speed USB 2.0 Devices
- Improved 64-bit Guest Support — Intel EM64T VT-capable processors are now
fully supported.- New 64-bit Sound Driver
- VMware Player 2.0 — The new Player Welcome page
gives you the option of browsing to a virtual machine file or downloading a virtual
appliance from the VMTN (VMware Technology Network) web site. You can then use
Player’s new appliance view when running a virtual appliance.- Player Extensions Framework — A new development framework enables you
to create new controls in VMware Player. You can embed custom toolbar and menu items in the
Player chrome, thereby enhancing the end user’s Player experience.
Other useful information, on the official release notes page.
Source, Downloadblog.
No comments yet.
542No trackbacks yet.
Why iPhone still ruleZ
about 3 weeks ago - 5 comments
I’m going to make a simple point. And because people that know me think I’m a “unfair-Google-aficionado-that-doesn’t-see-how-evil-Google-is”, I’m going to use Android as victim here.
iPhone ruleZ
Other OS? I’m not even taking into consideration old stuff like Symbian: is just too easy to trash it now-days (Qt is a whole different story though).
Android is great… for [...]
Binary Tree Rebuilder
about 1 month ago - No comments
Imagine you have a Binary Tree, with those characteristics:
Nodes do not respect any order relation – In other words: it’s not a Binary Search Tree of any kind
Every node appears once and only once within the tree
A nice Binary Tree
Then, your little brother passes by your desk and, to upset you, deletes the tree from [...]
Serverless chat to reduce office distance
about 1 month ago - 6 comments
This idea comes out for an old university-time idea: to write a serverless chat application. Of course, I’m aware of the complications and the problems that using Broadcasting could create, so this problems would be took in consideration by design.
But why now? I was thinking of a way to reduce the “office distances”: making easy [...]
iPad Simulator in Video and Comments
about 1 month ago - No comments
I would have just posted it on Twitter, but I have some comments about this video.
One of the first video of the iPad Simulator
Watch it in Full screen at 720p: it help “feeling” the proportions used by Apple in the UI
It clarify how it does execute iPhone apps: they most probably implement the iPhone API [...]
“Bidirectionally multiplied” array
about 1 month ago - No comments
Another small problem before I go to sleep tonight:
There is an array A[N] of N numbers.
You have to compose an array Output[N] such that Output[i] will be equal
to multiplication of all the elements of A[N] except A[i].
For example Output[0] will be multiplication of A[1] to A[N-1] and Output[1]
will be multiplication of A[0] and from A[2] [...]
Use Backtracking to print all Subsets
about 1 month ago - No comments
I’m “studying” this algorithmic technique: Backtracking. This is an algorithmic approach to problem solution that I trust every good Computer Scientist already uses; but taking a good theo-practical look at it is something better.
A Backtracking Tree
I believe you can find enough informations about it online (the 2 links I provided are more than enough), so [...]
Money change problem: Greedy vs. Dyn.Pro.
about 1 month ago - 7 comments
This is a classical problem of Computer Science: it’s used to study both Greedy and Dynamic Programming algorithmic techniques.
I hate having my pocket full of copper!!! -_-
Definition
Given:
A set of n Denominations D[0...n-1] in ascending order, representing a Monetary Coin System
An money amount A, as input
calculate a solution:
S[0...n-1], with 0 <= S[i] <= (A/S[i]) and 0 [...]
Calculate abs(int) without branching
about 1 month ago - 4 comments
For this you need someone to teach it to you: if you made it yourself, then you are a very good Comp-Sci, and you should send your CV to Google ASAP.
Without branching O_o?
Yes, without using any “if ( a < 0 )…”. To do that, you need to refresh how Two’s Complement works, [...]
Pascal’s Triangle generator
about 1 month ago - No comments
What’s Pascal’s Triangle? That’s what it is (Wikipedia has all the theory, if you need).
Pascal’s Triangle first 6 rows
The thing I wrote here is a generator of the n-th row of the triangle, that doesn’t use more then the memory needed to store the solution. Instead of allocating a Triangular Matrix, and building every row [...]
String search in O(n + m)
about 2 months ago - 2 comments
Searching a string inside another string is a very easy task. Given a string A and a string B, start a loop over A from left to right and, for every letter, start an internal loop to see if there is a match with the letters of B.
A ball of string
Pseudo code would look something [...]
