U experienced in telnet?

As your probably know, 2 of the few of the things that you need in telnet is an inputStream and an outputStream. I am constantly listening to my inputStream with a while loop and displaying back that input into the telnet client. But this constant 'listening' has backfired with high CPU load when input is expected. I only exit the listening when either carriage return is encountered or user has input max characters. Anyone knows how to decrease the CPU load?? I cannot get the indentation on this discussion group.
//prompts user for input,
//returns the input string,
//characters not in key_list are ignored
public String getString() throws Exception{
boolean flag=true;
char last_char;
int v_ascii;
     int ran_ascii;
     int i=0;
     while(flag){ //print the user input live
     i=i+1;
               if (in.ready()){ //is there anything to read?
                    v_ascii=in.read(); //get the char by char input from the keyboard, NOTE:read returns an int
                    last_char=(char)v_ascii;
                    System.out.println("User is putting in '"+last_char+"' which is ASCII '"+v_ascii+"'");
                    if (is_allowable(v_ascii)){ //ignore special characters
                    if (v_ascii==8){ //treat a backspace differently
                         if (this.backspace(1)){ //successful backspace, v_string modified
                    out.print(last_char); //last_char is a backspace here
                              out.print((char)32);//print a space
                              out.print(last_char);//do another backspace again
                    out.flush(); //make it visible
                         }//no need to append, last char has been removed
                    else{  //it is not a backspace
               if( (v_ascii==10) || (v_ascii==13) ){ //carriage return entered, terminate input
               flag=false; //exit the for loop
                              //this.appendEnter(); //append chr10 and 13
                              this.terminateInput(); //move pointer to last input character
                         else{//all allowable input characters
                         if (v_string.toString().length()<maxlen){ //more characters are still allowed
                         v_string.append(last_char);//append the legal character to string input
                         if (is_visible){
                    out.print(last_char); //return what the user is typing in on his screen
                    out.flush(); //make it visible                    
                                   else{//not supposed to be visible                                     
                                   //ran_ascii=(int)(ran.nextInt(7)+162);//try this funny thing out
                                   //out.print( (char)ran_ascii );
                                   out.print('*');//to substitute passwords
                                   out.flush();
                    }//v_string.len < maxlen
                         if (v_string.toString().length()==maxlen && is_autoenter){//force input termination
                              flag=false;
                              //this.appendEnter(); //append chr10 and 13
                              this.terminateInput(); //stop reading
                         }//else did not press carriage return
                    }//else no backspace
               }//is_allowable, keys are legal
               }//if in.ready()
          } //while loop
return (v_string.toString().trim()); //return the user input     in String, trim it to remove the carriage return

Use [ code ](no spaces) before the snippet, and [ /code ](no spaces) after for indentation.
Now to your question. Maybe you should use a seperate thread the listen on the input, then you won't have to test in.ready() repeatedly. Tou can have the thread block on the read.
public clas ReadingStuff implements Runnable {
    public void run(){
     while(your_boolean) {
            try {
                String s = getString();
            catch(Exception e){}
        //prompts user for input,
    //returns the input string,
    //characters not in key_list are ignored
    public String getString() throws Exception{
        boolean flag=true;
        char last_char;
        int v_ascii;
        int ran_ascii;
        int i=0;
        while(flag){ //print the user input live
            i=i+1;
//removed: if(in.ready()){
            v_ascii=in.read(); //get the char by char input from the keyboard, NOTE:read returns an int
            last_char=(char)v_ascii;
            System.out.println("User is putting in '"+last_char+"' which is ASCII '"+v_ascii+"'");
            if (is_allowable(v_ascii)){ //ignore special characters
                if (v_ascii==8){ //treat a backspace differently
                    if (this.backspace(1)){ //successful backspace, v_string modified
                        out.print(last_char); //last_char is a backspace here
                        out.print((char)32);//print a space
                        out.print(last_char);//do another backspace again
                        out.flush(); //make it visible
                    }//no need to append, last char has been removed
                else{ //it is not a backspace
                    if( (v_ascii==10) || (v_ascii==13) ){ //carriage return entered, terminate input
                        flag=false; //exit the for loop
                        //this.appendEnter(); //append chr10 and 13
                        this.terminateInput(); //move pointer to last input character
                    else{//all allowable input characters
                        if (v_string.toString().length()<maxlen){ //more characters are still allowed
                            v_string.append(last_char);//append the legal character to string input
                                if (is_visible){
                                    out.print(last_char); //return what the user is typing in on his screen
                                    out.flush(); //make it visible
                                else{//not supposed to be visible
                                    //ran_ascii=(int)(ran.nextInt(7)+162);//try this funny thing out
                                    //out.print( (char)ran_ascii );
                                    out.print('*');//to substitute passwords
                                    out.flush();
                        }//v_string.len < maxlen
                        if (v_string.toString().length()==maxlen && is_autoenter){//force input termination
                            flag=false;
                            //this.appendEnter(); //append chr10 and 13
                            this.terminateInput(); //stop reading
                    }//else did not press carriage return
                }//else no backspace
            }//is_allowable, keys are legal
//Removed        }//if in.ready()
        } //while loop
        return (v_string.toString().trim()); //return the user input in String, trim it to remove the carriage return

Similar Messages

  • Open a Telnet link with Firefox and bad things can happen

    I happened to come across a site with a number of links, and the one I chose happened to be a telnet link. Here was my experience, and I had to put myself into the shoes of the average user who knows nothing about programming.
    The link that caused Firefox trouble when Firefox was chosen to run it is this:
    telnet://dxc.nc7j.com:7300
    Click on the link and Firefox tells you that you need to select a program to open the Internet Shortcut Shell extension DLL. I have never heard of this, and I have no idea what to do here.
    Choose to open with Firefox.
    Now, if some error-handling routine had caught that Firefox, which is not capable of doing Telnet, was selected by the unknowing person behind the keyboard to go ahead and do Telnet, the error-handler would advise the user to the fact that this protocol is not supported and kill the process that is going to run out-of-control otherwise. Or cause to open the program that will run the Telnet session.
    Better yet, I clicked on the Telnet link and offer a better description of the choices.
    After all of what happened below, I installed Iron, a Chromium-based browser, and it opened a Telnet session window right away.
    So what did happen, I clicked on Firefox to do this chore and was greeted by a never-ending opening of empty tabs and upon closing the browser, it relaunched and was off to the races again. And again.
    OK so this ain't getting us anywhere.
    Firefox opens once again, this time hit the big red X to close it, and let the prompt to close however many tabs anyway prompt sitting there.
    I chose to run CCleaner, and I set that to blow away Firefox Cache and session. Run CCleaner, and tell it to force Firefox closed when it prompts that Firefox is open.
    If by chance Firefox launches again, timing was perfect that the file that was causing Firefox to open was not yet cleaned, so run the CCleaner again a few times. When Firefox is no longer opening, we are back to the world of sanity.
    Now, I could go in and reset the Tools Options Applications tab and look for Telnet, and replace the use of Firefox with "ask me."
    Fortunately, I know a little more than some about the computer, and I knew I had to use a utility to clear out the Firefox cache.
    You have a description of the issue in your knowledgebase, but it has Firefox opening endless empty tabs, but Firefox was closed and the situation is under control.. Restart Firefox manually, start a new session and then enter the Tools menu and fix the setting.
    There is a knowledge base article on this very topic, but it has the user close Firefox and then all is back to normal. One can open Firefox and get into the menu to fix the issue. There was a mention in there about malware as a possible cause of the constant reopening I experienced, but Malwarebytes scans were clean.
    "Well, this is embarrassing!" I have seen that nice touch to Firefox for many years, and may I compliment those who thought of that one.

    I agree, it can become a vicious circle.
    The default setting to try to restore all the windows and tabs automatically after a crash isn't the best setting. Personally I do change that so I get the "this is embarrassing" screen. So one option would be to file a bug report suggesting this be changed going forward.
    Another potential follow-up action would be to update the knowledge base article to better address how to recover in these situations. For example, a user could start up Firefox without restoring the previous session by:
    * Launching Firefox with a specific URL
    ** Using a desktop shortcut
    ** Using a link in an external application
    ** On the command line, typing firefox.exe "about:blank"
    ** (Possibly more ways to do it)
    * Renaming the sessionstore.js file in the profile folder
    ** On the plus side, preserves the option to restore that session later
    ** On the minus side, difficult for many users to find folders hidden by the OS, and the .js extension may be hidden by the OS
    Since the KB is a wiki, you can go in and make edits and improvements. The syntax is a bit funky, but not much worse than this forum.

  • Problem with Telnet and Escript/Fscript

    I have a lot a problems using Telnet and Escript/Fscript with Forte
    3.0.G.2.
    Does anyone has the same trouble or any experience about that.
    Thanks for your answers.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    I use EScript and FScript through telnet sessions all the time, and I
    don't have any problems. Can you give more information on the problems
    you are experiencing? Are there any error messages? Does it hang? Any
    other information about the platforms and process you are using?
    For example, can you even get into FScript/EScript? If not, your
    environment variables for the user may not be set (you have to have set,
    at least, FORTE_ROOT and FORTE_NS_ADDRESS, or you have to use explicit
    paths and the -fns flag).
    Also, how are you invoking telnet (Unix-to-Unix, Windows-to-Unix,
    etc.)? Which telnet client are you using?
    More information would be really helpful in diagnosing your problem.
    Regards,
    -Katie
    Pascale Voisin-Bouton-FX01314 wrote:
    >
    I have a lot a problems using Telnet and Escript/Fscript with Forte
    3.0.G.2.
    Does anyone has the same trouble or any experience about that.
    Thanks for your answers.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>--
    Katie Carty
    Senior Consultant
    Forte Software, Inc.
    http://www.forte.com
    4801 Woodway Drive, Suite 300E
    Houston, Texas 77056
    vmail: (510) 986-3802
    email: [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Telnet portlet not returning info to user, but receiving commands

    Hello,
    We are having some problems receiving data from the server in the telnet portlet. When a command is issued such as 'ls', nothing is returned to the user. The command is being received by the server because when you create a file and then check to see if the create file command was run, you will see a new file created. So the problem seems to be that the portlet is not able to read the info sent by the server.
    When you reload the portal page you get null errors returned in the portlet.
    In Mozilla the following browser error appears - document.cmdForm.userText has no properties.
    In IE the following browser error appears - document.cmdForm.userText is null or not an object.
    Has anyone had this same problem? Any insight on how to fix this???
    Thanks in advance,
    julia.

    I am experiencing exactly the same problem.
    Did anyone ever find a solution?
    The telnet portlet logs me in and I am able to run commands but cannot see any output from the portlet. For example if I create a directory via the telnet portlet and check on the server terminal I can see it has been created, but if I do an ls command via the portlet nothing is displayed on screen.
    The portlet was installed on 9ias v9.0.2.0.3, PDK v9.0.2.6.2 and Solaris 5.8

  • Virtual telnet/downloadable access lists: acl authorization denied error

    Hello,
    has someone else experienced the same "issue" as described below ? And can someone (Cisco ?) tell whether this is by design, and if so, what the reasoning is behind this ?
    We use virtual telnet for user authentication, when users need to pass traffic through a PIX, and use downloadable access-lists after successful authentication.
    When a user authenticates himself, an error message appears in the virtual telnet window: "error: acl authorization denied".
    And the PIX log shows:
    109005: Authentication succeeded for user 'user1' from <workstation-IP>/2066 to <virtual-telnet-IP>/23 on interface inside
    109015: Authorization denied (acl=#ACSACL#-IP-PIX_ACL-421492f3) for user 'user1' from <workstation-IP>/2066 to <virtual-telnet-IP>/23 on interface inside
    This error message disappears when we add telnet access for the virtual telnet-IP@ in the downloadable access-list on the Cisco ACS. I could not find any reference to this configuration quirk in any document.
    Now, with or without the error, the user can use virtual telnet and everything permitted
    in the downloadable acl without any problem (so why post an error message then ?).
    thanks

    Try to disable authorization and see if this error stops

  • No telnet prompt!

    I have installed Solaris 2.6 on a Netra T1 platform and have the following problem -
    When I telnet to the server (from any host ie Router, PC or Sun) I don't receive a prompt requesting the user name. Yet if I enter the username and password (the password is not hidden) and then issue 'who' on the server it shows me as logged in. netstat -a show the TCP session to be established.
    However, if on the server I telnet to the 127.0.0.1, or any valid IP address on the server, I am presented with a prompt for the username.
    I have installed the latest patches and rebooted the machine, but this has not solved the problem.
    Someone must have experienced this, but does anyone know how to resolve it or the cause?
    Any help will be greatly appreciated.
    James

    check /etc/inetd.conf file for telnet entry
    should be something like
    telnet stream tcp6 nowait root /usr/sbin/in.telnetd in.telnetd
    compare it with a working machine inetd.conf file
    also check the file size of /usr/sbin/in.telnetd as compared to a similar machine on which telnet is working.
    ls -al /usr/sbin/in.telnetd
    -r-xr-xr-x 1 root bin 28112 Nov 30 2000 /usr/sbin/in.telnetd (sol8)
    Please revert back with the results.
    Thanks & Regards
    Dhruva

  • Airport affect command line commands, such as telnet, route -v get, etc.

    I am experiencing a special problem when I both connect to internet through Airport and my private network through ethernet port.
    When Airport is connected to internet, I connect the ethernet port to an internal private network, where I did not set default gateway for this private connection.
    When I tried to "telnet" to an ip within the same subnet of the internal private network, there is none of any response. From wireshark capture, there is none of any packet sending out. But when I tried both "icmp ping" and "ftp", they both worked properly.
    Then I disconnect Airport and try "telnet" again, it then worked quickly.
    In addition, when I try to check the route to my destination, which is within the same subnet of my ethernet, I used "route -v get 192.168.133.219". Interestingly, when Airport was not connected, this command will output the route information quickly. However, when Airport was connected, this command will not have any output of the route.
    I have updated to the latest 10.5.8 release, but still have the same problem.
    Have you ever had experienced such problem? Normally how can I report bug like above to Apple?

    After properly configured VMware, this problem has been resolved.

  • Telnet - cannot open port 23, connect failed

    I'm having problems with Telent and Window 7. Telnet works, however on one piece of OLD legacy computer UNIX system, it fails. I experienced this same problem on Windows XP, but there was a registry fix for it. This same fix does not work on Windows 7.
    The unix system does use port 23....anyone have a solution?
    Below was the registry fix that fix this problem on Windows XP.
    REGEDIT4
    [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters]
    "SackOpts"=dword:00000
    "Tcp1323Opts"=dword:00000

    Hi Milos...
    (edited...added more information at the bottom). I have encluded some parameters off the unix machine.
    Thanks for helping me out.
    I tried PUTTY... I configured the Telnet for every possible combinations and the at didn't work either.
    When you say the CurrentControlSet1 is not effective...can you please give me more details.
    As I mentioned in my original POST....I had this same problem with windows xp....but the registry fix shown allowed Telnet to work. I don't know why its not working in Windows 7. I was reading that Windows 7 has Auto Windowing and I'm working if perhaps
    the negoation isn't taking place. This is an old unix platform and I'll have to check to see if there is any monitoring applications...but off hand I can't think of any.
    TANGO># netstat -a
    Active connections (including servers)
    Proto Sock#  Chan#   Local Address      Foreign Address    (state)
    tcp        1      0  *.*                *.*              
    Listening
    tcp        2      1  *.*                *.*              
    Listening
    tcp        3      2  *.*                *.*              
    Listening
    tcp        4      3  *.*                *.*              
    Listening
    tcp        5      4  *.*                *.*              
    Listening
    tcp        8     47  208.246.0..telnet  33.149.0.0.2032   Bound
    udp        6     55  *.talk             *.*               Bound
    udp        7     56  *.ntalk            *.*               Bound
    TANGO>#
    TANGO># netstat -all
    transmissions        0x00164bcc  1461196
    mult xmit retries    0x000000be      190
    sngl xmit retries    0x00000080      128
    failed retries       0x00000000        0
    deferrals            0x00000226      550
    xmit buf err         0x00000000        0
    silo underrun        0x00000000        0
    late collisions      0x00000000        0
    lost carrier         0x00000000        0
    babble               0x00000000        0
    telnet> display
    will flush output when sending interrupt characters.
    won't send interrupt characters in urgent mode.
    won't map carriage return on output.
    won't recognize certain control characters.
    won't turn on socket level debugging.
    won't print hexadecimal representation of network traffic.
    won't show option processing.
    [^E]    echo.
    [^]]    escape.
    [^H]    erase.
    [^C]    interrupt.
    [^U]    kill.
    [^\]    quit.
    [^D]    eof.
    telnet>

  • How to telnet to Edge Switch

    Dear Experts,
    I'm going to try configure on how to telnet to Edge switch but still no result. My Network topology is below:
    - 1 Core Switch 3560
    - 3 Edge Switch 2960
    I'm configured 4 VLAN:
    + Vlan 19: 10.19.10.0/24
    + Vlan 20: 10.20.10.0/24
    + Vlan 21: 10.21.10.0/24
    + Vlan 22: 10.22.10.0/24
    On each Vlan, I was assigned Vlan interface IP. 
    I'm using VTP mode (Server and client) to trunking VLAN and Core SW is standing a VTP Server. I can telnet to Core SW using VLAN Interface IP. 
    The question is how can I configure to telnet to Edge SW? 
    Has somebody help me on this?
    Thanks in advance!
    JH

    Hi,
    From looking at your topology, the configuration should work. You should be able to telnet into the edge switches from anywhere in the network using the ip addresses of the vlan interfaces on each switch.
    What exactly is the issue you're experiencing?
    Are you able to ping the switch ip addresses?
    Looking forward to hearing from you

  • Telnet With Forte

    Hi. Anybody has experience getting Forte to work with Telnet? I am
    trying to write a Forte application using ExternalConnection to connect
    through Telnet and reading and sending data to the host computer. When I
    do a read from the connection buffer, I got junk data back (basically
    unreadable characters).
    Can anybody provide me with some suggestions?
    Thanks,
    Sann

    I use EScript and FScript through telnet sessions all the time, and I
    don't have any problems. Can you give more information on the problems
    you are experiencing? Are there any error messages? Does it hang? Any
    other information about the platforms and process you are using?
    For example, can you even get into FScript/EScript? If not, your
    environment variables for the user may not be set (you have to have set,
    at least, FORTE_ROOT and FORTE_NS_ADDRESS, or you have to use explicit
    paths and the -fns flag).
    Also, how are you invoking telnet (Unix-to-Unix, Windows-to-Unix,
    etc.)? Which telnet client are you using?
    More information would be really helpful in diagnosing your problem.
    Regards,
    -Katie
    Pascale Voisin-Bouton-FX01314 wrote:
    >
    I have a lot a problems using Telnet and Escript/Fscript with Forte
    3.0.G.2.
    Does anyone has the same trouble or any experience about that.
    Thanks for your answers.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>--
    Katie Carty
    Senior Consultant
    Forte Software, Inc.
    http://www.forte.com
    4801 Woodway Drive, Suite 300E
    Houston, Texas 77056
    vmail: (510) 986-3802
    email: [email protected]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Telnet Prompt and CSM Probing

    We are in the process of installing newly acquired CSM modules in order to load-balance internal traffic to a set of Telnet servers. The Telnet servers interact with other application servers hosting an in-house developed application that is causing an intermittent problem. When a user connects to a Telnet server, a Telnet sessions sometimes get established without a prompt. We are looking for a way to rectify this problem by using the probing feature on the CSMs. We would like to configure the CSMs to remove the Telnet servers that are experiencing this problem from service. This problem cannot be fixed by setting up a simple Telnet probe, because the badly behaving server will still respond to these probes although the prompt is not being displayed.
    An HTTP application level problems can be probed by the CSMs using the HTTP Return Code Checking feature. This is due to the nature of the HTTP protocol where the error codes are displayed in the HTTP header. The CSMs are capable of parsing the HTTP packets and reading the error codes. This feature can be used to certain extent with FTP and Telnet. Could it be used to fix this particular problem? How? If not, do you have other suggestions?
    Thanks,
    Bachir Najm

    Using a Tcl script as a health probe on the CSM allows you to open a connection to a host, send/receive data on that connection, and parse through the responses you receive.
    So, you could write a Tcl script that opens a telnet connection to the server, and tries to match against the expected prompt string. If the match fails, you can set an error condition in the script.
    Download the file 'c6slb-apc.3-1-9.tcl' from here:
    http://www.cisco.com/cgi-bin/tablebuild.pl/cat6000-csm
    It contains a set of sample scripts that can be used on the CSM.
    ~Zach

  • Telnet Issue on Cisco 3850

    Hello,
    I'm experiencing issue with Telnet connections on my Cisco C3850-48P-S. The version is 3.3.3SE.
    I haven't enabled Telnet on line VTY of my switch, but the switch is always available using telnet.
    Here my configuration:
    line vty 0 4
     exec-timeout 20 0
     logging synchronous
     transport input ssh
    Do you know if it's possible to disable telnet ?
    Thanks in advance.
    Regards
    Nicolas

    Hello Frank;
    Thank for the reply.
    Here below more informations about the issue:
    - It does work sometimes, but it did never worked properly.
    - the problem is there for both sending and receiving.
    - for the PSTN transport, i have no idea.   
    - I tried to change the ATA by another, still the same problem.
    - ATAs work properly for voice communication.
    - when i call this fax number internally the signal comes along.
    - the problem is when faxing internally, it isn't used for external faxing.
    - the call flow for internal faxing is like this:
    Analog fax (in site A) > ATA (in site A) > access switch (in site A) > core switch (in site A) > cucm (in site A) > Core switch (in site A) > router (in site A) > optical fiber > router (in site B) > core switch (in site B) > cucm (in site B) > core switch (in site B) > voice gateway 248 (in site B) > Analog fax (in site B).
    the problem occures when sending internal fax between these two sites A and B, when calling site B from site A, the ringing tone comes aloso the fax signal, but when i try the send the paper the stange tone come along and only half of it pass and it get to the site B as a blank paper or a half blank paper.
    for any more explanation, don't hesitate to ask me.
    thanks again for your time.
    Regards.

  • Hello I am experiencing some problems for my iMessage and FaceTime. I did the steps the Apple provided online and I still can't get it to work. My updates are up to date. Everything is working fine it's just that the Apple iMessage won't except anyth

    hello I'm experiencing some problems with my iMessage and face time. I did with Apple provided me online. I did the steps. Nothing will work, it keeps saying activation turn on Wi-Fi when my Wi-Fi is turned on. As soon as I got this on Christmas. iMessage and FaceTime have not been working. My Apple and ID password are correct. Everything else is working fine. My iOS updates are up to date, everything is fine except FaceTime and iMessage

    Did you try everything here?
    iOS: Troubleshooting Messages
    Using FaceTime and iMessage behind a firewall
    iOS: Troubleshooting FaceTime and iMessage activation
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    In the future saying your tried the Apple on-line articles does provide us with information as to which ones you found and tried

  • I just updated my RAM and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.

    I just updated my RAM (replaced the two 2 gig cards with two Corsair 8 gig cards) and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times with Photoshop and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.
    Here is the crash report:
    Interval Since Last Panic Report:  5426204 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    2DD57DDB-BB42-5614-395A-CA6225BDAFD9
    Wed Mar 20 11:36:53 2013
    panic(cpu 0 caller 0xffffff801aa43d8e): "a freed zone element has been modified in zone: maps"@/SourceCache/xnu/xnu-2050.18.24/osfmk/kern/zalloc.c:219
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81eb0eb950 : 0xffffff801aa1d626
    0xffffff81eb0eb9c0 : 0xffffff801aa43d8e
    0xffffff81eb0eba00 : 0xffffff801aa435d2
    0xffffff81eb0ebae0 : 0xffffff801aa663f7
    0xffffff81eb0ebb20 : 0xffffff801aa67398
    0xffffff81eb0ebc70 : 0xffffff801aa6887c
    0xffffff81eb0ebd20 : 0xffffff801ad5b8fe
    0xffffff81eb0ebf50 : 0xffffff801ade182a
    0xffffff81eb0ebfb0 : 0xffffff801aaced33
    BSD process name corresponding to current thread: launchd
    Mac OS version:
    Not yet set
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x000000001a800000
    Kernel text base: 0xffffff801aa00000
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 1070542822
    last loaded kext at 707348380: com.apple.driver.AppleIRController    320.15 (addr 0xffffff7f9c53e000, size 28672)
    loaded kexts:
    at.obdev.nke.LittleSnitch    3908
    com.apple.driver.AppleIRController    320.15
    com.apple.driver.AppleUSBCardReader    3.1.0
    com.apple.driver.AppleFileSystemDriver    3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    34
    com.apple.iokit.SCSITaskUserClient    3.5.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.2.2
    com.apple.driver.AppleUSBHub    5.2.5
    com.apple.driver.AppleFWOHCI    4.9.6
    com.apple.driver.AirPort.Atheros40    600.70.23
    com.apple.driver.AppleUSBEHCI    5.4.0
    com.apple.driver.AppleAHCIPort    2.4.1
    com.apple.iokit.AppleBCM5701Ethernet    3.2.5b3
    com.apple.driver.AppleUSBUHCI    5.2.5
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleACPIButtons    1.6
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.6
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    196.0.0
    com.apple.nke.applicationfirewall    4.0.39
    com.apple.security.quarantine    2
    com.apple.driver.AppleIntelCPUPowerManagement    196.0.0
    com.apple.iokit.IOUSBHIDDriver    5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.5.1
    com.apple.iokit.IOUSBMassStorageClass    3.5.0
    com.apple.driver.AppleUSBMergeNub    5.2.5
    com.apple.driver.AppleUSBComposite    5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.5.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.5.1
    com.apple.iokit.IOUSBUserClient    5.2.5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IO80211Family    500.15
    com.apple.iokit.IOAHCIFamily    2.2.1
    com.apple.iokit.IOEthernetAVBController    1.0.2b1
    com.apple.iokit.IONetworkingFamily    3.0
    com.apple.iokit.IOUSBFamily    5.4.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.8.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    220
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    344
    com.apple.iokit.IOStorageFamily    1.8
    com.apple.driver.AppleKeyStore    28.21
    com.apple.driver.AppleACPIPlatform    1.6
    com.apple.iokit.IOPCIFamily    2.7.2
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.2 GHz, 16 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 5670, ATI Radeon HD 5670, PCIe, 512 MB
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.70.23-P2P
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 0 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 3

    There have been a few reports on here where Corsair RAM seems to have caused users a lot of grief with crashes.
    The recommendation on here, mostly, is to only buy RAM from macsales.com or crucial.com as they guarantee their modules will work and offer a no quibble lifetime guarantee.
    I'd put the original RAM back in, return the Corsair chips for a refund and re-order from one of those two companies.
    http://eshop.macsales.com/shop/apple/memory/iMac
    http://www.crucial.com/

  • Following upgrade to osx 10.8.2 on my mac mini I can no longer connect to icloud, I wouldn't mind so much but I have come to rely on th eicloud services to manage my work and home services, has any1 else experienced this and has any1 any solutions?

    following upgrade to osx 10.8.2 on my mac mini I can no longer connect to icloud, I wouldn't mind so much but I have come to rely on th eicloud services to manage my work and home services, has any1 else experienced this and has any1 any solutions as this is messed up all of my work relations?

    Had the same problem this morning after updating to 10.8.2. Mail was finding my dot-mac account as always, but System Preferences popped up and said my iCloud password was incorrect. Did the "forgot password" reset, but still had the same problem. Then I went to icloud.com in Safari, logged in with the new password, it worked no problem. So I went back to the icloud preference pane, signed out of icloud, answered yes to all the warnings about data being deleted from my mac, blah blah blah, then re-signed in to icloud. Everything worked. I did have to set up my icloud account in Mail again, which now lists the account mailbox as "iCloud", and not "mac.com" as it did before. But so far, everything is working (fingers crossed.)

Maybe you are looking for