Questions from students on VMWARE

Hi everyone

My name is Vaughan. I was wondering if someone could help me with something.

I was wondering how you are able to download vmware disk images hard as if they were the operating systems, for example, when I put on my PC, the system will ask me what image I want to load as if there where several operating systems on my computer. When I choose that it automatically opens the vmware software and the operating system that I have on this particular vmware image. I need a few images on my computer for studies and here to load all modules in my vmware on my computer and start my activities without having to install an operating system just to complete an activity, for example the module I'm right know is the network operating systems and is one of the images I need to load an image that will take me through the installation of Windows 2008 R2 of the next activities will be where I need an image of a Windows 2008 image pre-installed to make configurations on and then an image pre-installed Windows 7, set up the network for the windows 2008 Server and many more images like these, that's why I would like to set up a hard drive with preloaded images so when I turn on my PC I can then simply choose the picture that I need to work on. Is anyone able to guide me through this.

Kind regards

Vaughan Testa

When you create a virtual computer a number of files is created by including the configuration file that contains the information about the virtual machine and has an extension of. VMX and the virtual disk or disks which is where the virtual machine, including the operating system files are stored. Using the workstation you will start the virtual machine that is in charge of the virtual machine in memory, allowing him to start the form virtual disks - software Workstation will plan the physical memory, CPU usage, network between running VMs.

You can see Chapter 3 of http://pubs.vmware.com/workstation-11/topic/com.vmware.ICbase/PDF/ws11-getting-started.pdf for more information on virtual machines

Tags: VMware

Similar Questions

  • ERROR: Unknown error returned from Agent of VMware Converter

    I have a XP box with a few applications I want to do in a virtual machine.  I have ESXI free running with several local and virtual machines and the data of the network store.   I installed the converter version 4 and could not convert the PC, so I uninstalled and installed version 3 with the same results.  I have attached customer newspapers and converrter of the last run.  If I look at the process on the area of conversion and customer ESXI, I can briefly see the vm name pop up in the list, and then he disappeared when the error in the conversion box

    This is the output of the conversion

    15:16:33 step 1: connection to VMware Converter Agent on localhost

    15:16:33 step 2: creation of target virtual machine and the conversion of the data

    15:16:35 configuring the settings for the virtual machine target...

    15:16:37 WARNING: decline of additional parallel ports

    15:16:37 WARNING: fall of extra serial ports

    15:16:37 WARNING: down the audio device

    15:16:37 creation of virtual machine target...

    15:16:43 ERROR: unknown error returned from Agent of VMware Converter

    VMware Converter Agent logs are located on the local host to C:\WINDOWS\Temp\vmware-temp\vmware-converter*

    VMware Converter Client connects to this computer can be exported, or found in "C:\Documents and Settings\superuser\Local Settings\Temp\vmware-temp\vmware-client."

    VMware Converter logs is stored on a temporary basis and should be retrieved as soon as possible.

    Any ideas?

    PDK

    PDKNY,

    Welcome to the VMware Community Forums!

    > Root user authentication

    > Connected!

    > Using a specific location DataStore3 to disk: 0

    > Using the data store DataStore3 for VMX

    > Waiting for creation of the VM finish...

    > Waiting for a task to finish...

    > job [error] CreateVm failed: cannot access the file.

    You seem to be getting a failure when creating the virtual machine.  Converter 3 and 4 work the same way, that they submit the request for vCenter/ESX to create the virtual machine, as required.  I have seen where an initial conversion has failed once before or another conversion was at the same time, and we had to restart the running converter (Server source and converter) before the lock system was released on the data store.

    Kind regards

    EvilOne

    VMware vExpert 2009

    NOTE: If your question or problem has been resolved, please mark this thread as answered and awarded points accordingly.

  • Im a student, but take off the half next to an internship and the return of next fall. Can I still benefit from student price? (I'm not leaving the school system)

    Pretty self-explanatory title-

    Im a student but im jumping next semester for an internship in a studio (film student) and I really want to own these products go inside.

    Ill be back to school in the fall, but I'm not leaving the system or anything like that. Can I still benefit from student price?

    As much as I know (I don't work for Adobe) you must be a student when you buy, and then your subscription will continue for the period of one year

    But, you can contact Adobe about this

    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)<=== note="" days="" and="">

    Don't forget to stay signed with your Adobe ID before accessing the link below

    Creative cloud support (all creative cloud customer service problems)

    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

    Adobe in education... Start here https://creative.adobe.com/join/edu

    Educational https://creative.adobe.com/plans?plan=edu

    FAQ https://helpx.adobe.com/x-productkb/policy-pricing/education-faq.html

    When you purchase a subscription to education, the terms you "click to accept" should be clear about the first/last years

    -Intro price http://forums.adobe.com/thread/1448933?tstart=0 one can help

    http://www.Adobe.com/products/creativecloud/students.edu.html

    http://www.Adobe.com/education/students/student-eligibility-Guide.edu.html

    Redemption Code https://creative.adobe.com/educard

    Proof of ID http://www.adobe.com/store/au_edu/academic_id.html

  • Questions from the media on the report columns

    Hello

    I'm experimenting with questions from the media on the APEX components such as the columns on the report.

    I have an example that works, but I wonder if it's the best way to go about it.

    APEX media query example

    I applied the following CSS

    @media (orientation:portrait) {
      .landscape_only {display:none;}
    }
    @media (orientation:landscape) {
      .portrait_only {display:none;}
    }
    

    For components such as regions, buttons etc - I can apply "CSS Classes" attribute class to the component level.

    for example: I have applied the .portrait_only in the area of 'Code' in my example

    but for the columns in a report, I had to apply this jQuery on the page loading.

    $('th#HIREDATE, td[headers=HIREDATE]').addClass("landscape_only");
    

    If I applied to the class in the detail of the column that the data has been hidden when Guide to portrait - not the entire column.

    Are there more effective methods of enforcement of the class to the column?

    Reading articles like this lead me to think that way, but I don't know if APEX could be other solutions.

    5 tips for better jQuery selectors - SitePoint

    It becomes a little pain if I wanted to list a number of columns.

    I look forward to jQuery gurus ;-)

    Scott

    Rather than specify the classes at the level of the components and using jQuery when running, why not simply specify the items directly in the stylesheet?

    @media (orientation:portrait) {
      #P2_BUTTON2,
      th#HIREDATE, td[headers=HIREDATE]  {display: none;}
    }
    @media (orientation:landscape) {
      #P2_BUTTON1 {display: none;}
    }
    

    This seems to be a more effective approach that all orientation-based rules are easily visible and easy to manage in one place, rather than be dispersed through the definitions component and dynamic action.

  • Three Questions from beginner to Captivate 3

    Adobe Captivate 3.

    I have three questions from beginner to Adobe Captivate 3.

    1. I noticed that CP3 only creates SWF files.  Why not offer the possibility to create an FLV file in the final product?  What is the difference between a SWF file and a FLV?

    2. I want my finished product for a single slide with a picture in the background and some areas of reversal.  It seems that no matter what I do, the blade is not fixed, but faints and disappears after the default time of 3.3 seconds.  How can I achieve making the slide remains in place, not disappear, and behave as I want?

    3. I want to do a slide that has a video autoplay Flash on it (this part I know how to do), but I want the slide to move to another slide specified when the video ends, without user action.  How can I do?

    Thanks to anyone who can help me on these issues.

    Hello

    Doug chaplain wrote:

    Adobe Captivate 3.

    I have three questions from beginner to Adobe Captivate 3.

    1. I noticed that CP3 only creates SWF files.  Why not offer the possibility to create an FLV file in the final product?  What is the difference between a SWF file and a FLV?

    CP3 does not FLV because it was not part of the specification for CP3. I don't know why it is like that. Maybe the Captivate development team knows for sure. In any case, Captivate 5 was recently released. If the point is little questionable, right?

    Regarding the second part of this question, SWF can have interactivity such as bearings or clickable areas or buttons that perform different actions. FLV is usually just a video, just like a DVD movie that you watch passively, and you do not participate.

    2. I want my finished product for a single slide with a picture in the background and some areas of reversal.  It seems that no matter what I do, the blade is not fixed, but faints and disappears after the default time of 3.3 seconds.  How can I achieve making the slide remains in place, not disappear, and behave as I want.

    You can get there. Just insert a click box and time it so it suspends the slide at the right time.

    3. I want to do a slide that has a video autoplay Flash on it (this part I know how to do), but I want the slide to move to another slide specified when the video ends, without user action.  How can I do?

    So now you change course on us? You said to question 2 you want the finished product is a single slide! This is perhaps another project, you're talking about.

    If you examine the properties of the slide, you will discover a labeled area of Navigation. Using this box, you can choose to navigate to another slide when it finishes playing.

    See you soon... Rick

    Useful and practical links

    Captivate wish form/Bug report form

    Certified Adobe Captivate training

    SorcererStone blog

    Captivate eBooks

  • Display a summary of the student responses to questions from the quiz on a slide

    I tried to create a single slide that contains a summary of the responses of students to all the quiz questions by using the cpQuizInfoAnswerChoice system variable, custom variables and advanced actions. but failed. The main inhibitor this effort were the short-answer questions.

    Is it possible (in a later version of Adobe Captivate) a new system variable can be added to the cpQuizInfoAnswerResponse called?

    This variable could act similar to cpQuizInfoAnswerChoice but instead would encompass the real answer.

    Adding this variable would make it possible for us to enter any answer to question multiple choice or short answer in a user variable that subsequently can be displayed on a slide later in the course.

    I already know the feature of Captivate quiz review - I mean allows us to capture everything on a slide instead of using the review function.

    If you want such a feature, do not post in this forum, but file a feature request, please.

    Feature request/Bug Report Form

    As for the short answer question, please take a look at: Custom short answer Question - Captivate blog

    If the LMS supports getting the values of the variables, the interaction of text scrolling is a valid alternative to the short answer question.

  • Question about VCB and VMWare vSphere 4 Essentials

    Hello

    We have 2 virtual servers: one with ESXi35 (that has VMWare infrastructure Client 2.5) and the other with ESXi4 (which a vSphere Client 4). There is an offer to purchase of VMWare vSphere 4 Essentials to half the regular price and I wanted to know if this product allows me to backup (and possibly restore) virtual machines using VCB scripts.

    Thank you very much

    Concerning

    Carlos Negroni

    From this link, http://store.vmware.com/store/vmware/en_US/DisplayProductDetailsPage/productID.126843700 , it includes VCB so the answer to your question is Yes.  I remember got an e-mail that VCB is now end of life so that it is no longer that probably not available in the next version of ESX.

    If you have found this device or any other useful post please consider the use of buttons useful/correct to award points

  • Questions about student discount for CS6

    I know I want to get the premium Production CS6 from B & H, but just recently that I realized that my class of media production could possibly make me eligible for a discount for students. I have a few questions about get a student discount I've ever gotten before.

    My first question is: should I still pay the rest of the full price? Or, more important still, the student version will stop working after a period of time?

    My second and more important question is about installing on more than 1 PC. I am currently on my beast of a laptop. The iMac to my school with short CS6 smooth like butter, and it's spec lower than my laptop. Despite this, I plan to get a PC in the future office of Monster for my productions and I'm confused about my rights to installation with a copy of the student. I understand very well that I can't install it on the computer of another of Kathy; only on my own computer. He mentions (for teacher I guess) you will need to purchase additional licenses for installation on other computers. This means that when I buy a new computer, I need to buy a new license as well? Or I can use the one provided in the box?

    Any clarification on these questions would be appreciated. Thank you

    Your license does not expire and you never have to pay the price difference. You can install the suite on one type of computer, even if you have 2 activations. A series of PC does not work on Mac and vice versa. Only 2 PC installs will work or 2 Mac ones, respectively. The activations can be managed for in applications or by giving the customer a call to reset, if you their exhausted and forgot to turn it off.

    Mylenium

  • Can upgrade you XP to 7 with the upgrade of student in VMware?  I can't make it work...

    Hey guys,.

    I'm having a devil of a time with this... I have XP on the partition boot camp, as well as a computer virtual created from it.  I just purchased the upgrade to the Windows 7 home MS student, burned the ISO to a bootable disc, and now I'm stuck.  I have a MBP 13.3 (5.5) running Snow Leopard and VMware Fusion 3.  I tried to start my computer the DVD, only to have the installer of Windows 7 tell me that it doesn't have the correct drivers.  Well, then I start completely in Snow Leopard, open to the top of my bootcamp with merge partition and I can't seem to start from the DVD here, or in the virtual machine either.  So I'm stuck, what am I doing wrong / is there a way and it works?

    Thank you!

    Win 7 coming to be superimposed on a XP installation isn't a good idea.  You are better to destroy your Boot Camp partition and install a clean copy of 7, Ditto for a new virtual machine in Fusion.   Keep in mind Apple has not released the Boot Camp for Win 7 drivers yet, but the plan at the end of the year.

    For the installation of an upgrade disk, you can do this by entering is not your product key during the installation and the next article Paul Thurrot Clean install Windows 7 with upgrade media, if you have only one disk to upgrade you will need to interrupt the use of your XP machine by the upgrade license.

    If you want to import your settings from XP, background, bookmarks, desktop icons etc Fund this Microsoft Download: Windows Easy Transfer for transferring from Windows XP (32 bit) to Windows 7.

  • 8620 printer - fax receiving to questions from a private number

    Help a friend to me.  Recently bought a new JO Pro 8620 AiO

    He had Comcast - internet and phone 2 lines - 1 line is dedicated to... fax number when it receives a fax from a private number (it takes care of most of the schools are set up as private numbers)-he must manually accept the fax on the screen of the printer.  This parameter is missing on the fax configuration or if he chose so that it has more to do this... and that one receives fax anything?

    Hi GBrun,

    The answer you are looking for is "set auto answer."

    The process is mentioned on page 77 of the manual which can be found at http://h10032.www1.hp.com/ctg/Manual/c04204791.pdf

    You can also set the number of rings before answer (page 78).

    1 small question - is actually two different lines of your friend's phone line? or just a line with two phone numbers assigned? If you take a phone while the other is in use and you hear the converstion, it is a line with two phone numbers. If you do not, then it's two separate lines.

    If it's 1 line with two phone numbers, then you will also need to put a special (page 78 again) ringtone - in this way, the machine can recognize what line call and be able to pick up in time.

    Good luck!

    _______________

    I do NOT work for HP

  • Question from newbie GPIB on multiple devices

    Hello, I'll work on the reproduction of a test bench that communicates through GPIB. I've never worked with GPIB and I'm looking for a list of hardware to buy to reproduce this system and have a question. I'm having 2 GPIB devices, one on the address 9 address the other 22. One device is a voltmeter of HP and the other is a HP (3488 (A) switch unit. The old test bench has 2 GPIB cards for that but my question is should I really 2 GPIB cards to communicate with these 2 devices? From what I've read up to 15 devices can be connected on the same port, GPIB. Is how software should be written is different because of the Garland of devices?

    Hello

    GPIB addresses up to 15 devices and you don't need two gpib cards.

    Addresses of software always using an address, so the only thing you need to take care of is to assign different addresses to instruments and to ensure that all calls are sequential, not parallel because it's just a bus.

  • Quick question from a newbie

    I want to implement VOIP trunk between two fixed location. Location A is as B location is the work from home. There is a virtual private network between the two, they are on different subnets. I want to access the PSTN line to site B to Site A (home) (work) using VOIP. In other words, I want to use the PSTN to work for voice calls when I'm working from home.

    Can I install the SPA3102 to work and use SPA901 home. No SIP server comes directly from trunk between the two. In other Woods can I just "dial" the SPA3012 using the SPA901 and get the PSTN tone. No other device will not involve just point to point between these two.

    Is it possible, is it easy to implement?

    Thank you very much

    Peter

    I found the answer in the excellent "sandbox SPA3000 to save the document. It seems that this question was asked several times our apologies for those who discover VOIP it also well know what question to ask and what to actually look for!

    Anyway sort

  • Deleted question from the Forum?

    Is someone deleting messages from this forum?

    I asked a question on the backup of the computer and the question is no longer available?

    Markus

    Hello Huaraz,

    We will investigate the removal of the thread and I see that you have created a new thread here. I went with you on your question there as well.

  • FTP - open the site in question from the file Explorer.

    Hi all

    I am here today with a common question, which seems to have been answered several times, but none of the above worked for me.

    My problem is the following:

    • http://prntscr.com/39ebdv

    It's my current installation:

    • Ubuntu Server running 12.04 with installed ProFTPd.
    • Windows 7 computer (desktop) and laptop.
    • Windows File Explorer.

    Here's what I tested, and what are the results I get:

    On my two main computers, each running Windows 7, I get the image displayed above. (For those of you who cannot see the image, there are a stain on the bottom of this question). However, I tried it on two other computers in my LAN, and they work. I also tried on a computer in a different city, and it works. My FTP address is the following: "ftp://ftp.marshalldrive.ca" without the quotes.

    Here are some solutions I've tried:

    1. with the help of Internet Explorer (my current browser is Google Chrome), pressing 'Alt - view-> in the file Explorer view', I get the error displayed.

    2. turn off my firewall and my anti-virus, same results.

    3. go to the file Explorer Windows and in the address bar: "ftp://ftp.marshalldrive.ca" (without the quotes)

    4 import a registry that looks like this: http://prntscr.com/39ee2j (code shown below), using the above, didn't work.

    5. copy of the record of one of the other computers to work.

    6. release of Google Chrome and using IE.

    That's all.

    When you use the browser (IE, GC, PSC), I can type in ftp://ftp.marshalldrive.ca, and it works. However, it does not work when I try to display in the folder view. I get the above error.

    Why am I trying to do?

    -I know FileZilla exists and many others. I like the simple layout of the windows Explorer, and it is easier for the elderly to use to use F.Z. I also prefer not having to install anything and using the built-in module.

    IF anyone can help me I can help you in return. I am creating a file storage system, and I can give you free space on my server.

    No Image error:

    "Windows cannot access this folder. Make sure that you typed the filename correctly and that you are authorized to access the folder.

    Details:

    A connection with the server could not be established. »

    No Reg Code Image:

    "

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\ftp]
    "ShellFolder" = "{63da6ec0-2e98-11cf-8d82-444553540000}".
    'Source filter' = "{E436EBB6-524F-11CE-9F53-0020AF0BA770}".
    "URL Protocol"=""
    @= "URL: File Transfer Protocol.
    "AppUserModelID"="Microsoft.InternetExplorer.Default."
    "EditFlags" = dword:00200002
    'FriendlyTypeName"="@C:\\Windows\\System32\\ieframe.dll,-905 '.

    [HKEY_CLASSES_ROOT\ftp\DefaultIcon]
    @= "C:\\Windows\\System32\\url.dll,0".

    [HKEY_CLASSES_ROOT\ftp\shell]

    [HKEY_CLASSES_ROOT\ftp\shell\open]
    "CommandId"is"IE. Protocol ".

    [HKEY_CLASSES_ROOT\ftp\shell\open\command]
    "@="\"C:\\Program Files\\Internet Explorer\\iexplore.exe\" %1 ".
    "DelegateExecute" = "{17FE9752-0B5A-4665-84CD-569794602F5C}".

    "

    Hey Tyler,

    Please contact the Microsoft Community.

    I would have you post in TechNet for assistance more.

    http://social.technet.Microsoft.com/forums/en-us/home?category=w7itpro

    Let us know if you need anything else from us.

  • Questions from Newbie to Smartphones blackBerry re: BIS (but not a newbie to BB)

    I had BB phones since the 8320 came out.  Now have 9700.  I make use of BB intl e-mail when overseas.  (I think BB is in 90 countries - I have used it in at least 15).

    1. I'm not really well informed about all this.  All I know is that BB treats my email is transferred from gmail, Yahoo, etc.  I send my email in gmail (single company)...

    BB will continue this service for phones that work on OS 5, 6 and 7?  I think it has been discontinued on OS 10?

    2 suitable service BES a businessman solo who needs to manage the e-mail?  It would seem that maybe that's only for mega-companies.   Are there companies out there that would bundle small users together in order to access the BES?  (Is it possible.?)

    And finally, if small users will, in fact, to be cut utilities to BB - why should stay us (just 2 lines)?

    Suddenly cut Google Google Voice of all BB users last month.  Google Maps still work on everything but OS10 - but Google could cut that as well (although I doubt it because I think it's a money maker for them.)

    Except for the fact BB may be the last regulation. should w. a physical keyboard - only BB offer do not have Android or other systems of the OS?   Due to a slight hand tremor recently acquired - I need a physical keyboard.  I have trouble using a virtual keyboard.

    Thank you.

    miketha wrote:

    Just a follow-up question, if you don't mind.    TMobile (US), and I think that ATT offers unlimited e-mail for international travel to 67 cents per day.  This feature/option seems to disappear, we continue to use a phone with BIS.

    I have no idea... the companies control plans and the services that they have, and I found it quite impossible to make up the differences among the hundreds of carriers supporting the BB in the world. You ask them about it.

    miketha wrote:

    And thank you to confirm WHAT BES is suitable for large organizations.

    Is not at all what I said, and I do believe that it is true. Internal full BES, Yes, is oriented to companies that can achieve economies of scale. But there are services of BES-level (e.g., hosted) available pretty much anyone.

    Good luck!

Maybe you are looking for

  • How can I configure the default fonts or other in the Notes?

    I have a font for the body that does not correctly appear in the Notes window. I want to be able to change the fonts of header, title and body and may not know where to do it. Thanks in advance. Keith P.

  • Satellite P300-190 - can't find the stereo mix in the sound settings

    Hello Maybe this question is posted before, but I can't seem to turn on the stereo mix option in my sound settings.It simply isn't there. Does anyone know how to fix this? Or is it not possible.

  • tab control

    Hi guys,. I have a stupid problem, I have a tab of the strict data type control. where I have 3 tabs. I need to run 3 different data as acquisitions for example first tab indicates the Distance second tab shows strength Third tab shows the Position o

  • Not able to read the text file several times - Bug?

    I open the Refnum to a text file by starting my software and I'll keep the file open until the software works. I read a text file when an event occurs. The problem that I'm facing here is when I read that the file 1st time Lily can't read the text of

  • Certificates and Unified Wireless

    Hi people, I am currently deploy a unified wireless network and that you have run into a bit of a problem with certificates - unfortunately they aren't my specialist subject! We will deploy two wireless networks (comments and Corp comments) will be t