Follow up bulkload with Cygwin question

Following the advice of a previous post, I installed Cygwin to run the bulkload tools. I am confused now how the bulkload script will know where my OracleHome is (since is doesn't recognise the c:\ drive, just /home). Do I have to reinstal my oracle software inside the Cygwin directory structure?
Thanks a lot,
Keith

Set ORACLE_HOME in the profile file under /etc
ex. export ORACLE_HOME=c:/oracle/<ORACLE_HOME>
You can change to any window directory by typing cd <some dir>
ex. cd c:
This will take you to /cygdrive/c which is an alias for your c directory.
type ls and you will see all directories under c:
/Hans

Similar Messages

  • TS1440 I followed all of the directions after seeing that my laptop flashed the folder with the question mark. But when I went to disk utility to repair/ verify issues w/ start up disk it would not allow me to.button to repair/verify is there but cant be

    I followed all of the directions after seeing that my laptop flashed the folder with the question mark. But when I went to disk utility to repair/ verify issues w/ start up disk it would not allow me to. The buttons to repair and modify we're there but they were grey and couldn't be pressed.

    Were you trying to repair the disk you were booted from? You can't do that - you need to boot from your install disk, and choose 'Disk Utility' from the 'install' menu.

  • So i have a 2011 MacBook Pro and when i turned it on this morning a flashing folder came on with a question mark in the middle of it and it keeps flashing. So i tried googling any solutions and up so far nothing has worked. Please Help ?

    I tried googling several solutions, but so far nothing seems to work. Everytime i start up my laptop i press CMND+R to make it go to the repair disk utility but instead it takes me as if i have to install lion when i had Snow Leopard 10.6.8. When i do go to the repair disk utility, on the eft hand side shows two hardrives one is Untitled and another is Hitachi, i tried downloading snow leopard 10.6.8 onto a Re-writable disc  using my windows computer. When i insterted it onto the disc drive it came out under SUPER DRIVE and everytime i double click on the CD it says something about attaching images/ I also forgot to mention that the MAC OSX 10.6.8 Update shows on the left hand side on the bottom in DMG format. I dont know what else to do, please help?

    DestroyGalaxies wrote:
    a flashing folder came on with a question mark in the middle of it
    This is the firmware telling you it can't find a bootable OS X volume.
    Usually to solve this all you do is hold the option key down on the built in keyboard while booting the computer, this enters Startup Manager and then you choose OS X to boot, then in System Preferences > Startup Disk you change it to the boot volume and it tells the firmware.
    Everytime i start up my laptop i press CMND+R to make it go to the repair disk utility but instead it takes me as if i have to install lion when i had Snow Leopard 10.6.8.
    What you have is a 10.7 or 10.8 Recovery HD from when 10.7 or 10. was on the machine previously.
    The Macintosh HD partition only was erased and 10.6 installed on it, without erasing the entire drive like what should have occured to remove the Recovery HD partition.
    So you have a mucked up machine.
    i tried downloading snow leopard 10.6.8 onto a Re-writable disc  using my windows computer.
    Well there goes your problem there, your downloading illegal copies of Snow Leopard from a untrusted location.
    10.6 is not available for download, except from pirate sites. You likely have malware or a compromised system.
    I dont know what else to do, please help?
    What you need to do is call Apple via phone, tell them the make of your machine and order the appropriate 10.6 disks, they are inexpensive now. Some machines that came with 10.6.3+ origianlly need machine specific disks, other wise pre-10.6.3 Intel Macs can use the 10.6.3 white retail disks.
    Once you have the disks, you need to backup your personal information off the computer to a external storage drive using the emergency quick copy method, then disconnect it to prevent mistakes.
    Most commonly used backup methods
    Next follow this proceedure and make sure to select the ENTIRE drive on the far left with the drive makers name and size, this will erase the entire drive, then install 10.6 from the disk
    How to erase and install Snow Leopard 10.6
    When finished setup the machine and log onto the Internet and use Software Update to get current on 10.6.8
    Don't use pirated software, it's likely been compromised in some fashion.

  • Get the current runspace of a powershell instance (Follow up to a previous question - Link in question)

    So this is a follow up question to a question I posted last week
    If
    PS {some Path}>C: = PS C:\> then why not HKLM: = PS HKLM:\>
    So here is where I am with the question above
    After running pretty much all of the powershell related DLL files through redgate's .NET Reflector I fiinally discovered where those "C:" = "Set-Location C:" were being created.
    namespace System.Management.Automation.Runspaces
    public class InitialSessionState
    // More here but cut them out to save space in this post
    internal static SessionStateFunctionEntry[] BuiltInFunctions = new SessionStateFunctionEntry[]
    new SessionStateFunctionEntry("prompt", DefaultPromptString),
    // More here but cut them out to save space in this post
    new SessionStateFunctionEntry("A:", "Set-Location A:"),
    new SessionStateFunctionEntry("B:", "Set-Location B:"),
    new SessionStateFunctionEntry("C:", "Set-Location C:"),
    new SessionStateFunctionEntry("D:", "Set-Location D:"),
    new SessionStateFunctionEntry("E:", "Set-Location E:"),
    new SessionStateFunctionEntry("F:", "Set-Location F:"),
    new SessionStateFunctionEntry("G:", "Set-Location G:"),
    new SessionStateFunctionEntry("H:", "Set-Location H:"),
    new SessionStateFunctionEntry("I:", "Set-Location I:"),
    new SessionStateFunctionEntry("J:", "Set-Location J:"),
    new SessionStateFunctionEntry("K:", "Set-Location K:"),
    new SessionStateFunctionEntry("L:", "Set-Location L:"),
    new SessionStateFunctionEntry("M:", "Set-Location M:"),
    new SessionStateFunctionEntry("N:", "Set-Location N:"),
    new SessionStateFunctionEntry("O:", "Set-Location O:"),
    new SessionStateFunctionEntry("P:", "Set-Location P:"),
    new SessionStateFunctionEntry("Q:", "Set-Location Q:"),
    new SessionStateFunctionEntry("R:", "Set-Location R:"),
    new SessionStateFunctionEntry("S:", "Set-Location S:"),
    new SessionStateFunctionEntry("T:", "Set-Location T:"),
    new SessionStateFunctionEntry("U:", "Set-Location U:"),
    new SessionStateFunctionEntry("V:", "Set-Location V:"),
    new SessionStateFunctionEntry("W:", "Set-Location W:"),
    new SessionStateFunctionEntry("X:", "Set-Location X:"),
    new SessionStateFunctionEntry("Y:", "Set-Location Y:"),
    new SessionStateFunctionEntry("Z:", "Set-Location Z:"),
    new SessionStateFunctionEntry("cd..", "Set-Location .."),
    new SessionStateFunctionEntry(@"cd\", @"Set-Location \"),
    Then further down in the class it is called 
    public static InitialSessionState CreateDefault()
    InitialSessionState state = new InitialSessionState();
    state.Variables.Add(BuiltInVariables);
    state.Commands.Add(new SessionStateApplicationEntry("*"));
    state.Commands.Add(new SessionStateScriptEntry("*"));
    state.Commands.Add(BuiltInFunctions);
    state.Commands.Add(BuiltInAliases);
    foreach (PSSnapInInfo info in PSSnapInReader.ReadEnginePSSnapIns())
    try
    PSSnapInException exception;
    state.ImportPSSnapIn(info, out exception);
    catch (PSSnapInException exception2)
    throw exception2;
    state.LanguageMode = PSLanguageMode.FullLanguage;
    state.AuthorizationManager = new PSAuthorizationManager(Utils.DefaultPowerShellShellID);
    return state.Clone();
    So the InitialSessionState class fills in these values.
    My problem now is I cannot seem to find out how to get an attachment to the CURRENT either
    InitialSessionState
    Runspace
    I can find plenty of forum posts and blogs about how to run powershell in c# but they ALL involve instantiating a NEW powershell runtime.
    I can and have written
    InitialSessionState iss = InitialSessionState.CreateDefault();
    and I can step through the debugger and watch it fill in the functions but as soon as it finally gets to the powershell prompt all the functions are gone.
    On another attempt I tried to create a runspace from the current host
    thisRunspace = RunspaceFactory.CreateRunspace(this.Host);
    where this is public class ConfluenceProvider : NavigationCmdletProvider
    And the line of code above is called in 
            protected override System.Collections.ObjectModel.Collection<PSDriveInfo> InitializeDefaultDrives()
    When I run the code and debug  the runspace created has a different InstanceId than what ultimately shows up in the powershell console if I do $Host.Runspace.InstanceId
    This provider will ultimately be a part of a module with other cmdlets and functions but I would like to know how to attach to the actual runspace, sessionstate, WHATEVER will do the trick that the module is loaded into so I can add functions to it.
    So if anyone has any clue or knows of other blogs, walkthroughs i could read through that covers this it would be a huge help.
    Thanks again everyone
    Quidquid latine dictum sit, altum videtur

    Hi Tofubug,
    Since I'm not familiar about C#, however, if want to run powershell script in C#, the script below may be helpful for you:
    RunspaceConfiguration runspaceConfiguration = RunspaceConfiguration.Create();
    Runspace runspace = RunspaceFactory.CreateRunspace(runspaceConfiguration);
    runspace.Open();
    RunspaceInvoke scriptInvoker = new RunspaceInvoke(runspace);
    Pipeline pipeline = runspace.CreatePipeline();
    //Here's how you add a new script with arguments
    Command myCommand = new Command(scriptfile);
    CommandParameter testParam = new CommandParameter("key","value");
    myCommand.Parameters.Add(testParam);
    pipeline.Commands.Add(myCommand);
    // Execute PowerShell script
    results = pipeline.Invoke();
    And these threads for your reference:
    Execute PowerShell Script from C# with Commandline Arguments
    How to run PowerShell scripts from C#
    How do you set FullLanguage mode
    for remote PowerShell from C#?
    If I have any misunderstanding, please feel free to let me know.
    Best Regards,
    Anna Wang

  • Since upgrading to Mavericks, 10.9.1, pictures that come attached to emails no longer display.  There is only a blank space that after about 1 minute, has a small box with a question mark.  How can I go back to attached images?

    Since upgrading to Mavericks, 10.9.1, pictures that come attached to emails no longer display.  There is only a blank space that after about 1 minute, has a small box with a question mark.  Double clicking on the box will open the image in a separate window.  It's very slow and tedious for multiple images.  How can I go back to attached and displayed  images?  If I click on "Forward", the images appear instantly in the email to be forwarded.

    Scott,
    My problem seemed to fix itself.  Or, by shutting down the computer one night, instead of putting it to sleep, may have reset something.  Since updating to Mavericks, I always (or usually) let the computer sleep overnight or anytime I'm walking away from it.  A few days ago, I was updating notes for my kids about how to find all my stuff and how to turn on my computer, so I wanted to rewrite the start-up procedures for the iMac, just in case they ever need to.  Well, I shut it down one night so the following morning, I could write down each step.  Lo and behold, the images, etc. are all there again!  Solved, but I'm not sure why.
    Tom

  • HT4718 I have nothing on my Mcintosh HD after trying to install Mavericks. I did save a recovery copy of files however this was also lost. All I now have is a file with a question mark with nothing else happening. What should I do?

    Apple recently sent a message asking me if I would like to upgrade to Mavericks which was free. I considered installing after saving a copy of my HD to a WD external drive. I proceeded with the instalation however when it was time to reboot the programme the computer displayed a message that it could not process the request due to errors with the hard drive. The computer then requested that i save a copy and the verify disk and repair disk which i followed and the computer would not repair due to an error. At which pioint I did some research and was told by the IMac to push shift when it starts to enter disk utility and repair the Mcintosh HD. I did as asked however the computer would still not install with Mavericks.
    So after many attempts of trying to start over, I was prompted to erase the Mcintosh HD and reboot using the saved copy. At this point all data was lost and all that is left on my computer is a file with a question mark with no way of restoring the HD drive. Could anyone help please?

    It sounds like your HD may have died.
    If you could answer a few questions it may help figure out what you should do next:
    What OS did you have on your computer before you tried to upgrade to mavericks?
    Did your computer originally come with installer disks?

  • Anyone help mac book screen White with a question Mark in the middle of the screen .matthew

    Can anyone help my mac book screen has gone White with a question Mark in the middle of the screen .Matthew

    Reinstall OS X without erasing the drive
    Do the following:
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install the Combo Updater for the version you prefer from support.apple.com/downloads/.

  • My MacBook Pro won't start - it just displays a grey screen with flashing icon of a folder with a question mark in the middle. Help.

    It started while I was using Adobe InDesign, and that program froze, then crashed. When I tried to reopen the program, the error message I received was simply "Error: 16".
    I tried to take a screen shot of the error message for reference, and it gave me a message saying I couldn't because I didn't have access to the files where it would normally store the shot.
    Attached to my computer at the time was my Seagate Free Agent Go-Flex for Mac backup drive.
    So, I closed any open applications, and restarted my computer. But it wouldn't restart. It only displays a grey screen with a flashing icon in the middle of a folder with a question mark on it.
    I have no idea what happened - I wasn't using the machine any differently than usual, and it only had a few basic applicaitons open in addition to InDesign (like Preview, Text Edit, Microsoft Word, iCal).
    I have MacKeeper on my MacBook, and I keep it clean.
    Does anyone out there know what this flashing icon indicates, and if there is anything I can try on my own to fix it?
    Thanks.

    ali har wrote:
    It started while I was using Adobe InDesign, and that program froze, then crashed. When I tried to reopen the program, the error message I received was simply "Error: 16".
    I tried to take a screen shot of the error message for reference, and it gave me a message saying I couldn't because I didn't have access to the files where it would normally store the shot.
    For the Error: 16
    http://kb2.adobe.com/cps/827/cpsid_82744.html
    Seems a uninstall and reinstall of CS is in order.
    Attached to my computer at the time was my Seagate Free Agent Go-Flex for Mac backup drive.
    May or may not be a contributing factor,  may have kicked in at a wrong time or running root code.
    So, I closed any open applications, and restarted my computer. But it wouldn't restart. It only displays a grey screen with a flashing icon in the middle of a folder with a question mark on it.
    Computer can't find a bootable volume.
    https://support.apple.com/kb/TS2570
    I have MacKeeper on my MacBook, and I keep it clean.
    Well that explains it, MacKeeper is almost malware.
    http://applehelpwriter.com/2011/09/21/how-to-uninstall-mackeeper-malware/
    Search the forums here for "MacKeeper" they will tell the whole story, crapware.
    Disconnect all drives, follow the "Grey Screen" instructions and hold Shift key down while booting, if you get into OS X , immediatly backup your files to another drive and disconnect.
    In my opinion you should first check to make sure you have a backup of your data, then just erase the entire internal drive (hold c boot off the 10.6 disk, use Disk Utility), reinstall OS X, same user name, update to 10.6.8, c boot off the 10.6 and Repair Disk (to fix a update error) install your programs and finally return files from backup into the same main user folders like before (Music, Docs, Pictures etc.)
    A pain it is, but you've hosed your system and in the process you might as well rebuild everything and have a fast machine again. So happens to clear MacKrapper, uninstall CS5 and any other junk in your system at the same time. Fresh, clean, lean and mean.
    Learn to Carbon Copy Cloner to a external drive that new pristine boot drive, you can hold the option key and boot from it (even update it), which is a real bacon saver when something like this happens.  Also it's free to use, donations accepted.
    http://www.bombich.com/
    Note: if anything above I've mentioned is too complicated or your not sure, seek the services of a local computer specialist.

  • Start-Up: Folder with gray question mark / Disk Utility: Invalid Sibling Link

    Yesterday, I was working on my computer and it froze up. My only option was to reboot by holding down the power key. When the computer restarted, the screen was all grey with a folder in the middle of the screen with a question mark.
    I tried the following:
    1) Boot up computer while holding down the "Option" key. - Didn't work.
    2) Boot up the computer while holding down the "Shift" key. - Didn't work.
    Since the first two options didn't work I inserted the original system install disk and booted up while holding down the "C" key. I selected "English" as the language and then opened "Disk Utilities." I pressed "Repair disk" within First Aid. The message I am getting is as follows:
    "First Aid failed. Disk Utility stopped repairing "Macintosh HD" because the following error was encountered: Filesystem verify or repair failed."
    The details screen shows the following:
    "Verify and repair volume "Macintosh HD"
    Checking Journaled HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Invalid sibling link.
    Rebuilding Catalog B-tree.
    The volume could not be repaired.
    Error: Filesystem verify or repair failed."
    I ran the "Repair disk" function about 6 times but it was not successful.
    I was then going to try to do an "Archive and Install" from the original system disk but when I go to do that no destination options appear at the "Select Destination: Where do you want to install Mac OS X?"
    I have not backed up my data very recently (and a lot of what I have stored on this computer is work - I am a freelance designer) so I would like to do something that at least allows me to transfer my data off of my hard drive before reformatting or anything like that. Of course, if there is a less intrusive fix that can leave my hard drive in tact, that would be ideal.
    Any advice? Tips? Solutions? I have a MacBook Pro, 15" that I purchased 3 years ago (my 3 year Apple Care plan just expired about a month ago).     

    You are in a tough situation.  The disk appears unusable according to Disk Utility.  As was suggested you may (only may) be able to salvage it with Disk Warrior (not sure about Data Rescue).  DW can sometimes recover a drive that DU can't.  But nothing else can be suggested. 
    If you can get that disk recovered then back it up ASAP, wipe the disk, reinitialize it, and verify it.  But I'm the paranoid type, and with the kind of errors you show for that disk, I am not sure I would ever trust it again.  At most I would relegate it to a scratch disk.
    Note, if it is a drive that you bought, most drives have a 3 to 5 year warrantee period, so you could get it replaced by the manufacturer if it is within that warrantee period.

  • My new mac mini (3 month) didn't start up,all that appeared was a white screen and a flashing folder with a question mark inside it.

    My new Mac mini (3 month) didn't start up, all that appeared was a white screen and a flashing folder with a question mark inside it.
    I followed by recommendations from 'Everything Mac': "shut it down by pressing and holding the power button for about 5 seconds.
    Then hold down the Option key and press the power button again to start up the Mac mini. Keep holding down the Option key until
    the Mac mini starts up."
    But I got a Wi-Fi button only to chose and connect the local network. I connected to my network and I can't use this connection
    becouse no icons.
    Could you please help me?

    Your Mini (running 10.6.4) should have come with grey-colored install disks. Now is the time to put them into service. Turn on your computer so that there is power to accept disk #1 into the optical drive. Once  the disk is in the drive, shut off the computer by holding the start button down until it powers off. Then turn it on this time holding down the "C" key to make the computer boot from the disk. The question mark that you saw indicates that the computer cannot find a bootable volume. This can happen due to corrupted system files or an improper shutdown etc. Once you are in the "Installer" you can choose Disk Utility from the Utilities Menu in the menu bar. Use it to repair the disk and to see if that can solve your trouble.  

  • HT4972 Good afternoon! I addressed in the AT&T company with a question about untying of a sim card of AT&T from my iPhone, all of them made Iphone now is unlocked, I executed all points which were written: To complete the unlock, simply  1 . Open iTunes o

    Good afternoon! I addressed in the AT&T company with a question about untying of a sim card of AT&T from my iPhone, all of them made Iphone now is unlocked, I executed all points which were written:
    To complete the unlock, simply
    1 . Open iTunes on your Mac or PC and verify that you have Internet connectivity.
    2 . Ensure a SIM card is inserted into your iPhone.
    3 . Connect your iPhone using the dock connector to USB cable that came with your iPhone.
    4 . Backup and restore your iPhone using iTunes. For information on backup and restore, please visit http://support.apple.com/kb/HT1414.
    5 . After restoring, your iPhone will be unlocked.
    Additional information on unlocking can be found at http://support.apple.com/kb/TS3198
    I made everything as well as was written, but on completion of the ios 6.1.3 installation the iPhone asks to be activated through wifi or through a wire to the computer.
    I connected Iphone to the computer and the text takes off: (Were sorry, we are unable to continue with your activation at this time. Please TR again later, or contact customer care! )
    how to me to activate my iPhone?
    I hope for your help....

    Hey APPLELovestory,
    We have an article that goes over troubleshooting iPhone activation issues here:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    Perform the following steps:
    Restart the iPhone.
    Try another means of reaching the activation server and attempt to activate.
    Try connecting to Wi-Fi if you're unable to activate using a cellular data connection.
    Try connecting to iTunes if you're unable to activate using Wi-Fi.
    Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore. If you're still unable to complete the setup assistant due to an activation error, contact Apple for assistance.
    Hope that helps,
    David

  • File Folder with a Question Mark Blinking-HELP!!!!

    Its been like a day and half since i last used my macbook, and all of a sudden it won't work.
    It still turns on but it goes to a white screen and stays that way for about 20 minutes. Then a file folder with a question mark in the middle shows up and blinks. It doesnt go away at all. The only way for me to make it go away is to either turn it off or to push the eject button, and now it just turns off all together.
    When all this started happening it took a long time for it to even go to the home page, but it didn't go to the desktop screen. It would take a long time on the screen when it first turns on then a a lonnnnngggg time after that it would go to a light blue screen and then a longgggg time after that a pointer would show up, and thats all it would do.
    Do I need to get the software that first came with it and put it in and see if it fixes the problem or what?
    WHAT SHOULD I DO?!?!? please help.

    You have corrupted system files. The following is a solution:
    How to Perform an Archive and Install
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • I replaced the battery on my RAID card, when I booted my mac pro up, I get the folder with the question mark. I used a boot USB drive to boot and when I looked in the RAID utility, my RAID 5 volumes were no longer showing, advise.

    I replaced the battery on my RAID card, when I booted my mac pro up, I get the folder with the question mark. I used a boot USB drive to boot and when I looked in the RAID utility, my RAID 5 volumes were no longer showing, advise.
    Ernest

    Not sure if I'm following you. I have 4 hard drives installed on my Mac Pro. I had a RAID 5 configured and functional for about 5 months. My battery died on the RAID card. I replaced the battery, seated the RAID card back in the slot I removed it from. When I booted to the USB drive to look in the RAID utility, I could see the battery is charged but my volumes are not showing.
    The drives don't show in disk Utility. I built the RAID with the RAID Utility and they did show there. I have a early 2008 Mac Pro, Mavricks OS running Mac Server

  • 15" MacbWhite screen with a blinking file folder icon with a question mark on it.

    15" Macbook. When i power on all I get is white screen with a blinking file folder icon with a question mark on it.N

    You may have a bad hard drive.  The flashing folder with the ? indicates that the system cannot find your hard drive.  Use the installation disc that came with your machine.  Insert it into the disc drive and restart the machine holding down the "C" key .  When the restart shows the Apple screen you can release the C keyWhen the installation screen appears, click on the utilities button.  Does the left side of the disc utilities screen show your HD?  If not, then your HD is bad or it could be a loose connection. ifixit.com has a good tutorial on how to replace the HF in the Macbook.  Follow the instructions to remove your HD.  Reinstall your HD and boot up your machine to see if it recognizes your HD.  If it does't, you probably will need to replace your HD>
    Is your machine still under warranty?  If so, take it to your nearest Apple Store for repairs as the repairs will be covered under your warranty.  If you bought AppleCare when you bought your computer your warranty is for three years.  If you didn't buy the Apple Care, then your warranty is only good for one year from the date of purchase.

  • HT2452 Folder with a question mark

    My iMac powered on with a folder with a question mark. Now it just clocks when you turn it on and does nothing

    Welcome to the Apple Support Communities
    It looks like the hard drive is damaged. Follow these steps:
    1. Insert the Mac OS X DVD that came with the Mac, and press C key while your Mac is starting.
    2. When the disc has started, go to Utilities menu > Disk Utility, select Macintosh HD on the sidebar and verify the disk.
    3. If it shows a problem, repair the disk. If it can't be repaired, take the Mac to an Apple Store to get the hard drive repaired.
    If you bought your iMac between October 2009 and July 2011, you must know that there are some iMacs with defective 1 TB Seagate hard drives, and Apple is replacing those hard drives for free. Check if your iMac is eligible > http://www.apple.com/support/imac-harddrive

Maybe you are looking for

  • How many hard drives can i stream from one mac for apple tv

    Hi a newbie to all this ive got a 500gb external hd and running out of space but am looking to buy a 1tb but i want to set it up as im using both hard drives so i get 1.5tb as this is a cheaper option for me is this possible and how many thanks for y

  • Problem in display line items in FS10N

    Hi all,            I have checked ,check box in G/L account  "Line items display "  in FS00 in current period ( 4 / 2014 )after that line items get displayed in FS10N for this period . There is problem in displaying line items for same  G/L account w

  • Multi-Domain LDAP UME configuration

    Hello We have EP 7.0 installed and want to connect the UME to our Corporate LDAP (MSADS) as data source. Our ADS is as follows: domain.pt u2013 This is our top level domain. Here we have our main users. Gs.domain.pt u2013 This is a child domain of re

  • RDBMS-requirements for usage of  XI

    Hello! Could some one help me by RDBMS-requirements for XI? a) for XI is either Oracle 10g or Microsoft SQL 2005 required (Yes/No) b) SQL, JDBC, and ODBC drivers available for Oracle 10g and/or MS SQL Server 2005 (Yes/No) c) use DBMS enforced referen

  • Required Value Mapping

    Hello I have to import Matmas into the MDM. I have already imported the lookup tables from the R/3-System. I want to have to use the Import Sever for the import. However, the values of some fields are not mapped. It there a was to map them automatica