CRC ERROR ----- WHY ???-----

Hi all,
I am facing the crc error with some one switch... I did verifed the L1 (connections, power etc...) this are okay.
After of verify all this, I did a test disabling (disconnect cable) the port and clear the counters, but the port continuos the increase "CRC ERROR".
Someone Known why IS this happeing???
Probably thi problem on switch, but why????

It is still counting with the cable disconnected? Surreal!
The only thing I can think of is that it might be being used as a reflector port for an RSPAN session.
What model of switch is it? Can you show us a show run and a show int for the port?
Kevin Dorrell
Luxembourg

Similar Messages

  • Why I get CRC error when copying outlook.ost file?

    My workstation is using NTFS, Outlook 2007 with Exchange 2007 server.
    My outlook.ost file is 1.7GB.
    As my Outlook runs into problem, I tried to copy the outlook.ost file to another location for repair, but I keep getting CRC errors and the file was not copied.
    I also tried to use winrar to compress it and it runs into the same CRC error.
    Q#1. What causes this CRC error? hard disk error or software?
    Q#2. How to repair such CRC error?
    Thanks.

    Hi Peter,
    The cyclic redundancy check, or “CRC” error, indicates a bad spot/corruptions within the file that you are trying to copy and in lot of cases with your hard disk.
    To make sure if the problem is with the .ost file or your hard disk, you can fire up a Command Prompt window, and then copy the file to NUL:
    C:>CD (path of your .ost file)
    C:(path of your .ost file)>copy name.ost NUL
    If this succeeds, the problem is with your .ost file. If this fails, it should be a hardware based disk issues.
    If it's an issue with your .ost file, I'd suggest to run
    scanpst.exe tool to repair your data file, then check if this fixed it.
    When the issue is hardware based, you probably need to find Disk Errors in the System log of your Event Viewer. You can access the Event Viewer by going to:
    Control Panel-> Administrative Tools-> Event Viewer
    By the way, .ost file is actually a local copy of your mail items on the server. For a corrupted .ost file, you actually don't need to "copy the outlook.ost file to another location for repair". You can simply rename it to .ost.old
    or delete it, and then re-launch Outlook to let it generate a new .ost file from server.
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Download a zip file with gui_download = CRC error

    Hello erverybody,
    I download a zip compressed file with gui_download (cl_gui_interface_services) in binary mode.
    When I try to open it, I have a crc error. Does anybody has any idea why?
    here the code:
           TYPES: begin of t_zip,
                 text(1024) type c,
                 end of t_zip.
          DATA: itab_zip type table of t_zip,
                wa_zip type t_zip.
          OPEN DATASET p_fileon IN BINARY MODE FOR INPUT.
          IF sy-subrc <> 0.
            MESSAGE text-e01 TYPE 'E'.
          ENDIF.
          DO.
            READ DATASET p_fileon INTO wa_zip MAXIMUM LENGTH 1024.
            APPEND wa_zip TO itab_zip.
            IF sy-subrc <> 0.
              EXIT.
            ENDIF.
          ENDDO.
          CLOSE DATASET p_fileon.
          MOVE p_filedw TO filename.
          CALL METHOD cl_gui_frontend_services=>gui_download
            EXPORTING
              filename                  = filename
              FILETYPE                  = 'BIN'
            CHANGING
              data_tab                  = itab_zip
    Thanks
    Joachim

    Hi Joachim,
    1. use this code (just copy paste in new program)
    2. It will download from SERVER to front-end.
    3.
    *& Report  YBCR_FILEDOWNLOAD                                           *
    REPORT  ybcr_filedownload                       .
    DATA
    DATA : file_name TYPE string.
    DATA : BEGIN OF itab OCCURS 0,
           ln(255) TYPE c,
           END OF itab.
    SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : appfn(150) TYPE c LOWER CASE OBLIGATORY.
    PARAMETERS : p_file LIKE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
      CLEAR p_file.
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = p_file.
      file_name = p_file.
    START-OF-SELECTION
    START-OF-SELECTION.
      OPEN DATASET appfn FOR INPUT IN TEXT MODE  ENCODING DEFAULT .
      IF sy-subrc <> 0.
        MESSAGE s999(yhr) WITH 'COULD NOT OPEN FILE ON APP SERVER'.
        LEAVE LIST-PROCESSING.
      ENDIF.
      DO.
        READ DATASET appfn INTO itab.
        IF sy-subrc = 0.
          APPEND itab.
        ELSE.
          EXIT.
        ENDIF.
      ENDDO.
      file_name = p_file.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
      BIN_FILESIZE                    =
          filename                        = file_name
      FILETYPE                        = 'ASC'
      APPEND                          = ' '
      WRITE_FIELD_SEPARATOR           = ' '
      HEADER                          = '00'
      TRUNC_TRAILING_BLANKS           = ' '
      WRITE_LF                        = 'X'
      COL_SELECT                      = ' '
      COL_SELECT_MASK                 = ' '
      DAT_MODE                        = ' '
      CONFIRM_OVERWRITE               = ' '
      NO_AUTH_CHECK                   = ' '
      CODEPAGE                        = ' '
      IGNORE_CERR                     = ABAP_TRUE
      REPLACEMENT                     = '#'
      WRITE_BOM                       = ' '
      TRUNC_TRAILING_BLANKS_EOL       = 'X'
      WK1_N_FORMAT                    = ' '
      WK1_N_SIZE                      = ' '
      WK1_T_FORMAT                    = ' '
      WK1_T_SIZE                      = ' '
    IMPORTING
      FILELENGTH                      =
        TABLES
          data_tab                        = itab
      FIELDNAMES                      =
    EXCEPTIONS
      FILE_WRITE_ERROR                = 1
      NO_BATCH                        = 2
      GUI_REFUSE_FILETRANSFER         = 3
      INVALID_TYPE                    = 4
      NO_AUTHORITY                    = 5
      UNKNOWN_ERROR                   = 6
      HEADER_NOT_ALLOWED              = 7
      SEPARATOR_NOT_ALLOWED           = 8
      FILESIZE_NOT_ALLOWED            = 9
      HEADER_TOO_LONG                 = 10
      DP_ERROR_CREATE                 = 11
      DP_ERROR_SEND                   = 12
      DP_ERROR_WRITE                  = 13
      UNKNOWN_DP_ERROR                = 14
      ACCESS_DENIED                   = 15
      DP_OUT_OF_MEMORY                = 16
      DISK_FULL                       = 17
      DP_TIMEOUT                      = 18
      FILE_NOT_FOUND                  = 19
      DATAPROVIDER_EXCEPTION          = 20
      CONTROL_FLUSH_ERROR             = 21
      OTHERS                          = 22
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    regards,
    amit m.

  • Acrhived files copied off ipod have CRC errors

    Hey Everyone,
    Looked everywhere for someone else having this problem, but cant seem to find it.
    Basically I use my ipod to transport large files between work and home as well as music listening (duh)
    Anyway, these files are normally sent as compressed archives (mostly .rar). When I go to unpack them after copying them off the ipod they have crc errors, so the files in the archive are stuffed.
    Now, IT IS DEFINITELY THE IPOD CAUSING THIS. please dont give any advice that makes you think its the pc causing it. because it's not.
    I have tried copying files off/on the ipod from many pcs, and they all get the CRC problems. Ive also updated the ipods firmware, and done factory reset to wipe it totally clear.
    Ive tried other archiving/packing the files on different pcs and using different archiving formats.
    Oh, also, I can seem to move small files(under 100MB) off/on with no problems, and it plays music/video without any problems at all.
    Anyone have any suggestions for why this might be happening?
    (please dont accuse me of piracy, I work with large digital media, and yes, I do it on a PC too).

    Here is an article stating that a windows formatted ipod has a file size limit of 4gb, because of the FAT32 file system. Could that be your problem?
    http://docs.info.apple.com/article.html?artnum=93866

  • CRC Error appearing with older mp3 model (Model no.:DMPLX100 -128

    I was just wondering what CRC error means and is there anyway I can access to the mp3 player's folders as it doesn't load like it normally does anymore on to my computer. Everytime I un-hold the player, it says 'Change! Hold-key on!'. Why is this happening? Is there any solution to this problem?

    A CRC error is one found by a Cyclic Redundancy Check - this is basically a check that is carried out during transfers of data to check whether the data received is the same as the data sent.
    I have never seen any reference to a CRC check with a Creative player, though.
    This is also mentioned in a KB article for the early MuVos:
    If you remove the power pack too quickly after turning off the Creative MuVo you may find that the MuVo fails to load. To resolve this problem we recommend you delete the <B>settings.dat </B>file from the MuVo in Windows Explorer<B>,</B> this will recover the unit without losing the other files stored on it. (Settings.dat is a hidden file, you will need to select "Show Hidden Files and Folders" in Folder Options to see it.)
    You will need to connect your player and view it in Windows Explorer.
    PB
    Message Edited by PeeBee on -03-2005 09:5 AM

  • CRC errors with non-home hub device

    Hey folks
    When I first replaced my dying BT Home Hub with a third party DSL modem, there were initially a lot of CRC errors and poor SNR ratios. I called BT Broadband support and the agent appeared to rectify the problem on by undertaking actions on BT's side. It was something like performing two line tests back-to-back -- I know sounds odd, but it worked and the the third party DSL modem worked happily for 6 months.
    This week the third party modem started reporting high numbers of CRC errors, much like when first connected, it works for a while then resets when the CRC error count overflows. I'm wondering if there is some other state on BT's side that could rectify the problem. I've spoke with two agents this week, and they had no idea what I was talking about (and I agree it sounds like voodoo).
    Any ideas on what the initial action was on BT's side that enabled the modem to work in the first place?
    Thanks
    Solved!
    Go to Solution.

    Hi John
    I didn't understand the question about the test socket (physical socket?).
    The line passes the quiet line test.
    The third party router shows:
            Downstream    
    Upstream
    SNR Margin
    0.1
    6.2
    db
    Line Attenuation
    53.5
    27.0
    db
    Data Rate
    5705
    1023
    Kbps
    Max Rate
    22116
    1036
    Kbps
    POWER
    0.0
    12.3
    dbm
    CRC
    5786
    0
    The CRC errors accumulate until they hit a threshold and the device resets dropping the connection.
    The Home hub shows:
    ADSL settings
    VPI/VCI    0/38
    Type    PPPoA
    Modulation    ITU-T G.992.5
    Latency type    Interleaved
    Noise margin (Down/Up)    2.8 dB / 5.3 dB
    Line attenuation (Down/Up)    49.5 dB / 26.1 dB
    Output power (Down/Up)    0.0 dBm / 12.9 dBm
    The obvious difference is 3dB in line attenuation and noise margin. This was the case when I first connected the third party router before BT did the line reset that allowed the device to work. It has worked flawlessly for months.
    Thanks
    BTW, I don't want to appear unduly ornery, but BT tech support repeatedly ask on the telephone "why aren't you using HH2 we provided?".
    1) It randomly drops OS X wifi connections which makes me really unpopular in the house.
    2) It has poor wifi interaction with work lenovo laptop.
    3) It has no support for QoS provisioning so kids streaming video interferes with work.
    4) It has unreliable and undocumented USB storage, cf third-party solution which offers glitchless SMB and FTP.
    5) Printer support is undocumented (though works better than my third-party alternative :-) )
    My first HomeHub 2 had exactly the same issues before it died at which time I invested in a third party alternative. To credit BT they sent a refurbished replacement but this has all the same issues and a non-functioning reset switch.

  • KT4 ULTRA + FSB133 = CRC ERROR !!!!!

    KT4 ULTRA + FSB133 = CRC ERROR !!!!!
    WHY ???
    KT4 ULTRA, Athlon 1800XP,256Mb333 Kingstone, GF2,WD 80Gb, IBM 40GB, CDRW, DVD, Live,
    PSU: 300W Codegen
    +3.3V - 20 A
    +5V - 30 A
    MAX 165 W
    +12V - 13 A
    -5V - 0.5 A
    -12V - 0.8 A
    Max 9.6W

    put codegen in search engine herelink
    all problems related to not enough juice
    also read this onelink

  • Crc errors

    Any one know why the up crc errors as shown below may be caused
    VPI/VCI
    0/38
    Type
    PPPoA
    Modulation
    ITU-T G.992.1
    Latency type
    Interleaved
    Noise margin (Down/Up)
    15.6 dB / 23.0 dB
    Line attenuation (Down/Up)
    10.0 dB / 5.0 dB
    Output power (Down/Up)
    13.8 dBm / 12.4 dBm
    Loss of Framing (Local)
    0
    Loss of Signal (Local)
    0
    Loss of Power (Local)
    0
    FEC Errors (Down/Up)
    435 / 3
    CRC Errors (Down/Up)
    0 / 2147480000
    HEC Errors (Down/Up)
    nil / 2
    Error Seconds (Local)
    0
    If any post helps tick the star box on the left
    Just cause Im paranoid dont mean they are not out to get me
    Solved!
    Go to Solution.

    That again seems not to cause problems my linesupports up to 8M and has allways given around 5M downloads which is what sped tests show and actual downloads at around 700KB seems ok ?
    http://www.speedtest.net/result/918955114.png
    If any post helps tick the star box on the left
    Just cause Im paranoid dont mean they are not out to get me

  • CRC error and collisions

    We discover a incrasing problem ved CRC errors and Collisions on catalyst 2950 and catalyst 3560 connected to clients (PC?s)with Gigabit NIC. Gigabit NIC?s is common on all new PC?s. The NIC?S are forced to 100 Mb half duplex and newest drivers.
    The configuration on switchport is as follow: 100 Mb half duplex
    Anybody know why ?

    The matched duplex will elimiate the collision problem. But for the CRC, there may be another issue.
    According to below link, CRC errors occur when a number of frames arrive with an invalid CRC.
    CRCs on the Ethernet are usually an indication of cabling problems. Verify whether all network cable connections are clean, and ensure there is nothing that can cause electromagnetic interference on the cabling.
    http://www.cisco.com/en/US/products/hw/wireless/ps441/products_tech_note09186a0080177aa0.shtml
    Hope this helps.

  • INPUT: KT4/V vs CRC error in large data transfer/CD burning HERE!

    This issue can be solved with BIOS update. KT4V & KT4 Ultra users who are having this problem can request for the TEST BIOS to test on your system. You may either pm/email me or Bas, or get it at http://ftp://ftp.heppen.be/MSI/
    Please report back whether the test BIOS would really fix the problem, or cause any new problem, or any performance hit.
    ** this sounds like a Christmas Gift to KT4V users AND New Year Gift to KT4 Ultra users!!!  :D  **
    To all KT4 Ultra and KT4V users, either you have data corruption or CRC error in large data transfer and CD burning or not, your inputs are needed.
    Please list down your system specs as details as possible. Below here is a guideline, you may take this, CTRL-C (copy) and write your specs in your post.
    1. System specs:
    CPU:
    Motherboard:
    RAM Slot-1: (exact brand and model)
    RAM Slot-2:
    RAM Slot-3:
    display card:  [no overclock]
    IDE-1M:  (exact HDD brand and model pls)
    IDE-1S:
    IDE-2M:
    IDE-2S:
    IDE-3:
    SER-1:
    SER-2:
    PCI-1:
    PCI-2:
    PCI-3:
    PCI-4:
    PCI-5:
    PCI-6:
    PSU: (brand, model, total power, (estimated) combined power)
    BIOS revision:
    Operating System:
    VIA 4-in-1 drivers : (if you installed it, tell us the version)
    other drivers, services or applications might affect the data transfer such as : PCI Latency patch, WPCREDIT modifications, VCool, CoolerXP...
    2. CRC ERROR?
    PASS or FAIL
    If PASS, let us know your BIOS settings.
    If FAIL, proceed as below:
    3. Please use these BIOS settings:
    1. Load BIOS Setup Default
    2. NO OVERCLOCK ON FSB! Set accordingly to your CPU
    2. Set RAM to
    a) SPD, if failed try
    b) User defined to the slowest RAM timings, ie 266,2.5,3,6,3,disable interleave,4,disable 1T, normal
    If PASS, go for more extreme BIOS settings as you usually use:
    1. High Performance Default
    2. set RAM to the extreme timings
    3. DO NOT overclock yet until both 1. and 2. are PASS
    4. Try these suggestions:
    1. Microsoft IDE drivers (uninstall VIA 4-in-1's)
    2. VIA 4-in-1 different version's IDE filter driver?
    3. VIA IDE Miniport driver?
    4. use IDE-3 RAID channel for one HDD data transfer
    5. same HDD transfer, ie C:\dir1\*.* -> C:\dir2\*.*
    6. burn CD at 1x speed
    7. Set the HDD and/or CD to PIO mode, or slower UDMA mode.
    8. If and only if you know how to update BIOS correctly and willing to take some risks, try the BETA BIOS KT4 (1.25), KT4V (1.64) too.
    Please report back your tests and experimentations of these suggestions.
    If you have any workaround to deal with this issue other than set back FSB to 100Mhz, please tell us too.
    Thanks for your inputs!

    My system, just gotten this 2 days ago
    CPU: Athlon XP 2000+
    Motherboard: MSI KT4V (MS-6712)
    RAM Slot-1:
    RAM Slot-2: 512 Mb Kingston DDR 333 CAS 2.5
    RAM Slot-3:
    display card: Abit Siluro GF3 Ti200
    IDE-1M: Western Digital WD800JB (8 Mb Cache) - 80 GB
    IDE-1S: Seagate U-Series ST360020A - 60 GB
    IDE-2M: Sony DVD-ROM 16x (DDU1621)
    IDE-2S: Creative CDRW121032
    IDE-3:
    SER-1:
    SER-2:
    PCI-1:
    PCI-2:
    PCI-3: Accton 1207F 10/100 Fast Ethernet Card
    PCI-4: SBLIVE 5.1 Platinum with Live!Drive II
    PCI-5:
    PCI-6:
    PSU: 400Watts (Generic)
    BIOS revision: 1.6
    Operating System: Windows 2000 with SP3
    VIA 4-in-1 drivers : Hyperion 4.45, only AGP and INF installed. IDE drivers are standard Win2k/SP3 ones.
    2. CRC ERROR?
    FAIL.
    When i had my system, i tried installing Windows ME as i wanted to do dual-booting together with Win2K. When i tried to install NVIDIA Detonator drivers (Ver 30.82), it proceeded as normally and asked for a reboot, which i did, then it just hang before the start of Windows ME. I did a reboot, and later selected "Normal" as Windows ME detected a failed startup, and later i was able to enter Windows ME, but it reported that the NVIDIA Detonator drivers were invalid and of wrong type to my display card.
    Later i tried to move my files from my C:\ to D:\ and it reported saying that my destination file is invalid.
    When i changed my OS to Win2k/SP3 (no more dual-boot), and installed the same NVIDIA detonator driver version, it worked. When i started to copy files again, it later BSOD, and said PAGE_FAULT_ERROR (something like this). When installing from CDs, it will report that my .CAB files are corrupt or have insufficient swap file space (i set mine manually at 1.2Gb size). Then there are times during my reboots and entering win2k, i found my keyboard and mouse (all PS/2) not working and windows loads as usual.
    Later i changed my PCI latency setting from 32 to 96, i managed to install from CD without much further issues.
    Upon reading these posts here, i didn't realize that the MSI KT4 series or the KT400 chipset had so much issues! i have read from countless sites like extremetech and anandtech and none reported about this particular errors i have encountered during my first 2 days with this setup. (this is my first Athlon setup, i'm previously and Intel person-type).
    So far, i conclude in my settings is that:
    -32-Bit settings in Bios settings for CD/DVD/CD-RW must be disabled, i concur with Shumway's recommendations.
    -DMA settings in Windows 2000 for CD/DVD/CD-RW must be set to PIO mode otherwise when copying from CD to HDD will have read errors.
    -Installing the PCI latency fix really does wonders for my set. (PCI Latency fix ver 1.9). Now i can copy files from all my drives without worrying so much about CRC errors. Thank you, George E. Breese.
    -I really want to know why in WinME i can't install the NVIDIA detonator drivers, while in Win2K i can.
    I post again, once i have done some more tests to my system, especially CD-R writes.
    Angel17

  • Input and CRC errors on ASA 5505 outside interface

    All,
    I see input and crc errors on my ASA 5505  eth0/0(outside) interface and packet drops. There is very slow connection though we have 20mb line. ISP also sees the issue on the Lan interface side. We have the speed and duplex configured same on both ISP and our end.
    I am suspecting if this is Physical cable issue. Please suggest.
      Hardware is 88E6095, BW 100 Mbps, DLY 100 usec
            Full-Duplex(Full-duplex), 100 Mbps(100 Mbps)
            Input flow control is unsupported, output flow control is unsupported
            Available but not configured via nameif
            MAC address 001a.b4c9.f3d9, MTU not set
            IP address unassigned
            158138067 packets input, 141061681082 bytes, 0 no buffer
            Received 183037 broadcasts, 0 runts, 0 giants
            19642 input errors, 19642 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
            0 pause input, 0 resume input
            0 L2 decode drops
            144684 switch ingress policy drops
            124291353 packets output, 38197278051 bytes, 0 underruns
            0 pause output, 0 resume output
            0 output errors, 0 collisions, 0 interface resets
            0 late collisions, 0 deferred
            0 rate limit drops
            0 switch egress policy drops
            0 input reset drops, 0 output reset drops

    Hello Ravi,
    This kind of issues CRCs/ Input Errors are tipically known as L1 issues so make sure you check the cable and if that does not make a difference change the port on each side to see if there is a difference.
    Unfortunetly the ASA does not support the Time-Domain Reflectometer feature so we must do the test of L1 by ourselfs.
    Can you clear the counters of the interface, test the changes provided and provide us some feedback?
    Looking for some Networking Assistance? 
    Contact me directly at [email protected]
    I will fix your problem ASAP.
    Cheers,
    Julio Carvajal Segura
    http://laguiadelnetworking.com

  • Crc error in download of OBIEE 11g

    I'm trying to get OBIEE 11g installed, but sadly one of the files i want to download keeps saying it is corrupt.
    http://download.oracle.com/otn/nt/bi/111130/bi_windows_x86_111130_32_disk1_2of2.zip gives a crc-error when extracting it. I tried downloading it multiple times using different browsers/computers but no luck.
    Do more people experience this or does anybody know a solution for this. A mirror to download the file from works fine for me too. Disk 1 file 1 of 2, and both files from disk 2 download and extract just fine.
    thnx for helping.

    Hi,
    We have downloaded the files without any corruption,sometimes it happens due to internet connectivity.
    Follow this link for download and installation http://onlineappsdba.com/index.php/2010/08/14/obiee-11g-111130-documentation-installation/
    Hope helps you.Mark points.
    Cheers,
    KK

  • Bad CRC error when install WebLogic Server 9.2 on Itanium platform.

    I download the install image according below steps:
    1. Go to the BEA download site a http://commerce.bea.com.
    2. Click on the link for Bea WebLogic.
    3. Click on the link for WebLogic Server 9.2.
    From the list of OS Platforms, select Novell SUSE Linux Enterprise Server (9, Itanium).
    4. Download the server920_linux64.bin binary installer.
    Then I try to install on my Itanium box, bad CRC errors occured as below output messages:
    juggernaut:/opt/wls-j2/image # ./server920_linuxia64.bin
    Extracting 0%./tmp//fileZeI8cc/jrockit-jre1.5.0_04/lib/charsets.jar bad CRC c453bc6d (should be 5a4ab10f)
    ............/tmp//fileZeI8cc/jrockit-jre1.5.0_04/lib/rt.jar bad CRC 0f42e0de (should be ce1d9aff)
    /tmp//fileZeI8cc/bids.jar bad CRC c79d217d (should be dc406837)
    /tmp//fileZeI8cc/comdev.jar bad CRC 55cee4be (should be bce80f3d)
    ./tmp//fileZeI8cc/wizard.jar bad CRC 54069bdc (should be c6327edd)
    ../tmp//fileZeI8cc/linux_ia64_jrockit90_150_04_jdk.zip bad CRC b70b8a17 (should be 52ff2ba4)
    ........./tmp//fileZeI8cc/linux_ia64_jrockit90_150_04_jrockit.zip bad CRC 406b75ed (should be 4f913183)
    .............................../tmp//fileZeI8cc/wls9200server_75_COMP_linux64en.jar bad CRC 2bc35275 (should be fe2bcb26)
    ../tmp//fileZeI8cc/wls9200examples_75_COMP_linux64en.jar bad CRC cdb78916 (should be cf255dc9)
    ......../tmp//fileZeI8cc/wls9200plugins_75_COMP_linux64en.jar bad CRC 49e4694b (should be 0b135269)
    ................................./tmp//fileZeI8cc/wlw9200app_75_COMP_linux64en.jar bad CRC fbcdda1a (should be 56d31118)
    100%
    ** Error during extraction, error code = 2.
    Here is my box configurations:
    Disk configuration:
    juggernaut:/opt/wls-j2/image # df -k
    Filesystem 1K-blocks Used Available Use% Mounted on
    /dev/sda3 35002316 4454504 30547812 13% /
    tmpfs 2019488 48 2019440 1% /dev/shm
    /dev/sda1 205587 6587 199000 4% /boot/efi
    RAM configuration:
    juggernaut:/opt/wls-j2/image # vmstat
    procs -----------memory---------- ---swap-- -----io---- system ----cpu----
    r b swpd free buff cache si so bi bo in cs us sy id wa
    0 0 0 1798832 114224 1855424 0 0 3 20 6 0 0 0 100 0
    Kernel:
    Linux juggernaut 2.6.5-7.244-default #1 SMP Mon Dec 12 18:32:25 UTC 2005 ia64 ia64 ia64 GNU/Linux
    By the way, I ftp the image via binary model.
    I've no idea about the errors, any help will be greatly appreciated, thks a million in advance!

    Hi,
    I had come up with this issue twice, once I download WL from a server from Asia, and had this issue. I just download once again from the server at US, and the issue was gone. The second time it was a weird anti virus configuration that tried to scan the file while the installation was taking place (I do not think this last one applies here.)
    Regards,
    LG

  • CRC Error on installing 10.2.0.1 on Linux

    I've downloaded the 10.2.0.1 full Grid version for Linux and tried to install it
    on Oracle's Enterprise Linux....
    I keep getting a CRC error on disk 2....has anyone else seen this ?
    Thanks
    Bernard

    Well if you've tried it more than once, then there is no point retrying it.
    I've seen this happen in the past and redownloading it worked...but may be it's a bad copy online.
    Let' see if someone else has seen this error...

  • Cant restore iphone 3g 4.2.1 it would load half way threw then say unknown error why it is not working?

    cant restore iphone it would loa half way threw then say unknown error why is it not working and its a iphone 3g 4.2.1

    What is the exact error message you're getting?

Maybe you are looking for

  • Can't Enable XMP after BIOS flash to V1.4 on P55-GD85

    I didn't put this in the BIOS section because while the BIOS is involved,  I don't think it's necessarily a BIOS issue.  However, if it should go there please move it. While not new to computers by any stretch I committed the cardinal sin of updating

  • BEx Error - The specified value is out of range

    Hi We areBI 7.0 (SP14) & recently installed SAPGUI 7.10 (patch 7). When I select a query (Path: Info Areas --> WMH Warehouse Management -- > Shipping KPIu2019s --> Order Turnaround in Detail) and give date range greater than 2 weeks, then I can a cri

  • A slideshow isn't working

    I have made this flash thing, I learned flash professional 8 yesterday so I really do not know how to make it work. http://ca.geocities.com/cheemaharmeet/Untitled-3.swf And, so I am making this presentation, and see when it reaches slide 3 or 4, and

  • Slideshow in iMovie - images w/movement don't look as good as in iPhoto

    I love iPhoto with the Ken Burns effect, but I had problems that when an image would dissolve up, the position would be in an undesirable spot (image might be with a person's head cut off). I tried working around the problem by giving the images very

  • Read Verify Scan Message on Screen

    I started my ipod this morning and got some kind of diagnostic screen, which I tried to negotiate through and now it is completely locked up and says: Read Verify Scan Scan takes a while Battery Check Volts=476 Level=10 Canceled MENU to continue Alth