I get an input/output error when i try to restore a functioning backup from my external harddrive to my new internal harddrive through disk utility?

my hardrive Had a smart status warning so i made a backup of it on my external harddrive through disk utility. i checked to make sure that the backup was working and i had no problems with it. i then bought a new internal harddrive and swaped it out but when i was in recovery mode to try to restore my new hardrive i kept getting an error message saying restore error, input/output error

The big dilemma with a new Internal drive is separating Drive operation from 'inside the MacBook' operation. If you had an External Enclosure, you could do all the work (including booting up from the new drive) using the External enclosure.
Then if a know-good drive develops problems only when moved inside the MacBook, it is time to try a replacement cable.

Similar Messages

  • SOLVED: Getting an Input/Output error when accessing certain files

    My system started failing a few days ago because of sudden Input/Output errors when trying to access certain files. It was running fine until various applications started crashing like for example Pidgin (in retrospect probably because of DBus crashing). I decided to reboot and now can't login anymore because the DBus module fails to load which in turn means that HAL doesn't load either and so I can't use my keyboard to login.
    The error message I get from DBus is that it can't access the file /etc/dbus-1/system.d/org.freedesktop.PolicyKit.conf because of an Input/Output error. I tried to fix/see what was wrong using the arch livecd. Because I thought my problem had to do with a pacman update that had failed before I'd rebooted, I updated my system and I noticed that when pacman tried to access other files it came back with the same error message. The files seemed pretty random, one of them was fakeroot.conf and then several library files like libfaad (sorry this is kind of vague but I'm away from home right now and can't go online very often so I'm writing this from memory).
    I'm guessing its a hard drive problem because checking the filesystem for errors came back with nothing. I was just wondering whether anyone had any other ideas before I go and reinstall. I'm going back home tomorrow so I'll be able to follow any advice/reinstall then.
    Last edited by siell (2010-04-08 17:01:37)

    UPDATE
    It seems to be fixed! The second run of e2fsck fixed some more issues and the files that were causing the problems earlier seemed to have bad inodes. Boots fine now and I can get into my system. I checked and I still have a reasonable amount of free space so I don't think that was the reason ... I have no idea how the filesystem got so corrupted out of nowhere.
    A few things are different, for example, it asked me to unlock the keyring and I couldn't mount my external encrypted drive anymore and had to do it manually with cryptsetup. e2fsck made quite a few changes so I imagine it's due to that. Shouldn't be to hard to fix though.
    Thanks for your help!

  • Input/output error when installing CS6 on my MacBook Air 10.10 Yosemite

    I have the CS6 disk and I keep getting input/output error when I try installing it on my new MacBook Air 10.10 with Yosemite.

    sounds like you have a damaged cd.
    Downloadable installation files available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7.1| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.
    window using the Lightroom 3 link to see those 'Important Instructions'.

  • Hard Drive "Input Output" Error When Attempting to Format

    A friend just gave me a nice PowerBook that seems to be in need of a fresh OS and when attempting to format the hard drive I am getting an "Input Output" error.  Any suggestions to overcome this issue and format the drive?

    Hi all,
    I'm having similar issues on a white macbook (2006 model). I ran into some trouble with it about a month ago, when on booting up, it showed only the folder with a question mark. Booting up from the original grey install DVD worked, so I thought the problem was most likely a faulty hard drive.
    It's only after having this problem, that I came across this recall for possible faulty hard drives, that Apple offered:
    http://www.apple.com/support/macbook/hd/repairextension/
    Doh! Too late?
    So, I got onto ebay and picked up a deal and received my new hard drive yesterday. I swapped out the original 80GB with 320GB, only to find the same input/output error described by the OP, here (also in a couple of other Apple discussion posts - see below).
    Disk utility shows the new hard drive to be 2.3TB in size! Should be 320GB - but, this is also what others have described. See e.g.,:
    https://discussions.apple.com/message/16090313#16090313
    I've run the extended testing from the CD (holding down 'D' on boot-up) and it reported no problems. Also, similar to others experiences:
    https://discussions.apple.com/message/16081818#16081818
    So, what can the problem be?!?!?!?!?
    In this post, JMPC suggests it has something to do with the size of the new internal hard drive....groan.....:
    https://discussions.apple.com/message/16145560?tstart=0#16145560?tstart=0
    Can anyone confirm this?

  • Why am I getting an ORA-04052 error when I try to compile a Procedure?

    Hi,
    The following procedure I'm getting an ORA-04052 error when I try to compile the following procedure.
    CREATE OR REPLACE PROCEDURE APPS.Find_String (
    pin_referenced_name IN dba_dependencies.referenced_name%TYPE)
    IS
    cursor cur_get_dependancy
    is
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;
    v_owner  varchar2(40);
    v_name   varchar2(50);
    v_type   varchar2(40);
        BEGIN
           dbms_output.put_line(upper(pin_referenced_name)||' is found in the following objects.');
           dbms_output.put_line(' ');
           dbms_output.put_line(RPAD('OWNER', 30, ' ')||RPAD('NAME', 60, ' ')||RPAD('OBJECT TYPE', 30, ' '));
           dbms_output.put_line('-------------------------------------------------------------------------------------------------------------------');
            FOR i IN cur_get_dependancy
            LOOP
                v_owner := RPAD(i.owner, 30, ' ');
                v_name  := RPAD(i.name, 45, ' ');
                v_type  := RPAD(i.type, 30, ' ');
                dbms_output.put_line(v_owner ||v_name|| v_type);
            END LOOP;
    END find_string;I'm using the link [email protected]. The procedure compiles for other database links used in the cursor including the one commented to the right of the code 'prod.world'.
    What's even stranger is that I took the SELECT statement
    SELECT distinct owner, name, type
      FROM [email protected]        -- prod.world
    WHERE lower(referenced_name) = lower(pin_referenced_name) --'ftbv_salesrep_all_1d'
       AND referenced_type <> 'SYNONYM'
       AND owner <> 'SYS'
    order by name;out of the procedure and ran it on the command line using the @pinp.world link, the SQL statement ran just fine. But when I tried to compile the above procedure with that exact same SQL statement with the exact same link I get the following string of errors.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA-00604: error occurred at recursive SQL level 1
    ORA-02068: following severe error from PINP
    ORA-03113: end-of-file on communication channelHow can the link work just fine in a regular SQL statement but then cause an error when its compiled in code that otherwise compile just fine when using any other link or even just a plain database. Does anyone have any suggestions?

    OK Justin,
    Here's the query by itself run in another database using the @pinp.world link and querying the dba_dependencies table in the pinp.world database. As you can see the query using this link works just fine returning the requested rows. I can't figure out why the compiler is having an issue with essentially this same query when I try to compile it in a cursor in TOAD. Also this is the database (dev1.world) that I'm trying to compile this Procedure in.
    By the way I'm in an Oracle 9.2.0.6 database and TOAD v9.2.
    SQL> conn apps/apps1@dev1
    Connected.
    SQL> SELECT distinct owner, name, type
      2    FROM [email protected]
      3   WHERE lower(referenced_name) = lower('ALL_USERS')
      4     AND referenced_type <> 'SYNONYM'
      5     AND owner <> 'SYS'
      6   order by name;
    OWNER                          NAME                           TYPE
    PUBLIC                         ALL_USERS                      SYNONYM
    XDB                            DBMS_XDBUTIL_INT               PACKAGE BODY
    XDB                            DBMS_XDBZ0                     PACKAGE BODY
    SYSTEM                         MVIEW_EVALUATIONS              VIEW
    SYSTEM                         MVIEW_EXCEPTIONS               VIEW
    SYSTEM                         MVIEW_FILTER                   VIEW
    SYSTEM                         MVIEW_LOG                      VIEW
    SYSTEM                         MVIEW_RECOMMENDATIONS          VIEW
    SYSTEM                         MVIEW_WORKLOAD                 VIEW
    ORASSO                         WWCTX_API                      PACKAGE BODY
    PORTAL                         WWCTX_API                      PACKAGE BODY
    ORASSO                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWEXP_UTL                      PACKAGE BODY
    PORTAL                         WWPOB_API_PAGE                 PACKAGE BODY
    PORTAL                         WWPOF                          PACKAGE BODY
    ORASSO                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWPRO_PROVIDER_VALIDATION      PACKAGE BODY
    PORTAL                         WWSBR_EDIT_ATTRIBUTE           PACKAGE BODY
    PORTAL                         WWSBR_FOLDER_PORTLET           PACKAGE BODY
    PORTAL                         WWSBR_USER_PAGES_PORTLET       PACKAGE BODY
    ORASSO                         WWUTL_API_PARSE                PACKAGE BODY
    OWNER                          NAME                           TYPE
    PORTAL                         WWUTL_API_PARSE                PACKAGE BODY
    PORTAL                         WWUTL_EXPORT_IMPORT_LOV        PACKAGE BODY
    ORASSO                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWUTL_LOV                      PACKAGE BODY
    PORTAL                         WWV_CONTEXT                    PACKAGE BODY
    PORTAL                         WWV_CONTEXT_UTIL               PACKAGE BODY
    PORTAL                         WWV_DDL                        PACKAGE BODY
    PORTAL                         WWV_GENERATE_UTL               PACKAGE BODY
    PORTAL                         WWV_GLOBAL                     PACKAGE
    PORTAL                         WWV_MONITOR_DATABASE           PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_SPECIFIC_USER     PACKAGE BODY
    PORTAL                         WWV_PARSE_AS_USER              PACKAGE BODY
    PORTAL                         WWV_SYS_DML                    PACKAGE BODY
    PORTAL                         WWV_SYS_RENDER_HIERARCHY       PACKAGE BODY
    PORTAL                         WWV_THINGSAVE                  PACKAGE BODY
    PORTAL                         WWV_UTIL                       PACKAGE BODY
    PORTAL                         WWV_UTLVALID                   PACKAGE BODY
    38 rows selected.
    SQL>Let me know what you think.
    Thanks again.

  • Get file not found error when I try to sync

    I get file not found error when I try to sync Iphone.

    SteveDVD,
    The use of the .WMV was because that was part of the Library .EM template. I would not anticipate problems with other formats, so long as they are supported and the same for all of your Menus in the Project.
    If you have done several Motion Menu Renderings, you might want to clear Encore's Media Cache, just in case it is still referencing previous Render files.
    And yes, the re-Importation should yield the same result as Linking/re-Linking.
    Unfortunately, I do not have CS4, so I can't test this for you. There do seem to be a few real Bugs in the various CS4 programs, and maybe this is one?
    That "File Not Found" rings a bell in my feeble brain. Seems that there was a post on that, but I do not remember it being related to Motion Menus. Maybe search will yield something of use.
    Good luck,
    Hunt

  • I'm getting the message -50 error when i try to export my project on iMovie '09. What does this mean??

    I'm getting the message -50 error when i try to export my project on iMovie '09. What does this mean??

    Hi
    Error -50 paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    free space on internal boot hard disk? How much ?
    Video codec
    streamingDV, AIC etc. (not .avi, .mp4, .m4v, .wmv etc as they are containers not codecs)
    Pictures
    in what format ? .jpg, .bmp, .tif, else ?
    Audio
    from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    iMovie/iDVD preference file
    The "com.apple.iMovie.plist" file or "com.apple.iDVD.plist"
    Many users has not observed that there are TWO libraries.
    _ Library - at root level
    _ Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Klaus1
    You need more free space on your hard drive.
    Where do Your material come from
    Camera
    External hard disk
    USB-memory
    And all are connected so that iMovie can find it ?
    from: jonorparkerjon
    After phone support from apple I ended up creating a new project and adding all 117 clips back in individually till I found out what clips flagged and would not allow me to export. I had 3 I deleted and replaced and everything works now 1hr after tedious work....
    from Karsten S
    Shorter clips than 1,5 sec might be one of the culptrits
    Bengt cont.
    Set-Up might differ
    Mac OS - most probably X.7 or more
    iMovie version - more than iM'11 v. 9.0.4
    Action taken
    Finalizing project - I never do as I never understood the gain to do so
    Share as HD to iDVD - never give any gain but if it works the resulting DVD is less quality than if SD-quality was shared
    fps - set - I only use PAL (25fps)
 
    Yours Bengt W

  • I get a 3914 error when I try and restore my iphone 4. my screen goes white and then all different colors. what should I do?

    i get a 3914 error when i try and restore my iphone 4. my screen goes white and all different colors  what should i do

    first try a different usb cable, remove all other usb devices, and try a different port in back on desktops if possible.  if no luck see these
    These errors typically occur when security software interferes with the restore and update process. FollowTroubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.

  • Apple ID couldn't be created because of a server error when i try to restore from a backup

    Apple ID couldn't be created because of a server error when i try to restore from a backup from iCloud?
    Also my mail works fine, and if i bypass everything and sign in tomy apple id in settings it will work!

    I don't know, but it's not working for me.
    I went to Apple ID website and everything is fine there, But I can't restore my phone from iCloud.

  • HT2188 I just got an iPad mini, when I try to upload my iPhone backup from my Mac i get the message to upgrade my iTunes. I can not seen to find where the download link is for iPads on apple website. Can anyone help?

    I just got an iPad mini, when I try to upload my iPhone backup from my Mac i get the message to upgrade my iTunes. I can not seen to find where the download link is for iPads on apple website. Can anyone help?

    The message is referring to iTunes on your computer, not the iPad : http://www.apple.com/itunes/download/
    The built-in apps on the iPad can only be updated via iOS updates, so if your iPad mini is on iOS 6.0.2 then its up-to-date

  • I upgraded to the new IOS, but lost data and apps. When I try and restore the only backup I see is the one made AFTER the lost data. How can I access an older backup from the cloud?

    I upgraded to the new IOS, but lost data and apps. When I try and restore the only backup I see is the one it made AFTER the lost data. How can I access an older backup from the cloud?

    Why don't you talk to apple and find out if backup exists? That conversation with apple will stop your guessing.

  • When I try to delete old 4s backup from iCloud (I have a 5s) it tells me it cannot be deleted because in use. How to I fix that to delete it?

    when I try to delete old 4s backup from iCloud (I have a 5s) it tells me it cannot be deleted because in use. How to I fix that to delete it?

    That should clear up on it's own when it times out in 3-5 days.  Wait a few days, then try deleting it again.

  • Disk Utility "Input - Output error" when attempting to erase Hard Drive

    Hope that someone can point me in the right direction.
    I bought an external hard drive for Windows a year back and loaded music onto it. I realized that I my MAC wasn't getting "Read / Write" privileges for the External Hard Drive, so I decided to try to Partition it and make it into a FAT readable device. It erased all data from my hard drive, but Disk Utility stopped the process and displayed an "input - output error".
    Consequently, I can't initialize the external hard drive to make it usable on my MAC.
    Can anyone point me in the right direction so I can "reformat" my external?
    Thanks!

    Hi all,
    I'm having similar issues on a white macbook (2006 model). I ran into some trouble with it about a month ago, when on booting up, it showed only the folder with a question mark. Booting up from the original grey install DVD worked, so I thought the problem was most likely a faulty hard drive.
    It's only after having this problem, that I came across this recall for possible faulty hard drives, that Apple offered:
    http://www.apple.com/support/macbook/hd/repairextension/
    Doh! Too late?
    So, I got onto ebay and picked up a deal and received my new hard drive yesterday. I swapped out the original 80GB with 320GB, only to find the same input/output error described by the OP, here (also in a couple of other Apple discussion posts - see below).
    Disk utility shows the new hard drive to be 2.3TB in size! Should be 320GB - but, this is also what others have described. See e.g.,:
    https://discussions.apple.com/message/16090313#16090313
    I've run the extended testing from the CD (holding down 'D' on boot-up) and it reported no problems. Also, similar to others experiences:
    https://discussions.apple.com/message/16081818#16081818
    So, what can the problem be?!?!?!?!?
    In this post, JMPC suggests it has something to do with the size of the new internal hard drive....groan.....:
    https://discussions.apple.com/message/16145560?tstart=0#16145560?tstart=0
    Can anyone confirm this?

  • Input/output error when copying a DVD

    I created A DVD some time ago using Roxio.  It plays in DVD Player on my Mac Pro, but I can't create a .dmg using Disk Utility.  I always get "Input/Output error".  I got the same result on my wife's newer Apple. I tried to Restore it but can't, and Verification shows no problems that I can see.  I am able to copy DVDs created on Final Cut Express just fine.  Any suggestions to help me create copies of an old DVD I love?

    I just figured out how to get around the problem.  Download Burn and use it to burn the VIDEO_TS file to a new disk.  It must be something that Apple adds to make it hard to copy DVDs made from non-Apple software.

  • Error message input/output error when viewing dvd from camcorder

    I received a DVD from a friend and I am unable to view it using quicktime. I use quicktime for other applications and it works fine. When I attempt to open the file it says there is an input/output error. Any advise on this matter??
    Dell Latitude   Windows XP  

    DVD files use MPEG-2 encoding and can't be played via QuickTime Player without extra software.
    Apple sells ($20) an MPEG-2 Playback Component that can be used to view non commercial (no CSS encryption) DVD's.

Maybe you are looking for

  • Excel Functions

    I was under the impression that after a user did a "save as" on a BEX workbook they could then use the spreadheet as normal in Excel. But I can't seem to get the "Sort" menu item to become active . Its grayed out. Will reward points for any help Rich

  • Header line not displaed in MT103 Format

    Hi all, We are working on MT103 format, we are not getting the header line data In image 1 we are getting "HKBCCATT 103" but in image 2 we are not getting that line. Kindly help us what should be done so we can get "HKBCCATT 103" Regards, shegar.

  • Error : disp+work.exe in stopped : Could not locate entry in sysdatabases

    SM 3.2 was installed on SQL Server 2000.After trying to start SAP System via SAPMMC I saw that disp+work.exe can't start properly : after 3 seconds green light there appeared grey light. Message server and IGS WatchDog work OK -green light Error in S

  • Collective confirmation of process orders

    COR6N - Confirmation of Process Orders phase  wise But i need the tcode to confirm all the phases of process orders at one stretch. Also tell me tcode to do collective confirmation of process order

  • XFCE: after installing new Dropbox: icon in tray missing

    Hey Arch forum, I have been using Archlinux for 1 year and so far i have never had any (bigger) problems. But yesterday I kind of messed up my dropbox. I reinstalled dropbox from the AUR and when I started it, the Icon in the Systemtray was gone. I s