Oracle 9.2 Install on Operating System 2003

Hi colleague,
I have install oracle 9.2 on Windows 2003 release2 but i am facing problem in increase there some parameter which are following.
Buffer Cache from 24 to 48
large pool from 08 to 504
db_cache_size from 25165824 to 50331648
when i increase them occured errors ORA-02097 and ORA-00384
Above paramer working prperly Oracle database 9.2 on windows2000 server
Thanks in advance
Rahim
Message was edited by:
[email protected]

>
Buffer Cache from 24 to 48
large pool from 08 to 504
db_cache_size from 25165824 to 50331648
These number doesn't make much sense here.
How did you change them?
What's the current setting in your spfile or pfile?

Similar Messages

  • 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.

  • 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

  • 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

  • BOOT DEVICE NOT FOUND - PLEASE INSTALL AN OPERATING SYSTEM ON YOUR HARD DRIVE

    HP G6-2212SA LAPTOP ( 2 YEARS OLD) BLACK - WINDOWS 8
    I HAVE RUN THE MEMORY TEST PASSED
    RUN THE HARD DISK QUICK CHECK - PASSED
    RUN HARD DISK EXTENSIVE TEST - PASSED
    I HAVE BOUGHT A NEW HARD DRIVE, INSTALLED IT AND RUN ALL THE SAME TESTS WITH ALL THE SAME PASSED RESULTS. I BELIEVE THAT THE PROBLEM IS NOT THE HARD DRIVE, SO I HAVE TAKEN THE NEW ONE OUT AND PUT THE OLD ONE BACK IN, AND HOPEFULLY BE ABLE TO GET A REFUND IF I SEND IT BACK.
    I HAVE FOLL0WED INSTRUCTIONS ON THIS FORUM TRIED MOST THINGS STILL GET THE SAME MESSAGE.
    I HAVE BOUGHT A WINDOWS 8 RECOVERY DISK OFF EBAY, TRIED IT SEVERAL TIMES AND DIFFERENT WAYS BUT WILL NOT LOAD UP
    PLEASE HELP AND ADVISE AS IM IN A DELEMA
    DARREN

    Hi @Darren104
    Welcome to the HP Support Community. I saw your post regarding the Boot Device not Found error message. This HP document Resolve Boot Device not Found Error Message will show you how to reset your BIOS. This will force the BIOS the look at the hardware and it might see your new hard drive. Another reason that it might not be seeing the hard drive is because there is no bootable operating system on the hard drive. You might need to look at taking it out and installing an operating system on it via another computer.
    Please click “Accept as Solution ” if you feel my post solved your issue.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Thank you,
    BHK6
    I work on behalf of HP

  • Boot Device Not Found, Please install an operating system on your hard disk, Hard Disk (3FO)

    Hey
    i am having this Error Message "Boot Device Not Found, Please install an operating system on your hard disk, Hard Disk (3FO)", While UEFI mode is enabled from bois but in Raid menu Both my hard Drives 1TB and SSD are Showing and I run the  F2 System Diagnostics Test and it became as passed. In UEFI mode its not even showing my USB when i attach it for Window install But when i enabled the Leglacy mode it detteced my USB and also let me install my Windows and every thing seems to work fine. Updated the bios still Error is there.
    Error Message only shows up when I disable the Leglacy mode.
    So where is the Problem ? hard drive seems fine because these are working on Leglacy mode enabled.
    Laptop Model : HP Envy Dv6-7211tx
    Hard Drive : 1Tb and 32GB SSD

    Hi Saifullay, sorry to hear that you are having issue with your Envy Dv6-7211tx.  I have done some research and I have found a document that will assist you with this issues. Please click the link that I have provided to get to the document.   http://h10010.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01443463  
    If this does not resolve the issue, please feel free to write back . I would like to also apologize for the delay and the inconvenience that you have had to deal with.
    Thank you.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • "boot device not found. please install an operating system on your hard disk error on Dm3 1030us

    Hi
    I have the following computer:
    name: hp pavilion Dm3 1030us
    serial number: {Removed for privacy}
    product number: VM073UA#ABA
    when i boot up my laptop it says "boot device not found. please install an operating system on your hard disk."
    this laptop does not have a cd drive but I do have a external one. since it does not have a cd drive therefore they didnt give me a recovery cd.
    It had Windows 7 on it.
    Is there a way to get the issue resolved

    You would have to call in to HP tech support ( 1-800-HP-INVENT) and have them order you some RCD's.
    I work for HP.
    Please click the White Kudos star on the left to say thanks.
    Please mark Accept As Solution if this resolves your issue.

  • Will I need to download my adobe creative cloud apps again if I re-install my operating system?

    I have recently signed up to adobe creative cloud and am very pleased with the products. It took a while to download the apps (adobe photoshop, premiere, indesign, illustrator and adobe bridge. If I re-install my Operating system (windows 8) on my PC, will I need to download those apps again, or is there a way of saving them to a USB or DVD before I format the drive?
    I hope someone can advise me on this - thanks in advance
    Rob

    So am I right in thinking that there are no '.exe' files which I would be able to save on a USB, hard drive or DVD, rather than download them again?  - it seems like a lot of information to download and I am having to use mobile broadband at the moment. Is there a DVD which you might be able to supply me that I can use in the future?
    Downloading the trial of the master collection would presumably involve me downloading a massive amount of program data from adobe cloud, so I'm not sure if this would help. I really appreciate your suggestion and speedy response to my query. Please let me know if there is any other method that you could suggest. Kind regards
    Rob

  • Re-installing Adobe Lightroom with cd software after re-installing the operating system?

    i wiped my computer clean and re-installed the operating system on my macbook pro because it's old and i hadn't done it in a long time. now i'm putting all of my old software back onto the computer. everything else had no problem. adobe lightroom 2 will not let me re-install it and keeps giving me an error message, telling me to contact the software manufacturer. the cd is not damaged at all and i have the serial number for the software, etc... what's wrong? why can't i put it back on my computer? i've done this at least twice before and had no problems.

    What version of  Mac you are installing and what is the exact error message ?

  • Hello, I have a MacBook Pro from 2011 and I accidentally while playing around with it deleted everything off my hard drive and I need to know how I can re install an operating system. Would I have to download it.

    Someone please help me
    I'm not sure what I should do to re install an operating system would it be possible to install mavericks
    I don't have the operating system backed up

    That's not good. OS X Recovery requires a high speed broadband connection as noted here > About OS X Recovery
    Check your download speed here >  Speedtest.net - The Global Broadband Speed Test
    Message was edited by: CS

Maybe you are looking for