Getting ProtocolException: EOF after reading only 0 of n promised bytes

          I'm running WL 5.1 SP9 on JRE 1.2.2-06. The box is an HP9000 with HPUX 11.0. The
          details are:
          <E> <HTTP> Connection failure
          java.net.ProtocolException: EOF after reading only 0 of 418 promised bytes, out
          of which at least -1 were already buffered
               at weblogic.socket.PostInputStream.complain(PostInputStream.java:65)
               at weblogic.socket.PostInputStream.read(PostInputStream.java:97)
               at weblogic.socket.PostInputStream.clear(PostInputStream.java:144)
               at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:258)
               at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
          Any help appreciated
          Please cc my email if possible
          Thanks
          Ricky
          

Hi Ricky,
          I've posted this same bug a while back as well, and only found the solution today; this answer may
          pertain to your problem as well.
          Turns out Apache-WL plugin creates a /tmp/_wl_proxy directory as a buffer flush for POSTs,
          especially any post over 64k. Our dev environment consists of multiple developers with multiple
          instances on Solaris, so whoever logs in and triggers the plugin first will generate this directory
          with their permission, and subsequently all other developer's instance will not be allowed to write
          to this directory. Note this can also happen on staging or prod environment if different users are
          used to start the same server. Our solution is to change the permission of this directory to
          write-for-all, and the problem disappears; unfortunately Apache Plugin may recreate this directory
          after bouncing, so admin has to remain vigilent.
          Perhaps BEA should allow us to change the location of this temp directory.
          Gene
          "Ricky Frost" <[email protected]> wrote in message news:[email protected]...
          >
          > I'm running WL 5.1 SP9 on JRE 1.2.2-06. The box is an HP9000 with HPUX 11.0. The
          > details are:
          >
          > <E> <HTTP> Connection failure
          > java.net.ProtocolException: EOF after reading only 0 of 418 promised bytes, out
          > of which at least -1 were already buffered
          > at weblogic.socket.PostInputStream.complain(PostInputStream.java:65)
          > at weblogic.socket.PostInputStream.read(PostInputStream.java:97)
          > at weblogic.socket.PostInputStream.clear(PostInputStream.java:144)
          > at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:258)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
          >
          > Any help appreciated
          > Please cc my email if possible
          >
          > Thanks
          > Ricky
          

Similar Messages

  • Getting an Error after reading a excel file

    hi
    I am reading a excel file using POI
    my code is
    package businessLogic;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;
    import org.apache.poi.hssf.eventusermodel.HSSFEventFactory;
    import org.apache.poi.hssf.eventusermodel.HSSFListener;
    import org.apache.poi.hssf.eventusermodel.HSSFRequest;
    import org.apache.poi.hssf.record.BOFRecord;
    import org.apache.poi.hssf.record.BoundSheetRecord;
    import org.apache.poi.hssf.record.LabelSSTRecord;
    import org.apache.poi.hssf.record.NumberRecord;
    import org.apache.poi.hssf.record.Record;
    import org.apache.poi.hssf.record.RowRecord;
    import org.apache.poi.hssf.record.SSTRecord;
    import org.apache.poi.poifs.filesystem.POIFSFileSystem;
    * This example shows how to use the event API for reading a file.
    public class EventExample implements HSSFListener
    private SSTRecord sstrec;
    * This method listens for incoming records and handles them as required.
    * @param record The record that was found while reading.
    public void processRecord(Record record)
         try
    switch (record.getSid())
    // the BOFRecord can represent either the beginning of a sheet or the workbook
    case BOFRecord.sid:
    BOFRecord bof = (BOFRecord) record;
    if (bof.getType() == bof.TYPE_WORKBOOK)
    System.out.println("Encountered workbook");
    // assigned to the class level member
    } else if (bof.getType() == bof.TYPE_WORKSHEET)
    System.out.println("Encountered sheet reference");
    break;
    case BoundSheetRecord.sid:
    BoundSheetRecord bsr = (BoundSheetRecord) record;
    System.out.println("New sheet named: " + bsr.getSheetname());
    break;
    case RowRecord.sid:
    RowRecord rowrec = (RowRecord) record;
    System.out.println("Row found, first column at " + rowrec.getFirstCol() + " last column at " + rowrec.getLastCol());
    break;
    case NumberRecord.sid:
    NumberRecord numrec = (NumberRecord) record;
    System.out.println("Cell found with value " + numrec.getValue()+ " at row " + numrec.getRow() + " and column " + numrec.getColumn());
    break;
    // SSTRecords store a array of unique strings used in Excel.
    case SSTRecord.sid:
    sstrec = (SSTRecord) record;
    for (int k = 0; k < sstrec.getNumUniqueStrings(); k++)
    System.out.println("String table value " + k + " = " + sstrec.getString(k));
    break;
    case LabelSSTRecord.sid:
    LabelSSTRecord lrec = (LabelSSTRecord) record;
    System.out.println("String cell found with value " + sstrec.getString(lrec.getSSTIndex()));
    break;
         catch(Exception ex)
    * Read an excel file and spit out what we find.
    * @param args Expect one argument that is the file to read.
    * @throws IOException When there is an error processing the file.
    public static void main(String[] args) throws IOException
    // create a new file input stream with the input file specified
    // at the command line
         try
              FileInputStream fin = new FileInputStream("C:/FTERPending/FTER format.xls");
              // create a new org.apache.poi.poifs.filesystem.Filesystem
              POIFSFileSystem poifs = new POIFSFileSystem(fin);
              //      get the Workbook (excel part) stream in a InputStream
              InputStream din = poifs.createDocumentInputStream("Workbook");
              // construct out HSSFRequest object
              HSSFRequest req = new HSSFRequest();
              // lazy listen for ALL records with the listener shown above
              req.addListenerForAllRecords(new EventExample());
              // create our event factory
              HSSFEventFactory factory = new HSSFEventFactory();
              //      process our events based on the document input stream
              factory.processEvents(req, din);
              // once all the events are processed close our file input stream
              fin.close();
              // and our document input stream (don't want to leak these!)
              din.close();
              System.out.println("done.");
         catch(Exception ex)
    It prints correctly the output at the console and after that it throws an exception as
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at org.apache.poi.hssf.record.RecordFactory.createRecord(RecordFactory.java:224)
         at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.genericProcessEvents(HSSFEventFactory.java:183)
         at org.apache.poi.hssf.eventusermodel.HSSFEventFactory.processEvents(HSSFEventFactory.java:101)
         at businessLogic.EventExample.main(EventExample.java:103)
    Caused by: java.lang.ArrayIndexOutOfBoundsException
         at java.lang.System.arraycopy(Native Method)
         at org.apache.poi.hssf.record.UnknownRecord.<init>(UnknownRecord.java:62)
         at org.apache.poi.hssf.record.SubRecord.createSubRecord(SubRecord.java:57)
         at org.apache.poi.hssf.record.ObjRecord.fillFields(ObjRecord.java:99)
         at org.apache.poi.hssf.record.Record.fillFields(Record.java:90)
         at org.apache.poi.hssf.record.Record.<init>(Record.java:55)
         at org.apache.poi.hssf.record.ObjRecord.<init>(ObjRecord.java:61)
         ... 8 more
    I am not getting why this exception is cming
    can anyone help me pls reply

    Does your Excel file has the "AutoFilter" activated?
    If that is the problem, you have here a solution for reading a file with AutoFilter : http://article.gmane.org/gmane.comp.jakarta.poi.user/4690

  • Imap email messages keep getting remarked unread after reading them?

    I have a specific email address, which is accessed through Imap services. Whenever I read them, or mark them read, a few minutes or hours later, I will see that they have been marked unread again. The messages that seem to get automatically remarked unread all seem to be messages that had arrived during that day only.
    Any idea how to fix this?

    Hi and Welcome to the Community!
    With a strong carrier network signal (e.g., not merely WiFi), I suggest the following steps, in order, even if they seem redundant to what you have already tried (step 1 should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    Please wait for one "registration" message to arrive
    2) Reboot
    Pre-BB10 Devices ONLY. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes.
    BB10 Devices. Hold the top button down until the counter reaches zero. Wait for the device to be fully shut down (e.g., nothing at all displayed on the screen, no LED lights, etc.). Hold the top button until the red LED is lit. Wait through the full boot-up process. IF this fails, you can attempt the battery-pull method above, but it is normally NOT recommended unless nothing else works.
    See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then you should try deleting and re-adding your configurations for the affected email accounts. Otherwise, you should contact your mobile service provider for formal support.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Pages Document created on Macbook Air cannot be opened on Ipad Mini. I get a message that reads, "only documents saved in pages '09 may be opened." These devices are one week old and I just downloaded Pages for each.

    I just got a Macbook Air running 10.8.2 and an iPad Mini. I downloaded Pages for both. I created a document in pages on the MBair and tried to save it to the iPad Mini so I could work on it while commuting and the file does not show up on the mini. I have tried to saved the file through iTunes app page and the message keeps telling me I can only transfer files saved in Pages 09. What gives? I can transfer files made in Microsoft word no problem, but files made in the same program do not work. Any help?? Very frustrating.

    You are aware that Pages for Mac and Pages for iPad /iPhone/iPod are 2 different program?
    Looks like you have Pages for Apple mobile devices but not for your Mac.
    If that's the case
    Pages for Mac: https://itunes.apple.com/au/app/pages/id409201541?mt=12
    Pages for iPad/iPhone/iPod touch: https://itunes.apple.com/au/app/pages/id361309726?mt=8

  • Can someone help me with getting a form from read-only to editable

    I have an e-mail button to email my form to the users and it puts the form into a READONLY status, how do I get the fields to be editable again? For example, I have a form that a user is going to fill out, then email to others. Once the pdf file is attached to the email, and she sends the document, I want her to be able to use this same form tomorrow to fill out again. Is there any way to do this? I am using Adobe Livecycle Designer 8.0. Any help would be greatly appreaciated!!

    Which version of the Flash plugin do you have?
    *http://www.adobe.com/software/flash/about/
    *http://helpx.adobe.com/flash-player.html
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Outlook Public Folders- Some Documents Persistently Open Read-Only

    We have been having this issue for a few months.
    Previously, users could navigate to Public Folders and open Excel or Word documents, make changes, save and close without issue.
    When this problem first started, users were getting files open as Read Only. We were unsure why this was happening and could not find a fix, so we put out an instructional document on how to: disable Protected view in Excel or Word, turn off attachment previewing
    in Outlook and disable the preview pane. If users performed these steps, they could then operate without an issue.
    Now it is occurring again, even with the above fixes in place. We tried setting up a Group Policy to make these settings and it didn't help.
    My sysadmin had me block the following updates in WSUS: 2687567, 2965295 and 2956128. We thought this may be the cause but to no avail. On my work desktop and laptop it occurs with these updates not installed.
    We can access the documents OK, without Read Only status using Outlook Web Access. We are using a mix of Windows 7 Professional and Enterprise. We are using Exchange 2008, Office 2010.
    Thanks for any help you can provide.

    Hi,
    Based on my knowledge, since Outlook 2010, it seems to be by design.
    The easiest way to open and modify the attachment in the message, is to "Edit" the message, then open the attachment, make changes in the attachment and save the attachment, then Save the Message.
    You mentioned "Previously", was that a previous version of Outlook?
    Regards,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here.

  • Single User Mode : Read Only Filesystem

    I can't edit files in single user mode as Root. When I try to edit them I get a msg saying "Read Only Filesystem".
    I have tried chmod with no evial. I want to change my .profile as root so cls='clear'.
    Any ideas?
    Also when I try to login to my account in single user mode it says that account does not exist. However I'm in that accunt right now!
    Thank You.

    When you boot up into single user mode, there is a single recognized user -- root. That's why they call it single-user mode and not multi-user mode.
    When you boot up into single user mode, the disk mounts as read-only. You have to make it writeable in order to do anything to it. I forget the actual command but it displays on the monitor nearby where it gives the "fsck" command syntax when you first boot into it. It's something like "mount -uw /" or something to that effect. It is saying to mount the root drive ("/") with user write privileges.
    Then just "pico /Users/Mephux/.profile" (although I profess that I don't understand why you have to edit this file as root).
    (if you find that this solves your problem, or is actually helpful towards arriving at a solution to your problem, please consider clicking on either the "helpful" or "solved" buttons above)

  • Time Machine Read only error launches airport

    I have a partitioned external and use Time Machine on an OSX10.5, and SilverKeeper for the OSX10.4.11 Mac. Everything's been fine until yesterday. Backed up the 10.4 machine with the designated partition, drive 'hung', computer crashed. So, now, the partition for the Time Machine computer doesn't work, the MAC Silverkeeper appears fine and I get the "Time Machine Read only error" on the MacB Pro 10.5. I can "read/write" for the other partitioned, can verify and repair. No go to repair the "Time Machine" partition. And here's the best part: If I choose "NONE" in Time Machine Preferences to unchoose that particular drive, The computer launches the Airport Express Utility and offers my Airport express as a choice for a drive. What's up with that?

    I have a partitioned external and use Time Machine on an OSX10.5, and SilverKeeper for the OSX10.4.11 Mac. Everything's been fine until yesterday. Backed up the 10.4 machine with the designated partition, drive 'hung', computer crashed. So, now, the partition for the Time Machine computer doesn't work, the MAC Silverkeeper appears fine and I get the "Time Machine Read only error" on the MacB Pro 10.5. I can "read/write" for the other partitioned, can verify and repair. No go to repair the "Time Machine" partition. And here's the best part: If I choose "NONE" in Time Machine Preferences to unchoose that particular drive, The computer launches the Airport Express Utility and offers my Airport express as a choice for a drive. What's up with that?

  • Seagate back up plus read only?

    Hi, I have just acquired my mac book air and love it, and I bought a seagate back up  plus portable drive so I can download from my macbook air.
    i am a computer idiot ( sorry) and have registered my seagate through the computer, but it will not allow me to save anything to my seagate as it says read only and it will not save changes onto my seagate if i alter photos etc for same reason.
    Help please how can i get it out of read only please ?

    thank you for all your help.  I moved everything off my seagate and then formatted it and we are all working together beautifully now.
    I can't tell you how much your support gave the courage to try something I would never have attempted.  I am learning how to use my computer and love it even more.
    Thank you again, I am very grateful x

  • Scheduling workbooks in read only database

    We have a standby server for our OLTP and it is read only database. Read only database is not allowing to schedule discoverer reports. Can anyone suggest how to handle this?

    Its a replication of OLTP. Every day night OLTP logs are applied into this read only database. We cannot change anything in EUL. Whatever the changes we do in OLTP EUL it gets reflected in the read only database.

  • All SD cards read only

    Both the internal Sd reader on my iMAC and a usb external reader read all cards as read/only.  If you go to get info, you can't change this setting.  In Disk Utility you can't do anything, everything is greyed out. When you insert a card into either reader and then remove it with ejecting, I don't get the error message telling me to eject before removing.
    Any ideas any body?
    Wayne
    <Email Edited By Host>

    There was a thread from 2009 about this problem: it seems that some sd cards (and/or perhaps some sd card slots) get confused, and indicate read only with the switch at either end, but will indicate read/write status with the switch midway between the ends (perhaps a little bit more toward the unlocked end). This sounds strange, I know, but it worked for me today, with a brand new 64GB card (the first one I've ever used in my 21 month old MBP, which indicated read-only with the switch at either end, but became read-write with the switch in the middle.

  • My inbox messages are labeled as "Read Only" and I cannot delete them

    The messages in my inbox have been marked as "read only" somehow and I cannot delete them or move them to the trash. When I click on them I can read them but they stay black instead of turning to grey, so my unread mail count never goes down. It is an AOL account and the only way I can delete them is to go onto AOL.com and delete them from there.
    Is there a way to get rid of the "read only" I don't know how it got there to begin with. It just started happening about a month ago

    Connect the phone to the computer and set it to sync only the photos you want on the phone.
    <http://support.apple.com/kb/ht4236>

  • The download disk get to 99% after

    the download disk get to 99% after reading the wireless hookup them states ti takes too long to load. then it says to restart pc

    Hi @tummies ,
    I see that you are having issues installing the printer software. It gets to 99% and times out. I would really like to be able to help you resolve this issue.
    I believe after connecting the USB for the initial setup, the Universal Driver is being installed instead of the Laserjet driver, which is causing this error. Please follow the steps below to see if we can get you up and running.
    Disconnect the USB cable.
    Run the uninstall from the CD.
    Touch the Windows key and the E key to access the computer window.
    Right click on the CD for the printer, left click open in a new window, double click on uninstall.
    Perform a clean boot before installing the software again. How to perform a clean boot in Windows.
    Right after connecting the USB cable, follow this document immediately so you won't get the Fatal error again. A Fatal Error Displays During Software Installation. After this is done the installation should continue. Then you can configure the wireless.
    Test the printer.
    Then you will have to go back and enable the Startup programs and turn the Antivirus Software back on again.
    If you need further assistance, just let me know.
    Have a great day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • After reading and resetting everything with Keyboard I still get blank white screen. The only way I can boot to Mavericks is unplug power cord, push and hold power button while plugging power cord in. Fans at full speed.

    After reading and resetting everything with Keyboard I still get blank white screen on 2nd? page of boot. The only way I can boot to Mavericks is unplug power cord, push and hold power button while plugging power cord in. Fans run at full speed, machine boots then runs normal except the dvdrw will not . The mid 2011 IMAC had the same problem with LION. I changed hard drives, formatted, and installed a clean install of latest os x mavericks. Any help would be greatly appreciated.
    EtreCheck version: 1.9.15 (52)
    Report generated August 30, 2014 at 6:56:41 PM EDT
    Hardware Information: ?
        iMac (21.5-inch, Mid 2011) (Verified)
        iMac - model: iMac12,1
        1 2.5 GHz Intel Core i5 CPU: 4 cores
        4 GB RAM
    Video Information: ?
        AMD Radeon HD 6750M - VRAM: 512 MB
            iMac 1920 x 1080
    System Software: ?
        OS X 10.9.4 (13E28) - Uptime: 0 days 0:16:53
    Disk Information: ?
        ST3120026AS disk0 : (120.03 GB)
        S.M.A.R.T. Status: Verified
            EFI (disk0s1) <not mounted>: 209.7 MB
            Untitled (disk0s2) / [Startup]: 119.17 GB (87.12 GB free)
            Recovery HD (disk0s3) <not mounted>: 650 MB
        HL-DT-STDVDRW  GA32N 
    USB Information: ?
        Apple Inc. FaceTime HD Camera (Built-in)
        CHICONY USB NetVista Full Width Keyboard
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple Internal Memory Card Reader
    Thunderbolt Information: ?
        Apple Inc. thunderbolt_bus
    Gatekeeper: ?
        Anywhere
    Kernel Extensions: ?
        [loaded]    com.nvidia.CUDA (1.1.0) Support
        [loaded]    com.sophos.kext.sav (9.0.61 - SDK 10.7) Support
        [loaded]    com.sophos.nke.swi (9.0.53 - SDK 10.8) Support
    Startup Items: ?
        CUDA: Path: /System/Library/StartupItems/CUDA
        FanControlDaemon: Path: /Library/StartupItems/FanControlDaemon
    Launch Daemons: ?
        [loaded]    com.adobe.fpsaud.plist Support
        [running]    com.arcsoft.eservutil.plist Support
        [running]    com.bjango.istatmenusdaemon.plist Support
        [loaded]    com.oracle.java.Helper-Tool.plist Support
        [running]    com.sophos.autoupdate.plist Support
        [running]    com.sophos.configuration.plist Support
        [running]    com.sophos.intercheck.plist Support
        [running]    com.sophos.notification.plist Support
        [running]    com.sophos.scan.plist Support
        [running]    com.sophos.sxld.plist Support
        [running]    com.sophos.webd.plist Support
    Launch Agents: ?
        [running]    com.arcsoft.esinter.plist Support
        [running]    com.bjango.istatmenusagent.plist Support
        [loaded]    com.nvidia.CUDASoftwareUpdate.plist Support
        [loaded]    com.oracle.java.Java-Updater.plist Support
        [running]    com.sophos.uiserver.plist Support
    User Login Items: ?
        Macs Fan Control
        Firefox
    Internet Plug-ins: ?
        FlashPlayer-10.6: Version: 14.0.0.176 - SDK 10.6 Support
        Flash Player: Version: 14.0.0.176 - SDK 10.6 Support
        QuickTime Plugin: Version: 7.7.3
        JavaAppletPlugin: Version: Java 7 Update 67 Check version
        Default Browser: Version: 537 - SDK 10.9
    Audio Plug-ins: ?
        BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
        AirPlay: Version: 2.0 - SDK 10.9
        AppleAVBAudio: Version: 203.2 - SDK 10.9
        iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
        Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes: ?
        CUDA Preferences  Support
        Fan Control  Support
        Flash Player  Support
        Java  Support
    Time Machine: ?
        Time Machine not configured!
    Top Processes by CPU: ?
             1%    WindowServer
             1%    fontd
             0%    firefox
             0%    SystemUIServer
             0%    SophosWebIntelligence
    Top Processes by Memory: ?
        229 MB    firefox
        156 MB    SophosScanD
        152 MB    InterCheck
        131 MB    com.apple.IconServicesAgent
        115 MB    SophosAntiVirus
    Virtual Memory Information: ?
        424 MB    Free RAM
        1.53 GB    Active RAM
        1.37 GB    Inactive RAM
        699 MB    Wired RAM
        1.26 GB    Page-ins
        0 B    Page-outs

    I'd start by getting rid of the following software responsible for these extensions.
    Kernel Extensions: ?
        [loaded]    com.nvidia.CUDA (1.1.0) Support
        [loaded]    com.sophos.kext.sav (9.0.61 - SDK 10.7) Support
        [loaded]    com.sophos.nke.swi (9.0.53 - SDK 10.8) Support
    Startup Items: ?
        CUDA: Path: /System/Library/StartupItems/CUDA
        FanControlDaemon: Path: /Library/StartupItems/FanControlDaemon
    Use the uninstaller provided with the Sophos software. You can uninstall CUDA via the preference pane. Be sure you remove the com.nvidia.CUDA extension which is located in the /System/Library/Extensions/ folder. Not sure if Fan Control has an uninstaller so you will have to do it manually:
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash.  Applications may create preference files that are stored in the /Home/Library/Preferences/ folder.  Although they do nothing once you delete the associated application, they do take up some disk space.  If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application.  In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder.  You can also check there to see if the application has created a folder.  You can also delete the folder that's in the Applications Support folder.  Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item.  Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder.  Log In Items are set in the Accounts preferences.  Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab.  Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS.  Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term.  Unfortunately Spotlight will not look in certain folders by default.  You can modify Spotlight's behavior or use a third-party search utility, EasyFind, instead.
    Some applications install a receipt in the /Library/Receipts/ folder.  Usually with the same name as the program or the developer.  The item generally has a ".pkg" extension.  Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are many utilities that can uninstall applications.  Here is a selection:
        1. AppZapper
        2. AppDelete
        3. Automaton
        4. Hazel
        5. AppCleaner
        6. CleanApp
        7. iTrash
        8. Amnesia
        9. Uninstaller
      10. Spring Cleaning
    For more information visit The XLab FAQs and read the FAQ on removing software.
    Be sure to remove your two Login Items. Finally do this:
    Reinstall Lion, Mountain Lion, or Mavericks without erasing drive
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. 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 click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu.
    Reinstall Lion, Mountain Lion, or Mavericks
    OS X Mavericks- Reinstall OS X
    OS X Mountain Lion- Reinstall OS X
    OS X Lion- Reinstall Mac OS X
         Note: You will need an active Internet connection. I suggest using Ethernet
                     if possible because it is three times faster than wireless.

  • After 10.5.3 update, Time Machine disk getting set to read-only

    "The Further Adventures of Time Machine..."
    Since applying the 10.5.3 update, Time Machine (or something) seems to be randomly setting my backup disk (external Western Digital "My Book Studio Edition" 500GB) to read-only which, of course, brings Time Machine backups to a halt. I can generally just restart my MacBook Pro and all is well again but then after a few more hourly backups, it will go back to read-only status again. There's a couple of things about this that are odd:
    1) Even if I open "Get Info" and try to reset the permissions on the drive, I'm locked out of doing so even though I'm the admin. What's even odder (more odd?), my user and "staff" show read & write but about the user name list, it states "You can only read"!?
    2) I have this disk partitioned and even the partitions are read-only. Disk Utility reports the entire disk is locked.
    Like I said, this has only start happening since 10.5.3 update.
    Regards,
    Terry

    Here's the latest:
    Also, the time machine back up drive had been smooth sailing since I hooked it up. Never had an ounce of problems until 10.5.3.
    Format is Mac OS Extended.
    Thanks.
    CP
    Last login: Mon Jun 9 18:36:23 on ttys000
    cpstaley:~ cpstaley$ ls -aleO@ /Volumes/iMac\ Back-Up
    total 9008
    drwxrwxr-t@ 35 root admin - 1258 Jan 3 20:22 .
    com.apple.FinderInfo 32
    drwxrwxrwt@ 7 root admin hidden 238 Jun 5 21:04 ..
    com.apple.FinderInfo 32
    -r-------- 1 root wheel - 16 Dec 31 20:43 .0011243977f4
    -rw-rw-r--@ 1 cpstaley admin hidden 12292 Feb 18 21:26 .DS_Store
    com.apple.FinderInfo 32
    -rw-rw-rw- 1 cpstaley cpstaley - 862 Dec 31 16:12 .MaxSyncConfig
    drw------- 3 root admin hidden 102 Dec 31 20:43 .Spotlight-V100
    drwxrwxrwt@ 3 cpstaley admin hidden 102 Jan 3 20:22 .TemporaryItems
    com.apple.FinderInfo 32
    d-wx-wx-wt 2 root admin hidden 68 Jun 5 16:46 .Trashes
    -rw-r--r--@ 1 cpstaley admin hidden 135038 Jan 1 20:15 .VolumeIcon.icns
    com.apple.FinderInfo 32
    -rw-r--r-- 1 cpstaley admin - 59078 Aug 31 2007 .VolumeIcon.icns.candybarbackup
    -rw-r--r-- 1 root admin - 0 Dec 31 19:52 .com.apple.timemachine.supported
    drwx------ 96 root admin - 3264 Jun 5 03:30 .fseventsd
    drwxrwxr-x@ 122 root admin - 4148 Dec 31 15:49 Applications
    com.apple.FinderInfo 32
    drwxr-xr-x+ 3 root admin - 102 Dec 31 20:44 Backups.backupdb
    0: group:everyone deny addfile,delete,add_subdirectory,deletechild,writeattr,writeextattr,chown
    -rw-r--r--@ 1 root cpstaley hidden 6656 Dec 31 19:50 Desktop DB
    com.apple.FinderInfo 32
    -rw-r--r--@ 1 root cpstaley hidden 11522 Dec 31 19:30 Desktop DF
    com.apple.FinderInfo 32
    drwxrwxr-t@ 48 root admin - 1632 Dec 31 15:49 Library
    com.apple.FinderInfo 32
    drwxr-xr-x 2 root wheel - 68 Dec 31 15:52 Network
    drwxr-xr-x 4 root wheel - 136 Nov 26 2007 System
    lrwxr-xr-x 1 root admin - 60 Dec 31 19:19 User Guides And Information -> /Library/Documentation/User Guides and Information.localized
    drwxrwxr-t 7 root admin - 238 Dec 31 19:34 Users
    drwxrwxrwt@ 3 root admin hidden 102 Dec 31 16:33 Volumes
    com.apple.FinderInfo 32
    drwxr-xr-x@ 4 root admin hidden 136 Aug 30 2007 automount
    com.apple.FinderInfo 32
    drwxr-xr-x@ 40 root wheel hidden 1360 Nov 26 2007 bin
    com.apple.FinderInfo 32
    drwxrwxr-t@ 2 root admin hidden 68 Mar 22 2005 cores
    com.apple.FinderInfo 32
    dr-xr-xr-x 2 root wheel - 68 Dec 31 15:51 dev
    lrwxr-xr-x@ 1 root admin hidden 11 Dec 31 19:19 etc -> private/etc
    com.apple.FinderInfo 32
    -rw-r--r--@ 1 root wheel hidden 4352200 Oct 10 2007 mach_kernel
    com.apple.FinderInfo 32
    drwxr-xr-x@ 6 root wheel hidden 204 Dec 31 15:51 private
    com.apple.FinderInfo 32
    drwxr-xr-x@ 63 root wheel hidden 2142 Dec 26 13:32 sbin
    com.apple.FinderInfo 32
    lrwxr-xr-x@ 1 root admin hidden 11 Dec 31 19:19 tmp -> private/tmp
    com.apple.FinderInfo 32
    drwxr-xr-x@ 9 root wheel - 306 Sep 10 2007 usr
    com.apple.FinderInfo 32
    lrwxr-xr-x@ 1 root admin hidden 11 Dec 31 19:19 var -> private/var
    com.apple.FinderInfo 32

Maybe you are looking for

  • IPhoto '11 works on one user account but not the other

    I upgraded to iPhoto '11 from iPhoto '08 a couple of weeks ago using the MacApp store. After doing so, I opened the application on my main user account, received a message that the library had to be updated, the application did so, and it has been wo

  • IPhoto Book Themes - Printed Guides

    Hi, Many of you are familiar with my rather obsessive site documenting all the different layouts that you can create with each iPhoto book theme: http://www.lizcastro.com/iphotobookthemes I've long thought it would be handy to have a printable versio

  • Edit HTML FORM for Travel Request in BADI

    Hi Experts, I'm trying to use the BADI FITP_REQUEST_HTML_FORM_BADIDEF to edit the HTML form for travel request. I need to add and hide fields in tables, but I don't need to create new tables in the form. The example is like the following:   CALL METH

  • Filling out an online form

    Hello all, I am looking for opinions please if possible. If you visit a website and wish to download/view/print a PDF relating to a particular product on the site, would it put you off if you could only access the pdf if you fill in your contact deta

  • IPhone: Secure Connection Failed...what to do?

    Hi, I'm trying to set up my email account on my iPhone and I'm having difficulties doing it. I have entered the information correctly many times now and I get the same result. The account is a POP account, I believe associated with squirrlemail some