Strange Internet behavior??

I have been able to surf any site on the internet freely until the last couple of days, now in Safari when I try to access certain sites (including apple!!!) it will just sit there until it times out, but other sites (like the Unofficial Apple Weblog) work just fine, also I've noticed that iTunes will also time out trying to access the iTunes Store. I've checked my networked settings 2 times and everything seems to be fine.
I've also reset them once or twice, so I do not believe it is my network that is the problem. What could be causing this to happen? I'm running the latest iTunes and OSX, and I'm on a wireless network routed by a linksys W54TG( I think thats what it is called). Thank you in advance for your help. I'm not at my computer as of right now (which is why I can access this site hehe), so if you need me to try anything I won't be able to try until 8:00 PM. Thank you again.

Hi. You can try using another browser to see if it behaves the same way as Safari does. But you also said you were having trouble with iTunes so it may not be browser related.
Many times problems such as yours are related to the ISP. Especially if everything has been working fine and then connectivity problems develop. Frequently, their tech support will not own up to problems or they may not even be aware of some of them.
Just a couple of ideas. How's it working now?
Regards,
Steve M.

Similar Messages

  • Strange internet behavior in Lion 10.7.2

    After updating to Lion 10.7.2 something very strange started happening. While using Safari the internet bogs down at random (the connection still works) it just doesn't load pages at all for a moment and then continues like nothing happened afterwards until next bogdown. The strange thing is that if I while the internet doesn't work connect my iPhone 4 to the same WiFi as the mac is connected to the connection speeds up again and continues to work.
    I don't know if it is some very strange bug or could it be the router that has problem with handling some iCloud syncing that the mac does to check for new "things" or something like that?

    Greetings,
    You need version 1.3 of Growl, according to some other poster. I didn't know people still used it - it has always been a pain, and caused some of the most troublesome performance issues on a Mac using any version of OS X.
    It's dis-allowed at my site that has Macs, for several hundred users - too many, random, headaches. I know the techs don't put it on any of the machines at the college where my day job is, and the machines are locked down........
    Cheers,
    M.

  • Capturing DVCAM in FCP 6.0.2 and encountering strange capture behavior

    I have FCP 6.0.2 and OSX 10.5.2 and QT 7.3.1. I have been capturing several DVCAM cassettes using my Sony DSR-20 deck. Although I have done this countless times before in earlier versions of FCP, I am encountering some strange repetitive behavior. I am capturing 30 minute clips one at a time. When I use batch capture it will cue the tape up properly to the in point...and then start capturing until it gets to about 10-12 minutes in, and then capture unexpectedly stops, no dialogue box, the tape rewinds and starts capturing again from the original in point. On this second capture, the tape sails past the 10 minute mark and keeps going to the end of the 30 minute clip. It then stops, gives me the dialogue box that it has successfully captured. And it has.
    But every DVCAM tape I captured today exhibited the same behavior. Capture would be successful until about about 10 minutes in, then FCP aborts (no dropped frame message, no dialogue box) rewinds the tape back to the in point, tries again, and this time succeeds with the second pass capturing the entire clip. Note at the 10 minute mark there is no scene change or no camera start/stop.
    Have other users experienced this issue? And if so, is there a workaround or a possible patch forthcoming from FCP?
    Many thanks,
    John

    Yes, each tape has an in and out point defined. In my 6 years of editing with Final Cut and DVCAM tapes I've never encountered this issue before in the capturing process until now. I will have to see in future weeks with other captures whether this is an on-going issue or not, but at least I can capture for now.

  • Bug in my code or strange memory behavior ?

    Hi, Guys !
    It's been a while since I post something in this forum - trying to use your help when it's really needed.
    So, here we go ...
    (we use Oracle 8.1.7 on Unix box and SQL * Plus 8.1.6)
    While back I wrote "core" PL/SQL package that resides in let's say DB1 database. It has RECORD_EXISTS_FNC function designed to dynamically check If the record exists in certain table/view. Assumptions are that you pass in :
    Table/View name, Column name, and unique numeric value (because by DBA rules all of our Tables have SEQUENCE as a Primary Key. And I plan soon to put in overloaded function to accept unique character value)
    Also every Table has SYS_TIME_STAMP and SYS_UPDATE_SEQuence columns that populated by Trigger before Insert/Update representing Last Update time_stamp
    and how many times record was updated within same second.
    (in case more than one User updates same record in same time - that was written before Oracle had more granular date/time). So function has SYS_TIME_STAMP and SYS_UPDATE_SEQUENCE parameters (optional) accordingly.
    And It looks something like :
    FUNCTION RECORD_EXISTS_FNC
    (iBV_NAME IN USER_VIEWS.VIEW_NAME%TYPE,
    iPK_FIELD IN USER_TAB_COLUMNS.COLUMN_NAME%TYPE,
    iPK_VALUE IN NUMBER,
    iSYS_TIME_STAMP IN DATE DEFAULT NULL,
    iSYS_UPDATE_SEQ IN NUMBER DEFAULT NULL) RETURN BOOLEAN IS
    TYPE REF_CUR IS REF CURSOR;
    CR REF_CUR;
    i PLS_INTEGER DEFAULT 0;
    vRESULT BOOLEAN DEFAULT FALSE;
    vQUERY USER_SOURCE.TEXT%TYPE;
    BEGIN
    vQUERY := 'SELECT 1 FROM ' || iBV_NAME || ' WHERE ' || iPK_FIELD || ' = ' || iPK_VALUE;
    IF iSYS_TIME_STAMP IS NOT NULL AND iSYS_UPDATE_SEQ IS NOT NULL THEN
    vQUERY := vQUERY || ' AND SYS_TIME_STAMP = TO_DATE (''' || iSYS_TIME_STAMP || ''')
    AND SYS_UPDATE_SEQ = ' || iSYS_UPDATE_SEQ;
    END IF;
    IF iBV_NAME IS NOT NULL AND
    iPK_FIELD IS NOT NULL AND
    iPK_VALUE IS NOT NULL THEN
    OPEN CR FOR vQUERY;
    FETCH CR INTO i;
    vRESULT := CR%FOUND;
    CLOSE CR;
    END IF;
    RETURN vRESULT;
    EXCEPTION
    WHEN OTHERS THEN
    IF CR%ISOPEN THEN
    CLOSE CR;
    END IF;
    INSERT_ERROR_LOG_PRC ('CORE_PKG', 'ORACLE', SQLCODE, SQLERRM, 'RECORD_EXISTS_FNC');
    RETURN vRESULT;
    END RECORD_EXISTS_FNC;
    So the problem is when I call this function from let's say
    database DB2 (via db remote link and synonym) and I know exactly that record does exists (because I am selecting those SYS fields before pass them in) - I get the correct result TRUE. The other programmer (Patrick) calls this function within same DB2 database, within same UserID/password (obviously different session), running exactly the same testing code and gets result FALSE (record doesn't exist, but it does !) He tried to Logoff/Login again several times within several days and try to run it and still was getting FALSE !
    I tried to Logoff/Login again and I was getting mostly TRUE and sometimes FALSE too !!!
    I thought may be It has something to do with REF CURSOR that I use to build SQL on the fly, so I changed to NDS
    using EXECUTE IMMEDIATE statement - nothing changed.
    vQUERY := 'SELECT COUNT (1) FROM ' || iBV_NAME || ' WHERE ' || iPK_FIELD || ' = ' || iPK_VALUE;
    IF iSYS_TIME_STAMP IS NOT NULL AND iSYS_UPDATE_SEQ IS NOT NULL THEN
    vQUERY := vQUERY || ' AND SYS_TIME_STAMP = TO_DATE (''' || iSYS_TIME_STAMP || ''') AND SYS_UPDATE_SEQ = ' || iSYS_UPDATE_SEQ;
    END IF;
    EXECUTE IMMEDIATE vQUERY INTO i;
    vRESULT := NOT (i = 0);
    RETURN vRESULT;
    Interesting note : when Patrick doesn't pass SYS parameters (Time_stamp, Update_sequence), or passes NULLs - function always finds the record ! (Statement 2 below)
    May be it has to do with the way TO_DATE () function gets parsed in that dynamic SQL - I don't know ...
    Here's the test code :
    SET SERVEROUTPUT ON;
    DECLARE
    SYS_TIME DATE;
    SYS_SEQ NUMBER;
    bEXISTS BOOLEAN DEFAULT FALSE;
    BEGIN
    SELECT SYS_TIME_STAMP, SYS_UPDATE_SEQ INTO SYS_TIME, SYS_SEQ FROM LOCATION_BV WHERE PK = 1;
    bEXISTS := CORE_PKG.RECORD_EXISTS_FNC ('LOCATION_BV','PK',1, SYS_TIME, SYS_SEQ); -- STATEMENT 1
    --bEXISTS := CORE_PKG.RECORD_EXISTS_FNC ('LOCATION_BV','PK',1, NULL, NULL);        -- STATEMENT 2
    IF bEXISTS THEN
    DBMS_OUTPUT.PUT_LINE ('TRUE');
    ELSE
    DBMS_OUTPUT.PUT_LINE ('FALSE');
    END IF;
    END;
    I asked our DBA, he has no clue about this strange inconsistent results.
    I debugged line by line, extracted that generated SQL and ran it in same account - works fine !
    Does anyone knows or have clues or can help what's going on ???
    I don't know If this is bug in my code or strange memory behavior ?
    (Please let me know If anything unclear)
    Thanx a lot for your help and time !
    Steve K.

    see your other thread
    Bug in my code or strange memory behavior ?

  • Very Strange Internet Problems

    I own a MacBook Pro 15.4 Inch that I purchased about a year and a half ago. I recently upgraded to Leopard and have all the latest updates. I am from the US, and when I am home my internet works fine. However, I am on travel to Seoul, South Korea right now and am having a very strange internet problem.
    As far as I can tell, the URLs that I type in to my browser are, sparodially, not translated correctly into the webpages that they are supposed to represent. This problem is probably effective 75% of the time, and the rest of the time my internet works roughly correctly. For instance, when I enter http://www.google.com, instead of being taken to the Google homepage, I am taking to the homepage of Jammin Beats DJ Service, an obscure website about a company in northern Pennsylvania. The actual URL of this website is http://www.jamminbeats.com, but when my internet is malfunctioning, 'jamminbeats' is for all intensive purposes replaced by 'google' (that is, it applies not only to the main page, but to sub pages, so "http://www.google.com/weddings" takes you to "http://www.jamminbeats.com/weddings" and etc). For most other webpages, one of two things happens. Either I am taken to the correct page but it is displayed without any images or frames (just the html text and links), or I am taken to a blank page with the header "Under Construction", which I assume is the default for a page that doesn't exist. This is why it seems as though the URLs are simply being interpretted erroneously.
    This problem occurs when connecting both to the wireless and the wired internet at my hotel, and it occurs on both Safari and Firefox, so it is not a connection-specific or browser-specific problem. It may be a problem with the hotel's internet, and as of yet I have not had a chance to test the computer at another location. However, a colleague using an IBM computer has had no problems, and I am currently on a Samsung machine in the business center of the hotel and it is working correctly as well. I have searched extensively online for a similar problem but have come up empty handed, and more than anything, I am confused about what might be causing this problem. The strangest thing is that a fraction of the time, the internet functions normally, but it is usually roughly 15 minutes out of every hour, and eventually I am inevitably taken back to Jammin Beats.
    I am a computer science graduate but I still have no idea what would cause this problem. At first I thought it might be a hacker, but if it is, he or she has been at it consistently for 3 days now, and only seems to be targeting my computer. Any ideas or solutions would be greatly appreciated, as I have been forced to resort to the hotel's business center for checking email, doing work, etc. Thanks in advance.

    I did consider that, as I was in Beijing last week and there are a number of censored sites. However, in Korea I have had problems with very basic sites like facebook, wall street journal, google, yahoo, Korean google, my hotel's webpage, etc. Further, I have successfully gotten all of these sites to load seemingly at random, and can access them without problems on other computers. The only disconnect seems to be between my MBP and the internet, not between Korean internet and the web. I have toyed around with the network settings, and although sometimes after switching from "Automatic" to a fixed connection I get some sites to work, it usually only lasts a short time and eventually the same sites stop working. I reset my cache regularly to make sure I'm not getting sent to cached sites, but this also doesn't help. Further, my Apple Mail, Skype and AIM accounts jump between being connected and disconnected randomly as well. Again, this is isolated to my own computer, which is why I'm so confused.

  • Strange Permissions Behavior with Public/Private Drop Box

    Strange Permissions Behavior with Non-Course Drop Box
    In an effort to promote iTunes U on campus this semester (and to get people working with audio and video more) we're having a contest in which people can submit personal or group audio/video projects.
    This being an iTunes promo, we intend for students to submit their contributions via a drop box.
    To that end, I began experimenting with drop boxes in iTunes U, which I haven't done much of previously. I've created a course called "iTunes U Drop Box Test" under "Campus Events". Within that, I have two tabs: "Featured Submissions" and "Dropbox". My goal with this drop box was to allow faculty, students and college folks the ability to use the drop box ("college" being a role I've defined for those who don't fit into the faculty/student roles).
    When I first started experimenting, access to the "iTunes U Drop Box Test" course looked like this:
    --- Credentials (System) ---
    Edit: Administrator@urn:mace:itunesu.com:sites:lafayette.edu
    Download: Authenticated@urn:mace:itunesu.com:sites:lafayette.edu
    Download: Unauthenticated@urn:mace:itunesu.com:sites:lafayette.edu
    Download: All@urn:mace:itunesu.com:sites:lafayette.edu
    --- Credentials ----
    Download: College@urn:mace:lafayette.edu
    Download: Instructor@urn:mace:lafayette.edu
    Download: Instructor@urn:mace:lafayette.edu:classes:${IDENTIFIER}
    Download: Student@urn:mace:lafayette.edu
    Download: Student@urn:mace:lafayette.edu:classes:${IDENTIFIER}
    For the "Featured" Submissions tab, I gave the non-system credentials the "download" right, and for the "Dropbox" tab I gave the non-system credentials the "dropbox" right.
    My understanding of this setup is that everyone should have had the ability to view the course and the contents of the "Featured Submissions" tab and that those in the College/Instructor/Student roles would be able to upload files via the "Dropbox" tab ... but not see the contents of said tab after the files were uploaded (aside from any files they uploaded themselves).
    This is not the behavior we saw however. While the College/Instructor/Student roles could upload files to the dropbox, everyone (including the unauthenticated public) was able to see all of the contents of the dropbox.
    The only way I could get this to work as advertised was to change all of the system credentials save the "Administrator" to "No Access":
    --- Credentials (System) ---
    Edit: Administrator@urn:mace:itunesu.com:sites:lafayette.edu
    No Access: Authenticated@urn:mace:itunesu.com:sites:lafayette.edu
    No Access: Unauthenticated@urn:mace:itunesu.com:sites:lafayette.edu
    No Access: All@urn:mace:itunesu.com:sites:lafayette.edu
    Once I did this, everything worked as advertised: College/Instructor/Student roles could upload tracks, and the "Dropbox" tab would only display tracks they uploaded.
    So my question is ... is this the correct behavior for the drop box? It looks like when the system credentials are in play, they're simply overriding whatever the normal "view" rule is for the drop box, which doesn't seem right.

    Your current configuration where things work as you wanted does seem correct to me. You are not using any System Credentials to accomplish the functionality and that's fine.
    Here's some more info to clarify how / why this is working for you and why you had to set "No Access" for the System Credentials:
    The System Credential "Authenticated@..." is going to get assigned to any user that goes through your transfer script. Even if you transfer script assigns no credentials to a user, upon entering iTunes U they will have at least 1 - the "Authenticated@..." credential. Therefore, unless you block access using "No Access", any user that passes through your transfer script is going to be able to access the area in question.
    When you change values for "Unauthenticated@..." or "All@..." you are defining what someone that DOES NOT pass through your transfer script can do. You want both of those to be "No Access" at the top level of your site if you do not want unauthenticated visitors.
    The distinction between "Unauthenticated" and "All" is that "All" applies to all users whether they pass through the transfer script or not.
    Here's another way to remember things:
    User passes through your transfer script, iTunes U automatically assigns:
    Authenticated@....
    All@....
    User does not pass through your transfer script and instead access your iTunes U site through derivable URL*, they get assigned:
    Unauthenticated@....
    All@....
    *The derivable URL for a site is: http://deimos.apple.com/WebObjects/Core.woa/Browse/site-domain-name
      Mac OS X (10.4.6)  

  • Strange XSLT Behavior: xsl:template match

    Hello I found the following strange XSLT behavior when using xsl:template. I only want to read the content of the element /Source/Surname/Details. Therefore I match this path using xsl:template match.
    What is strange that in the target message also the value of the Element LastName is written at the end. Please see example below. This is just a short example to point out the problem. I have a bigger message structure where I have to match a similar path. How can I avoid the the value of the FullDetails is just written at the end (not even beeing in an element)? I would have expected that the path is only matched once and the instructions then executed without <LastName> beeing even touched.I used XML Spy for this test.
    Here is an example:
    Source message:
    <?xml version="1.0" encoding="UTF-8"?>
    <Source>
         <Surname>
              <Details>MyFirstName</Details>
         </Surname>
         <LastName>
              <FullDetails> MyLastName </FullDetails>
         </LastName>
    </Source>
    XSLT
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:template match="/Source/Surname">
    <PORR>
    <Name><xsl:value-of select="Details"/></Name>
    </PORR>
    </xsl:template>
    </xsl:stylesheet>
    Target Message
    <?xml version="1.0" encoding="UTF-8"?>
    <PORR xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <Name>MyFirstName</Name></PORR>MyLastName
    Edited by: Florian Guppenberger on Oct 8, 2009 4:35 AM
    Edited by: Florian Guppenberger on Oct 8, 2009 4:36 AM
    Edited by: Florian Guppenberger on Oct 8, 2009 4:36 AM
    Edited by: Florian Guppenberger on Oct 8, 2009 4:37 AM

    Hi,
    I am not sure why your XSLT behaving like that,please try this XSL,what i did chnages is Templete match /*,I given exact path in Value of select,.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
    <xsl:template match="/*">
    <PORR>
    <Name><xsl:value-of select="/Source/Surname/Details"/></Name>
    </PORR>
    </xsl:template>
    </xsl:stylesheet>
    Regards,
    Raj

  • Strange typeover behavior in Newsfeeds

    I am getting this strange intermittent behavior when create a post in the Newsfeed.
    As you begin to type the text compress and it almost looks like the letters are typing over themselves
    The resulting text can be posted and looks fine when posted, it some times does throw an error but the error and type over don't seem connected
    It happens on all browser types and even phones and tablets

    Hi,
    Thank you for your post.
    This is a quick note to let you know that we are performing research on this issue.
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • A strange Internet connectivity error whern using IE 9

    Hello,
    I experience very strange Internet connectivity issue which happens specifically with Capital One Banking site. I wonder if somebody else already reported the same problem.
    I'm on Windows 7 machine with Verizon DSL connection and uses both Internet Explorer 9 and Firefox 4.0.
    The same thing happenes every time I try to use IE to make a payment. A first payment screen opens normally, but after she enters payment information and hit Continue it starts to spin  and after a couple of minutes of fruitful attempts it BREAKS Internet connection!
    Windows allows to fix Internet connections settings, normally blaming bad default gateway settings. Then it is enough to open your site in IE and try to pay to break it again.
    Firefox, on the other end, works normally and allows to pay. So, it looks like an error in IE, but really strange one.
    I also have another Win 7 machine and IE 9; the only difference is that it is on Comcast Cable rather than on Verizon DSL. There I can pay to Capital One using IE 9 without any problems. So, it must be a combination of IE bug and Verizon Internet settings, I guess.

    Are the machines by any chance using different Security Software or have you by any chance installed Verizon software onto the PC hooked into the DSL service?
    ========
    The first to bring me 1Gbps Fiber for $30/m wins!

  • Strange ZWSREG behavior

    We are in the middle of a rollout of about 300 new machines. (used sysprep in the image) The first 100 are doing something strange. They boot up get renamed and join the windows domain with their new name, but register with ZEN as the randomly generated Microsoft name. (usually someting like N-398477634379d979) I deleted the workstation object, unreged and rereged the computer, but it always reregisters with the randomly generated name. What gives? I found a TID that said this was fixed by an update on the latest desktop agent, but that I could work around it by deleting the incorrectly named object and waiting for the machine to reboot, However it still registers with the wrong name. Any ideas? Thanks.
    J. Daniel Treadwell

    But these are new computers. They should not have image safe data yet. I tried it, but got the same result.
    Originally Posted by Craig Wilson
    Try running ZISWIN -R when you unregister.
    My guess is that it's pulling the old info from Image Safe Data.
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Support Forums Volunteer Sysop
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.
    "jtreadwell" <[email protected]> wrote in message
    news:[email protected]..
    >
    > We are in the middle of a rollout of about 300 new machines. (used
    > sysprep in the image) The first 100 are doing something strange. They
    > boot up get renamed and join the windows domain with their new name,
    > but register with ZEN as the randomly generated Microsoft name.
    > (usually someting like N-398477634379d979) I deleted the workstation
    > object, unreged and rereged the computer, but it always reregisters
    > with the randomly generated name. What gives? I found a TID that said
    > this was fixed by an update on the latest desktop agent, but that I
    > could work around it by deleting the incorrectly named object and
    > waiting for the machine to reboot, However it still registers with the
    > wrong name. Any ideas? Thanks.
    >
    >
    > J. Daniel Treadwell
    >
    >
    > --
    > jtreadwell
    > ------------------------------------------------------------------------
    > jtreadwell's Profile: NOVELL FORUMS - View Profile: jtreadwell
    > View this thread: Strange ZWSREG behavior - NOVELL FORUMS
    >

  • Very Strange Internet Access Behavior After upgrade to systemd

    Currently I'm having very strange issues with my wireless connection. Currently, if I connect using netcfg to a wireless access point, I have the following behavior:
      1. chromium can connect to any website
      2. thunderbird can send/receive emails
      3. curl, firefox and opera can connect to some https sites but not http (yes: https://www.facebook.com, https://bbs.archlinux.org, no: https://archlinux.org, https://github.com)
      4. wget does not connect, neither does pacman -Syu
    after I upgraded to systemd, I was getting errors because of groups, so I removed extra groups. Here's what I have now:
    There is currently no rc.conf in /etc
    $ id ambantis
    uid=1000(ambantis) gid=100(users) groups=100(users)
    $ id root
    uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),19(log),1000(wheel)
    If I try to remove the wheel group, then netcfg does not allow me to connect, neither can I connect manually with wpa_supplicant and dhcpcd
    Here's the output of $ systemctrl
    UNIT                                                                                        LOAD   ACTIVE SUB       JOB DESCRIPTION
    proc-sys-fs-binfmt_misc.automount                                                           loaded active waiting       Arbitrary Executable File Formats File System Automount Point
    sys-devices-pci0000:00-0000:00:16.3-tty-ttyS0.device                                        loaded active plugged       5 Series/3400 Series Chipset KT Controller
    sys-devices-pci0000:00-0000:00:19.0-net-eth0.device                                         loaded active plugged       82577LM Gigabit Network Connection
    sys-devices-pci0000:00-0000:00:1a.0-usb1-1\x2d1-1\x2d1.4-1\x2d1.4:1.0-bluetooth-hci0.device loaded active plugged       /sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0
    sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device                                      loaded active plugged       5 Series/3400 Series Chipset High Definition Audio
    sys-devices-pci0000:00-0000:00:1c.1-0000:03:00.0-net-wlan0.device                           loaded active plugged       RTL8191SEvB Wireless LAN Controller
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device    loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device    loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device    loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device    loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device    loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device    loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device    loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device         loaded active plugged       ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device         loaded active plugged       HL-DT-ST_DVDRAM_GU40N
    sys-devices-platform-serial8250-tty-ttyS1.device                                            loaded active plugged       /sys/devices/platform/serial8250/tty/ttyS1
    sys-devices-platform-serial8250-tty-ttyS2.device                                            loaded active plugged       /sys/devices/platform/serial8250/tty/ttyS2
    sys-devices-platform-serial8250-tty-ttyS3.device                                            loaded active plugged       /sys/devices/platform/serial8250/tty/ttyS3
    sys-devices-platform-thinkpad_acpi-sound-card29.device                                      loaded active plugged       /sys/devices/platform/thinkpad_acpi/sound/card29
    sys-module-fuse.device                                                                      loaded active plugged       /sys/module/fuse
    sys-subsystem-bluetooth-devices-hci0.device                                                 loaded active plugged       /sys/subsystem/bluetooth/devices/hci0
    sys-subsystem-net-devices-eth0.device                                                       loaded active plugged       82577LM Gigabit Network Connection
    sys-subsystem-net-devices-wlan0.device                                                      loaded active plugged       RTL8191SEvB Wireless LAN Controller
    -.mount                                                                                     loaded active mounted       /
    boot.mount                                                                                  loaded active mounted       /boot
    dev-hugepages.mount                                                                         loaded active mounted       Huge Pages File System
    dev-mqueue.mount                                                                            loaded active mounted       POSIX Message Queue File System
    home.mount                                                                                  loaded active mounted       /home
    run-user-1000-gvfs.mount                                                                    loaded active mounted       /run/user/1000/gvfs
    sys-fs-fuse-connections.mount                                                               loaded active mounted       FUSE Control File System
    sys-kernel-debug.mount                                                                      loaded active mounted       Debug File System
    tmp.mount                                                                                   loaded active mounted       /tmp
    cups.path                                                                                   loaded active running       CUPS Printer Service Spool
    systemd-ask-password-console.path                                                           loaded active waiting       Dispatch Password Requests to Console Directory Watch
    systemd-ask-password-wall.path                                                              loaded active waiting       Forward Password Requests to Wall Directory Watch
    colord.service                                                                              loaded active running       Manage, Install and Generate Color Profiles
    console-kit-log-system-start.service                                                        loaded active exited        Console System Startup Logging
    cronie.service                                                                              loaded active running       Periodic Command Scheduler
    cups.service                                                                                loaded active running       CUPS Printing Service
    dbus.service                                                                                loaded active running       D-Bus System Message Bus
    [email protected]                                                                          loaded active running       Getty on tty1
    healthd.service                                                                             loaded active running       A daemon which can be used to alert you in the event of a hardware health monitoring alarm
    netcfg.service                                                                              loaded active exited        Netcfg multi-profile daemon
    ntpd.service                                                                                loaded active running       Network Time Service
    polkit.service                                                                              loaded active running       Authorization Manager
    slim.service                                                                                loaded active running       SLiM Simple Login Manager
    sshd.service                                                                                loaded active running       OpenSSH Daemon
    syslog-ng.service                                                                           loaded active running       System Logger Daemon
    systemd-journald.service                                                                    loaded active running       Journal Service
    systemd-logind.service                                                                      loaded active running       Login Service
    systemd-modules-load.service                                                                loaded active exited        Load Kernel Modules
    systemd-remount-fs.service                                                                  loaded active exited        Remount Root and Kernel File Systems
    systemd-sysctl.service                                                                      loaded active exited        Apply Kernel Variables
    systemd-tmpfiles-setup.service                                                              loaded active exited        Recreate Volatile Files and Directories
    systemd-udev-trigger.service                                                                loaded active exited        udev Coldplug all Devices
    systemd-udevd.service                                                                       loaded active running       udev Kernel Device Manager
    systemd-user-sessions.service                                                               loaded active exited        Permit User Sessions
    systemd-vconsole-setup.service                                                              loaded active exited        Setup Virtual Console
    udisks2.service                                                                             loaded active running       Disk Manager
    upower.service                                                                              loaded active running       Daemon for power management
    cups.socket                                                                                 loaded active listening     CUPS Printing Service Sockets
    dbus.socket                                                                                 loaded active running       D-Bus System Message Bus Socket
    syslog.socket                                                                               loaded active running       Syslog Socket
    systemd-initctl.socket                                                                      loaded active listening     /dev/initctl Compatibility Named Pipe
    systemd-journald.socket                                                                     loaded active running       Journal Socket
    systemd-shutdownd.socket                                                                    loaded active listening     Delayed Shutdown Socket
    systemd-udevd-control.socket                                                                loaded active listening     udev Control Socket
    systemd-udevd-kernel.socket                                                                 loaded active running       udev Kernel Socket
    dev-sda5.swap                                                                               loaded active active        /dev/sda5
    basic.target                                                                                loaded active active        Basic System
    bluetooth.target                                                                            loaded active active        Bluetooth
    cryptsetup.target                                                                           loaded active active        Encrypted Volumes
    getty.target                                                                                loaded active active        Login Prompts
    graphical.target                                                                            loaded active active        Graphical Interface
    local-fs-pre.target                                                                         loaded active active        Local File Systems (Pre)
    local-fs.target                                                                             loaded active active        Local File Systems
    multi-user.target                                                                           loaded active active        Multi-User
    network.target                                                                              loaded active active        Network
    remote-fs.target                                                                            loaded active active        Remote File Systems
    sockets.target                                                                              loaded active active        Sockets
    sound.target                                                                                loaded active active        Sound Card
    swap.target                                                                                 loaded active active        Swap
    sysinit.target                                                                              loaded active active        System Initialization
    syslog.target                                                                               loaded active active        Syslog
    systemd-tmpfiles-clean.timer                                                                loaded active waiting       Daily Cleanup of Temporary Directories
    LOAD   = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB    = The low-level unit activation state, values depend on unit type.
    JOB    = Pending job for the unit.
    85 loaded units listed. Pass --all to see loaded but inactive units, too.
    To show all installed unit files use 'systemctl list-unit-files'.

    UPDATE:
    I've managed to make changes to the passwd file so that uuidd is in fact uuidd (instead of uuid). I've also gone through and restored the groups of postgres and tomcat. I'm still having the same behavior. After booting up, here are the new entries from /var/log/errors.log:
    Nov 21 13:09:55 localhost /usr/sbin/crond[339]: (CRON) INFO (Syslog will be used instead of sendmail.): No such file or directory
    Nov 21 13:16:17 localhost dhcpcd[803]: wlan0: sendmsg: Cannot assign requested address
    Nov 21 13:30:27 localhost dhcpcd[814]: wlan0: sendmsg: Cannot assign requested address
    Nov 21 13:34:28 localhost dhcpcd[1285]: wlan0: sendmsg: Cannot assign requested address
    Also, here's debug info from netcfg:
    [root@okosmos 1000]# NETCFG_DEBUG="yes" netcfg GroundWork
    DEBUG: Loading profile GroundWork
    DEBUG: Configuring interface wlan0
    :: GroundWork up [ BUSY ] DEBUG: status reported to profile_up as:
    DEBUG: Loading profile GroundWork
    DEBUG: Configuring interface wlan0
    DEBUG: wireless_up start_wpa wlan0 /run/network/wpa.wlan0/wpa.conf nl80211,wext
    DEBUG: wireless_up scanning
    DEBUG: wpa_cli -i wlan0 -p /run/wpa_supplicant scan
    DEBUG: wpa_cli -i wlan0 -p /run/wpa_supplicant scan_results
    DEBUG: wpa_find_essid "GroundWork"
    DEBUG: wireless_up Configuration generated at /run/network/wpa.wlan0/wpa.conf
    DEBUG: wireless_up wpa_reconfigure wlan0
    DEBUG: wpa_cli -i wlan0 -p /run/wpa_supplicant reconfigure
    DEBUG: wireless_up ifup
    DEBUG: wireless_up wpa_check
    DEBUG: Loading profile GroundWork
    DEBUG: Configuring interface wlan0
    DEBUG: ethernet_up bring_interface up wlan0
    DEBUG: ethernet_up dhcpcd -qL -t 10 wlan0
    DEBUG:
    DEBUG: ethernet_up hostname okosmos
    Finally, here is current output from id and systemctl
    [root@okosmos ~]# id
    uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),19(log)
    [root@okosmos ~]# id root
    uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),19(log)
    [root@okosmos ~]# id ambantis
    uid=1000(ambantis) gid=100(users) groups=100(users)
    and $ systemctl
    UNIT LOAD ACTIVE SUB JOB DESCRIPTION
    proc-sys-fs-binfmt_misc.automount loaded active waiting Arbitrary Executable File Formats File System Automount Point
    sys-devices-pci0000:00-0000:00:16.3-tty-ttyS0.device loaded active plugged 5 Series/3400 Series Chipset KT Controller
    sys-devices-pci0000:00-0000:00:19.0-net-eth0.device loaded active plugged 82577LM Gigabit Network Connection
    sys-devices-pci0000:00-0000:00:1a.0-usb1-1\x2d1-1\x2d1.4-1\x2d1.4:1.0-bluetooth-hci0.device loaded active plugged /sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/bluetooth/hci0
    sys-devices-pci0000:00-0000:00:1b.0-sound-card0.device loaded active plugged 5 Series/3400 Series Chipset High Definition Audio
    sys-devices-pci0000:00-0000:00:1c.1-0000:03:00.0-net-wlan0.device loaded active plugged RTL8191SEvB Wireless LAN Controller
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda1.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda2.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda3.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda4.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda5.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda6.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda-sda7.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata1-host0-target0:0:0-0:0:0:0-block-sda.device loaded active plugged ST9500420AS
    sys-devices-pci0000:00-0000:00:1f.2-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device loaded active plugged HL-DT-ST_DVDRAM_GU40N
    sys-devices-platform-serial8250-tty-ttyS1.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS1
    sys-devices-platform-serial8250-tty-ttyS2.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS2
    sys-devices-platform-serial8250-tty-ttyS3.device loaded active plugged /sys/devices/platform/serial8250/tty/ttyS3
    sys-devices-platform-thinkpad_acpi-sound-card29.device loaded active plugged /sys/devices/platform/thinkpad_acpi/sound/card29
    sys-module-fuse.device loaded active plugged /sys/module/fuse
    sys-subsystem-bluetooth-devices-hci0.device loaded active plugged /sys/subsystem/bluetooth/devices/hci0
    sys-subsystem-net-devices-eth0.device loaded active plugged 82577LM Gigabit Network Connection
    sys-subsystem-net-devices-wlan0.device loaded active plugged RTL8191SEvB Wireless LAN Controller
    -.mount loaded active mounted /
    boot.mount loaded active mounted /boot
    dev-hugepages.mount loaded active mounted Huge Pages File System
    dev-mqueue.mount loaded active mounted POSIX Message Queue File System
    home.mount loaded active mounted /home
    run-user-1000-gvfs.mount loaded active mounted /run/user/1000/gvfs
    sys-fs-fuse-connections.mount loaded active mounted FUSE Control File System
    sys-kernel-debug.mount loaded active mounted Debug File System
    tmp.mount loaded active mounted /tmp
    cups.path loaded active running CUPS Printer Service Spool
    systemd-ask-password-console.path loaded active waiting Dispatch Password Requests to Console Directory Watch
    systemd-ask-password-wall.path loaded active waiting Forward Password Requests to Wall Directory Watch
    colord.service loaded active running Manage, Install and Generate Color Profiles
    console-kit-log-system-start.service loaded active exited Console System Startup Logging
    cronie.service loaded active running Periodic Command Scheduler
    cups.service loaded active running CUPS Printing Service
    dbus.service loaded active running D-Bus System Message Bus
    [email protected] loaded active running Getty on tty1
    healthd.service loaded active running A daemon which can be used to alert you in the event of a hardware health monitoring alarm
    netcfg.service loaded active exited Netcfg multi-profile daemon
    ntpd.service loaded failed failed Network Time Service
    polkit.service loaded active running Authorization Manager
    slim.service loaded active running SLiM Simple Login Manager
    sshd.service loaded active running OpenSSH Daemon
    syslog-ng.service loaded active running System Logger Daemon
    systemd-journald.service loaded active running Journal Service
    systemd-logind.service loaded active running Login Service
    systemd-modules-load.service loaded active exited Load Kernel Modules
    systemd-remount-fs.service loaded active exited Remount Root and Kernel File Systems
    systemd-sysctl.service loaded active exited Apply Kernel Variables
    systemd-tmpfiles-setup.service loaded active exited Recreate Volatile Files and Directories
    systemd-udev-trigger.service loaded active exited udev Coldplug all Devices
    systemd-udevd.service loaded active running udev Kernel Device Manager
    systemd-user-sessions.service loaded active exited Permit User Sessions
    systemd-vconsole-setup.service loaded active exited Setup Virtual Console
    udisks2.service loaded active running Disk Manager
    upower.service loaded active running Daemon for power management
    cups.socket loaded active listening CUPS Printing Service Sockets
    dbus.socket loaded active running D-Bus System Message Bus Socket
    syslog.socket loaded active running Syslog Socket
    systemd-initctl.socket loaded active listening /dev/initctl Compatibility Named Pipe
    systemd-journald.socket loaded active running Journal Socket
    systemd-shutdownd.socket loaded active listening Delayed Shutdown Socket
    systemd-udevd-control.socket loaded active listening udev Control Socket
    systemd-udevd-kernel.socket loaded active running udev Kernel Socket
    dev-sda5.swap loaded active active /dev/sda5
    basic.target loaded active active Basic System
    bluetooth.target loaded active active Bluetooth
    cryptsetup.target loaded active active Encrypted Volumes
    getty.target loaded active active Login Prompts
    graphical.target loaded active active Graphical Interface
    local-fs-pre.target loaded active active Local File Systems (Pre)
    local-fs.target loaded active active Local File Systems
    multi-user.target loaded active active Multi-User
    network.target loaded active active Network
    remote-fs.target loaded active active Remote File Systems
    sockets.target loaded active active Sockets
    sound.target loaded active active Sound Card
    swap.target loaded active active Swap
    sysinit.target loaded active active System Initialization
    syslog.target loaded active active Syslog
    systemd-tmpfiles-clean.timer loaded active waiting Daily Cleanup of Temporary Directories
    LOAD = Reflects whether the unit definition was properly loaded.
    ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
    SUB = The low-level unit activation state, values depend on unit type.
    JOB = Pending job for the unit.
    85 loaded units listed. Pass --all to see loaded but inactive units, too.
    To show all installed unit files use 'systemctl list-unit-files'.
    The only error I see is with ntpd, and I believe it is because it can't access the internet connection.

  • Strange internet connection behavior

    I am experiencing strange behavior with my internet connection. Overall, it's erratic. E.g., when I boot the system, the internet connection fails. Yet, after it does so, I am able to run my browser, load web pages, access streaming media -- all while right-clicking on the internet connection button on the menu bar shows no connection in effect.
    However, for the most part I am unable to to download my email -- though occasionally that works, too.
    Finally, I am never able to initiate an internet connection. E.g., if I right-click on the connection button in the menu bar and click on "Connection PPPoE," the system eventually informs me that it "could not find a PPPoE server."
    Throughout, my DSL modem shows that I am connected.
    Any help would be greatly appreciated.
    Sincerely,
    Eric Weir

    The MacBook is connected directly to a DSL modem. No router.
    I checked and reset my account settings, although they were as you recommend before I did so. I also reset the modem -- disconnected power for about 30 seconds, then held the reset button in for about 10 seconds after reconnecting the power cable.
    After doing that the system attempted to connect and reported it couldn't find a PPPoE server. After getting that report, however, I was able to load web pages and download my mail.
    Checking network settings through system preferences with the situation as above shows that I have an ethernet connection but not a PPPoE connection. However, if, with the window for the latter selected, I click on "help me" and then "diagnostics," the system reports that the internet connection is working properly.
    Bottom line at this point? I can load web pages and download email, but the menu bar indicates no connection. Paralleling that, the system says I have no PPPoE connection, but diagnostics says the internet connection is working properly.
    Five minutes from now I may or may not be able to download email. I probably will be able to load web pages.
    An AT&T technician is scheduled to be here this afternoon. This strikes me as an operating system problem, however, not a problem with my ISP.
    Again, additional clues would be appreciated.
    Sincerely,
    Eric Weir

  • Strange PPPOE internet behavior

    I recently set up a 2611 router to initiate my PPPOE connection to ATT
    DSL. I was able to get the PPPOE to connect and everything seemed to
    be working how ever after a few days I started to notice that certain
    websites were not coming up. My setup consistes of a 2611 router that
    is connecting to the internet, internally this router connects to a
    2621 router on a 10.1.2.X network which is also acting as a router on
    a stick for vlans that i have setup on a 2924 switch in a 192.168.X.X
    network. The problem did not seem to be VLAN specific as at least one
    PC on each VLAN could get to the sites that were having issues. The
    sites that I noticed that were having issues were Windows Update
    (would display a "no network connection" error after searching for
    updates), Craigs list ( would go to a page can not be displayed when
    trying to post adds) Yahoo groups ( could sign on to groups but once
    signed on all links would go to a page can not be displayed error)
    Credit card sites ( could sign in but all links once signed in would
    go to page can not be displayed). I tried troubleshooting this on the
    Windows end first by engaging Microsoft support, but we were able to
    determine that there was an issue with the network as once I replaced
    the 2611 with the linksys that I was using previously everything
    worked. Before taking the 2611 down I was able to do a packet sniff
    with Ethereal of a succesfull and failed windows update, the only
    glaring issue that i saw was that on the failed windows update I was
    getting alot of check sum errors which after researching looked like
    they were coming from the Gig NIC. Below is the config that I was
    using on the 2611, any insite or thoughts on this strange issue would
    be appriciated.
    2611 Config
    =========================
    Using 3078 out of 29688 bytes
    version 12.3
    no service pad
    service tcp-keepalives-in
    service tcp-keepalives-out
    service timestamps debug datetime msec
    service timestamps log datetime msec
    service password-encryption
    hostname crossbonesEdge
    boot-start-marker
    boot-end-marker
    no aaa new-model
    ip subnet-zero
    no ip source-route
    no ip domain lookup
    no ip bootp server
    ip cef
    vpdn enable
    vpdn-group 1
    request-dialin
    protocol pppoe
    interface Ethernet0/0
    description Connection to Internet
    no ip address
    no ip redirects
    no ip unreachables
    full-duplex
    pppoe enable
    pppoe-client dial-pool-number 1
    interface Ethernet0/1
    description Connection to Crossbones
    ip address 10.1.2.253 255.255.255.0
    no ip redirects
    no ip unreachables
    ip nat inside
    full-duplex
    interface Dialer1
    ip address negotiated
    ip mtu 1492
    ip nat outside
    encapsulation ppp
    dialer pool 1
    dialer-group 1
    no cdp enable
    ppp authentication chap pap callin
    ppp chap hostname [email protected]
    ppp chap password 7 XXXXXXXXXX
    ppp pap sent-username [email protected] password 7 XXXXXXXXX
    router eigrp 100
    network 10.1.2.0 0.0.0.255
    auto-summary
    ip nat inside source list 1 interface Dialer1 overload
    ip nat inside source static tcp 192.168.7.10 1495 interface Dialer1
    1495
    ip nat inside source static tcp 192.168.7.15 3389 interface Dialer1
    3389
    no ip http server
    ip classless
    ip route 0.0.0.0 0.0.0.0 Dialer1
    logging 192.168.7.16
    access-list 1 permit 10.1.2.0 0.0.0.255
    access-list 1 permit 192.168.0.0 0.0.255.255
    dialer-list 1 protocol ip permit
    no cdp run
    snmp-server community public RO
    line con 0
    exec-timeout 15 0
    password XXXXXXXXXXXX
    logging synchronous
    login
    length 22
    history size 30
    line aux 0
    exec-timeout 5 0
    login
    length 22
    transport output none
    line vty 0 4
    exec-timeout 20 30
    password XXXXXXXXXXXX
    login
    length 22
    history size 30
    end

    hi, on eth 0/1
    ip tcp adjust-mss 1452
    or
    ip adjust-mss 1452
    if you cannot enter any of the two option, upgrade ios.

  • Strange Mail Behavior when cicking reply to

    I am having a very different but very strange behavior when in mail 5.2 I click on reply or forward in my menu bar a new mail window opens up and quickly moves off to the right of the screen and disappears laving my inbox. I cannot find where they are going and the only way I can respond is open the mail in a new window. This is weird I have been using mail forever and never seen this before?
    any suggestions???
    mac os 10.7.4
    Thanks for any suggestions

    So Mail doesn’t really crash (i.e. quit unexpectedly). Rather, it freezes (i.e. becomes unresponsive), right?
    What type of mail account is this (POP, IMAP, .Mac)?
    Verify/repair the startup disk (not just permissions), as described here:
    The Repair functions of Disk Utility: what's it all about?
    Go to Apple Menu > System Preferences > Network, choose Network Port Configurations from the Show popup menu, and make sure that the configuration used to connect to Internet appears at the top of the list.
    Try disabling Search .Mac For Certificates in Keychain Access > Preferences if it’s enabled. Take a look at the following articles for an explanation of why this could be the problem:
    http://www.hawkwings.net/2006/07/18/apple-mail-phones-home-too/
    http://www.macgeekery.com/tips/mailapp_doesnt_phone_homeeither/

  • Strange keyboard behavior after OS 4.2.1 upgrade

    When typing (at least, so far, in Safari) the keyboard will randomly (or so it seems) retract after typing a letter, instead of that letter being registered in the text box. It's necessary to re-locate the insertion point back in the text box to bring the keyboard back. And when I do, then the caps lock is on even though it wasn't before. This happens every few characters, but unpredictably.

    I'm getting this too. Been looking all over the Internet to find other people with the same problem.
    Its very annoying, and I'm not touching any other part of the screen - it does exactly what the OP describes, and it seems to do it all the time, when I'm typing. Only noticed it in safari because that is all I type in, and strangely enough it is not happening as I type this, and when it does happen i make sure the webpages are fully loaded. Very strange and very frustrating
    I'm also finding that rss feeds aren't updating, but thats a different problem.

Maybe you are looking for