Sshd not disconnecting clients before shutdown

I setup an Arch server virtual machine and am having some problems.  When I tell the vm to shutdown over SSH, it shutdowns fine but never closes the shh connection.  I had to add add the servertimeout option otherwise my terminal would freeze.  I tried the same thing with a Ubuntu 9.04 server and it does close the shh connection.  Anything I should check for in the sshd_config?

This seems to work:
#!/bin/bash
. /etc/rc.conf
. /etc/rc.d/functions
. /etc/conf.d/sshd
PID=`cat /var/run/sshd.pid 2>/dev/null`
case "$1" in
start)
stat_busy "Starting Secure Shell Daemon"
[ -f /etc/ssh/ssh_host_key ] || { /usr/bin/ssh-keygen -t rsa1 -N "" -f /etc/ssh/ssh_host_key >/dev/null; }
[ -f /etc/ssh/ssh_host_rsa_key ] || { /usr/bin/ssh-keygen -t rsa -N "" -f /etc/ssh/ssh_host_rsa_key >/dev/null; }
[ -f /etc/ssh/ssh_host_dsa_key ] || { /usr/bin/ssh-keygen -t dsa -N "" -f /etc/ssh/ssh_host_dsa_key >/dev/null; }
[ -z "$PID" ] && /usr/sbin/sshd $SSHD_ARGS
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon sshd
stat_done
fi
stop)
stat_busy "Stopping Secure Shell Daemon"
[ ! -z "$PID" ] && kill $PID &> /dev/null
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon sshd
# remove all running sshd processes
runlevel | grep "[06]" > /dev/null
if [ $? -eq 0 ] ; then
printhl "Killing all sshd processes"
killall -q sshd &> /dev/null
fi
stat_done
fi
restart)
$0 stop
sleep 1
$0 start
echo "usage: $0 {start|stop|restart}"
esac
exit 0
Only one minor problem, the killall also kills the script shutting down the sshd daemon.  Does anyone know a way around this?
Also, why isn't something like this the default?

Similar Messages

  • [solved] sshd not disconnecting clients on close

    When I shut down my sshd, either restarting the machine or manually, currently connected clients are not disconnected. Their ssh sessions just hang, and the terminal has to be closed. How can I make "/etc/rc.d/sshd stop" actually boot clients off?
    Last edited by rezza (2011-02-08 14:45:13)

    Their ssh sessions just hang, and the terminal has to be closed.
    You don't have to close the terminal. The OpenSSH client (i.e. ssh) supports 'escape sequences', and you can force the disconnect between the client and the server by pressing '~' and then '.'. That said, you must have entered a newline just before, so the sequence if often '<enter>', '~', '.'.
    If you want more info about this, look at the 'ESCAPE CHARACTERS' sections of the ssh man page.

  • Another "DO NOT DISCONNECT" problem

    Before I go on I have 2 Nano's , so the problem I have is only with one of them. So this should eliminate many of the potential solutions to this problem ie. it is not my PC , it is not i.tunes , it is not the charging / download lead etc etc. I have tried just about all the suggestions in the support section of the apple site.
    Ok the problem I am having .
    On one of my nano's , I connect it to my PC , and I get the "DO NOT DISCONNECT" etc. However this ipod is not recognised by i.tunes. No icon's on the nano screen are flashing , so it is frozen. When I disconnect it from the PC , the screen backlight is still on and the DO NOT DISCONNECT is still there. None of the buttons will work , the only thing to do is reset it , pressing the MENU and centre button for 6 secs. If this ipod is connected to the PC , I also do the reset , it resets but then goes straight back to DO NOT DISCONNECT as before. Still no response on i.tunes. Both my nano's have been used recently on this PC.
    I have tried using ipod updater to restore this ipod but the updater freezes so I can't even get to the restore button.
    When I reset the ipod , the ipod charges and you can play the songs , so it is working as it should from the point of view. but you just can't get it to connect to i.tunes and it freezes with do not disconnect on the screen , so my son is stuck with the same play list if I can't get this going.

    Welcome to Apple Discussions!
    I know you may have already seen these articles, but you can check this out:
    iPod misssing in Windows or iTunes
    iPod shows up in "My Computer" but not in iTunes
    Here's something else, that you probably haven't heard about before. It's for if you are having an internal disk problem (which you are having).
    Pick up your iPod and stand over a carpeted surface, witht the bottom play/pause side of the iPod facing the ground. Hold the iPod a couple feet above the ground (about at waist-height), and drop it.
    This often solves people with disk problems, which some symptoms are: sad-faced iPod, not being recognized by iPod Updater, folder with exclamation point, not properly disconnecting.
    Hope this might solve it!
    ~~Kylene

  • IPod nano 6th generation: "Do not disconnect" on white screen w/flashing icon; previously "Connected-Eject before Disconnecting" on dark screen w/USB icon; no content on iPod

    Trouble began with "Reconnect to iTunes to Restore" message after I inadvertantly held down the Wake/Sleep button long enough to turn the iPod off before pausing the podcast in progress.
    My subseqent actions to try to remedy:
    -Restored the iPod
         -while Restoring, the rotating circular arrows and "Synchronizing-Do Not Disconnect" screen appeared followed by "Connected-Eject Before Disconnecting"
         -when I ejected the iPod and disconnected it, the normal icons showed but there was no content
    -Reinstalled the latest iTunes 11.0.3 which I had downloaded previously a few days before my problems began
    -Restored iPod again:  still said "Connected-Eject before Disconnecting"
    -Manually put the iPod into Disk Mode (said to be helpful in troubleshooting):  "Do Not Disconnect" on white screen with flashing icon (circle with diagonal line)
    -Ejected and disconnected the iPod.
    -Reconnected the iPod:  same message

    You need to either the let the iPod finishing syncing with iTunes, or figure out what application is still using it in the back ground that prevents you from being able to properly eject the device.  Just unplugging it from the computer is almost always going to cause issues when it's still in use by iTunes or another application.
    So let's connect the device to iTunes one more time and let it finish restoring.  Then try syncing a bit of content over to it and wait for it to finish the sync process.  Then try to properly eject it from iTunes this time.
    B-rock

  • How do I get the do not disconnect to go away?  Yep, I disconnected before I should have

    how do I get the DO NOT DISCONNECT message to clear....

    If you disconnected before your iPod came back on it could be bricked. Try resetting iPod back to factory settings but back up all your music, photos, files etc to an external or make sure you have them on your Mac before doing so.

  • ServerSocket does not detect a disconnected client

    Hi,
    I have created a serverscoket, which will accept 'n' number of clients and send data to all the connected clients.
    And the server should detect when any client goes down or disconnected from network and give the appropriate message to the use that this particluar client has got disconnected.
    I'm able to detect the disconnected client, when the client application is shut down properly (and the application closes the socket). But while the application is running, when the network card is unplugged, then my server is not able to detect this connection loss, and it continues to send the data to the client without throwing any exception.
    Any help would really be greatly appreciated.
    Thanks,
    Hema

    I Asume you don't mean the ServerSocket but the Socket the ServerSocket accepted, for this Socket you can try using
    acceptedSocket.setKeepAlive (true);This may speed up the disconnection detection depending on the implementation of the keepalive mechanism.
    But it then may be that the connection will be terminated, although the connection is only very slow.
    You have to test out, what is better for your purpose.

  • What happens if JCO.Client object not disconnected?

    Hi All,
    Can anyone tell me what happens if a JCO.Client( which is connected to SAP) is not disconnected? Will it be connected? or JCO disconnects it after sometime? or SAP itself disconnects it?
      JCO.Client client = JCO.createClient(....);
      client.connect();
    If I run this simple code and leave it, what will happen to the connection opened?
    Thanks in advance.

    We are using JCO with SAP J2EE and have found something strange.  We are setting the idle_timeout property and the SAP user is logging off, however we accumulate DISCONNECTED sessions in the SAP gateway.  If the gateway limit is reached, additional connections fail.  We used a modified version of the sample program to isolate the problem.
    Test Program:
    import java.io.IOException;
    import com.sap.mw.jco.*;
    public class Test {
        public static void main(String args[]) {
            byte instring[] = new byte[20];
            JCO.Client jcoClient = JCO.createClient("200", "user", "password", "EN",
                    "bhha.na.pg.com", "00");
            jcoClient.setProperty("idle_timeout","60");    
            jcoClient.connect();
            System.out.print("Read:");
            System.out.flush();
            try {
                System.in.read(instring);
            } catch (IOException e) {
                e.printStackTrace();
    During 60 second period, transaction smgw shows the following information as expected.  There is also a logged in user in SM04.
       44  7BWGF21  javaw    t0331        CONNECTED    <unknown 99703871 INT  15:13:10 0    0
    After 60 seconds, the user disappears from SM04, however the smgw connection goes to a disconnect state as follows.
       44  7BWGF21  javaw    t0331        DISCONNECT   <unknown 99703871 INT  15:14:44 0    0
    This session stays in this state until the enter key is pressed and the java app terminates.  This is problem with a J2EE server app were the java process does not terminate.
    Thanks,
    Harry

  • TS1373 my  5th generation ipod acts like it is going to sync and then "ejects" itself before even 1 song can be synced. It then doesnt recognize that it has been ejected and keeps the"do not disconnect" icon on the screen even after unplugging. What do I

    my  5th generation ipod acts like it is going to sync and then "ejects" itself before even 1 song can be synced. It then doesnt recognize that it has been ejected and keeps the"do not disconnect" icon on the screen even after unplugging. What do I do?  it also makes a lot of noise while connected to the computer.

    Is the camera damaged? Could be a hardware problem.
    Try:
    Close the Camera app in the multitasking bar, then try again.
    Restart/Reset/Restore your iPod. In that order.

  • PPPoE not disconnecting?

    Although we have our new AEBS set to "Disconnect if Idle" at 15 minutes, it does not seem to do so. I can shut down all computers, come back in 12 hours, and we are still using the same IP address that we were using before the shutdown. Further, the green monitor LED always stays green; I would expect it to glow amber if there was no active PPPoE connection. A similar setting on our old Belkin router always shutdown the PPPoE connection after the alloted timeout.
    We have the new AEBS with a network consisting of four or five computers (two are Windows machines), and two printers. One of the printers, a Brother laser, is part the network wirelessly, and the other (HP inkjet) is connected to a LAN port on the AEBS via Ethernet cable. Even if the printers are switched off, we still do not get a shutdown after the (set) 15 minutes has expired.
    Does anyone have any thoughts as to why we are not getting a PPPoE shutdown when the AEBS is set to do so?
    G4's, G3's, etc.   Mac OS X (10.4.9)  

    Latest firmware upgrade(7.1) fixed the problem.
    I applied the 7.1 firmware update, but I still
    have
    the same problem: Even though set to disconnect
    from
    PPPoE after a set time (15 minutes), it never,
    ever
    disconnects.
    You are right. I viewed my log file and it does
    disconnect at the proper time, BUT it automatically
    connects again. It seems they have defaulted to the
    ALWAYS ON. Well, Apple got 1/2 of the problem
    corrected. Maybe the next update will solve the other
    half which is to honor the "MANUAL" connection mode
    vice the ALWAYS ON.
    After the firmware update, my settings had been changed to PPPoE "Always On," which I never selected. I changed the setting back to my preference of "15 Minutes." The router does not honor that preference, rather staying online constantly, even with all clients shutdown. The only way I can get a disconnect is to manually cause it.

  • SAP Dialog Instance is not Starting - DISPATCHER EMERGENCY SHUTDOWN

    Hi All,
    We  are running on SAP ECC 6.0, Oracle 10, Windows 2003.
    We have One Central Instance an Two Dialog Instances, we shutdown the SAP system (  Jun 10 15:56:18 2008 ) to do an OFFLINE backup, now one of the Dialog Instances is no starting, we try to restart the system on Wed Jun 11 02:05:45 2008
    Oracle is Up and Open.
    The Central Instance and one of the Dialog Instances are Up, so you can login on the SAP System, and execute SAP transactions.
    I will Attach Our DEV_DISP, and DEV_W0 files:
    dev_dip
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      02
    sid        MIS
    systemid   562 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    133
    intno      20050900
    make:      multithreaded, Unicode, 64 bit, optimized
    pid        4008
    Wed Jun 11 02:05:45 2008
    kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    length of sys_adm_ext is 576 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (02 4008) [dpxxdisp.c   1239]
         shared lib "dw_xml.dll" version 133 successfully loaded
         shared lib "dw_xtc.dll" version 133 successfully loaded
         shared lib "dw_stl.dll" version 133 successfully loaded
         shared lib "dw_gui.dll" version 133 successfully loaded
         shared lib "dw_mdm.dll" version 133 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    Wed Jun 11 02:05:50 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5371]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >SAPPREC2_MIS_02                         <
    DpShMCreate: sizeof(wp_adm)          37008     (1480)
    DpShMCreate: sizeof(tm_adm)          56268128     (28120)
    DpShMCreate: sizeof(wp_ca_adm)          80000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     160000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=2000/16/2208064/2208080
    DpShMCreate: sizeof(comm_adm)          2208080     (1088)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm)          0     (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1864)
    DpShMCreate: sizeof(wall_adm)          (416064/346352/64/192)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000CCF0050, size: 59524432)
    ERROR => DpShMCreate: ShmCreate SHM_DP_CA_KEY(rc=4) [dpxxca.c     181]
    ERROR => DpIPCInit2: DpShMCreate [dpxxtool2.c  462]
    DP_FATAL_ERROR => DpSapEnvInit: DpIPCInit2
    DISPATCHER EMERGENCY SHUTDOWN ***
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Wed Jun 11 02:05:55 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >SAPPREC2_MIS_02                         < (normal)
    DpJ2eeDisableRestart
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    call semaphore clean-up function ...
    ***LOG Q0E=> DpSigGenHandler, Exception (c0000005) [dpnttool.c   432]
    C-STACK -
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Application exception occurred:
    Exception : c0000005 (Access Violation)
    App       : disp+work.EXE (pid=4008)
    When      : 6/11/2008 2:5:55.274
    Threads   : 2
    Computer Name       : SAPPREC2
    User Name           : SAPServiceMIS
    Number of Processors: 4
    Processor Type: EM64T Family 6 Model 15 Stepping 6
    Windows Version     : 5.2 Current Build: 3790
    State Dump for Thread Id 11ec
    --> (FAULT) Stack Back Trace <--
    FramePtr         ReturnAd         Param#1          Function Name
    0000000007d1f2e0 000000000041a395 0000000000000001 disp+work!DpVmcCheckDebugProxy [dpxxvmc.c (1211)]
    0000000007d1f3d0 000000000041d007 0000000005561401 disp+work!DpHalt [dpxxdisp.c (10016)]
    0000000007d1fc10 0000000000421a1b 0000000002671ab0 disp+work!DpFatalErr [dpxxdisp.c (17789)]
    0000000007d1feb0 000000000042d570 0000000000000000 disp+work!DpSapEnvInit [dpxxdisp.c (1388)]
    0000000007d1fee0 000000000040108d ffffffff00000002 disp+work!DpMain [dpxxdisp.c (1076)]
    0000000007d1ff10 00000000019c7dd1 0000000000000000 disp+work!nlsui_main [thxxanf.c (84)]
    0000000007d1ff70 0000000077d5966c 0000000000000000 disp+work!wmainCRTStartup [crtexe.c (498)]
    0000000007d1ffa0 0000000000000000 00000000019c7c60 kernel32!BaseProcessStart
    State Dump for Thread Id 1194
    --> Stack Back Trace <--
    FramePtr         ReturnAd         Param#1          Function Name
    000000000ccefe40 0000000077d5f651 0000000007d7bc60 ntdll!NtFsControlFile
    000000000ccefeb0 00000000018ae00f 0000000000000000 kernel32!ConnectNamedPipe
    000000000cceff40 000007ff7fc411c4 0000000000000000 disp+work!SigIMsgFunc [signt.c (679)]
    000000000cceff70 0000000077d6b69a 0000000077d6b660 msvcrt!endthreadex
    000000000cceffa0 0000000000000000 0000000000000000 kernel32!BaseThreadStart
    call clean-up function ...
    SigICallExitRoutine: call exithandler (DpHalt)
    DpHalt: shutdown server >SAPPREC2_MIS_02                         < (normal)
    DpJ2eeDisableRestart
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    DpShmPrfSwitch : State already set (OFF)
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    And our dev_w0
    this file was no modifued since we stop SAP System.
    M Tue Jun 10 15:56:18 2008
    M  *** WARNING => ThSndDelUser: delete client/user 020/RMENDOZA     (T60) on server SAPPREC1_MIS_01    

    S Tue Jun 10 19:07:40 2008
    S  server @>SSRV:SAPPREC1_MIS_01@< appears or changes (state 3)

    M Tue Jun 10 19:07:52 2008
    M  in_ThErrHandle: 1
    M  ThIErrHandle: new stat of W0 is WP_SHUTDOWN   
    M  ThIErrHandle: I'm during shutdown
    M  PfStatDisconnect: disconnect statistics
    M  Entering ThSetStatError
    M  ThCallDbBreak: use db_sqlbreak
    M  ThIErrHandle: don't try rollback again
    M  ThShutDownServer: shutdown server
    M  PfStatIndInit: Initializing Index-Record
    M  PfWriteIntoFile: copied shared buf (0 bytes) to local buf
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    B  Disconnecting from ALL connections:
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 INACTIVE     NO  YES NO  000 255 255 20080610 144648 SAPPRECDB      
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=000000000866D128,usrhp=0000000007D91058)
    C  Detaching from DB Server (con_hdl=0,svchp=000000000866D128,srvhp=0000000018D61918)
    C  Now I'm disconnected from ORACLE
    B  Disconnected from connection 0
    B  statistics db_con_commit (com_total=29203, com_tx=3253)
    B  statistics db_con_rollback (roll_total=494, roll_tx=0)
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2632) [dpnttool.c   327]
    Please Some Tips!
    Best Regards,
    Erick ILarraza

    Hi Deepak,
    Thanks  a lot for your reply, in this case the problem was with the Dialog Instance (Only SAP apps, not Oracle).
    We shutdown the instance with the Microsoft SAP Management Console (right  button -> Stop).
    In general to shutdown the SAP System we first:
    1. Shutdown The Dialog Instance. (SAP Management Console)
    2. Shutdown The Central Instance. (SAP Management Console)
    3. Shutdown Oracle (BR*Tools).
    4. Stop SAP and Oracle Services.
    Maybe is more a problem of Windows Memory Management.....
    Best Regards,
    Erick ILarraza

  • E61 GPRS connection not disconnecting

    Hello,
    I have recently updated my E61 to the latest firmware 3.xxx
    Now I have noticed a strange thing where built in email client does not disconnect from GPRS at all, unless I manually disconnect it.
    With previous firmware 2.xxx and my settings of "Check every 30 minutes" it would start connection, check email, then disconnect. Now, connection is always ON even though the setting is still set to every 30 minutes.
    Does anyone know why this is happening and how to make it behave as before, disconnecting after checking email?
    Any help will be appreciate it.
    Thanks

    This is simply an educated guess as I'm short on time right now, but will look into the issue in more depth later.
    Have you checked your connection options (tools, settings, connection)? There is an option for GPRS connectivity there. The available options will be 'When Available', and 'When Needed'. I'd start by checking the firmware update hasn't changed this option to When Available.
    If that is not the answer, I'll research the problem more thoroughly.
    All the best,
    Damion.

  • RADIUS (NGS) is not disconnecting users

    Hi,
    I have a guest network set up on a WLC with an external RADIUS server (NAC Guest Server). However when the time profile expires (user account expires) on NGS the active user is not disconnected.
    Now if the user logs off the guest network (either using the logout window or via the idle/session timeout) and tries to log back in they correctly get an error message when they try and log back in on the portal. The issue is that active users are not getting foraceably logged off the guest network.
    I'm sure i've seen this issue referenced somewhere before but I couldnt find it.
    Eoin.

    the key point is that Radius is an authentication that happens when the client connects. The Radius server cannot take actions unless it is contacted in the first place so a radius server cannot kick users.
    This is "too bad" and yes things are coming to change that. The new versions of IOS switches start to support "Radius Change of Authorization" that allows the radius server to kick people on demand etc ... But that's not yet there.
    The session timeout is the time for which the WLC leaves the client in peace before asking for a reauthentication.
    For a WPA SSID, the client laptop will automatically reprovide credentials after timeout usually so it's a smooth reauthentication. But for guest, if the authentication method is a login page, the user will have to re-enter his credentials and if he was doing a file transfer, that got interrupted so that's not cool to set a very small session timeout.
    So you have to decide I'm afraid to set a session timeout of 2 hours let's say, time that you find acceptable to have to reauthenticate again. This means that the clients will definitely not be able to have network access 2 hours (maximum ! once their NGS user account expires, they will be kicked at the next reauthentication which happens between 0 and 120 minutes later) after their account expired.
    Nicolas

  • Won't show up on mac and say "do not disconnect"

    Hi, I've had my 60 GB iPod for about a year now and suddenly now it won't show up on my desktop when I plug it in. The iPod screen says "do not disconnect" though, and after I just pull it out the message doesn't go away and I have to wait for the power to die before I can use it again. Is it starting to break down?

    Homer...this very same thing has happened to me today. Have you found a solution yet?

  • After iPod Update - how long does "do not disconnect" appear?

    I've just updated my older iPod (20GB, iPod version 3.02
    Model No. M9282LL) using updater 2006-03-23, and the "Do Not Disconnect" notice has appeared, and stayed for about an hour so far. Can I assume the updater is working it's way through the 1,500 song library, and that it may take a while longer? Or... have I broken the thing?
    (I just completed an upgrade to Tiger from 10.3.9; iPod worked/connected fine before the upgrade, but not since then. Mounted on desktop okay, and launched iTunes, but never appeared in iTunes. The updater was an attempt to fix this problem, although I first downgraded iTunes to version 6.05, to no avail.)

    To close the loop: I wound up having to "restore" (using the latest iPod updater) this iPod. Problem solved.

  • Did not listen to 'do not disconnect' and now there's a noise and a sad ipo

    It all started when I was in a hurry and ejected my ipod from itunes. As usual, it was removed from the Source list but my ipod still said 'do not disconnect.' I unplugged it and left. Hours later I was at my friends house and plugged it into her laptop to get some of her songs. It wasn't recognized in her Source list and it started to make weird, loud, grinding noises. I reset it and the sad ipod face guy came up. I went to the support page and it said to fully charge it before anything else. So, all last night I charged it and it continued to make that horrible noise all night. I went back to the 5 R's and tried all of them. I finally went to restore it but it's showing that icon that means that it isn't charged enough for the computer to recognize it. Similarily, the ipod updater keeps asking me to plug in an ipod, even though it's plugged in. Now, every couple of minutes, as my ipod is plugged in to my comp via USB, the apple icon shows up, it makes that noise and then the sad guy pops up. What should I do? (I apologize for the length but there's just so much going on with this.)
    MAG
    Compaq Presario   Windows XP Pro  

    Strange noises are a telltale sign of hardware failure. If you want to be totally sure that your iPod is a baddie, reset your iPod, and when the apple logo is showing, press and hold the rewind and clicker buttons for several seconds. When you do this, the iPod should "chirp" and the apple will reverse. Now it's in diagnostic mode. After doing this, try to run the automatic tests. (note that when in this mode, the trackpad doesn't work, you have to use the rewind and fast forward buttons to go back and forth). Have iPod plugged in when doing this. If you end up with a sad iPod icon, then it needs to be sent in...

Maybe you are looking for

  • The Change time of the file is getting modified when no changes are made to the file content

    While doing save operation of a MS-WORD file, (in my example "1M.doc" ) with client (Windows 8) and server(either Win 2008 R2 or Win2012 R2). Observing the following scenario.  After Renames are done(eg, xx.tmp renamed to 1M.doc) , all the file handl

  • GUEST user issue in the workflow

    Some of our users want to have the GUEST user profile option enabled to check the Workflow notifications so that they don't have to login to approve the workflow notifications but they can be able to approve notifications from the link they receive i

  • Add-on connection timed out Error

    Hi all,       I have created an add on following sdk help. (ie; a blanket project). The add - on installs properly but while runnig it gives connection timed out error. I have found a lot of similar threads in the form. but all of them uses B1DE. And

  • A limitation to columns in Numbers

    I have a simple 2 column table with dates in one, and dollar values in another.  I made a simple bar graph of this as well.  X axis is time (dates) y axis is value ($ amounts)  When I try to see the graph, no matter how I size it, I am only able to g

  • Erasing content from damaged 2G iphone

    I was forced to upgrade because my original iphone got wet in the rain, allowing me to only control the top half of the screen. I bought the 3GS (which is great) and activated it before wiping my old phone clean. Because of the troubles with the phon