Corrupted files in oracle817ntee.zip

Hello,
I've loaded the installation file of Oracle8i
Enterprice Edition Rel. 3 Version 8.1.7 for windows 2000/NT and can't unzip the
the following two files:
jdk122.NT.0.0.jar in
disk1\stage\components\oracle.apache.jdk\1.2.2a\1\DataFiles\ size = 11.205.883
odm.0.0.jar in
disk1\stage\components\oracle.odm.2.1.10.0\1\DataFiles\ size = 2.547.674
Can somebody help me and send me the two files.
Thanks in advance
Dieter Rosenfeld

Hello,
Please compare the file size of your downloaded files with the sizes provided on the https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/webcontent/uuid/b2918eea-0601-0010-6284-e6cb7eee4399">download [original link is broken] [original link is broken].
As written on the page, please place both files to the same folder and extract part1 only.
Kind regards,
Klaus

Similar Messages

  • Corrupt files in downloaded zip

    I have just downloaded Oracle 9i Lite over a 56K modem link, and as you can imagine it took quite a while. Unfortunately, it turned out that some of the files included in the ZIP file is corrupt. Now I really don't want to download the zip file again, and I am wondering if someone could be kind enough to email me the corrupt files.
    The ones I am looking are:
    zht.0.0.jar
    de.0.0.jar - I suspect I won't need it since I am running an English Language OS
    zhs.0.0.jar
    schema.0.0.jar
    mesg.0.1.jar
    embase.2.0.jar
    baseclasses.0.0.jar
    wtgsdk.0.0.jar
    I am going to install 9iLite just to see how Oracle compares with other database engines, such as SQL Server and DB2. I don't particularly want to download the standard edition over a 56K link (the company I work for is an MS partner, and so it wouldn't take very kindly to anyone who downloads huge files from Oracle using corporate internet connection). If you guys think that I am wasting my time, and I really wouldn't get much out of looking at the Lite version, I would appreciate a straight answer as well.
    Thanks in advance.
    My email address is [email protected]
    remove the nospam. part.

    Yes Colour profile?
    http://en.wikipedia.org/wiki/Color_management
    iPhoto supports RGB. If these are CYMK you'll get the symptoms you describe.
    Regards
    TD

  • Extract files from a zip file

    Here is my scenario:
    I have a zip file, DataStore.zip, which as two layers of zip files.
                                         DataStore.zip
                                               |
               01.zip       02.zip         03.zip      04.zip etc
                                 |
                     02a.zip          02b.zip         02c.zip        
     etc
                         |
                cert1.zip   cert2.zip     cert3.zip     etc
    I need to search for  any cert.zip embedded at layer3, for which I have written the following program.
    I have two issues. First one is, when the files at level 1 (01.zip etc are written to the disk folder c:\ extract, it doesn't allow me to read back from that folder., I get "access to path c:\extract is denied". I researched and found that this
    is a security issue with windows 8 and 7. ( I tried both versions). How can I overcome this?
    second issue is, if in the  first read cycle  it fails with "unknown block type, stream may be corrupted", I need to bypass that corrupted zip file and continue, until I get my target file.
    The code is give below. Appreciate any help.. Thanks.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    using System.IO.Compression;
    namespace TPMCert
    {   // Utility to copy a TPM certificate from the master file.
        public partial class Form1 : Form
            public Form1()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
            private void btnSelDrv_Click(object sender, EventArgs e)
                if (folderBrowserDialog1.ShowDialog() == DialogResult.OK)
                    string filePath1 = this.folderBrowserDialog1.SelectedPath; //
                    this.txtDrv.Text = filePath1;
            }//btnselDrv
            private void btnTpmReq_Click(object sender, EventArgs e)
                    OpenFileDialog openFile1 = new OpenFileDialog();
                    if (openFile1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
                        txtRqstFileName.Text = openFile1.FileName.Remove(0, 3); //remove first 3 chars which is c:/ etc
            private void btnGo_Click_1(object sender, EventArgs e)
                    string zPath = txtDrv.Text + "\\" +"TpmDataStore.zip"; //drive & filename to to search.....
                    string extractPath= txtDrv.Text
    +@"\extract";
                    string extractPath2 = txtDrv.Text + @"\extract\certs";
                    string copyPath = txtDrv.Text; // location of the tpm certificate finall written to..
                    bool filefound = false;
                     //look for the file. read only allowed...
                   // try
                        using (ZipArchive archive = ZipFile.OpenRead(zPath)) //open Tpm file for reading
                            txtInfo.AppendText("Processing ....  Please wait!" + "\n");
                            Cursor.Current = Cursors.WaitCursor; //busy cursor
                            foreach (ZipArchiveEntry zEntry in archive.Entries) //each top level zip file is written to \extract dir
                                zEntry.ExtractToFile(Path.Combine(extractPath, zEntry.FullName), true); //true- overwrite
                                txtInfo.AppendText(" First write passed...");
                                //next iterate thro' all zip files in \extract dir
                               using (ZipArchive archive2 =ZipFile.Open(extractPath, ZipArchiveMode.Update)) //read files in extract
                                   foreach (ZipArchiveEntry childEntry in archive2.Entries)
                                       childEntry.ExtractToFile(Path.Combine(extractPath2,
    childEntry.Name), true); //true- overwrite
                                       MessageBox.Show(childEntry.Name);
                                       txtInfo.AppendText(" Second cycle....");
                                       if (childEntry.Name == txtRqstFileName.Text)
                                               filefound
    = true; //
                                               //MessageBox.Show(zEntry.FullName);
                                               txtInfo.AppendText("Found
    file " + childEntry.Name + "\n");
                                               txtInfo.AppendText("File
    copied as " + copyPath + "\\" + childEntry.Name + "\n");
                                }//second using..
                            }//foreach
                            if (filefound == false ) // given file is not there
                                txtInfo.AppendText("File not found" +  "\n");
                        }//using
                    }//try
                       // catch (Exception ex)
                               // MessageBox.Show(" Error:" + "\n" + ex.Message);
                                return;
                             //finally
                            { Cursor.Current = Cursors.Default;
                // next
            } //btnGo..
        }//class form1
    }//namespace

    Hi friend,
    We'd better to ask one question in each thread. If you have another issue, you can consider to open up a new thread in this forum.
    Now for the first question, do you mean this picture? It throws access exception in archive2.
    If so , because your extractPath is a path, not a directory.You should add +"xxx.zip". For more information, please refer to
    ZipFile.Open
    Method (String, ZipArchiveMode).
    For the second question, you can use the following code to skip the error message.
    while (true)
    try
    //do something;
    catch (Exception ex)
    { continue; }
    Good day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help with 11g install - corrupt file "filegroup15.jar" (Windows 32bit)

    Hi, I'm having problems installing 11g. I've downloaded the .zip file a thousand times, and each time I get a CRC problem on the following file in the .zip:
    database\stage\Components\oracle.ctx\11.1.0.6.0\1\DataFiles\filegroup15.jar bad CRC df37af05 (should be 38b64725)
    I don't see anyone else complaining about the problem, so it must be something on my side, but not sure what. I've downloaded multiple times, on multiple computers, both with and without a download manager. Any suggestions on how to get around this (the file is over 140 Mb or I'd ask that someone simply email it to me...)
    Thanks in advance for any ideas!
    Scott

    Sorry I wasn't clear, the corrupted file filegroup15.jar is the one that's 140 Mb in size.
    Looking under Windows, I see the following filesize info for the entire .zip:
    Size: 1.73 Gb (1,868,327,005 bytes)
    Size on Disk: 1.73 Gb (1,868,328,960 bytes)
    Does that match what you have?
    Thanks,
    Scott

  • "Invalid or corrupt file" after Obfuscation with "The Marvin Obfuscator"

    Hi!
    I want to use "The Marvin Obfuscator" (www.drjava.de) to secure MY code a little bit.
    But the resulting .jar-file doesn't work. "Invalid or corrupt file".
    I think, that things, i configured in the configuration file aren't true.
    Has anyone experience with "The Marvin Obfuscator"?
    I created a .jar-file with Eclipse. My Marvin-configuration-file (config.txt) is as the following:
    // Template for a Marvin Obfuscator config file
    // Directories and jar/zip archives where your application's classes reside
    // (relative to project directory)
    classpath=("archive.jar","C:\Java\jre1.5.0_05\lib\rt.jar")
    // The name of your applet or applications's main class
    // (e.g. executable class, servlet or applet)
    // (as it would appear in <applet code=...> or in "java ...")
    // Note the double parentheses!
    mainClasses=(("control.Start"))
    // If you want your main class to be called differently after the obfuscation,
    // you can enter the new name (including package) like this:
    // mainClasses=(("myapp.Main" newName="main"))
    // You can also have more than one main class:
    // mainClasses=(("myapp.ServletA") ("myapp.ServletB"))
    // Names of methods (without class name) that are accessed via reflection.
    // The obfuscator will not change the names of these methods.
    //preserveMethodNames=("methodName1","methodName2","reflected*")
    // Classes that are accessed via reflection.
    // The obfuscator will not change the names of these classes.
    // Note: Method names within these classes will still be obfuscated.
    // (If you need to preserve method names too, what you probably want
    // is "externalClasses".)
    // Note: You can use the wildcard character (*).
    //preserveClassNames=("mypackage.SpecialClass")
    // Classes that are used by your application,
    // but should not be included in the obfuscated jar file.
    // The obfuscator also ensures that references to these classes continue to
    // work ("referencing" includes calling, subclassing and implementing).
    // Note: Any part of these libraries that is actually used must be in the
    // classpath (either system classpath or classpath= line in this file).
    //externalClasses=("com.company.externallibary.*","org.apache.*")
    // Locations of resource files.
    // If you want resource files (images, properties files, ...) to be included
    // in the jar file, specify the resource directories or archives here.
    // Do NOT specify individual resources files (these will be interpreted as
    // archives).
    // Note: Directories will be scanned recursively.
    // Note: .class files are excluded automatically.
    // Note: You will usually want to reuse entries from the classpath= line
    // (classes and resources are often bundled in the same jar files).
    //resources=("resourcedir","resources.jar")
    // Advanced obfuscation features.
    encryptStrings=true // You can try to set this to false for troubleshooting

    Why not use another obfuscator? Google for "java obfuscator". I myself
    use JShrink and it does a good job in reducing the code size.
    It always generated valid class files for me.
    As for "protection", don't count on it too much with any obfuscator, but
    yes, some may do a better job than others.

  • Computer shuts on and off some corrupted files - no virues now

    Listed below are some of the errors I found on event log in the laptop:
    I have a Qosimo 8 megs of memory, windows 7 64 bit. Running AVAST 7.0 antivirus and Malwarebytes - both paid subscriptions. I think the model number is 830 530 I bought in 2009.
    The shutdown problem has
    been happening on and off for the last six months. I had two major instances of trojans taking over my machine and it caused constant shutdowns. AVAST worked with me on one and they had me use malwarebytes and spybot and hijack this. They took over my computer to get it up and running properly, but this new round of errors a trojan was found in the registry key and the startuptoolbar. Two nights ago I had another shut down several times and after running malwarebytes and antivirus I could find no errors so I’m leaning toward corrupted files? Is there anyway to fix these files without having to reformat the hard drive?
    I did run a computer repair and a computer memory repair tonight using F8 and no problems were found by the computer. I’m not sure what to do with these errors in event viewer.. I get the toshiba error
    quite often and it madely stops me from going online with my internet connection, and I had downloaded a newer version but same problem – I use windows repair in network and the error is always resetting the toshiba network IP. I just put a note into toshiba on that problem.
    I also use microsoft silverlight for my fenderfuse application which needs that software operate properly. I’m not sure exactly what to do with that Custom dynamic link libraries are being loaded for every application. It states to check libraries – but what am I checking for? I do not have a lot of programs on the laptop but not sure what to look for in library?
    Windows logs under Application
    The description for Event ID 0 from source Ipod service cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event
    The description for Event ID 0 from source SignInAssistant cannot be found. Either the component
    That raises this event is not installed on your computer or the installation is corrupted. You can
    Install or repair the component on the local computer.
    If the event originated on another computer, the information had to be saved with the event. The following information was included with the event:
    WLD InitializationTimerQueue. QueueWorkItem Started
    The win logon notification subscriber <sessionEnv> was unavailable to handle anotification event.
    The description for Event ID0 from source IViRegMgr cannot be found.
    Same for AdobeARMservice
    Same for User Profile Service
    Critical events
    System has rebooted without cleanly shutting down first. This error could be caused if the system stopped responding, rashed or lost power inexpertly.
    Administrative
    Events
    Unloading the performance counter strings for service WmiApRpt failed. The first DWORD n the data section contains the error code.
    The performance strings in the performance registry value is corrupted when process Performance extension counter provider. The BaseIndex value from the Performance Registry is the first DWORD in the Data section, LastCounter value is the second DWORD in the Data Section, and LastHelp value is the third DWORD in the data section.
    Several warnings on Toshiba Servicer Station. Error checking dependency (1df917db-3056-41a-bbac-0489a6b63d4dj: Unable to retrieve registry value.
    Toshiba Service Station - skipping empty element (tsu:setup_args) (several errors on this one)
    ( I also installed the latest Toshiba service station and it did not fix the error problems in events log.  When I did a restore it was before softare update this was added so now my computer is working properly with windows on connecting to the internet wireless.)
    Unloading the performance counter strings for service WmiApRpl (wmiaprpl) failed. The first Dword in the Data section contains the error code.
    Failed extract of third-party root list from auto update cab at: www.download.windowsupdate.com/msdownload/udate/v3/static/trustedr/en/authrooststi.cab> with error: A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.
    Biggie? Custom dynamic link libraries are being loaded for every application. The system administration should review the list of libraries to ensure they are related to trusted applications.
    Audit events have been dropped by the transport. 0
    The system has rebooted without cleanly shutting down first. Kernel-power - this has happened several times.
    The performance strings in the Performance registry value is corrupted when process Performance extension counter provided. The BaseIndex value from the Performance registry is the first DWORD in the data section, last counter value is the second DWORD in the Data section, and LastHelp value is the third DWORD in the data section.
    Sometimes my computer shuts down often on its own and I find a Trojan - other times it shuts down often during a start up and I find no viruses as was the case yesterday.  Today I did not get on the internet and the computer worked fine.  
     I guess I need to know if there is a way to reinstall the corrupted files without having to go back to the default settings when I got the computer.  Does toshiba have a windows repair disc that works better then what I did with using F8 and having a system repair and memory check done that found no errors?  I also installed the latest Toshiba service station and it did not fix the error problems in events log.  When I did a restore it was before this was added so now my computer is working properly with windows on connecting to the internet wireless.
    Malwarebytes said that by looking at these event viewer logs that it does not appear that I have a virus now but I do have corrupted files and can toshiba help me in getting them fixed.  I really hate to do a complete reformat.
    Thanks
    Rose
    Solved!
    Go to Solution.

    Event Viewer  5/14 events
    Window logs
    Application –
    Information - Software protection service has stopped
    Error – Unloading the performance counter strings for service wmiaprpl failed.  The first Dword in the data section contains the error code
    The performance strings in the performance registry value is corrupted when process Performance ext
    The winlogon notification subscriber <SessionEnv> was unavailable tohandle a notification events
    Error – Your computer was not assigned an address from the network (by the DHCP) Service) for the Network Card with network address0x701A043A07AE.  Your computer willcontinue to try and obtain an address on its own from the network address (DHCP ) server.
    Failed extract of third-party root list from auto update cab   CAPI2
    Warning – customer dynamic link libraries are being loaded for every application.  The system Administrator should review the list of libraries to ensure they are related to Trusted Aplications.
    The performance strings in the Performance registry value is corrupted when process Performance extension counter provider.  The baseindex value from the performance registry is the first Dword in the data section, etc. – this error shows up often for today 5/14  (on line the aqnswer to this error is  -
     Performance counters are collected and used by services and applications. If they are installed incorrectly or with improper permissions, performance counters cannot be loaded, and services or applications cannot collect or interpret the data.
    I noticed that software protection stopped and then it showed software protection working.  I did not get any critical stop errors like I did before but that is because I don’t have any Trojans or viruses.  I ran a full scan with both Avast and Malwarebytes yesterday and no problems.
    Under system for today I see
    The multimedia Class Scheduler Service entered the stopped state.
    The application experienced service entered the stopped state
    Under application Window logs for today
    Fault bucket 130885241, type 5 Event Name PNDriverimportError  response: not available
    This is a warning error:
    Windows detected your registry file is still in use by other applications or services .  The file will be unloaded now.  The applicationsor services that your registry file may not function properly afterwards.
    10  user registry handles leaked from \Registry\User\(this section covered several registry problems I sent the note online and this is what they state:  Cause this behavior occurs because the windows operating system automatically closes any registry handle to a user profie that is left open in an application.  User Action – this is a warning event the application that is listed in the event detail is leaving the registry hand open, and it should be investigated.
    I don't know how serious this probems are - I didn't like seeing the software security being stopped.  But then it started up.  I have copied everything personal on this laptop so I am ready to reformat if needed.  
    I still have the problem about IE not opening links unless I right button click to open it.  I also had to make a separate ID to run Fender Fuse software as this computer was not recognizing the USB slot where I connect the amp to the laptop.  Fender had me set up another id with minimum items and then I was able to connect to the amp and make changes.
    Rose

  • Ok! so i tried updating my ipad 2 software to I.O.S 6.1 and it failed then continued to shut down and put the plug into itunes logo on my screen! I then i have been trying to update and restore my Ipad 2, then it says corrupt file and stops any advice?

    This is ridiculous!!!!! Apple Corporation needs to fix what ever went wrong with IOS 6.1 update and they better do it soon or theyre going to have a mob on their hands!! i have been continuosly restoring and updating my iPad 2 and it always says corrupt file then restarts the whole process! im going out of my mind and im about to say to **** with it and call apple themselves and make so many complaints that theyll fix it within the hour or i will go to new york city at the head of the corporation and make the most skeptical and most embarrissing seen that they will end up ashamed to even be working for a company with the supposedly "SMARTEST AND BRIGHTEST TECHNOLOGICAL PEOPLE IN THE U.S." who cant even get a software update correct so that it doesnt make some of our lives harder then they need to be! and if its already known to be corrupt then should take it off the whatever update liost and fix it before anyone else has to go what ive gone through, cause its pure torcher!! i paid good money for a product for easy use whenever and thats not what im getting when they cant even make a simple update thats supposed to help but only makes my product worse and make me wanna never buy from them again!

    Hello aZaa4401,
    Thank you for using Apple Support Communities.
    You can use the following article to resolve your issue:
    If you can't update or restore your iPhone, iPad, or iPod touch
    Regards,
    Jeff D. 

  • Can iMac not waking from sleep be caused be a corrupt file

    I have had my 27" iMac from July of 2011 (running Montain Lion, 8 GB RAM, 2TB hardrive, 3.4 GHz,Intel i7) for over a year and a half and ever since I bought it, it has had a problem waking from sleep.  I can hear the computer running, but when I click the mouse, keyboard, or power button, it stays asleep and I am forced to do a hard shut down.  Apple has been trying to fix the issue, but to no success.  They have replaced the hard drive, logic board, usb ports, RAM, mouse and keyboard, but it still happens.  They finally threw in the towel and are replacing the machine.  They offered to transfer all of our files (jpgs, mp3s, docs, videos, etc), but one thought occurred to me... what if the sleep issue is caused by a corrupt file?  I highly doubt that is the case, but wonder if any of the experts out here would know better than I.
    If we didin't have the data transfered, we would just keep it on an external hard drive instead.  But, I would assume that it wouldn't matter if the files were on internal vs. external because either way, the computer would access the files.  That being the case, if the sleep issue was caused by a corrupt file, the computer would still access it on the external and the sleep issue would resurface.
    So, 2 questions:
    Can a corrupt file cause the sleep issue?
    If it is true that a corrupt file can cause the sleep issue, would it matter if the corrupt file was accessed from an external drive vs. internal drive?
    Thanks so much!
    Chris

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether your problem is caused by third-party system modifications that load automatically at startup or login. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click  Log in.
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • How to exreact multiple pdf files from a zip files from application server to presentation server

    Hello exprts,
    I am passing one pdf file and one text file to zip file in apllication server through my custom program and then downloading it using standard function module to my desktop. its working fine. Then I added  another pdf file to my zip file. But only single pdf file is getting download . So can you please help me regardiong this issue? 

    Dear Experts ,
    I finded out the way to extrcat pdf files in presentation server. But now my problem is that I am not able to add multiple pdf files in a zip file. When I am adding new pdf file then older one is not coming in read data set. So please kindly tell me how can I add multiple pdf file in my zip file and again I can get all the pdf files from here.

  • Corrupted files

    Right my laptop isn't working. I formatted my hard drive and went to re-install WinXP. The problem being that at 56% installation,the battery on my laptop cut out. Now I can't even get the files installed by XP off my hard drive.They only show up on the C:/ when its unpartioned and in that case the command in ms dos ( format c:) doesn't work,it only works when the hard drive is partionted.
    XP refuses to run installation again while these files remain. I need your advice!

    On the screen going black - maybe it has entered hibernation mode. Try changing the settings in the Lenovo Energy management schemes. You can refer to my posts in my Blog on these items for more details. The corrupted files may be due to faulty media. Try a different media or a different disc.
    View my Blog on the Lenovo S10

  • External hard drive, error -36, corrupt files and slow transfer speeds

    This is a long post but stay with me.
    I've got an external 250GB Lacie drive connected to my 24" Intel iMac via Firewire 800. I have approximately 80GB worth of files (including my iPhoto library) on the Lacie that I'm trying to move over to my iMac but have run into some frustrating problems.
    Overall, transfer speeds are erratic – fine at times and SUPER SLOW (5 minutes to transfer a 3MB file) at other times. At first I was transferring entire folders, but after always getting errors (error -36 to be exact), I was having to transfer individual files. This works fine as long as the files aren't too big (which makes the transfer speeds SUPER SLOW) and not corrupt (which gets me an error -36). Is my Lacie crashing on me? Is there any hope?
    Here's what I've done to try and salvage my sanity with no resolve to my problems (not exactly in this order):
    1) Ran Disk Utility to repair Lacie. Everything came back OK
    2) Ran Disk Warrior on Lacie. Found a handful of bad items that Disk Warrior was able to repair. Had Disk Warrior replace the old directory of the Lacie with the new directory.
    3) Ran Drive Genius: Raired and Rebuilt the directory, did an Integrity Check (came back OK), attempted to Defrag but could not because of errors to the drive, did a Scan for bad blocks (which after running for 3 days! it was only 20% complete and had found over 150 bad blocks, at which point I quit to try something else)
    4) Checked that my Firewire cable was properly connected and replaced the older one I was using with a brand new one.
    5) Disconnected all peripherals except for keyboard, mouse and Lacie.
    6) And at times, even viewing a file on the Lacie has caused my Finder to crash, requiring a restart of my iMac.
    I'm sure I've left something off I've tried but you get the idea.
    I've read that maybe I can transfer my files using Terminal. Yes/No? Does this bypass any corruption the files may have?
    What about creating a second partition on the Lacie and moving files over to the second partition? Does this solve anything? I don't know anything about partitioning so maybe I'm talking crazy.
    I've also read that iPhoto tends to corrupt files which makes me hate iPhoto, and myself for not backing up.
    And I've read a lot about error -36's and none of it sounds good so I'm just hoping that someone might have other suggestions for me to try and save my files (especially my iPhoto files which include baby pictures that if I lose, my wife will kill me).
    So if anyone has any ideas, let me know. Please. I'll try anything.

    Hi Aaron Thompson-
    I am fairly certain you have a bad power supply brick to the LaCie drive. This is a hard problem to troubleshoot as generally when the bricks go bad they do so slowly and the drive appears to power up and stuff but it just doesn't work.
    If the drive is under warranty LaCie will replace the brick at no charge. Otherwise they sell them for around $20US on their website.
    Luck-
    -DP

  • Corrupted file unable to remove from trash because it is running.  Unable to shut it down.

    I had recently converted some video tapes into dvds as well as disks that I could download onto the computer.  I did not realize that I installed a dvd into the drive instead of the downloadable disk when I asked the computer to download the files.  Instead of not performing the task, the computer partially download the dvd.  Now I have this file on my desktop and when I put it into trash I can't remove it from trash because it is running.  In other words there is a corrupted file that I have no way of stopping or deleting.   Any suggestions?  I could leave this file alone but since it is running I'm not sure how much memory it is diverting.

    What is the name of the file? If you open Activity Monitor, set to All Processes, then is it displayed in the Name list?
    Restarting kills all running processes. If this is not a system file, then you have it installed somewhere that is launching it automatically upon startup. You should look in your /Home/Library/LaunchAgents/ folder or your /Library/LaunchAgents/ or /Library/LaunchDaemons/ folder for a file related to this one. Until you kill that one you will not be able to delete the one are having trouble deleting.
    Exposing the /Home/Library/ Folder
    Pick one of the following methods:
    A. This method will make the folder visible permanently. Open the Terminal application in your Utilities folder and paste the following at the command prompt:
    chflags nohidden ~/Library
    Press RETURN.
    B. Click on the Desktop, press the OPTION (⌥) button, select Library from the Finder's Go menu.
    C. Select Go To Folder from the Finder's Go menu. Paste the following in the path field:
    ~/Library
    Press the Go button.

  • How can i delete a corrupted file that will not download?

    I recently purchased a song on itunes and i keep getting a message that tells me to try redownloading due to the song being a corrupt file.  When i attempt to redownload the song, i get another error message that tells me the download could not be completed. At this point i just want to delete the download, but since it was never actually downloaded it wont go away.  Everytime i open my itunes i get the error message and it continues to pop up every ten minutes.  Please help!

    Highlight the said file on the Music section of your Library, and press the Backspace key.  When asked whether you want to move to the trash, say yes.  Then you may download it again looking in Your Account in the purchased section.

  • What to do if Windows displays an "iTunes.exe - Corrupt File" message

    Greetings fellow Podders, Resident Furball here...
    It is about time that I produced a single post for all the chkdsk issues that we've been discussing since November 2004. The Apple KB article seems to cover the major points succinctly, but we need to address the more serious variations and flavours of the problem.
    <hr>
    What to do if Windows displays an "iTunes.exe - Corrupt File" message
    Many users are coming across this seemingly distressing error message in Windows when connecting their iPods. As described in Apple KB Article 300554, the message reads:
    iTunes: iTunes.exe - Corrupt File
    The file or directory \iPod_Control\iTunes\????????? is corrupt and unreadable. Please run the Chkdsk utility.
    and the ????????? can be anything (eg. sysinfo, Temp1, DeviceInfo etc.).
    <hr>
    Don't panic!
    If you do see this, don't worry, and don't panic. Contrary to what the error message reads, this issue actually has very little to do with iTunes. The iPod_Control is the key to this - because this folder doesn't even exist in iTunes... it's on the iPod!
    ...so! Installing and uninstalling iTunes really won't do you much good at all... it's the iPod that needs attention.
    <hr>
    What's causing this error?
    To be honest, we don't know. We saw a massive number of reports of this issue back in November 2004, because iPod Updater 2004-11-15 contained a firmware bug that corrupted iPod system files when the Pod entered Deep Sleep.
    But this firmware bug was corrected in iPod Updater 2005-06-26.
    Of late, we have seen a resurgence in chkdsk errors on Discussions. Some of these are caused by the old buggy firmware that people still have. Some of the errors are more serious and are hardware and operating system-related. But we have still to pin down the exact cause of this error.
    <hr>
    Okay, so what do I do if I see this error?
    In short, as Apple have recommended in their KB article:
    Restore your iPod, using the latest iPod Updater.
    Follow the instructions carefully. Ensure that you download the iPod Updater. Ensure that you install it, and then ensure that you run it with the iPod connected and follow the prompts to the letter.
    The broad majority of the errors are painlessly fixed this way. Of course, it does mean that your iPod will be wiped, so make sure that you have your music/data backed up, and/or present in iTunes so you can resynchronise it when you have finished Restoring.
    <hr>
    Okay, I've Restored, but the error is still coming up
    Are you sure you've Restored? Quite a number of folks are assuming that just downloading the iPod Updater is enough. It's not. And neither is downloading iPod Updater, and installing it on your computer. It needs to be implemented on the iPod, according to the iPod Updater instructions.
    Okay, so if you have Restored your iPod, and you are still getting this error, then you have a variety of options available.
    Chkdsk errors that are not fixed with a Restore are most likely down to two things:
    1) A physical issue on the iPod itself
    or
    2) An issue on the computer's operating system
    Here's where it gets woolly. There are a variety of things you could try...
    Format the iPod in Windows
    This would usually have the same effect as a Restore, but a deep-level format in Windows is something that Apple have recommended in the past, as a last resort to completely wipe the iPod before performing a Restore with iPod Updater. This process wipes the iPod.
    To do this:
    1) Enable Disk Mode on the iPod. You can do this either in iTunes (which is best), or manually on the iPod itself.
    2) Open My Computer and locate your iPod
    3) Right-click the iPod and select Format
    4) Leave the parameters set at their defaults, and ensure Quick Format is unchecked
    5) Hit Format
    6) Then Restore your iPod as normal.
    Run the Chkdsk utility
    You could run the chkdsk utility on your iPod. But Restoring your iPod has the same effect as running chkdsk. Chkdsk does not wipe your iPod.
    1) Enable Disk Mode as above
    2) Determine the drive letter of your iPod from My Computer
    3) Go to Start, Run
    4) Type cmd. Hit Enter to take you to the Command Prompt.
    5) Type chkdsk /f X:, where X is the drive letter of your iPod. Hit Enter, and any corrupt files are found and corrected.
    Run Windows ScanDisk
    ScanDisk is the Windows version of Chkdsk. It does not wipe your iPod.
    1) Enable Disk Mode
    2) Right-click the iPod in My Computer, select Properties
    3) Select Tools
    4) Select the option to scan the disk for errors
    Try changing the Drive Letter of the iPod
    Sometimes Windows confuses the drive letters, and this can cause the iPod to be adversely affected. Try the instructions detailed in Apple KB Article 93499 to change the drive letter of the iPod. This does not wipe your iPod.
    Try changing Hardware Policies for the iPod
    The Hardware Policies in Windows have been known to affect the way in which the iPod connects, synchronises, and disconnects. This does not wipe your iPod.
    1) Enable Disk Mode so the iPod appears in My Computer
    2) Right-click the iPod in My Computer
    3) Select Properties
    4) Select Hardware Policies
    5) Select Optimize for Performance (instead of Optimize for Removal)
    6) Restart your computer.
    Contact Apple for a replacement iPod
    Some chkdsk issues have been caused by faulty hardware. As a last resort, contact Apple Support by phone to report your issue, and/or request an iPod Service.
    If you explain that you have followed all these steps, you should have a strong case for obtaining a replacement iPod.
    <hr>
    Thanks!
    Thank you to everyone for their continued support, kindness and excellent troubleshooting skills here on Discussions. There are countless people that I am deeply grateful to for their assistance in handling this issue. Rest assured folks, you have made me the Discussions Furball that I am today.
    Happy Podding folks!
    Kind regards,
    Gopha.
    <hr>
    References
    1) The Original Corrupt iPod File thread from 2004. (Credit: AbbyM)
    2) Our Summary and Index threads to consolidate the chkdsk issue at the height of its reign of terror.
    3) Chkdsk is fixed by iPod Updater 2005-06-26.
    4) Different flavours of chkdsk.
    5) Happy Birthday chkdsk!.
    6) Apple Level 2 Technical Support officially close the chkdsk casefile. (Credit: Apple Level 2)
    7) Chkdsk can be fixed by changing the drive letter of the iPod. (Credit: daisysnroses, jchiu8)
    8) Chkdsk can be fixed by changing the hardware policy. (Credit: Bruce Finn)
    9) Chkdsk caused by faulty hardware. (Credit: Kiwi_Bloke)

    iPod Updater 2006-03-23 has been released
    iPod Updater 2006-03-23 includes iPod Software 1.1.1 for the new iPod and new iPod Software 1.1.1 for iPod nano.
    iPod Updater 2006-03-23 contains the same software versions as iPod Updater 2006-01-10 for all other iPod models.
    What's new in iPod Updater 2006-03-23:
    - Volume limit
    - Bug fixes
    I have been trying to ascertain from Apple Support Level 2 as to whether the latest iPod firmware improves or provides better resolution for the chkdsk issue. If anyone has been using iPod Updater 2006-03-23 to resolve their chkdsk woes, feel free to post in here just to say how things worked out for you...
    Kind regards,
    Gopha.

  • Please help! My Itunes says corrupt file and will not open (IMac 2010). I couldn't fix it by reinstalling so I moved it to trash. It will not delete from my trash as it is saying "Japanese.lproj" is in use. I can't delete or open to close it, what do I do

    Please help!
    My Itunes says there is a corrupt file and will not open (IMac 2010). I couldn't fix it by reinstalling ITunes so I moved ITunes to trash. It will not delete from my trash as it is saying "Japanese.lproj" is in use. I have never opened or used "Japanese.lproj". I can't delete ITunes or open ITunes to close the Japanese.lproj, what do I do? Thank you for any help you can provide..

    It will not delete from my trash as it is saying "Japanese.lproj" is in use. I have never opened or used "Japanese.lproj".
    Interesting. This sort of thing is more common on Windows systems. Taken at face value, one of the iTunes program files (one of the Japanese language resources) is damaged.
    I'd try running your Disk Utility over your startup disk. Does it find/repair any damage? If so can you empty your trash and reinstall your iTunes successfully now?

Maybe you are looking for