«uname -a» hangs with 2.6.21

I simply wanted to check the version after my last kernel upgrade (from source) and uname hung my terminal session.
CTRL-BREAK and CTRL-Z don't work and the process can't be killed!
ps aux:
root 16783 0.0 0.0 2228 472 pts/1 D+ 11:23 0:00 uname -a
If I reboot with 2.6.20, everything is fine again. Someone has an idea?

After searching the vmware knowledge base for buslogic, i came upon this:
http://kb.vmware.com/selfservice/micros … %204304518
Upon checking my vm .vmx file, i saw i was using lsilogic driver, so i switched it to 'buslogic' as described in the document. I restarted my vm and clicked yes to the warning (it asks to convert to buslogic but warned my guest system may not be able to boot... but it isn't anyways...).
scsi0.virtualDev = "buslogic"
Booted the vm with
MODULES="BusLogic"
HOOKS= standard array worked
I no longer need the rootfstype in the grub kernel line.
This issue is solved for me. I hope this helps :S
Seems to me like the LSILogic driver is no longer detected by udev or something...
Last edited by Maitreya (2007-05-08 00:47:18)

Similar Messages

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    Can you start Firefox in [[Safe mode]] ?
    You can also do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • LCM import of Planning Application Hangs with "In Progress Status"

    Hi,
    LCM import of Planning Application Hangs with "In Progress Status" . its already couple of hours. Earlier it was always within 10 mins.
    Any advise is appreciated.
    Regards,
    Vineet

    It is probably worth trying again, may be useful to first bounce the services.
    If it happens again after bouncing the services then investigate at what staging it is getting stuck at.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • My i phone 3gs was hang with the apple logo and its not booting

    my i phone 3gs was hang with the apple logo and its not booting can any one say me how to fix this .

    my phone is blinking with the apple logo and will not start

  • Website upgraded to CR2008/VS2008, reptviewer-refresh hangs with a wait msg

    Crystal Report IX.2/VS2005 website app converted to CR2008/VS2008:  compiles clean, runs, but reportviewer-refresh hangs with  "Please wait while the document is being processed" message.  Can anybody suggest a solution or hypothesis?
    detail:
    I've converted a legacy Crystal IX.2/Visual Studio 2005 web-site application to Crystal 2007/Visual Studio 2008.  The compile is free of all errors and warnings.  The application operates correctly and the Crystal report-viewer screen comes up with the correct initial page of information.  But when I click a Next/Prev/First/ast icon, I get a stuck with a perpetual "Please wait while the document is being processed" message.  In addition, the time for the Reportviewer to appear with the first page of the report information is considerably slower (2X, 3X) than it is with the original VS2005/CR IX.2 website project.  We are using ODBC to Oracle 11g.
    I've searched for hits on the web and in this forum, and have tried various experiments with the registration, etc. - but nothing fixes this for me.  Can anybody suggest a hypothesis or solution?
    Thanks

    Re: "Need more info. Are you using ASP.NET or are you using classic ASP and the RDC report engine?
    Thanks Don,
    We're using ASP.Net.  The website project was originally written using Visual Studio 2005, Crystal Reports XI.2, and VB.Net. 
    The app is normally run on IIS 6.0, but I am executing the converted version in the Visual Studio 2008 debugger, i.e. without IIS.  The browser is IExplorer 8.0.
    I have copied and upgraded the project to Visual Studio 2008, Crystal Reports 2008, still VB.Net.  It compiles clean, without any error messages of warning.  When I run the app, the various report selection pages appear correctly, and the correct report-viewer initial page appears as well (although in  60 seconds versus 15 seconds originally.  The main problem is that the viewer does not refresh when I click the next or last icon, a wait message popup appears perpetually.  The data access is ODBC to Oracle 11g. 
    For comparion, below are the assembly sections of the web.config file from both the original and upgraded versions of the project.  If there is any more information that would be helpful, I can post or email it.  Thanks for looking into this,
    Robert Brandon, Raytheon
    1. Original assemblies from the VS2005/CR IX..2 project (works perfectly):
              <compilation debug="true" strict="false" explicit="true">
                   <assemblies>
                        <add assembly="CrystalDecisions.Enterprise, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Shared, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Services, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Drawing, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Data, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Xml, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/><add assembly="CrystalDecisions.CrystalReports.Engine, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportSource, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.Web, Version=11.5.3700.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/><add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                        <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/></assemblies></compilation>
              <pages>
                   <namespaces>
                        <clear/>
                        <add namespace="System"/>
                        <add namespace="System.Collections"/>
                        <add namespace="System.Collections.Specialized"/>
                        <add namespace="System.Configuration"/>
                        <add namespace="System.Text"/>
                        <add namespace="System.Text.RegularExpressions"/>
                        <add namespace="System.Web"/>
                        <add namespace="System.Web.Caching"/>
                        <add namespace="System.Web.SessionState"/>
                        <add namespace="System.Web.Security"/>
                        <add namespace="System.Web.Profile"/>
                        <add namespace="System.Web.UI"/>
                        <add namespace="System.Web.UI.WebControls"/>
                        <add namespace="System.Web.UI.WebControls.WebParts"/>
                        <add namespace="System.Web.UI.HtmlControls"/>
                   </namespaces>
    2.  New assemblies from the upgraded VS2008/CR 2008 project (viewer does not refresh):
              <compilation debug="true" strict="false" explicit="true">
                   <assemblies>
                        <!add assembly="CrystalDecisions.Enterprise, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <!add assembly="CrystalDecisions.Enterprise.Shared, Version=11.5.3300.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Viewing.ReportSource, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Services, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Drawing, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                        <add assembly="System.Data, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Xml, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/><add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                        <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                        <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Desktop.Report, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                        <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"/>
                   </assemblies></compilation>
              <pages>
                   <namespaces>
                        <clear/>
                        <add namespace="System"/>
                        <add namespace="System.Collections"/>
                        <add namespace="System.Collections.Specialized"/>
                        <add namespace="System.Configuration"/>
                        <add namespace="System.Text"/>
                        <add namespace="System.Text.RegularExpressions"/>
                        <add namespace="System.Web"/>
                        <add namespace="System.Web.Caching"/>
                        <add namespace="System.Web.SessionState"/>
                        <add namespace="System.Web.Security"/>
                        <add namespace="System.Web.Profile"/>
                        <add namespace="System.Web.UI"/>
                        <add namespace="System.Web.UI.WebControls"/>
                        <add namespace="System.Web.UI.WebControls.WebParts"/>
                        <add namespace="System.Web.UI.HtmlControls"/>
                   </namespaces>

  • HT3702 So I accidentally purchased 20,000 coins from hanging with friends for $99.00 and I need to cancel that purchase. How do I do that

    So I accidentally purchased 20,000 coins from hanging with friends for $99.00 and I need to cancel that purchase. How do I do that

    Welcome to Apple Communities
    Contact with iTunes, but probably Apple won't refund you

  • T400 hangs with a green screen

    Hi,
    I have T400 with windows XP professional OS.
    Everything works fine but once in a while the system hangs with a greeen screen(vertical lines). There after nothing works. The only way out is to restart the system and then again everything works fine.
    Can you please help me resolve the issue.
    Let me know if you all need more information for the same.

    Okay, does this machine work on external LCD?
    So several repeated reboot sometimes get a working machine?
    Can you get into the BIOS menu when the laptop works on odd occasions? If so, go into your bios menu, go into your 'Config' menu.
    Under the display there should be option to switch between switchable, discrete or integrated. Choose integrated graphics option. Then press F10 save and exit, see whether that resolves your green screen issue.
    Regards,
    Jin Li
    May this year, be the year of 'DO'!
    I am a volunteer, and not a paid staff of Lenovo or Microsoft

  • IBM OS ISSUE: SYSTEM HANG WITH JFS2 AND HEAVY LOAD

    제품 : ORACLE SERVER
    작성날짜 : 2004-11-24
    IBM OS ISSUE: SYSTEM HANG WITH JFS2 AND HEAVY LOAD
    ==================================================
    PURPOSE
    이 문서는 IBM AIX5L OS 상에서 Arch Process가 online redo log
    를 release하지 못하고 OS의 kill 명령으로 kill조차 되지 않을 경우
    조치 방법이다.
    Problem Description
    이 문서는 다음 OS 정보와 Oracle version인 경우에 해당한다.
    Oracle Server - Enterprise Edition - Version: 9.2.0.5.0
    Oracle Server - Enterprise Edition - Version: 8.1.7.4.0
    AIX5L Based Systems (64-bit) or (32-bit)
    문제 발생 당시의 증상은 다음과 같다.
    - arch-process doesn't release redolog files
    - arch-process doesn't die after database shutdown
    - arch-process can't be killed
    genclntsh 수행 시 hang 상태이다.
    (sleeping...)28590: kwaitpid(0x2FF22470, -1, 4, 0x00000000, 0x00000000)
    또는 이 문제로 인하여 ORA-600[2103] 에러가 발생하기도 한다.
    이 에러가 발생하는 원인은 IBM AIX5L 64bit, 32bit OS 이슈에 있다.
    IBM OS issue: SYSTEM HANG WITH JFS2 AND HEAVY LOAD.
    Workaround
    none
    Solution Description
    OS AIX5L ML4.0(5.2.0.40)의 bos.up / bos.mp / bos.mp64 fileset level을
    갖는 JFS2 file system을 갖는 경우에 해당한다.
    AIX 5.3 APAR IY59387은 IY58143에 포함되어 있다.
    JFS2 file system에 Heavy I/O activity가 발생하면 database process에
    HANG 문제를 야기시킬 수 있다. 이 때 database process가 kill -9
    명령으로 kill되지 않는다. 데이타베이스를 SHUTDOWN하여도 Process가
    계속 살아 있게 된다.
    Process에게 SIGKILL 함수가 issue되었지만 영향을 주지 않게 된다.
    Process를 제거하는 유일한 방법은 OS를 reboot하는 것이다.
    문제를 예방하는 방법은 IBM APAR-FIX IY59082 를 적용하는 것이다.
    이 APAR는 bos.64bit 5.2.0.42에 포함되어 있다.
    Fix :
    Need to install the IBM APAR-FIX IY59082, this APAR is included on
    bos.64bit 5.2.0.42.
    (주) IBM 엔지니어에게 확인 결과 이 Patch 안에 AIX5L 32bit 용과 64bit
    용이 모두 포함되어 있는 것으로 확인됨.
    Reference Documents
    <Note:285158.1>

    b,
    The install was from my original Dell XP Pro-SP1 'Reinstallation' CD along with the complete MS XP-SP2 download that I burned to another CD. I also had all the latest Dell drivers from their website burned to a CD. Install went as follows:
    - Format HD
    - Install XP Pro SP1
    - Install SP2
    - Install Dell Drivers
    - Obtain any MS patches from their site
    - Install Office
    - Update Office from the MS website
    - Install iTunes
    - Tweak MS settings
    - Install many software programs
    - Make an interim Image of system and store to ExHD
    - Install other software programs (mostly security programs)
    - Make another 'complete' Image to ExHD
    - Restore backup data and music
    After additional testing last night, I determined that it is not iTunes at all (or to blame). I get intermittent hangs/freezes/pauses in other media players (WMP, etc.).
    Seems that something is causing the 'System' process to periodically jump up in CPU %age (though not more than 30-50%). Even this relatively small amount is enough to pause the playback of music or video, hang the mouse movement for a brief moment, or delay a menu opening. All very subtle - you have to be looking for it to notice (except with real-time audio-video, which is quite noticeable whenever this happens).
    I had this problem a year ago, which is why I reimaged then and stayed with SP1 on the advice of Dell and Webroot. I'm stumped as to where to look for the culprit. Every time I go back to the original HD with SP1, everything runs smoothly. Some sort of system call is generating this complete pause....
    I'll be limited in my Internet ability for the next several days, so I may be out of touch until Friday. I'll keep testing and playing with the limited equipment I take along....
    Any thought you or others want to toss out, I'll attempt when possible.
    Thanks!

  • Evolution: hangs with glibc error

    Hi there,
    When writing new mail or checking mail (via IMAP), after a couple of minutes Evolution hangs with the following error code in the comand line:
    *** glibc detected *** free(): invalid pointer: 0x08ad8e40 ***
    The error persists with all users, including root.
    I upgraded glibc a while ago (15 March), created the necessary locales, and everything worked like a charm. My last update was on Sunday, when gtk2 was updated (2.8.12-1 -> 2.8.15-1) as well as glib2 (2.8.6-1 -> 2.10.1-1). Might this be the problem? Or where do I start looking for a solution?
    Any feedback is much appreciated.
    -Sascha
    /edit: My system is a clean current/extras installation, no testing.

    giorgosc61 wrote:
    Hi
    I upgraded to evolution 2.6.0-2 and in the place of icons in Evolution show a [X] icon.
    What happened?
    wouldn't know, but perhaps that's a discussion for it's own thread since it doesn't particularly relate to the problem discussed in this thread

  • JRE 1.5.0 installation hangs with error 1311

    When I attempt to install JRE 1.5.0 (manual, online) on an IBM NetVista with Windows XP OS the process hangs with error message 1311 [Source file not found.  D:\Documents and Settings\...\...\...\...\...\ja150000[1].cab.] Any ideas on how to get around this?

    Use the offline install - download the file and click it.

  • My CC Desktop App (Mac) Home Panel is Hanging with a Spinning Gear Wheel

    I'm running Adobe CC Suite on a MacBook Pro (OSX 10.7.5). Everything was working fine until I shut off and unplugged my laptop for a weekend. When I started it up, the CC Desktop App launched and complained that it couldn't find an Internet connection (even though my browser and Apple Mail apps were working fine.) I closed the CC Desktop App, reopened it, and ever since then, the CC Desktop App Home panel hangs with a spinning gear wheel. The Apps panel in the CC Desktop app seems fine.
    I tried deleteing the opm.db file inside the OOBE folder  in my User Library. This caused the CC Desktop App to ask to to login upon launch. But, once I logged in, the spinning gear wheel started up again.
    Anyone know what might be going on here or how to fix this problem?

    Abhijit,
    I'm afraid that my problem with the CC Desktop App Home panel is NOT a disk permissions issue...
    Per your suggestion, I verified my hard drive, repaired permissions, and rebooted my laptop. However, when I click on the Creative Cloud icon in the Finder's menu bar, the Home panel still displays a continually spinning gear wheel, as it did previously. The Apps panel is properly displayed, and the Files and Fonts panels display "coming attractions" messages; I don't have any projects in the Behance panel.
    Prior to visiting this forum, I did a Google search on the problem of "CC Desktop App Home Panel Hangs," and I found a couple posts suggesting that the only way to cure this problem is to uninstall all CC/CS6 apps, use Adobe Cleaner to clean up the CS6/CC installation, and then reinstall all the apps via CC...and that doing all this does not necessarily prevent the problem for recurring.
    I must say that I'm finding certain aspects of the Creative Cloud implementation to be surprisingly buggy. I've already lost a couple day's work to dealing with Creative Cloud installation and functionality issues--which is very frustrating, to say the least.
    That being said, if you have any other suggestions, I'm willing to try them, as I would like to get my Creative Cloud installation working properly.

  • My ipad hang with the apple logo

    Hi, while i was connecting my ipad to my PC, the system prompt me to upgrade ipad version. When i click yes it tried to download but was having error. I terminated and my ipad got hang with the apple logo with the emply downloading symbol. Help!!

    You need to put your iPad into recovery mode, follow these instructions.
    the iPad (which should NOT be connected to your PC) and hold down the sleep button (on the top of the iPad) and the home button (front of the iPad) at the same time
    After about 10-15 seconds, the unit will power off (do not do anything when the "slide to power off" screen appears, just keep holding the buttons)
    When the iPad turns back on, you will see the silver Apple appear on the screen. Continue holding down the home button but release the sleep button and immediatly plug the iPad into your computer running iTunes

  • Ipseckey hang with error PF_KEY socket timed out

    When I use ipseckey program (on Solaris8 for intel) to add new SA,
    ipseckey hang with error PF_KEY socket timed out.
    other command like "dump" or "save all" still work
    can anybody help ?
    le huy

    Sorry, but I don't know exactly, it was work of network admin (or sysadmin). I think relation between Application Server and Database Server was corrected - at the server or at the Data Communications Equipment.
    But problem was OUT OF WebCenter Spaces, any adjustments at WebLogic Server, etc... had no results.
    Sorry.

  • Production Portal hangs with timeouts

    Hi all,
    Several times during the day the Portal 10.1.4.0.0 hangs with timeouts.
    In order to recover, Portal needs to be re-started.
    (The timeout also occurred during the time they had a db corruption, but now that corruption has been resolved, the hangs still occur.
    After running the SVU in CLEANUP mode, the issue still occurs.
    Timeout has been set to well over the default. Stall has been increased also. Neither have helped to resolve the issue.
    The java portlets are from a specific OC4J Provider, and all of them are on pages under a Page Group.
    These portlets reads (also trough views) data on portal schema in order to create the "style" and css of the portal pages. All of the database statements are select, exception of rare insert operation on a table of their custom schema.
    User load:
    The access statistics indicates that about 800 users access this site in 1 hour.
    The more high user access in one hour was 1100 users.
    The concurrent user access are about 500.
    Thanks for any help.
    Edited by: hmannila on May 11, 2010 11:50 PM

    Hello Helenna,
    In this particular case, the PPE timeout settings are set to very high values causing exhaustion of fetcher threads in the PPE fetcher thread pool :
    <servlet>
       <servlet-name>page</servlet-name>
       <servlet-class>oracle.webdb.page.ParallelServlet</servlet-class>
       <init-param>
    <param-name>requesttime</param-name>
    <param-value>120</param-value>
       </init-param>
       <init-param>
           <param-name>minTimeout</param-name>
           <param-value>180</param-value>
       </init-param>
       <init-param>
           <param-name>stall</param-name>
           <param-value>200</param-value>
       </init-param> This should be the action plan for you :
    >
    As you already pointed out, the portal seems to become unresponsive because the Edison provider is not responding fast enough to requests from the Portal framework. Oracle Portal should be able to recover from thi in normal cases. Unfortunately the configuration settings in the Portal were changed from the default values making it almost impossible for the framework to recover from the error. To understand this, we will need to go through the theory :
    The Oracle Portal framework collects information from various sources and assembles these to web pages which are then sent to the end users internet browser. Providers are one source of information. To retrieve the information from providers, Oracle Portal allocates a so-called fetcher thread in OC4J_Portal. This fetcher thread will create a session with the (remote) provider and fetch the content, similar to how a web browser would contact a web server to retrieve an HTML page. It is important to note that Oracle Portal allocates a fetcher thread for each portlet on a page. For a page with five portlets, five fetcher threads are allocated as the content is fetched in parallel.
    In a default configuration with only one OC4J_Portal process, the number of fetcher threads is limited to 25. With five portlets on a page, the Portal will be able to serve up to five requests simultaneously before the pool of fetcher threads gets exhausted. This is normally not a problem because the fetcher threads are allocated for just a few seconds normally. Once they have received the response from the provider, they are returned to the pool and will be available to the Portal again.
    The problems start when the provider's response becomes sluggish. The fetcher thread is not returned to the pool immediately. The requests start to queue up until the system doesn't have any fetcher threads available anymore. Once there are no fetcher threads available, the Portal will wait for a new fetcher thread for a certain period of time (as specified by the queueTimeout). After expiration of this queue timeout, the Portal will return an error to the Oracle HTTP Server. This is when end users will start to experience errors in the pages.
    To keep the Portal alive and healthy, administrators should take care that the fetcher threads pool doesn't get exhausted. Obviously the best way to do this is to ensure that all providers respond in a reasonable amount of time. If there is no control on the response times of the providers, administrators can use the timeouts in the framework to assure that long running requests are killed off by the framework to assure that the fetcher threads are returned to the pool again. These parameters are configured in the web.xml from the application portal in the OC4J container called OC4J_Portal. Obviously users will see timeout errors for particular portlets on certain pages but the overall framework will be available. In addition, administrators can decide to increase the number of fetcher threads by starting more than one OC4J_Portal process. Each additional process will increase the amount of fetcher threads with 25. There is a memory penalty for this however as each process can consume between 256 - 512 Mb of memory. Administrators should only increase the amount of processes when they have checked that the Portal midtier system has enough free memory available to accommodate for these additional processes.
    Action plan :
    1. Change the timeout values for the Portal framework to the default values :
    a. Navigate to $ORACLE_HOME/j2ee/OC4J_Portal/applications/portal/portal/WEB-INF
    b. Copy the web.xml :
    % cp web.xml web.xml_23MAR2010
    c. Edit the web.xml :
    For both the RepositoryServlet and the PortalServlet, remove the STALL timeout
    For the page servlet, remove the requesttime, minTimeout, stall and queueTimeout parameters
    2. Increase the number of OC4J_Portal processes from 1 to 4 :
    a. Create a copy of the file $ORACLE_HOME/opmn/conf/opmn.xml :
    % cp opmn.xml opmn.xml_23MAR2010
    b. Open the file opmn.xml
    c. Locate the following section :
    <process-type id="OC4J_Portal" module-id="OC4J">
    d. Within the section for the process OC4J_Portal, change the following line :
    <process-set id="default_island" numprocs="1"/>
    to
    <process-set id="default_island" numprocs="4"/>
    3. Synchronize the DCM repository :
    % $ORACLE_HOME/dcm/bin/dcmctl updateconfig
    4. Restart the midtier processes
    % $ORACLE_HOME/opmn/bin/opmnctl stopall
    % $ORACLE_HOME/opmn/bin/opmnctl startall
    4. Check whether the changes have are in effect :
    a. Number of OC4J_Portal processes :
    Run opmnctl status and count the number of OC4J_Portal processes. You should see four of them.
    b. Timeout parameters in OC4J_Portal
    Open the file $ORACLE_HOME/j2ee/OC4J_Portal/application-deployments/portal/OC4J_Portal_default_island_1/application.log and check for the following line at the end of the file :
    10/03/08 06:32:32 portal: PPE version : 10.1.2.0.2 (29022008)
    10/03/08 06:32:32 portal: Tuning parameter values : poolSize(Fetchers)=25[default=25] : minTimeout(MinTimeout)=5s[default=5s] : requesttime(DefaultTimeout)=15s[default=15s] : stall(MaxTimeout)=65s[default=65s] :
    queueTimeout(QueueTimeout)=10s[default=10s] maxParallelPortlets=20[default=20] maxParallelPagePortlets=10[default=10]

Maybe you are looking for

  • Problems with Windows XP SP3 in Boot Camp

    Hi, I have recently received a 21.5" iMac; it is the higher-end of the 21.5" standard configurations. The problems I am having, I believe, specifically relate to drivers. Firstly, I get no sound whatsoever in Windows XP SP3 (boot camp); I have tried

  • Apple tv bought in Switzerland, moved to Brazil

    Hi everyone, I just wonder if my Apple TV, last gen., bought in Switzerland, will work in Brazil, cuz I am moving. Many thx, Franz

  • Muvo NX Not Recognize, I've read everything... some suggestion

    I?ve read all the post about people having trouble with their windows pc recognizing their Muvo?s NX. Even though I?ve followed the flash and firmware procedures describe on these forums, I?m having the same difficulties as everyone else. I?ve instal

  • Verizon e mail

    I have used an email alias for several years.   About 2 weeks ago the verizon server would no longer authenticate it.   I have a primary email and another alias that work just fine.   I spent hours utilizing the live chat and did receive any satisfac

  • Open a file using matlab script block

    Hello! I want to open a file from a specified directory using matlab script block. The input of this block is a string with file's name......but it doesn't work in this way. I have to change the input data or I have to change it  into matlab matlab s