IMac need to move my data to MacBook

Hi I'm going to send my iMac to assistance, because it seems to me that it has an impression problem on display
It is a 24 of 2008, and when it boots on the with background I can see the dock gosth image
Since I has a MacBook that I don't rall use that much I was thinking to restore from time machine on the Mac book... On the MacBook I have a bootcamp partition, not on iMac. Could it be a problem?
Could it be possible to keep time machine backup from MacBook once is is restored from TM so that when my Mac would came back I can restore from TM
The only other thing I was thinking I may try to use my sister as a copy in an USB hdd, or would that be very low?
Other suggestions?

I don't know if you can migrate a single user account but it's easy enough to migrate them all and then delete the users you don't want to have on the MacBook.

Similar Messages

  • New iMac - need to move files from Macbook Pro to new iMac

    Hi there everyone,
    Did some quick searching, but didn't find the answer that I needed.
    I am picking up my new 27" iMac (base model) and will need to move my files and programs from my Macbook Pro to the iMac. What is the best way to accomplish this? Are there any tools on the iMac that will help do that, or is it a manual effort?
    Thanks!
    Mark

    When you first start new Mac it will ask you if you want to migrate. Say yes at that point and Setup Assistant will migrate everything for you.
    Allan

  • Need to move the data to final internal Table

    Hi all,
    TYPES: BEGIN OF TY_MARA,
           MATNR       TYPE  MATNR,         " Material Number
           ZZBASE_CODE TYPE  ZBASE_CODE,    " Base Code
           END OF TY_MARA,
           BEGIN OF TY_MAKT,
           MAKTX       TYPE  MAKTX,         " Material Description
           END OF TY_MAKT,
           BEGIN OF TY_MARC,
           WERKS       TYPE  WERKS_D,      " Plant
           END OF TY_MARC,
           BEGIN OF TY_QMAT,
           ART           TYPE  QPART,         " Inspection Type
           END OF TY_QMAT,
           BEGIN OF TY_MAPL,
           MATNR        TYPE  MATNR,        " Material
           PLNTY        TYPE  PLNTY,        " Task List Type
           END OF TY_MAPL,
           BEGIN OF TY_PLKO,
           VERWE             TYPE     PLN_VERWE,     "     Task list usage
           END OF TY_PLKO,
          BEGIN OF TY_FINAL,
           MATNR          TYPE    MATNR,          " Material Number
           MAKTX          TYPE    MAKTX,          " Material Description
           ZZBASE_CODE    TYPE    ZBASE_CODE,     " Base Code
           WERKS          TYPE    WERKS_D,        " Plant
           CLASS          TYPE    KLASSE_D,       "     Class Number
           ART             TYPE    QPART,           " Inspection Type
           VERWE             TYPE    PLN_VERWE,       " Task list usage
         END OF TY_FINAL.
    DATA: I_MARA  TYPE  STANDARD TABLE OF TY_MARA  ,
          I_MAKT  TYPE  STANDARD TABLE OF TY_MAKT  ,
          I_MARC  TYPE  STANDARD TABLE OF TY_MARC  ,
          I_QMAT  TYPE  STANDARD TABLE OF TY_QMAT  ,
          I_MAPL  TYPE  STANDARD TABLE OF TY_MAPL  ,
          I_PLKO  TYPE  STANDARD TABLE OF TY_PLKO  ,
          I_KLAH  TYPE  STANDARD TABLE OF TY_KLAH  ,
          I_FINAL TYPE  STANDARD TABLE OF TY_FINAL ,
          WA_MARA  TYPE  TY_MARA,
          WA_MAKT  TYPE  TY_MAKT,
          WA_MARC  TYPE  TY_MARC,
          WA_QMAT  TYPE  TY_QMAT,
          WA_MAPL  TYPE  TY_MAPL,
          WA_PLKO  TYPE  TY_PLKO,
          WA_KLAH  TYPE  TY_KLAH,
         WA_FINAL TYPE  TY_FINAL.
    data: v_mtart         type    mara-mtart,
          v_matnr         type    mara-matnr,
          v_zzbase_code   type    mara-zzbase_code,
          v_werks         type    t001w-werks,
          v_beskz         type    marc-beskz.
    selection-screen skip 1.
    selection-screen begin of block b1 with frame title text-001.
    select-options: s_mtart    for v_mtart default 'halb' to 'zraw',
                    s_matnr    for v_matnr,
                    s_zzbase   for v_zzbase_code,
                    s_werks    for v_werks obligatory,
                    s_beskz    for v_beskz.
    selection-screen end of block b1.
    start-of-selection.
    select matnr
           zzbase_code
           from  mara into table i_mara
           where mtart in s_mtart       "Material Type
           and   matnr in s_matnr        "Material
           and   zzbase_code in s_zzbase."Base Code
    select maktx
           from makt into table i_makt for all entries in i_mara
           where matnr = i_mara-matnr.
    select werks
           from marc into table i_marc for all entries in i_mara
           where matnr = i_mara-matnr
           and werks in s_werks "plant
           and beskz in s_beskz."Procurement Type
    select art
           from qmat into table i_qmat for all entries in i_mara
           where matnr = i_mara-matnr
           and werks in s_werks.
    select matnr
           plnty from mapl into table i_mapl for all entries in i_mara
           where matnr = i_mara-matnr.
    select verwe
           from plko into table i_plko for all entries in i_mapl
           where plnty = i_mapl-plnty.
    this is my logic . i need to move this to final internal table i_final. how can do it. will anybody tell me with coding.
    Thanks,

    Hi,
    Include matnr field in all your type declaration and plnty in the ty_plko,  type declaration.
    loop at the internal table i_mara.
    read the other tables with read statement.
    assign the the required fields to the work area wa_final. Append it to i_final.
    start-of-selection.
      select matnr  zzbase_code
        from mara   into table i_mara
       where mtart in s_mtart "Material Type   and matnr in s_matnr "Material  and zzbase_code in s_zzbase. "Base Code
      select matnr  maktx        
        from makt   into table i_makt
         for all entries in i_mara   where matnr = i_mara-matnr.
      select matnr  werks
        from marc  into table i_marc
         for all entries in i_mara  where matnr = i_mara-matnr   and werks in s_werks "plant   and beskz in s_beskz."Procurement Type
      select matnr  art
        from qmat  into table i_qmat
         for all entries in i_mara where matnr = i_mara-matnr   and werks in s_werks.
      select matnr plnty
        from mapl into table i_mapl
        for all entries in i_mara  where matnr = i_mara-matnr.
      select plnty verwe
        from plko  into table i_plko
         for all entries in i_mapl  where plnty = i_mapl-plnty.
    Loop at i_mara into wa_mara.
    read table i_makt into wa_makt with key matnr = wa_mara-matnr.
    (do this for all the internal tables.)
    read table i_plko into wa_plko with key plnty = wa_mapl-plnty.
    wa_final-MATNR = wa_mara-matnr.
    wa_final-MAKTX = wa_makt-maktx.
    wa_final-ZZBASE_CODE = wa_mara-ZZBASE_CODE.
    wa_final-WERKS = wa_marc-werks.
    wa_final-ART = wa_qmat-art.
    wa_final-VERWE = wa_plko-verve.
    append i_final from wa_final.
    endloop.
    Hope this helps.
    Regards,
    Dhasarathy. K

  • Just bought a new imac, need to take logic off my macbook pro and install onto my imac

    Just bought the new imac, and I need to get logic pro 9 off my macbook pro and onto my imac.  Both my install licenses are used, so will I have to buy a new license as well.  If any and all help would rock.  Thanks,  JASON

    How did you receive Logic?  Reinstall from the distribution media.  You may be able to move the Logic application, but unless you know what and where the support files are it may prove difficult for it to work correctly.
    I would assume you can obtain another license by calling AppleCare Customer  Service unless you are moving Logic to a new computer and removing it from the other  computer.  In this case you do not need to purchase another license.

  • What cable do I need to move files from my macbook pro 1,1 (2006) to my new (late 2011) macbook pro?

    I am trying to migrate everything from my macbook pro 1,1 (2006) to my new (late 2011) macbook pro?, what cable do I need? I have now bought the wrong one twice...!
    Thank you!
    Alice

    Firewire 400 to 800
    Best.

  • I need to move the data from several cells in an excel spreadsheet to another computer's excel spreadsheet.

    I have a data aquisition program on computer #1(not labview)  that writes to an excel spread sheet and I would like to have a row of data transfered to another excel spreadsheet running labview(computer #2)on the same network. I would like to make this transfer of data either over the network or some other method to link these two computers (they are two feet apart). I'm not sure that datasocket would help , as it seems that the data to be moved must be written for datasocket in labview.  My other alternative is to write drivers for the device that provides the data for computer #1. This is a new one for me as the user doesn't want to give up the non-labview program on #1.
    Solved!
    Go to Solution.
    Attachments:
    Read_Value_From_Excel.vi ‏83 KB

    I would write a LabVIEW VI to read the Excel file(s) on computer n°1 and publish the data in a shared variable over the network.
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • I can't find the folder for my new profile, I need to move important data to it.

    I recently had to create a new profile in order to get firefox to work, I have read the instructions for copying files between profile folders but when I get to item #4 open the new firefox folder I don't know how to find it.

    Type '''about:support''' in the location bar.
    Click '''Open Containing Folder''' button to open your profile directory.
    Or
    See this : http://kb.mozillazine.org/Profile_folder

  • Need help in FDM data manipulations

    Hi,
    I am fairly new to Hyperion FDM and still learning its features with Planning. I have following scenario.
    I need to move my data from Dept ABC to Dept XYZ when the account = '10000'. I have both the ABC and XYZ depts in my Planning system.
    Is there a way I can accomplish this in FDM? I am looking at the document, but not sure where to look at it.
    If you can provide some insight on this that will be great.
    Thanks,
    NM

    Hi NM,
    Please see my response to your question on the Network 54 forum.
    FDM is really intended to perform data loads from a source system than move data around within the cube.
    Your requirement is somewhat ambiguous and it sounds like you want to move a specific piece of data that resides within the planning cube already rather than make all future data load like this. Presuming this is a one time activity you may consider using a calc script/business rule.
    You will find that may people use both forums and posting to one is a more effective way to rely on people answering your queries.
    Regards,
    John

  • Transferring Data between MacBook Pro and iMac

    My husband has a MacBook Pro as well as an iMac. He uses the laptop when we travel. when we bought the laptop, we transferred all the data on the iMac to his laptop using a firewire connection. It was months ago and I am having trouble remembering just how we did it. Now, though, he wants to copy data from his laptop to his desktop and I need help working that out. He has Entourage installed and that is what he uses for his mail, documents, etc. Where do I go to find those folders and how do I get them onto his iMac. Thanks in advance for any help you can give me!

    It would be a mistake to replace a new fully functioning system on your iMac with a potentially dysfunctional one on your MBP. If you need to transfer personal data then you can connect the two via FireWire cable and use Target Disk Mode to transfer your data manually. If you have a MobileMe account, then you can sync your Mail accounts, iCal calendars, Address Book entries, and Safari bookmarks that way.
    You can use ordinary backup software to sync two computers connected by FireWire and using Target Disk Mode. You can use a USB flash drive depending upon the amount of data you need to move between the two computers. You can use an external hard drive as intermediary. However, Time Machine is not a utility intended to keep two computers synced.
    You should give thought to what you need synched, as your question seems to imply you think that means everything, but I doubt that's what you had in mind.

  • New iMAC - How to move data over from PC?

    Hi,
    Just bought the new iMac 27" to replace my PC. What is the best way to move all my music, videos, and apps to the new iMAC?
    I have music bought from iTunes and downloaded from CDs - also have apps and videos bought from iTunes....
    So far all I can figure is use memory sticks to move the data over and then try to place all the stuff in the correct folders so iTunes will see it. But there must be a better way.
    thanks
    Rob

    Thanks for the info. So the links says I can simply take all my music, video, and photo files and move them to the iMac via a memory stick.
    I guess it doesn't matter if I bought the files on iTunes or if I had them on the PC via a CD?
    I'll start with trying to figure out how to get all the music, video, and photo files over to the iMac and getting iTunes to recognize them (like the PC did).
    Second, I'll need to hook up my iPhone to the iMac and sync. Anything I need to know before I do something like that?
    thanks,
    Rob

  • I have a macbook air bought in 2010 wit liquid damage that might has affected the SSD card. I need to get my data but apple won't help. Authorized dealers never seem to have the same model to try whether the SSD card works. How can I get my data quickly?

    Hi
    I have a macbook air bought in 2010. It has liquid damage that might or might not affected the SSD card. I need the data on my SSD card for work and I need it urgently. Apparently Apple won't get the data out, even if I have apple care... Licensed apple dealers need to have the same macbook air model so they can insert the SSD card and check whether the data is there, and they never seem to have one...
    I'm really disappointed with apple. It's been two weeks and I haven't been able to find out whether the SSD card is holding my data. It can't take that long to do it in store... How can they sell a product and then wash their hands on the matter?
    Anyway, enough with the apple rant. I need to get this data urgently so I need to find out how I can get it out of the card. The SSD card and data might be fine so I don't want to take it to a data recovery centre and get charged loads.
    Thanks for your help.
    Olatz

    See this link for a 4870 card, best instructs for flashing for a noob like me. (last lowest price was $150 for a 1GB vRAM 4870 from TigerDirect).
    http://web.me.com/jacobcroft/4870Flash/4870Flash.html
    However, not every 4870 card will work with the ROM currently floating around out there. BEWARE!
    Link to recovering a bricked card:
    http://forums.techpowerup.com/showthread.php?t=64328

  • How can I move photos from my MacBook Pro to my iMac?

    How can I move photos from my MacBook Pro onto my iMac?

    iCloud & Dropbox are 2 ways.  Other ways are migration assistant, iChat or any IM type of software, email.

  • I need to move 1000 photos from one library to another. How do I do that and keep the ratings and dates they were created?

    I need to move 1000 photos from one library to another. How do I do that and keep the ratings and dates they were created? I tried exporting them, but it loses all info. Also, how do I move the quicktime movies from one iphoto library to another? They were exported as jpgs

    Add both libraries to iPhoto Library Manager.  Then select the events or albums that you want to copy from library A  and drag them to library B in iPLM.
    This video shows the process:
    OT

  • I have an old Mac Tower.  I need to move data from the unit to an external hard drive. What kind of hard drive do I purchase.  There is not a lot of data to be transferred.

    I have an old Mac Tower.  I need to move data from the unit to an external hard drive.  What kind of of hard drive must I purchase so that it works with the Tower?  There is not a lot to transfer.

    MG,
    What we might need to do is to change the question.  What computer do you plan to use the data on in the future?  For example, if you have a newer tower, just move the hard drive to the new tower.  If you want to use the data, what about an ethernet LAN to get the data over?  If you want to archive the data, how do you store the second drive?  What are your plans for the first drive?  If the new software will not recognize the old file type, the data must be exported.  Just getting files to another hard drive will not finish your journey.
    As Allan said, knowing the exact model and year of your tower is important.  My suggestion is to find a user group near you.  Please post back with more information, including the name of a large city near you.
    For example, our user group just experimented with a 1983 Apple IIc that predates the Mac.  It started right up, read files from 1984  and saved them from a 5.25" floppy to a 3.5" floppy.  That 3.5 floppy will go into a platinum G3 which will read PRODOS files using Apple File Exchange.  That G3, with a USB card, will allow saving the files to a USB flash drive.  But, somewhere along the way, some software has to read the file and convert it to data that is useable by current software.
    Ji~m

  • I just bought a MBA and I need to move my photos and itunes to an external hard drive (from my old MacBook Pro) because they won't fit on the Air.  I got the photos moved fine and I followed an online tutorial to move the necessary files for itunes, but i

    I just bought a MBA and I need to move my photos and itunes to an external hard drive (from my old MacBook Pro) because they won't fit on the Air.  I got the photos moved fine and I followed an online tutorial to move the necessary files for itunes, but it didn't work.  The files copied fine, but when I tell iTunes on the Air to look at the external drive for the library, it doesn't find anything.  What I copied was the entire iTunes Media folder.  So, how do I move the necessary iTunes files from my old Pro to a external drive so I can access them from my new Air?  Whew!

    iTunes- How to move the library to an EHD
    After you move the library you need to open iTunes by first depressing the OPTION key then launching iTunes. You will be given a choice of which library to use. This can then be made a permanent change, if you wish, in the Advanced section of iTunes preferences.

Maybe you are looking for

  • Migration from HP-UX to Linux 64 bit on SAP XI 3.0 environment

    Hi All, Can you please provide the requirements steps/documents for migration from HP-UX to Linux 64 bit on SAP XI 3.0 environment Thanks Sateesh

  • Displays to support

    my ipod displays a unhappy ipod and www.apple.com/support

  • Tables in one Scrollpane?

    I have two tables with same no. of columns.They Should not have a different scroll pane. Table 1columns should be tightly cupoled with Table 2 columns. If we drag Table 1columns, Table2 column should also follow. Can we have one scroll bar for both t

  • Is it possible to animate videos and images coming from web service.

    i am calling a webservice. from that i am getting response. in that i have images and videos. i took those in an array. Now i need to animate those array values. just like animating images. So please tell me is it possible to animate videos are not.

  • Iphoto to iphone

    Hi, i've just got an iphone and need some help with the pictures. I've got a macbook which i share with my husband and we have a profile each. all our photos are on my profile and we access them through iphoto 09, my husband has managed to sync them