I want install dual operating system on my l

my laptop  G62237Tx    i want to install dual operating system this possible 1) windows 8 2)windows server 2008 R2
can you help out please reply 

Hello chaitrali,
I understand that you want to dual boot your system.
Here is a link that will walk you through the steps to dual boot windows 8 and windows server.
Let me know how everything goes.

Similar Messages

  • If I buy a new macbook with Apple, will they help me install a dual operating system?

    I've heard Bootcamp does this, but I've never owned a Mac before, and am daunted by the change. I would love a Mac for ease of use, as many of my friends seem to love it, but for school purposes, my PC laptop is better. My PC needs to be updated, though, and I really want to spring for the Mac, I just don't want to lose being able to not have to do my homework in a computer lab. A friend has dual operating systems on hers, and says it works beautifully for running both, though I don't know what macbook she's got. If I go to an Apple store and get a laptop from them, even bring the Windows 7 operating system (I'm NOT doing Windows 8), will they help do this for me? Does anyone know if it is alright to have the dual systems, or if it takes away from the hardware's ability to work? ANY advice is welcome.

    It  is not hard. Boot Camp allows running Windows natively, same as on a laptop PC would be with a few differences in fan and thermal control and drivers.
    Once installed natively which would be dual-boot setup, you can then install and use VMware or Parallels to assign the Windows partition for use as a VM inside OS X, no more need to dual boot unless you want to.
    All of the information can be printed out from Boot Camp Assistant utility, or from the support help page and link to the manual:
    http://www.apple.com/support/bootcamp
      Paragon CampTune is a commercial product that is designed expressly for this task. http://www.paragon-software.com/home/camptune/ It consists of a downloadable ISO that needs to be burned to a disc and booted from in order to resize the partitions costs US$19.95.
    Mac 101: Using Windows on your Mac via Boot Camp
    https://support.apple.com/kb/HT1461
    http://www.apple.com/support/bootcamp/
    Helpful Apple Support Resources (Forum Overview)
    Boot Camp Support 
    Boot Camp Manuals
    Frequently asked question
    http://support.apple.com/kb/HT4818
    Older Lion version for the manual:
    http://manuals.info.apple.com/en_US/boot_camp_install-setup_10.7.pdf

  • If I have installed an operating system in one language and I want to change to another language how to do?

    If I have installed an operating system in one language and I want to change to another language how to do?

    I mean I can change the system language without having to erase me things in my MAC?

  • I want to know can i install 3 Operating systems (Windows 7, Linux or OSX) on Macbook ?

    I want to know can i install 3 Operating systems (Windows 7, Linux or OSX) on Macbook ?

    Impossible to use a diferent processor than what the motherboard and socket supports, whether notebook (yours) or workstation (this forum).
    http://www.apple.com/support/macbookpro

  • How can i re-install the operating system without deleting my files on the computer

    I'm Trying to re-install the operating system on my macbook, and i dont know, if i can only re-install the OS without deleting the Data on the computer.

    If the Snow Leopard version on your Snow Leopard DVD is lower than the Snow Leopard version on your computer, you will NOT in any case be able to re-install the OS the way you want it. You will only be able to erase your disk and then reinstall the OS.
    It will only "upgrade" and keep your files if the Mac OS X version of your Snow Leopard DVD is newer than the Snow Leopard version on your computer.

  • Installing Multiple Operating Systems with grub and Arch Linux

    NOTE: Please keep in mind that there are many different ways to achieve this same result using various loop and ramdisk methods, read this with a separate window to jot down your comments and suggestions... this is ongoing for me so any help would be appreciated!
    Read the full article at Install Multiple Os without cds
    This is my first post and I plan on making this topic an official HOWTO with www.tldp.org.
    I have been into the computer security scene since 1990, but I realized that I had very little experience with the various LInux, Unix, and alternative Operating systems out there.
    I have a CD-RW drive but being a struggling computer security researcher I had no money for blank cd-recordables.  What follows is how I managed to install various operating systems on my computer (1 hard drive) without having to burn to a CD the ISO and then boot from that.
    I first partitioned my 120GB harddrive into 10 partitions, the 2nd partition is a small swap and the last partition is extra large because it holds all the ISO images..
    I then wrote a small shell script to automatically download (I love wget!)  the following.
    OpenBSD
    IpCOP
    Libranet
    Arch-Linux
    Fire
    Local Area Security
    Packet Master
    Devil-Linux
    FreeBSD
    Knoppix
    Helix
    Gentoo
    Yoper-Linux
    NetBSD
    RedHat
    Slackware
    The script also downloaded Installation manuals and md5 checksums.. (let me know if I should post... its pretty unsophisticated
    I installed Slackware (personal favorite) on hda1 using my last blank CD-R, note that I do not have a separate boot partitino.  (Should I?).  I also installed grub on the MBR.  I love grub, if you read through the man pages and all info you can find about grub, you can learn a whole lot.  Grub has much more features and capability than lilo, even though lilo comes installed by default with slack.
    I organize my kernel situation as follows...  In my /boot directory, I mkdir KERNEL, CONFIG, MAP, INITRD and that is a good way for me to keep my kernels and everything organized..  Another good way is a separate dir for each new kernel. 
    Since Arch-Linux is a solid distro, I'll use that as a first example.
    Here is the Arch-Linux section of my shell script
    goge Arch-Linux
    $w http://puzzle.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.iso
    $w http://unc.dl.sourceforge.net/sourceforge/archlinux/arch-0.6.md5sum
    $w http://www.archlinux.org/docs/en/guide/install/arch-install-guide.html
    md55
    cat arch-0.6.md5sum
    md5sum arch-0.6.iso
    md55
    The first thing to do is to mount the downloaded ISO image so we can use it as if it were an actual CD.
    mount -t iso9660 -o ro,loop=/dev/loop0 cdimage /mnt/cdrom
    Where cdimage= the ISO image.   EX. /usr/local/src/ISO/Linux/Arch-Linux/arch-0.6.iso
    This mounts the iso as /mnt/cdrom.
    Next you need to copy /mnt/cdrom to a separate partition for the booting process.  So mkfs.ext2 /dev/hda9.  ( I prefer reiserfs or even XFS to ext but if you use something other than ext2 you could run into some problems because some of the installation kernels and initrds don't include support for reiserfs and so can't recognize the files.  Although you could use mkinitrd to create a new initrd with reiserfs support, that might be pushin it IMO...   I use the 9th partition consistently for this.  I know there is a "right" way to copy the /mnt/cdrom files so everything stays the way it is supposed too, using tar or cpio, but I'm lazy so I just do cp -rp.   
    (What is the tar or cpio commands to copy with correct permissions etc??)
    So you mount the 9th partition as whatever, say /mnt/hd and then copy the files.  Now what?
    Now edit your /boot/grub/menu.lst file to include the specific options to boot arch-linux installation. 
    A good idea is to find the isolinux.cfg file somewhere on the distro cd, this will tell you what to include in the menu.lst.
    Here is the section in my menu.lst
    title Arch Install
    root (hd0,8)
    kernel /isolinux/vmlinuz load_ramdisk=1 prompt_ramdisk=0 root=/dev/rd/0
    initrd=/isolinux/initrd.img
    This should be self-explanatory.  The root (hd0,8) is pointing to partition 9.  So the rest of the commands start from partition 9. 
    When you experience problems, remember you can always edit the grub boot options by typing 'e' and then edit the section.  Also, a good idea is to include several variations in your menu.lst so you can easily try other ways to boot efficiently.  And, remember to read up on all the installation guides that come with your distro, specifically, hard-disk installs. 
    There are special cases, Gentoo, has a semi-new compressed filesystem called squashfs.  BTW, this is AWESOME, so check it out.  It has to be compiled into the kernel, so some work is in order, but use this recompile to optimize your kernel.  You can get the squashfs patch for almost any kernel.  I use the latest stable 2.6 kernel.  Squashfs is incredible and although I don't think you need it to install from ISO, you do need it to expand the livecd.squashfs filesystem that comes with the cd.
    Heres a sample Gentoo section from my menu.lst
    title Gentoo Install
    root (hd0,8)
    kernel /isolinux/gentoo root=/dev/ram0
    initrd=/isolinux/gentoo.igz init=/linuxrc acpi=off looptype=squashfs loop=/livecd.squashfs cdroot vga=791 splash=silent
    A nother' tip is the shell that is provided if you experience problems, typically busybox or ash.  The key tools to get you going from here is mount and chroot.  Sometimes you will need to manually create a simulated file system and then chroot into it.  For instance, you might have to create boot, etc, bin, directories on the target partition. 
    I generally install each OS onto the next partition (careful of the logical partition) and add it to my menu.lst after install.  A good idea is after installation, copy the kernel and initrd(if there is one) to the slackware(or whatever) boot partition on hda1.  I copy kernels to /boot/KERNEL/ and initrd's to /boot/INITRD, then menu.lst is more organized...
    You then need to add an updated section to your menu.lst (just comment out the install section for later)
    Here is the finished arch-linux section from menu.lst
    title Arch Linux 6
    root (hd0,2)
    kernel /boot/vmlinuz26 ro root=/dev/hdc3
    This doesn't use my convenient boot/KERNEL/vmlinuz26 as you can tell by setting the root to partition 3.
    ***NOTE: Make a backup of MBR using dd and save to floppy, also backup the partition table to floppy, using cfdisk or parted.  And boot disks (I use 1 with grub, and 1 with slack, and tomsbootdisk) will invariably come in handy.  Tomsbootdisk is recommended, and make the grub boot disk when you install grub.  install to floppy.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    The final result after some fun experimenting, is when I boot, I have a cool grub boot screen come up with the option to boot into whatever OS I want, this is handy for multiple reasons.  One good thing to do after this is to port scan and vuln scan each OS, after you update of course.  Write this stuff down and you will know the weaknesses/strengths of the various OS's. 
    I can boot a custom Firewall, snort, or multiple honeypots using this procedure, as well as a graphical kde environment with a kernel optimized for graphics and my processor/architecture, or an environment devoted to forensics or even an environment suitable for programming.
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    P.S. Some of the cooler alternative operating systems are BeOS 5, EOS, ER_OS, V2_OS, and my personal favorite Menuet.  Menuet is 100% assembly graphical operating system that fits on a floppy.  Its f'in money!
    This should be a good enough example to get you started, this kind of thing should be learned and not just copied... Knowing how to do this stuff could prove to be exceptionally useful...

    Start by reading all the articles built-in on your Mac - Help > Mac Help, search "printer sharing."
    http://desk.stinkpot.org:8080/tricks/index.php/2008/04/how-to-print-to-a-cups-se rver-from-mac-os-x/
    http://www.macosxhints.com/article.php?story=20080324224027152&query=share%2Bpri nter
    http://members.cox.net/18james/osxprintersharing.html
    http://ubuntuforums.org/archive/index.php/t-56940.html

  • How do I re-install the operating system on my BlackBerry Torch 9800 - I am sure it is hacked.

    Greetings,
    Can someone point me to instructions on how to re-install the operating system on a BlackBerry Torch 9800 and then upgrade it to the latest release?
    I have done this several times in the past, due to recurring hacking, but have lost the instructions. 
    Thank you very much for your help.
    Regards,
    Jean-Pierre
    P.S. I would preffer a releas of the OS without any pre-install applicaitons such as Twitter, Facebook, LinkedIn, 
            and above all, Whastapp. Thank you.

    Hi and Welcome to the Community!
    The simplest way is to, on a PC (you cannot do this on MAC):
    1) Make sure you have a current and complete backup of your BB...you can find complete instructions via the link in my auto-sig below.
    2) Uninstall, from your PC, any BB OS packages
    3) Make sure you have the BB Desktop Software already installed
    http://us.blackberry.com/software/desktop.html
    4) Download and install, to your PC, the BB OS package you desire:
    http://us.blackberry.com/support/downloads/downloa​d_sites.jsp
    It is sorted first by carrier -- so if all you want are the OS levels your carrier supports, your search will be quick. However, some carriers are much slower than others to release updates. To truly seek out the most up-to-date OS package for your BB, you must dig through and find all carriers that support your specific model BB, and then compare the OS levels that they support.
    5) Delete, on your PC, all copies of VENDOR.XML...there will be at least one, and perhaps 2, and they will be located in or similarly to (it changes based on your Windows version) these folders:
    C:\Program Files (x86)\Common Files\Research In Motion\AppLoader
    C:\Users\(your Windows UserName)\AppData\Roaming\Research In Motion\BlackBerry\Loader XML
    6a) For changing your installed BB OS level (upgrade or downgrade), you can launch the Desktop Software and connect your BB...the software should offer you the OS package you installed to your PC.
    6b) Or, for reloading your currently installed BB OS level as well as for changing it, bypass the Desktop Software and use LOADER.EXE directly, by proceeding to step 2 in this process:
    http://supportforums.blackberry.com/t5/BlackBerry-​Device-Software/How-To-Reload-Your-Operating-Syste​...
    Note that while written for "reload" and the Storm, it can be used to upgrade, downgrade, or reload any BB device model -- it all depends on the OS package you download and install to your PC.
    If, during the processes of 6a or 6b, your BB presents a "507" error, simply unplug the USB cord from the BB and re-insert it...don't do anything else...this should allow the install to continue.
    If you are on MAC, you are limited to only your carriers sanctioned OS packages...but can still use any levels that they currently sanction. See this procedure:
    KB19915How to perform a clean reload of BlackBerry smartphone application software using BlackBerry Desktop Software
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Instalation of operating system

    I've been given a mac G4 400Hz, everything is in german, and I'd like to instal the operating system in english. I really don't know how to start, can I "format" everything like in a PC and instal afterwards the new operating system? Can somebody give a clue on how to do it? thank you

    Hi, davi -
    Welcome to Apple's Discussions,
    If you do not want to retain anything that's now on the hard drive, then yes, reformatting the drive would be the thing to do. In fact, deep-wiping the drive using the low-level or zero-all-data options (whichever is available) would be best. Note that using zer-all-data will take a while, about one hour per each 10GB of drive size.
    You can do that to the the drive while booted to an OS 9 Install CD, using Frive Setup drom the Utilities folder on the CD. Best would be to use a retail OS 9.1 or OS 9.2.1 Install CD - those have current versions of Drive Setup, one which does not contain a defect that earlier versions had.
    You should select Mac OS Extended as the format for the drive, when asked.
    This article can help in doing the above - Using Drive Setup
    In order to change the language to English you will need to acquire a retail OS 9 Install CD in English; OS 9 Install CDs come with only one OS language version per CD.
    A G4 400MHz model can be one of three models - G4 (PCI); G4 (AGP); or G4 (Gigabit Ethernet). This Apple KBase article can help distinguish one from the other -
    Article #58418 - Power Mac G4: How to Differentiate Between Models
    The G4 (PCI) and G4 (AGP) models can use a retail OS 9.0.4 or later Install CD; a G4 (GE) model can not use that disk, but it can use a retail OS 9.1 or later Install CD.
    You can often get retail OS 9.1 or 9.2.1 Install CD's in English at sites like these -
    http://store.yahoo.com/hardcoremac/index.html - Apple Reseller
    http://www.applerescue.com/
    If you are in Europe, you may be able to get such a CD in International English at similar sites in the UK.
    EBay is another possibility.
    Regardless of the source, be sure to get a retail OS 9 Install CD - those are white, with a large gold 9 on them; the retail OS 9 Install CD's have a universal installer; model-specific Install CD's do not.
    Once the OS has been installed, it can be updated using download updaters from Apple's website.
    In case you need the updaters (note that there are separate downloads for North American English and International English - the download must match the language of the installed OS) -
    Article #75103 - Mac OS 9.1 - Download and Info
    Article #120030 - Mac OS 9.2.1 - Download and Info
    Article #75186 - Mac OS 9.2.2 - Download and Info
    Using an OS 9 Install CD is easy.
    • Boot the machine to the CD - to do that, with the CD in the drive restart or boot, then immediately hold the C key down, keep it held down until the machine has started to boot to the CD - it can take a few minutes.
    • Redo the drive as needed, using Drive Setup.
    • Install the OS. To do that, double-click the item Mac OS Install on the CD. Follow the prompts - a standard install of the OS should be fine.
    • Once the installation of the OS is finished, test boot to it. To do that, open the Startup Disk control panel (Apple manu > Control Panels > Startup Disk), make sure the OS on the hard drive has been selected, then restart.
    Note - retail OS 9 Install CDs do not include much in the way of usable programs. They do include a couple of choices of browsers and some other utility programs, including SimpleText, a basic text reader program. However, they do not include upper-end word processing programs, graphics apps, etc.

  • Solaris 10 dual Operating system

    I have computer has windows operating system, and I want to install Solaris on one of partition,
    I don't have only one hardisk.
    any one can please help me about that
    thanks,

    I can't recommend this strongly enough: get a removable hard drive tray that fits in any 5-1/4" bay. You then can put a different hard drive in each tray and cold swap them whenever you want to change operating systems. It will add at most 10 seconds to the process of rebooting and allows your operating system to be on completely independent drives.
    Want to boot Solaris? Shut down, slide out the Windows drive, slide in the Solaris drive, power on.
    Want to reinstall the operating system? Just go ahead. The boot drive is its own, so there's no need to worry about the "other" partition.
    A kit to do this (assuming that you have two available boot drives) costs about $40 total (one bay and two drive trays) depending on the brand and it eliminates the need for a partition manager entirely. I have this on three of my PCs and it's a god-send for running multiple operating systems, or even multple instances of the same operating system.

  • After bios update, will not boot, says install an operating system

    I have a amd hp 2000 notebook. i replaced the hard drive with an ss drive, windows 7.  been working fine until the bios update, I bleieve, which lost the boot up parameters. how do I get it to boot. hard drive works well in another system so not that. getting the usual message, boot dvice not found, install an operating system, F2 diagnostics all pass. Hard disk (3F0) message
    should one revert to earlier bios, usually not recommended. bios version 45 it says, so not sure the latest.

    jwess wrote:
    I have a amd hp 2000 notebook. i replaced the hard drive with an ss drive, windows 7.  been working fine until the bios update, I bleieve, which lost the boot up parameters. how do I get it to boot. hard drive works well in another system so not that. getting the usual message, boot dvice not found, install an operating system, F2 diagnostics all pass. Hard disk (3F0) message
    should one revert to earlier bios, usually not recommended. bios version 45 it says, so not sure the latest.

  • VMWARE Server2012RT Installation failed with option: I will install the Operating System later

    Hello, first sorry for my englich but I hope it wille ok for this Issue.
    I have instelled the Win2012RT Server in VMware but the Installtion failed with this error:
    Ok i chose the option: "I will install the Operating System later.",
    and also tried
    this:
    http://www.techieshelp.com/server-2012-windows-cannot-read-the-setting-from-the-unattend-answer-file/ 
    However, I always get
    this displayed:
    Last Log entry is this one:
    2014-05-07T09:42:03.962+02:00| vmplayer| I120: VMMgr: Finished opening VM at /vm/#cf2324dcf779001d/ from G:\VMs\Server2012RTVmware.vmx
    2014-05-07T09:42:03.962+02:00| vmplayer| I120: cui::MKSScreenWindowCoordinator::HandleGuestTopologyChange: main UI rect: 687x619 @ 948,249
    2014-05-07T09:42:03.962+02:00| vmplayer| I120: cui::MKSScreenWindowCoordinator::HandleGuestTopologyChange: Found 0 present screens
    2014-05-07T09:42:03.962+02:00| vmplayer| I120: cui::MKSScreenWindowCoordinator::HandleGuestTopologyChange: Windows for extra guest monitors will not be shown
    2014-05-07T09:42:03.962+02:00| vmplayer| I120: cui::MKSScreenWindowCoordinator::HandleGuestTopologyChange: setting main view to all displays
    2014-05-07T09:42:03.978+02:00| vmplayer| I120: SnapshotTree: Emitting refresh (G:\VMs\Server2012RTVmware.vmx)
    2014-05-07T09:42:04.009+02:00| vmplayer| I120: VMHSVMCbPower: G:\VMs\Server2012RTVmware.vmx, Setting state of VM to powerOn with option soft
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: Stats VMX "G:\Programme2tePlatte\vmware-vmx-stats.exe" not found.  Using standard VMX "G:\Programme2tePlatte\x64\vmware-vmx.exe"
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: Starting vmx as G:\Programme2tePlatte\x64\vmware-vmx.exe
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: Starting vmx as G:\Programme2tePlatte\x64\vmware-vmx.exe
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: VigorClient_StartAndConnect Failed: Message
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: G:\VMs\Server2012RTVmware.vmx: Pending power op found, completing.
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: G:\VMs\Server2012RTVmware.vmx: Clearing execReqPath
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: G:\VMs\Server2012RTVmware.vmx: Reloading config state.
    2014-05-07T09:42:04.024+02:00| vmplayer| I120: VMHS: Transitioned vmx/execState/val to poweredOff
    2014-05-07T09:42:04.040+02:00| vmplayer| I120: G:\VMs\Server2012RTVmware.vmx: VMHSStartVmxVigorCb: vmPath=/vm/#cf2324dcf779001d/ status=error
    2014-05-07T09:42:04.040+02:00| vmplayer| I120: G:\VMs\Server2012RTVmware.vmx: Reloading config state.
    2014-05-07T09:42:04.040+02:00| vmplayer| I120: VMHS: Transitioned vmx/execState/val to poweredOff
    2014-05-07T09:42:04.040+02:00| vmplayer| I120: Setting power state poweredOff
    2014-05-07T09:42:04.056+02:00| vmplayer| I120: Internal VMDB error: VMDB failure (-1)
    2014-05-07T09:42:04.056+02:00| vmplayer| I120: VMMgr::CloseVM: closing VM at /vm/#cf2324dcf779001d/
    2014-05-07T09:42:04.056+02:00| vmplayer| I120: DlgUI: Error while powering on: Internal error.
    2014-05-07T09:42:04.087+02:00| vmplayer| I120: VMMgr::OnVMDestroyed: cleaning up after destroyed VM at /vm/#cf2324dcf779001d/
    2014-05-07T09:42:04.087+02:00| vmplayer| I120: cui::MKS::SetAttached: detach
    2014-05-07T09:42:04.087+02:00| vmplayer| I120: cui::MKS::OnSetAttachedCompleted
    2014-05-07T09:42:04.118+02:00| vmplayer| I120: FILE: FileDeletionRetry: Non-retriable error encountered (C:\Users\Michael\AppData\Roaming\VMware\preferences.ini~): Unknown error 2 (0x2) (2)
    2014-05-07T09:42:07.488+02:00| vmplayer| I120: PlayerFrame::UpdateActivePlayer: mActive=1
    2014-05-07T09:42:09.874+02:00| vmplayer| I120: PlayerFrame::UpdateActivePlayer: mActive=0
    2014-05-07T09:44:13.286+02:00| vmplayer| I120: PlayerFrame::UpdateActivePlayer: mActive=1
    2014-05-07T09:44:13.473+02:00| vmplayer| I120: Cmd /host2/#_client/util/file/cmd/##135/op/stat/ failed: Invalid path
    2014-05-07T09:44:17.061+02:00| vmplayer| I120: PlayerFrame::UpdateActivePlayer: mActive=0
    Does anyone have
    an idea maybe??
    Vmware Version is: 6.0.2 build-1744117
    Host: Windows 7 Enterprise, 64-bit 6.1.7601, Service Pack 1
    WIN2012RT Iso is: 9600.17050.WINBLUE_REFRESH.140317-1640_X64FRE_SERVER_EVAL_DE-DE-IR3_SSS_X64FREE_DE-DE_DV9.ISO DOWNLOAD: http://technet.microsoft.com/de-de/evalcenter/dn205286.aspx

    Ok. I could finde out the Problem.
    I uninstalled VMware witht RevoUninstaller and deleted all Vmware sysfolders and all regKeys.
    Important note:
    The first Installtion was on the 2nd Hard disk on my PC. These Harddisk was Connected via USB3 Port. VMware was successfully installed, and via the standart installation procedure the ISO files could be installed in Vmware, but the problem persist with
    WIN2012RT server.
    After a new installation of VMware into the Local C: Drive. The Win2012RT.Iso could be installed. With this procedure
    without Issues: http://www.techieshelp.com/server-2012-windows-cannot-read-the-setting-from-the-unattend-answer-file/
    ISO Download: http://technet.microsoft.com/de-de/evalcenter/dn205286.aspx

  • Boot device not found - Please install an operating system on your hard disk

    Trying to boot up this morning gave this error message:
    "Boot device not found
    Please install an operating system on your hard disk
    Hard Disk <3F0>
    F2  System Diagnostics"
    Pressing F2 brings up to  the "HP PC Hardware Diagnostics UEFI" page, where its shown:
    "Version 1.6.0.0 - BIOS
    Fore more info please visit www. ... ...
    Memory Test
    Hard Drive Check
    Language
    Exit"
    Tryied the HD check but it says:
    "SMART Check : Not installed
    Short DST : Not installed
    More details:
    No bios upgrade was made, never, only a big updating of Windows yesterday.
    Could someone kindely help me out please?
    Thanks, Perry G.

    Hi,
              The above error message shows that the Hard disk drive is failed on your unit. You have to replace the Hard disk drive and reinstall the OS.
    To order parts click the below link
    https://h20141.www2.hp.com/Hpparts/Default.aspx?mscssid=FA59F7C7DCAC4237B498C91D0507A761
    To order Recovery disk click below link
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=bph07143&cc=us&dlc=en&lc=en
    "I work for HP."
    Please click the "White Kudos" star to say thanks for helping.
    Please mark "Accept As Solution" if my help has solved your problem.

  • HP Pavilion dv-4087CL Notebook receiving : Boot Device Not Found-Please install an operating system

    My Duaghter is out of the country studing abroad.  Her PC would no longer boot up so she took it to a support shop. They replaced her hard drive, fixed an over heating issue and reloaded her PC.  Now she is getting this new error message and she is desparate to get this fixed.  We have owned this PC for only 2 years. I am sure it is out of support.
    HP Pavilion dv-4087CL Notebook receiving : Boot Device Not Found-Please install an operating system on your hard disk.
    She took it back to the support shop and they upgraded her bios, but that did not fix the error message.
    Please help!  What can she do  now.

    Hi:
    Normally that means the hard drive failed.
    I know it was replaced but maybe the replacement drive went out too.
    There is a hard drive diagostics tool your daughter can run in the BIOS.
    I suggest she run it (enter the BIOS by tapping the F10 key as soon as she sees the HP welcome screen).
    Then once in the BIOS, there should be a diagnostics menu..one for memory and one for the hard drive.
    She should select the hard drive diagnostics application and see what it reports.
    Then go from there based on what is reported.
    Paul

  • My lap top says boot device not found please install an operating system on your hard disk

    I was on yahoo and page froze. I hit alt/ctrl/delete and nothing happened. I then hit ctrl/esc. I now have a screen saying boot device not found. please install an operating system on your hard disk. hard disk (3FO) What did I do wrong? this is a Compaq presario CQ56-112 NR Notebook Windows 7
    This question was solved.
    View Solution.

    I would suggest going to the following link and going through the listed troubleshooting steps based on your symptoms:
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01443371&cc=ad&dlc=en&lc=en&jumpid=reg_r1002_us​...
    I am an HP employee.
    Please post rather than sending a Private Message. It's good for the community and I might not be able to get back quickly.- Thank you.
    Please click the White Kudos star on the left to say thanks.
    Please mark Accept As Solution if this resolves your issue.

  • My screen says boot device not found. Please install an operating system on hard drive,

    My screen says boot device not found. Please install an operating system on hard drive. What could have caused this problem? Help!!!!!

    Hi,
    Can you post back with the following.
    1.  The full Model No. and Product No. of the notebook - see Here for a further explanation.
    2.  The full version of the operating system you are using ( ie Windows 7 32bit ).
    3.  Shut down the notebook.  Tap away at f10 as you start the notebook to enter the bios menu.  Under the Advanced or Diagnostic tab you should find the facility to run a test on the Hard Drive.  Post back with the details of any error messages.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

Maybe you are looking for

  • String not flushing

    I am reading in several urls from the console and writing them to a text file, however when i view the file i have several copies of data, i dont think i am flushing the writter correctly. Here is the code snippett. while(i!=0){                  Syst

  • Authentication on 3750 against ACS

    After making AAA changes on the catalyst 3750 the key configuration part was missed and the login attempt on the switch is getting failed now. There are no logs in the "failed attempts" on the ACS. What is the solution now?

  • Simple Question abbout email/submit

    I'm so embarrased about asking this but I've only just started to learn Adobe Designer 7. I' m learning through the Livecylcle  Designer Help before I start purchasing books. I'm learning and creating ok but the 'Submit' button is nagging me in the b

  • ITunes won't let me down load

    I bought a couple of song straight from iTunes off my phone and this time they only went to my purchased list not into my music so when I tried to put them in my music it says that my phone is only associated with one iTunes account try again in 87 d

  • Where I can find more software for isight?

    I'm looking for more software like funbooth...etc. Do you have any suggest? Thanks