27" iMac HDD spins up two times on startup

Hi,
the HDD of my 5 month old 27" iMac i7 audibly spins up two times when starting the machine - and is reproducible on every startup. It's like it looses power after the first spin-up, starts to spin down, and when the drive is nearly stopped - spins up again (and then boots flawlessly from then on). The iMac is currently at an authorized Apple service provider, who tells me that that's totally normal behavior for harddrives - and that's just plainly not true. Not one single iMac in the family and no PC i ever possessed over the last 20 years has EVER shown that kind of behavior...
What should i do? Call Apple again or go to a different service provider? It's kind of ridiculous to live with stuff like that after shelling out more than 2k euros!
ps: It's a 1TB drive, but i haven't written down the brand before giving the iMac to 'repair'...

One of my LaCie externals has this same defect. I fully agree with you it's clear it is faulty since I own many other LaCie of the same type and it's the only one that does it.
My faulty LaCie has never caused any other trouble apart from that, though.
Still, if for LaCie it is already quite questionable, for Apple there should be no question, at least if they still value their (so deserved) good reputation:
this is a faulty hard drive, that's it.

Similar Messages

  • My iMac reboots multiple times upon startup.

    My iMac reboots one to two times in the morning when I start it up or when it crashes. It seems to crash about once every couple days. When it reboots it also rebuilds spotlight each time. Any ideas? I have only standard software installed.

    Launch the Console utility and look for messages around the time of the problem that might explain the cause.  If you don't understand what you find, copy a range of messages and paste them into a reply here.

  • What size HDD do you need for Time Machine is it the size of iMac HDD?

    Ok, looking to buy iMac, to use Time machie do you need the same size HDD that is in your iMac? ie Im looking at getting the 250Gb iMac, so do I need a 250Gb external HDD to use time machine?
    I plan to also get a NAS drive so can time machine be used with this or do you need n external HDD attached direct to the iMac all the time to use time machine?
    cheers

    the loc-man wrote:
    so you can pick and choose what backup? eg Music, Pics, Docs, emails etc?
    Yes you can choose everything or just parts.
    does it compress stuff though to utilize the space better?
    No, look here for more detail. http://www.apple.com/macosx/features/timemachine.html
    its not like a ghost image?
    Not that I know of.
    so if the iMac had to be re-installed could you then reconnect the Time machine HDD and restore everything?
    You could insert the Leopard disk and instead of doing a new install you could restore directly from the Time Machine Back Up. This depends on if you do a full back up or just parts of your system. Either way it is easy to recover your system using Time Machine.
    Also if the external HDD is used for time machine is that all it can be used for? or can you also use it on other computers both Mac and PC?
    It is best if you use Time Machine on a partition by itself. Then the other partition can be used for normal stuff.

  • IMac late 2009 i7 2t HDD, Grey screen problem on rebooting, tried all support recommendations inc re installation of Yosemite,  now about to wipe HDD backing up from time machine would like to go back to mavericks on this 2 days before help please

    OSX Yosemite gray screen at startup, tried all Apple Support recommendations inc reinstall, now need to wipe HDD backing up from time machine, would like to backup 2days before Yosemite installation ie Mavericks help please

    Do a backup, preferably 2 seperate ones.
    Revert to a Previous OS X
    Revert Yosemite to Mavericks
    If you do revert, I'd use Setup Assistant to restore your data. This process takes a while, so do it when you won't need the computer for several hours, based on my experience.

  • HDD Spin Down - Storage Spaces

    I would like to know if anybody got some kind of solution, or has gotten any further then me.  
    I want to build an application that can monitor you HDD energy consumption. (spin down status)  and the temperature. 
    I've figured out how to get the temperature from WMI   but the spin down status is proving to be kind of impossible.
    http://superuser.com/questions/400213/see-if-hdd-is-in-sleep-mode-for-windows
    I understand the only windows has control over the HDD spin down of each drive.   The problem is , if I have a drive that is spun down, and i start to try and get the information about its status using WMI,  the drive is spinning back up. 
    Also , i want to monitor Storage Spaces individual drive status.   If i'm making a storage space jbod, (no redundancy),  I would like to know the hdd spinning status of each drive.

    Maybe use a
    performance counter and if the disk is idle for some time then you should know it is spun down I suppose. Although you would have to test that. And the app probably requires admin privileges to access that info.
    Run below code with admin privileges. Select button1 to fill ListBox1. Selected item in ListBox1, select Button2 to fill ListBox2. Select item in ListBox2, select Button3 to fill ListBox3. Start timer.
    Stop timer to begin new selection process from ListBox1 for ListBox2 and ListBox3 or leave timer running if changing selection in ListBox3.
    Option Strict On
    Public Class Form1
    'Code used is from below two links.
    'Walkthrough: Retrieving Categories and Counters
    'http://msdn.microsoft.com/en-us/library/2fh4x1xb(v=vs.90).aspx
    'A Quick Introduction to Performance Counters in Visual Studio 2012
    'http://www.codeguru.com/columns/vb/a-quick-introduction-to-performance-counters-in-visual-studio-2012.htm
    Private pc As PerformanceCounter
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.Location = New Point(CInt((Screen.PrimaryScreen.WorkingArea.Width / 2) - (Me.Width / 2)), CInt((Screen.PrimaryScreen.WorkingArea.Height / 2) - (Me.Height / 2)))
    Me.Text = "Performance Counters"
    ListBox1.Sorted = True
    ListBox2.Sorted = True
    ListBox3.Sorted = True
    Button4.BackColor = Color.Lime
    Button4.Text = "Start Timer"
    Timer1.Interval = 1000
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim myCat As PerformanceCounterCategory()
    Dim i As Integer
    ListBox1.Items.Clear()
    myCat = PerformanceCounterCategory.GetCategories
    For i = 0 To myCat.Length - 1
    ListBox1.Items.Add(myCat(i).CategoryName)
    Next
    End Sub
    Dim InstanceNames() As String
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    ListBox2.Items.Clear()
    If ListBox1.SelectedIndex <> -1 Then
    Dim mycat As New PerformanceCounterCategory(ListBox1.SelectedItem.ToString())
    InstanceNames = mycat.GetInstanceNames()
    If InstanceNames.Count > 0 Then
    For Each Item In InstanceNames
    ListBox2.Items.Add(Item)
    Next
    End If
    End If
    End Sub
    Dim Counters As New System.Collections.ArrayList
    Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
    ListBox3.Items.Clear()
    Counters.Clear()
    If ListBox1.SelectedIndex <> -1 And ListBox2.SelectedIndex <> -1 Then
    Dim mycat As New PerformanceCounterCategory(ListBox1.SelectedItem.ToString())
    Counters.AddRange(mycat.GetCounters(ListBox2.SelectedItem.ToString))
    Dim counter As PerformanceCounter
    For Each counter In Counters
    ListBox3.Items.Add(counter.CounterName)
    Next
    End If
    End Sub
    Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
    If Button4.Text = "Start Timer" Then
    Button4.BackColor = Color.OrangeRed
    Button4.Text = "Stop Timer"
    Timer1.Start()
    Else
    Button4.BackColor = Color.Lime
    Button4.Text = "Start Timer"
    Timer1.Stop()
    End If
    End Sub
    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
    RichTextBox1.Text = ""
    If ListBox1.SelectedIndex <> -1 And ListBox2.SelectedIndex <> -1 And ListBox3.SelectedIndex <> -1 Then
    pc = New PerformanceCounter()
    pc.CategoryName = ListBox1.SelectedItem.ToString
    pc.InstanceName = ListBox2.SelectedItem.ToString
    pc.CounterName = ListBox3.SelectedItem.ToString
    RichTextBox1.AppendText(pc.CounterHelp.ToString & vbCrLf & vbCrLf & vbCrLf & "RawValue = " & pc.RawValue.ToString & vbCrLf & "NextValue = " & pc.NextValue.ToString)
    End If
    End Sub
    End Class
    La vida loca

  • WIFI problem when linking two Time Capsule

    Hello community,
    I hope you can help me out here so that I will finally know if I'm doing something wrong or it's just a bug. I own two Time Capsule, an old first 500GB model and a newer 1TB simultaneous double band model.
    I set up my network with the 1TB model and I chose to link all the 802.11n devices I own (MacBook, iMac, 500GB Time Capsule etc) over the 5GHz network and all the others such iPhone, PS3, printer over the 2.4GHz network.
    The kernel is that if I try to connect the 500GB TC model (in order to extend my network and yes, the 1TB model is allowed to be extended) using the 5GHz network I experience problems: green light followed by the amber light...the HDD boots up and the TC connect again but the problem persist...it just keeps connecting/disconnecting.
    On the other hand, If I link the 500GB TC over the 2,4GHz network it just works fine.
    Believe me, I tried resetting many times but nothing happened...I had to switch back to 2,4GHz network in order for it to work properly.
    How can it be? I know that the first TC model can work over 5GHz just fine....(I remember that you could choose which frequency you could use).....so I'm a little astonished...¬¬
    Am I missing something or is it a bug?
    Greetings from Spain

    Did you assign a separate name to the 5 GHz network on our AirPort Extreme
    Hard Drive > Applications > Utilities > AirPort Utility
    Click Manual Setup
    Click the Wireless tab below the row of icons
    Make sure there is a check mark next to "Allow this network to be extended"
    Click the Wireless Options tab
    Assign a separate name for the 5 GHz network
    Then, on the Time Capsule
    Open AirPort Utility, click Manual Setup
    Wireless Mode would be "Extend a wireless network"
    Wireless Network Name would be the exact name of the 5 GHz network that you setup
    Security = Same as Airport Extreme
    Password = Same as AirPort Extreme
    I confirmed that this does work. Does this help you there?

  • TimeMachine or RAID with internal iMac HDD?

    I am thinking of getting an external SSD for use as my boot disk and then connecting it via Thunderbolt. Presently I have a 72rpm HDD and it's showing it's age, but it's 1TB and so will the external SSD, the move is purely for speed, on top of this I have an external 1TB HDD which I interface via tryst ol' USB2 and use that for TimeMachine back-up.
    My question is whether to cut the chord with the external USB 2 HDD and use the internal HDD as a TimeMachine instead when running from SSD?
    Either than or keep the external HDD as a TimeMachine back-up and use a RAID configuration so that if anything were to happen I could pickup from where I left off, but not sure about the performance hit, or if I could even do that (i.e. RAID from external Thunderbolt SSD to internal iMac HDD)?
    There is another option and that would be that the Thunderbolt connected enclosure will have two bays and so I could fit in an affordable HDD for one of these suggestions. The benefit being that I would be able to forfeit one of the mains plugs (1TB is never going to be Bus driven!) and use it for the Thunderbolt enclosure.
    I suppose my main concerns would be how to et up RAID with the different storage systems and if it would work, as well as the performance hit, I'm not sure what suffers when connecting SSD to HDD and having a real time backup system, if it's even worth it? I am making the SSD move for speed after all.

    I forgot to mention that I may also consider encrypting my backup or RAID drive, any thoughts on that too?

  • Imac won't restore from time machine backup after HD (hard drive) recall replacement

    I have an imac bought in 2011, running Snow Leopard.  It required an HD replacement due to the 1 TB Seagate recall - the replacement was done by a certified Apple repair station yesterday.  Before the guy left he started a backup/restore from my latest time machine backup set.  It failed.  I attempted it two times and got error messages that it failed and the computer needed to be restarted to try it again.  No luck.  I called the guy back and he told me to call Apple Care.  Not thrilled about that response since the guy had just left my house I did what he told me to do.  (A quick sideline here:  I recognize that a time machine backup should be no big deal and SHOULD work everytime, but it doesn't.  It irks me that Apple is replacing my HD through no fault of mine and yet they don't allow the restore of data to be a "covered" expense in this process - this isn't just because this was an authorized repair guy - the Apple store would have done the same). 
    Back to the issue.  When I called apple care they pretty much had me try the same thing again with an earlier back up set.  To my knowledge, it didn't work.  I say this because it looked like it was working and when I came back to the imac later, it had restarted and once again booted to the OSX install.  (The boot disc is still in the imac).  When I tried to boot from another location, one did not show up to boot from so I assumed that the data didn't transfer and it forced another restart.  So, I tried something else.  I tried to re-install the snow leopard OSX without using the restore function.  That appeared to work and then when the machine restarted it asked if I had another mac and I chose the option to get the files/apps/etc. from my time machine backup.  The computer chose what I can only assume is the most recent backup set (It chose what I know to be a subfolder that appears under the dated backup folder - Macintosh HD--which btw is confusing seeing as that's always the name of the HD on the imac).  I again stepped away from the computer so it could do its thing for two hours.  When I returned, I was back to the MAC OSX screen that asks you to choose a language.  There were no more options to choose DISK UTILITY or RESTORE FROM BACKUP, etc.  When I clicked on English it took me right back into the screen where you say whether you have another Apple that you want to transfer data from.  I realized that the imac must have restarted and I assumed maybe it was because the boot disk was still in - except how do you get the disc to eject?  I also initially assumed that the backup had somehow failed again and triggered a restart.  I tried to choose the option to just set up the machine without transferring data and when I got to the choose a name for your HOME folder message I tried to enter the same name I had it as before and it wouldn't allow me to do so, saying that that name was already in use.  I also tried a different name and that didn't work either - got the same message (I assume if it is not the same name that it won't sync up with the time machine data from the backup set).  So, I almost tried the "select time machine backup" option again until I looked at my HD space.  Clearly, there is space that has been used.  HD space was 997 at the start and now it's 636. My initial thought is to somehow get back into the setup area where I can use disc utility and erase the whole thing and then start over but 1) I don't think it's going to work even if I could get back there 2) I have no idea how to get this thing to reboot into that mode 3) I can't get the boot CD out to even try to restart to see if this thing did what it was supposed to, SO NOW I AM TOTALLY STUCK!  I have not called Apple Care back because quite frankly they were useless the first time.  I have a call into the repair guy but who knows how much help he will be.  In the mean time, I have a million things to do and a computer that isn't working - Whoever said Apples never have issues needs to be seriously censored!
    A few other notes:  I use Time Machine Editor to run my backups weekly.  It was set up that way from the get go by an Apple rep who came to my house to get us up and running.  Editor should not effect the way that time machine does its work, so I doubt there is relevance but thought it worth mentioning. 
    One other note is that the Apple Care agent tried to have me do something called a "Source" something or other from the disk utility screen but when she realized that my backup file (shown by date) contained many other sub files (11-27-12/MacintoshHD/MyNamesIMAC/etc.), it was not possible to run this operation - thus we aborted.  Sorry I don't remember the name of the process and unfortunately now can't access that option to go find it. 
    If you can help me, I would be eternally grateful!  I am open to having a phone conversation if you are willing to give me your email to mail you my number. I have so much work to do this week and this was the last thing I needed.  Did I mention this was supposed to be EASY?
    I used to be quite the geek with my PC - still on the learning curve with the mac but not enjoying it.  I am fairly tech savvy and I can follow instructions for a step by step solution if you've got one. 

    I got a recall and had the drive replaced. I have retored 3 timesa dn even had apple do the job and it is still not right. I still can't get a simple ghost of the data from time machineback tot he new drive. 
    This is Apple's explaination as taken from their web page.:
    Restoring your entire system from a backup
    If you are restoring a backup made by a Mac to the same Mac
    With your backup drive connected, start up your Mac from the Recovery system (Command-R at startup) or Mac OS X v10.6 installation disc. Then use the "Restore From Time Machine Backup" utility.
    Note: If "You can't restore   this backup because it was created by a different model of Mac" appears  when restoring  a backup that was  made on a different Mac, follow the onscreen instructions.
    I even posted this information on the community and apple removed it... because they don't like the:
    Off-topic or non-technical posts
    Non-constructive rants or complaints
    But here is my experieince:
    Take in 27iMac running 10.6.8, 5-7 days, what a joke, my boss will be happy to pay for a week without working. Finally get, "if you have TM back up, 3 days." Get machine back with 10.6.3, hit the R recovery, click TM back up, runs for 2 hours, reboots, looks great. Box up take back to office... update to install - OH NO, still running 10.6.3. Updates crash with no specific error on install, BUG PROBELM, nothing runs.
    Call Apple... after hours, tells me to boot using 10.6.2 disk, wipe, reinstall OS, udate to 10.6.8, THEN do the restore. GREAT! Only thing 10.6.2 DVD won't read... now back on phone... take back to the store, Genius says, he'll ix it just like it was. PROMISES it'll be fixed.
    Pick up next day, supposedly, booted to disk, wiped drive, reinstalled, updated to 10.6.8 and THEN did the RIGHT restore... Looks GREAT... apps run and 10.6.8 OS. Back to the office... NOT RUNNING right!!!... fonts messed up, drop box app needs new install, cocktail needs upgrade, Fetch not working, memorized paths gone... back ups locked out of permissions... ***!!
    4 hours on phone with apple and still no rsolution - to missing "settings". Seems there are THREE WAYS TO RESTORE (according to apply tech)... Running MIGRATE ASSISTANT and being able to choose your files, including settings, "R" RESTORE after they load a new OS... or NOW WAITING for them to send me a bootable 10.6.3 disk and then boot from disk, w/o installing OS and doing a restore from TM. I think this is done via the disk Utilties application.
    So now can't back up without doing a full 400 GB back up since permissons are screwed and possibly destroying any good back ups... can't work, like having hands tied behind back. WAITING for solution! Very upset!!!
    I did my first restore just like they said and now an 10 days without proper machine. Just FYI. I thnk I am going to make the store do the tech work so I have somthing to fall back on.

  • Can you use two Time Capsules and back up both with Time Machine.

    My little iMac hard drive (250GB) is quickly filling up with my iTunes library (180GB). I have a 500GB Time Capsule which I use to back up my system via Time Capsule. I would like to move my iTunes library to an external hard drive. If I add the 1TB Time Capsule and use it as my main system back up and wireless router can I use my 500GB Time Capsule as an external drive to locate my iTunes library? Will I be able to back up both my iMac HD and the 500GB Time Capsule to the 1TB Time Capsule using Time Machine or some other method?
    Finally if I can do this can I have both Time Capsules running wireless?
    Message was edited by: mwheelerk
    Message was edited by: mwheelerk
    Message was edited by: mwheelerk

    Could I simply make a copy and move it between the two Time Capsule on a routine basis say every two weeks or month?
    Yes
    I know I will have to "point" or "map" the new location of my iTunes library to the external hard drive/2nd Time Capsule. Once that is done wouldn't Time Machine then just find the location and back it up along with all the data on the iMac hard drive?
    Since this Time Capsule would be connected wirelessly or via Ethernet to your Mac, it would appear as a network drive. Time Machine will not back up data FROM a network drive. Therefore Time Machine will not back up data on this other Time Capsule.

  • 24" iMac, two beeps at startup. Anything to check besides RAM?

    One of our 24" iMacs has done the "two beep gray screen" twice in its 3 week long use. The first time was during one of the reboots on the first day, the second time was today (a few weeks apart).
    The day it arrived I put in a stick of 1G ram, and I know it's the correct speed/type. I was also grounded during the install so that's not the issue (I hope). I've run the startup diagnostics and it didn't show anything wrong with the memory.
    I may try and re-seat the RAM, but the iMac doesn't do the beeps often, just those two times. The machine has also been VERY stable and fast.
    Is there anything else I should try before returning the memory or calling AppleCare?
    Thanks!
    -Sean

    That's exactly what I was planning on doing. Thanks Dave! Hopefully it's that easy to diagnose/fix.
    All of the issues people have been having with various components of the 24" iMacs has me very nervous. Thankfully we have a 3 year AppleCare warranty, though that doesn't shorten the machine downtime.
    *fingers crossed* I hope it's just the ram.
    Anyone else have any thoughts?

  • HDD spinning like mad every few minutes....

    I've owned this Macbook for a few years now and for the past few months I've had a more and more difficult time working due to the hdd spinning like mad. I could open any application and within a few minutes I hear the disk spinning for a good 5min or so, slows down and starts up again within a few minutes. This causes everything to hang while it spins. I don't understand why it's doing it but it's extremely frustrating to work with. I've checked the system profiler/diagnostics (power on self-test) with passing results.
    Any reason why this would happen? I'd love for someone to enlighten me on this before I call and get my @$$ on hold....
    Thanks in advance!

    Hey I think I had same kind of problem few months back...... My macbook was making such a great sound that I was too much worried.... But then some one suggest me to see in utilities in activity monitor and close the program that was having threads more than 30 or so.And after that my mac is running now normal. So I suggest u to check for same thing...some time it happens that although v have quit any particular program it runs in background as it has not completed it's work and if then also the program does not get quit from list remove that particular files or documents that makes it run..... I think if this is the problem in your case everything will be fine when u complete there steps.... Good luck

  • Hi. Good morning, I intend to purchase the Photography Photoshop program. The Rs 499/month one. I currently use an Mac Air. But intend to buy a iMac in about 2 months time. Will I be able to transfer this program or continue using this on my new machine?

    Hi. Good morning, I intend to purchase the Photography Photoshop program. The Rs 499/month one. I currently use an Mac Air. But intend to buy a iMac in about 2 months time. Will I be able to transfer this program or continue using this on my new machine?

    My eyes just glazed over...Please in the future break down each of your issues with paragraphs separated by two carriage returns. It would be much easier when trying to address your issues.
    Go to Apple menu -> System Preferences -> Keyboard and Mouse -> Mouse
    And edit your mouse settings to do what you want it to do.
    Secondly, this is not the place to vent. If you have a complaint, there is:
    http://www.apple.com/feedback/
    or http://www.apple.com/contact/
    We are just end users here helping other end users.
    Third, from my understanding, it would appear you are concerned about the noise the hard drive makes when it falls asleep? Why not put your machine in screen saver mode instead? Apple menu -> System Preferences -> Energy Saver turn off all Energy Saver settings, or set them to run Never.
    Fourth, if your machine was purchased just a few days ago, you may still be able to get an exchange from the store, quicker than you can get a repair done. You may want to look into that possibility.
    Fifth, it does appear you found the Logic forum. I would persist in asking there how to solve your technical issue with Logic regarding the audio. It may be you don't have to do anything special to the hard drive. Remember audio can be transmitted by wire, avoiding ambient sounds.
    Good luck!

  • Signing in to iTunes. I am asked to sign in two times in a row, every time. Is this the new normal? Can this be changed somewhere in preferences? Thank you.

    Why am I asked to sign in to the iTunes store every time I open the iTunes app? I have not signed out and I am forced to sign in two times, every time. Why is once not enough? Is there something wrong with my computer or my iTunes app? I live alone and I am the only person that uses this computer. Which is, by the way, a 2011 MacBook Pro 13". Any comments or advice are appreciated. Thank you.

    AndrewG33 wrote:
    I am new to iMac and thinking about subscribing to itunes match. Is it worthwhile and if I want to still store music on the iMac in iTunes am I able to still do this even if I do not renew the subscription in a years time. Thank you for your help.
    See this page from the Apple web site for more information: http://www.apple.com/itunes/itunes-match/
    AndrewG33 wrote:
    Oh and also, I have set up 4 user log ins one for each member of the family will the same itunes library be used by each person in their own log in or will they have to have their own match subscriptions?
    A computer can be associated to only one Apple ID at a time. Multiple Users on the same computer cannot use iTunes Match, automatic downloads, or re-download content from the iTunes Store at the same time: http://support.apple.com/kb/HT4627.

  • HT4259 Direct Connect  Two Time Capsules together with Ethernet.

    I have TWO Time Capsules  ( One upstairs providing Time Machine backup to IMAC #1 )  and  (One downstairs providing Time Machine Backup to IMAC#2)
    I would like to extend the wireless network portion of this to reach the whiole house with ONE wireless network. I know I can EXTEND the network, but my question is can Connect the two time capsules together via Ethernet cable ( my house is pre wired).  This will essentially ensure that the two devices have a solid connection instead of relying on WIRELESS.
    Any reasons to NOT do this?
    Time Machine will be used differently on the two devices.
    Thanks
    Ron

    Hello!
    I have the same problem, i am trying to do this
    Timecapsule nr 1, ISP uplink to WAN.
    from this one i have LAN to the other timecapsule to WAN.
    On the first timecapsule i have DHCP/NAT enable.
    On the second i have, Bridge mode.
    But when i am connected with eth to the second one i wont recive dhcp addresses or anything... like it wont passtrough.
    Any ideas?

  • Two Time Capsules, now one is not visible.

    Our network has two Time Capsules, the model TimeCapsule6,109.
    TC #1 is the network's router. Its WAN port talks to the cable modem. One of its LAN ports connects to TC #2's WAN port. TC #2 is in Bridge mode. Both TCs are configured to "Create A Wireless Network" and both wireless networks have the same name etc etc. WiFi works well throughout the house.
    TC #1 is backing up a couple of the computers, TC #2 is backing up the others. This has all been working for a couple of months.
    Three machines were updated to Mavericks. I updated the fourth last night; it was on Lion (not even ML, just lazy). Before upgrading the other machines I manually started a Time Machine backup. I noticed that this machine hadn't been backed up in a day. When I manually started it, it could not find the backup disk, which was on TC #1. TC #1 didn't even show up in the Finder. That was odd, but I installed Mavericks anyway.
    Tonight I started to investigate. I'm on my main machine, an iMac running Mavericks, and I notice that TC #2's icon in the Finder under shared looks like the Time Capsule, but TC #1's icon is an old computer monitor. I can click on the icon for both and connect and see the disks.
    I open up Airport Utility. TC #2 is visible, TC #1 is not. I open up the iNet utility and scan the network. Both Time Capsules show up, but only TC #2 identifies as a Time Capsule. TC #1 does show that it's the gateway.
    iNet has an "Airport Monitor" option. I select it; only TC #2 shows up.
    What's odd is that the network still functions; TC #1 is the router/WAN interface, and all of that still works. I can get to the network from outside with Back To My Mac and I can see my Subversion repository (via http) and all of that. It's just that TC #1 doesn't appear to be a Time Capsule in terms of its visibility to Airport Utility and to Time Machine.
    Ideas?

    Maverick has changed a number of things.. which can mess things up.
    Firstly reboot the network.. so everything off.. restart the modem.. wait 2min.. restart the TC#1.. wait 2min, restart TC#2.. wait 2min.. then restart the clients.
    Do the TC disk show up?
    Any continuing issue manually mount the TC disk.. in finder use Go, Connect to Server and type the address,
    AFP://TCname
    That will then hopefully get past this problem.

Maybe you are looking for