How to use old TC with new TC for storage only?

Bought a 2TB TC and I still have my older 1 TB. Is their any way to use the older time capsule as a hard drive only and have that TC backed up along with my iMac on the new TC?

Basically the answer to this is NO!!
You can set it up but not the way you are thinking.
The TC is now and forevermore a network drive. You can therefore bridge the TC and plug it into your network. The obvious place being your new TC. You can also turn off the wireless in the old TC.. it is now a network accessible hard disk.
But Time Machine has a huge limitation.. it cannot backup network drives. So your TC cannot be backed up with your  iMac to the new TC. Not by Time Machine. You can buy a different backup software.. eg CCC is excellent and use that.
Overall the TC is slower and less reliable than a USB drive plugged straight into your iMac.. especially if the iMac is newer type with USB3 ports.
And the USB drive is local and so it can be backed up by Time Machine. (Must have HFS+ format and be included in the backup).

Similar Messages

  • How to use old library with new computer?

    Hello,
    I keep all my music on an external HD. Recently, my main computer died, so I had to start using another iMac. It's running Tiger and iTunes 6, but I have never used the iTunes before. How do I get this computer to "see" my old iTunes library (on the external)?

    You are welcome. One thing that comes to mind is that I believe when you use an external drive to hold your library, it is important that the external is on and mounted when ever you start up iTunes. My understanding is if you start iTunes and the external drive is not available, then iTunes reverts back to the default location on your internal. You then have to reset it back to the external, but I think you also have to re-add everything all over again.
    So be sure you always have the external up and ready whenever you open iTunes.
    Patrick

  • How to intigrate old APPL_TOP with new Product. R12

    hi All,
    I am upgrading APPS 11.5.10 to R12.
    I am sucessfully upgrade Apps file system and database.
    And R12 services and Database service are running sucessfully.
    But Problem is that i want to use OLD Business Flow means I want all old form and report behiver.
    Means how to intigrate old APPL_TOP with new Product. R12.
    thanks
    c2

    Hi,
    For custom forms and reports, you need to open it using Forms/Reports Builder 10g, compile it, and upload it again to the server.
    For the CUSTOM_TOPs, make sure it is set in the custom<CONTEXT_NAME>.sh file under $APPL_TOP, and in default.env file on the Applications tier.
    Note: 563258.1 - How To Upgrade 11i Custom Forms And Reports To R12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=563258.1
    Note: 552010.1 - Can't Open Custom Forms After R12 Upgrade
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=552010.1
    Note: 451934.1 - Accessing Custom Forms After Upgrading From To R12
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=451934.1
    Regards,
    Hussein

  • How to use facebook  + skype with new Ipad? it needs flash player it seems...

    how to use facebook + skype with new Ipad? it needs flash player it seems...

    get the facebook and skype apps from the app store and there is no need flash.

  • How to use track effects with new version of GarageBand

    In the version of GarageBand before this one, you could access different effects that you could manage and apply to the different tracks.  Each track had an area containing its set of effects that were either activated or deactivated.  With this removed, i am not sure how to add those same kind of effects.  I am aware of the new nobs that are provided in order to mix and edit trebles, bass, mid, etc., but i want to be able to add different effects such as voice transformer, flanger, chorus, speech enhancer, bit crusher, bass amp, track echo, track reverb, amplifier, etc.  I desperately need help finding out how to do this, as this was a major part of my mixing and producing with GarageBand, and without these given effects, i do not feel as comfortable using GarageBand.

    zachseiden wrote:
    How to use track effects with new version of GarageBand
    this may help:
    http://www.bulletsandbones.com/GB/GBFAQ.html#replacemissingtrackeffectsgbv10
    This FAQ entry offers a Minute GarageBand video tutorial
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • How to read old library with new instal

    My old G4 finally died. I bought a new G5 iMac, set it up and used back up to reload all my old prferences. Now I check iphoto and it looks like these preferences were not backed up. My library lives on an external drive. These are the files in that folder; AlbumData.xml, Dir.data, iPhoto Selection (folder), iPhoto.db, iPhotoLock.data, Library.iPhoto, Thumb32.data, Thumb64.data, ThumbJPG.data. When I open iphoto it askes if I would like to create a new library of find an old one. When I direct it to my external drive it does not see any of these files as the ones to use to read this library. I have iphoto v 5.0.4. Does anyone know how I can get iphoto to see this old library? You can also email answers to [email protected] Thanks.

    Hi KRA,
    Take a look at the screenshots. When asked to choose the iPhoto Library, do you choose the iPhoto Library on the external. The iPhoto Library is the file you should choose.
    When you launch iPhoto holding down the Option key this is the window you will get.
    Create a new library or choose a library to open
    Choose to create a new library if that is what you want to do, or choose a library to open by clicking the "choose" button.
    If you click the "create library" iPhoto will open with a brand new library for you to import images to. If you click "choose" then you will get this window.
    Open library
    Navigate to where the library is on your computer and then choose it.
    Lori

  • How to use tree tables with CRUD operation for begineers ADF 11g

    This is Friday night call for help.
    This is only few sample ressources on the web for tree table and only one with CRUD operation.
    I used this one http://jobinesh.blogspot.com/2010/05/crud-operations-on-tree-table.html because this is the only one that address CRUD.
    And it is shaky. Deletion works fine but insertion not very well. This is working using custom code provided below.
    Depending if the user selection in the tree, the code insert from the master node to the children node.
    Any other options because it is not working well.
    Also where Oracle describes how to use the row, rowset, itorator API? This is really hard to understand like almost if we should not use it.
    then if not how can I insert in tree with two nodes and insert in the parent or children depending the users selection.
    Lately I 'been posting questions on this forum with no response. This hurts. I understand developers cannot spend their time on this but People from Oracle, please help. We pay licenses...
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "model.DepartmentsView";
    final String empViewDefName = "model.EmployeesView";
    if (ri != null && selectedNodeKey != null) {
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    Row foundRow = found[0];
    String nodeDefname =
    foundRow.getStructureDef().getDefFullName();
    if (nodeDefname.equals(deptViewDefName)) {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    parents.insertRow(childrow);
    } else {
    RowSet parents =
    (RowSet)foundRow.getAttribute("EmployeesView");
    Row childrow = parents.createRow();
    childrow.setAttribute("DepartmentId",
    foundRow.getAttribute("DepartmentId"));
    parents.insertRow(childrow);
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    }

    I am looking for a sample that describe how to design a jsf page with a tree table.
    So you have Department and employees. In the tree first comes Department and if you click the node you see the employees assigned to this department.
    I need to be able to insert a new department or a new employee from the tree table by clicking on a insert button in the panel collection toolbar depending on user selection in the tree.
    I got part of it working but not good enough.
    By problem is the get insertion working
    I have a createChildren method in my AM implementation that get in input a RowIterator and selected node key.
    To goal is to create new records depending of the user selection and the input parameters get populated by the binding like this:
    #{backing_treeSampleBean.selectedNodeRowIterator} #{backing_TreeSampleBean.selectedNodeRowkey} via method binding with parameters.
    Is it the right approach?
    First to be able to insert a parent record, I select nothing in the tree and ri and selectedNodeKey comes to null
    we run this code
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    //ViewObjectImpl vo = getDepartmentsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    A new blank entry appears in the parent node and we enter a value.
    The the problem starts when we want to add a child to this parent.
    We select the created parent and press the insert button, this code get executed
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    childRows.insertRow(childrow);
    But the new entry does not appear, it is almost like it would be created for a different parent because this is a mandatory field that is not feel in yet and the interface complaints of a missing value. It is created somewhere just not a the right place... This is my guess.
    Do you see something wrong with the code?
    The full code og my create children method is there below
    I am using jdeveloper 11.1.1.3.0 any issues with tree table to know about with this version?
    Thanks for your help
    public void createChildren(RowIterator ri, Key selectedNodeKey) {
    final String deptViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidaySchedExceptionsView";
    final String empViewDefName = "com.bcferries.app.pdfroutesched.model.SchHolidayExceptionDatesView";
    if (ri != null && selectedNodeKey != null) {
    // last row
    Row last = ri.last();
    Key lastRowKey = last.getKey();
    // if the select row is not the last row in the row iterator...
    Row[] found = ri.findByKey(selectedNodeKey, 1);
    if (found != null && found.length == 1) {
    // foundRow is the row selected
    Row foundRow = found[0];
    // The row selected can be the parent node or the child node
    String nodeDefname = foundRow.getStructureDef().getDefFullName();
    // if parent row
    if (nodeDefname.equals(deptViewDefName))
    //list of the children of the parent and create an new row
    //works but we try to resolve the creation of a parent
    RowSet childRows = (RowSet)foundRow.getAttribute("SchHolidayExceptionDatesView");
    Row childrow = childRows.createRow();
    //childrow.setAttribute("HolidayDate", new java.util.Date().getDate());
    System.out.println("insert child row from master");
    childRows.insertRow(childrow);
    } else
    //RowSet ParentRow = (RowSet)foundRow.getAttribute("SchHolidaySchedExceptionsView");
    //RowSet childRows = (RowSet)ParentRow.first().getAttribute("SchHolidayExceptionDatesView");
    Row childrow = ri.createRow();
    System.out.println("insert child row from child ");
    } else {
    System.out.println("Node not Found for " + selectedNodeKey);
    } else {
    System.out.println(" param null try creating for first row : " +
    ri + " * " + selectedNodeKey);
    ViewObjectImpl vo = getSchHolidaySchedExceptionsView1();
    Row foundRow = vo.first();
    Row childrow = vo.createRow();
    vo.insertRow(childrow);
    }

  • How to use the iTrip with dock connector for iPod 5th gen. video

    I bought the new iTrip with dock connector for my iPod video 5th gen. and I followed exactly the instructions but I cannot hear any music on the radio. Has anyone experienced the same problem or the contrary has anyone managed to make it work. Thanks for your help.
    Inaha
    iMac 4   Mac OS X (10.3.9)   iPod 5th gen video

    I got the answer from someone else and it works.

  • How to integrate old formula with new as needed?

    I have a report which displays /processes rows based on the 'Product Family' which we have as a 3 char code.
    stringVar  first3 ;
    first3 := Mid ({REFERRF.RFDTA},1,3);
    if isnumeric(first3) then
        Mid ({REFERRF.RFDTA},4,30)
    else
        Mid ({REFERRF.RFDTA},1,30)
    However, the current report makes it's own grouping which the user wants to keep. he does want the new groups that I can get from that table as well. how do I integrate this formula?
    also new ones are custom and need to be separate from retail. so need to process this old way first. then not process these groups again (TRR, TRC etc) when processing by getting from table.
    SELECT {Command.PROD_FAMILY}
        CASE "TRR","TRC","TRP":
            "Trophies"
        CASE "PLQ":
            "Plaques"
        CASE "SGL", "TGL":
            "Crystals"
        CASE "MDL":
            "Medals, 2 in."
        CASE "MDM":
            "Medals, Insert"
        CASE "PIN","PNI":
            "Pins"
        CASE "CAC":
            "Acrylics"
        default:
            "UNDEFINED: " & {Command.PROD_FAMILY};
    so when my table has "CAC" I need the display heading to read 'ACRYLICS' in my logic i am getting the description from the same table but he doesn't want that for the above, only for any others.
    the report looks like this> so u see for CAC they want it displayed as ACRYLICS. If I keep the current logic when i read the table i have to not read for CAC. or do this some other way.
    Acrylics
    Price Break
    Range
    Number
    of Orders
    Number
    of Units
    Total Cost
    Total Sales
    1.  1 - 5
    837
    1,642
    5,327.06
    42,384.95
    2.  6 - 9
    121
    862
    2,403.05
    20,956.90
    3.  10 - 24
    150
    2,148
    5,718.42
    44,584.85
    4.  25 - 49
    32
    1,083
    2,956.16
    22,714.85
    5.  50 - 99
    21
    1,354
    3,532.94
    24,846.30
    6.  100 - 249
    7
    868
    2,586.26
    14,712.60
    7.  250+
    2
    1,800
    2,470.17
    12,258.50
    1,170
    9757
    24,994.05
    182,458.95

    Hi,
    The standard behaviour is that new instances of the process will use the most recent version of the process that has been deployed to the database. This allows you to deploy new versions of the processes without impacting on processes which are already in progress.
    When the workflow engine determines what activity to run next in the process, the engine checks what the start date of the process instance was, so that it can check what version of the process was active at that time. If you update the start date for each running process, so that it reflects the date that you saved the most recent version of the flow, then the workflow engine will use the latest version instead of the version that it was running.
    This is not supported. I would never suggest that you do this in a production environment - it does not make sense to be making frequent changes to the process in a production environment, since there is no supported mechanism for forcing existing flows to use the new definition. The engine is designed specifically to run the same version of the process for the duration of the process instance - what you want to do is to blow this out of the water completely. If you do change this, then all timing that is recorded against the activities becomes useless, and the other impact on the workflow process us something that you would need to consider incredibly carefully before deciding whether you want to take the risk.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://thoughts.workflowfaq.com ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • How to replace old numbers with new mavericks version of numbers

    Thanks to another thread, I have found the new versions of numbers, pages etc. in applications, but how do I get them to replace the old versions in the desktop?

    Good call since Apple dumbed down the new iWork apps to make them compatible with their iOS counterparts.
    See
    http://www.betalogue.com/2013/10/24/pages-5-disaster/
    https://discussions.apple.com/thread/5468056?start=0&tstart=0 and
    http://9to5mac.com/2013/10/25/new-iwork-ilife-apps-go-for-simplicity-upset-power -users-all-over-again/#comments

  • Use old HD with new P965 Platinum MB. Possible?

    If I wanted to use my present HD with my new P965 Plat board, I have to boot with the OS CD and do a "repair" or a "install", or is this even possible?  Has anyone tried/done it?  Thanks.

    Your "old HD" is P-ATA (IDE), right?
    Theoretically it should not be a problem, if there is still room for a second drive on the JMicron IDE-port. 
    However, you should install a fresh XP SP2 onto that drive using JMicron Drivers (F6).  Just "reparing" the existing installation might not work properly.

  • How to replace old soundtrack with new?

    Exporting from Keynote my presentation is a movie.mov and a separate moviesoundtrack.mov - how do I use QT pro to combine the two to run simultaneously (not sequentially)?

    Oops. I was intending to reply to a different thread.
    But on the subject you can open the new audio track, Select All and then Copy, then move to the video track and use Add to add the sound to the video track.
    You should be able to remove an existing track by using Delete Track from the Edit menu.

  • How to replace old ipod with new one

    I have just got an iPhone 64gb as my 32gb iPod touch is full.  How do I transfer the contents from my old iPod to my new iPhone?  It should be simple but doesn't seem to be!

    Thanks.  I think the problem is that the c:drive on my computer is full and so it does not have the capacity to do it.  I have a new computer and have managed to copy the downloads on to the new computer but it won't sync the rest of the music because I think the old device is the registered device.  If that makes sense!

  • How to use USB interface with LabVIEW Embedded for ARM

    Hi everybody.
    I am developing an application based on the "LabVIEW Embedded for
    ARM". Now I am doing various tests using
    the evaluation board 2300 (with NXP LPC2378), but soon I will
    dedicate to program the micro used in my project (NXP
    LPC2148).
    During the tests, I have seen that "default" LabVIEW interface allows the use
    of CAN, I2C and SPI interfaces of the micro. I want to know how can I also use the
    USB interface that is on the micros -both LPC2148 and LPC2378- (pin USB_D + / D-, USB_UP_LED,
    USB_CONNECT, VBUS).
    Thanks in advance for your suggestions

    @chueco85
    If you've created an application in LabVIEW for ARM and you build it.
    you can go to tools >> ARM Module >> Show Keil uVision
    then go to he build options.
    the hex file will be created when you do a build.
    with flash magic :http://www.flashmagictool.com/
    you can program your device.
    Wouter.
    "LabVIEW for ARM guru and bug destroyer"

  • How to use my itunes with a new pc

    how to use my itunes with a new pc?

    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    If you have an iOS device that syncs with contact & calendar data on your computer you should migrate this information too. If that isn't possible create a dummy entry of each type in your new profile and iTunes should offer to merge the existing data from the device into the computer, otherwise the danger is that it will wipe the information from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data. If you don't have any Apple devices then see HT2519 - Downloading past purchases from the App Store, iBookstore, and iTunes Store.
    tt2

Maybe you are looking for

  • Printing problem with HP deskjet 3050 all in one J610 series

    I have a HP deskjet 3050 all in one J610 series which I am using with Windows Vista Version 6.0 (Build 6006: Service pack 2).  Connecting is by USB port.  I have not used the printer for some time, but have done all the maintence checks & it is good

  • Apple ID issue - Cannot modify a standard question

    I cannot order books/prints from iPhoto as I have been unable to set up my Apple ID account in iPhoto. I have tracked the problem down to the fact that I am unable to update my profile password question/answer. I have tried to do this via myinfo.appl

  • CS4 won't open EPS...but my colleague's CS4 will?

    I'm using AI CS4 (14.0.0) and a colleague of mine asked me to convert an .eps to CS3 compatibility for him. No problem right? Well CS4 says it's an 'unknown file format' ...I tried opening it in a slew of other programs...Corel, Photoshop and others.

  • Mac OS X 10.5 Leopard and eDirectory

    Hello, all! I am trying to set up a Mac to authenticate against eDirectory running atop a Netware 6.5. So far, I have been successful in binding the Mac to eDirectory, and I am able to browse the directory as well as read object attributes without pr

  • Can't get twitcam to work on linux FF

    I can't paste into this forum, so pardon for the link (otherwise i have to retype it). http://shengchieh.50webs.com/adobe.100517.txt Sheng-Chieh