[DIS-SOLVED] Sudo hangs after a few uses

I've been searching around for this for some time, but haven't found any enlightenment yet.
Basically, after rebooting I can use sudo a few times (usually 3) successfully. After that, any sudo command just hangs. Interestingly, "sudo -k" still returns normally, but "sudo -v" hangs. It is worth noting that sudo gets as far as prompting me for my password before hanging.
Background - possibly useful:
I've had arch running for a few months now, and this just started happening yesterday, when I left my machine running overnight doing a large dd to an external drive as described here: https://wiki.archlinux.org/index.php/Di … _hard_disk . I woke up, found that the i/o was all finished (I could tell because I was using pv to monitor it), but the command ( which was "sudo dd if=/dev/sda conv=sync,noerror bs=32M | pv -pbert | gzip -c > /run/media/jimbo/Backup2/sda_82513.img.gz") hadn't returned and wasn't responding to SIGINTs. The hanging behavior started here, and I wasn't able to kill the process or unmount my external cleanly. I'm not sure exactly what I did then, but I'm pretty sure I just hard-rebooted my machine, and I've been seeing this behavior ever since.
Any pointers or advice would be greatly appreciated. I'll post any config files you guys are interested in, with PII redacted.
Last edited by jmagnare (2013-08-30 21:05:05)

Thanks for the warm welcome! I'm having a blast using arch so far.
So I restored from the dd that I had done, and things are working fine now. I'm not sure what I should do with this thread: should I mark it solved? I didn't actually discover the cause of the problem, so that doesn't seem right.
To answer your questions:
1. I may have had one of the partitions on sda mounted. Is this likely to have caused what I saw?
2. pv, which I just discovered, allows you to see the progress of data through a pipeline. It's pretty neat. The p, b, e, r, and t flags should turn on the progress bar, byte counter, ETA timer, rate counter, and timer, respectively. After looking at the man page, it appears that this is actually the default behavior. So I could have just used pv with no options.
Last edited by jmagnare (2013-08-29 17:03:00)

Similar Messages

  • Firefox hangs after a few minutes and freezes whole system -- tried all the help suggestions already

    I just updated to the latest version of Firefox and now it hangs after a few minutes of use (maybe when using Facebook)...I tried all of the existing help suggestions and none of them worked. Once it hangs, I can no longer use my machine as it freezes everything. I have to shut down...and even that takes forever to happen. :(

    Hello cswatson,
    Try clearing your Java cache, and History.
    If you're not sure how to do that go here. --> [http://www.java.com/en/download/help/plugin_cache.xml I'm a Link].
    If you still have problems, and are running a 64 bit processor you may want to install Waterfox instead of Firefox. On the case that you are running a 32 bit operating system do not install Waterfox. However, if you are running a 64 bit operating system you may want to install Waterfox. If you do install you should update your plugins on the Waterfox Download page below.
    '''Waterfox Support/Forum'''
    http://www.overclock.net/t/975626/waterfox-11-0-13-mar-2012-firefox-64-bit
    '''Waterfox Download'''
    http://waterfoxproject.org/downloads/ http://waterfoxproject.org/downloads/
    Sincerly,
    Michael
    '''''Waterfox is an unofficial version of Firefox, please use at your own risk.'''''
    ''Copyright © Waterfox. Mozilla®, mozilla.org®, Firefox®, Thunderbird®, Bugzilla™, Camino®, Sunbird®, SeaMonkey®, and XUL™, as well as the Mozilla logo, Firefox logo, Thunderbird logo and the red lizard logo are all trademarks of the Mozilla Foundation. Logo by [http://example.com Miloš Mirković]''

  • I have an issue with Acrobat, after a few uses, the program will not load, the only way to fix it is to completely uninstall the CS suite wipe the drive and reinstall the software, then after a few uses it stops working, how do i fix this?

    after a few uses, the program will not load, the only way to fix it is to completely uninstall the CS suite wipe the drive and reinstall the software, then after a few uses it stops working, how do i fix this?

    Not sure of an answer to your basic question, but it may be that you can run a repair (on Windows --> Control Panel>Programs & Features and run the repair on Acrobat). If that fixes the issue, at least temporarily, at least you will not be reinstalling everything -- a real pain.
    Next, open Acrobat and go to the Help to run the updates and be sure you are current. On some OSs, the updates are critical.

  • Finger print recognition stops working after a few uses with IOS 8

    Why does my finger print recognition stop working on my IP6 and IOS 8.1.2 after a few uses. I re-enter finger prints and it stops working again after a few uses.

    No one here would know.  What troubleshooting steps have you taken so far?
    Basic Troubleshooting Steps when all else fails
    - Quit the App by opening multi-tasking bar, and swiping the App upward to make it disappear.  (For iOS 6 older, hold down the icon for the App for about 3-5 seconds, and then tap the red circle with the white minus sign.)
    - Relaunch the App and try again.
    - Restart the device. http://support.apple.com/kb/ht1430
    - Reset the device. (Same article as above.)
    - Reset All Settings (Settings > General > Reset > Reset All Settings)
    - Restore from backup. http://support.apple.com/kb/ht1766 (If you don't have a backup, make one now, then skip to the next step.)
    - Restore as new device. http://support.apple.com/kb/HT4137  For this step, do not re-download ANYTHING, and do not sign into your Apple ID.
    - Test the issue after each step.  If the last one does not resolve the issue, it is likely a hardware problem.

  • AttachCurrentThread hangs after a few calls in a Apache2 PHP5 Extension

    Hello everybody,
    I have created a small C Library/API that calls with JNI a simple Java class with a few methods to work with a underlying Java Framework (Carrot2). That JVM/JNI code functions some kind like a bridge between C and Java. In a single-threaded environment I experienced no problems, the complete runtime flow works well, I get no crashes or other strange behaviour.
    Now I have built an PHP5 extension that makes use of that JNI/C code, the extension is built as a class with constructor/destructor and has a few methods that call functions of my C library. The JNI/C side I have 2 data structs, one is for the JVM and its handle (JavaVM) as well as the Java class name and its path, the jclass object of that class, jvm options, classpath, etc. A second data struct is for the Java environment containing the JNIEnv pointer, the jobject of the Java class and a few more application related variables. The C code consists of JNI functions to work with the Java class to call its methods, a few JNI helper functions and some internal application code and data handling.
    At module initialization (Apache startup) I use the PHP_MINIT and PHP_MSHUTDOWN functions to load and unload (on apache stop) the JVM. The JVM gets created and destroyed at these points.
    I use the PHP constructor (inside the extension) to attach to the JVM, that is AttachCurrentThread with the class constructor, I create and object of the Java class and preload a few Java primitives that I need for my methods later on and after all this I can work with the Java class through JNI. On PHP5 class destruction (also in the extension), I detach from the JVM using 'DetachCurrentThread', free some resources and "delete" the JNIEnv pointer (set it to NULL).
    The JVM data struct (containing the JVM object) is a static global in the PHP5 module since I think there is no need for thread safety. This data is only modified/used in module startup/shutdown. The JNI worker struct (data struct with the JNIEnv pointer and jobject, etc is safely handled by the Zend object store throughout the complete class, so this should be thread-safe. So I do not suspect any problem here.
    Testing the PHP 5 extension with a small PHP5 script using that PHP class and a few methods in Apache debug mode (that is the -X switch for just one worker process) works like a charm, no problems, crashes or misbehaving situations, not up to now with my testing though. But running Apache in regular mode with multiple processes, I run in to problems. One major problem is, after a few reloads of the php script using the extension class (lets say 10-15 reloads; The request is handled by the same apache child process) the `AttachCurrentThread' call hangs and the child process remains in that state. Continuing reloading the script a new child process answers and also here, after 10-15 reloads of the script, I get the same problem. So I am not sure what is really happening here nor I do not know how to solve that issue. Is that a signal problem (I read, that there can be signal mask issues and the JVM hangs when a new thread tries to attach to it, for example, the Jakarta Tomcat JK JNI worker uses a signal hack because of this problem. But that does not help me.
    Or is there some problem with the multi-threading itself (since the JVM is multithreaded too)? Another problem is, besides that hanging thread attach, that the processing sometimes stops in middle of a java call (I have one method that insert data (calling a add method in a for loop) with JNI into a Java list on the Java class side, there it can stop in middle of the insertion process.
    So, for now, I have no idea how to continue. Like said, in a single threaded environment, as a process, the application runs fine without a flaw.
    Some details of my development machines: Ubuntu Lucic 10.04 LTS (also another Ubuntu 8 LTS), Apache2 MPM Worker (multithreaded model) and also on another machine the prefork version, Java JRE 6.0.22, PHP 5.2.16 (compiled from source).
    So any hints that can help me proceeding the development of this module for PHP would be great. Any help is appreciated. If there are questions or some unclear points, please let me know.
    Andreas

    jschell wrote:
    847069 wrote:
    I use the PHP constructor (inside the extension) to attach to the JVM, that is AttachCurrentThread with the class constructor, I create and object of the Java class and preload a few Java primitives that I need for my methods later on and after all this I can work with the Java class through JNI. On PHP5 class destruction (also in the extension), I detach from the JVM using 'DetachCurrentThread', free some resources and "delete" the JNIEnv pointer (set it to NULL).
    That is unclear.
    I presume that you have a PHP class which is making JNI calls.
    Presumably you have a single thread in the caller of the PHP class, specifically a single method, which creates the PHP class, interacts with it, and then destroys it.
    Yes, programming PHP5 extensions in C or C++ let you implement a class or just flat functions that can be used in the PHP scripting language. I implemented a class. So my constructor attaches to the (already at Apache/Module startup created JVM). After that, I can use the methods I have implemented to use the carrot2 framework. To communicate with the Carrot2 library, I have written a simple Java Class containing static functions for adding documents, executing clustering algorithms and receiving the search results, so all pretty straightforward I think. When the PHP script exists (request finished) then the class destructor is called (also implemented in my PHP5 extension) to detach from the JVM and make some cleanup. This is generally how things work.
    Most problems with JNI is caused by pointer problems or misusing the API (like not handling exceptions correctly.)
    Other than that the Sun VM has a command line option that reports useful information when using JNI.I can compile and run my JNI code with some test data from command line and I pass to the JVM some debugging parameters (such as -Xcheck:jni, -verbose:jni and Xint) for testing and debugging. I get no exceptions, errors or warnings. Everything is executed cleanly, I see some JNI/JVM debugging output (such as Dynamic-linking native method messages) along my own debugging output and the program finishes normally. Most JNI calls are wrapped in special macros and I check for exceptions, describe and clear them and act with these situtions (if any), I also added a method to the Java Class where I am able to receive the Java backrace for further investigation and abort execution.
    So for now I am out of ideas. This is why I don't understand these problems within the Apache/PHP process. Like stated above, Apache with one worker "-X" the complete code runs fine, even with consecutive calls all is fine, but then in regular multiprocess mode, I get the above problems like the AttachCurrentThread hangs or the execution of called methods of my Java class (inserting documents to a ArrayList or executing one of the clustering algorithms) hang and I have no other choice but to stop Apache.
    One more thing, I valgrinded my C code as far as possible. It is not possible to valgrind C code that creates and executes a JVM. Valgrind will stop and report "Error occurred during initialization of VM". No wonder though, I do not expect valgrind to execute the JVM beast in its context. The PHP5 version i compiled from source is thread-safe (at least I compiled it with the proper flags for that).
    So any other debugging hints or ideas are welcome.
    Edited by: 847069 on Mar 24, 2011 10:31 PM
    Edited by: 847069 on Mar 24, 2011 10:35 PM

  • My multiclip preview pane hangs after a few seconds

    Uh oh.
    This is my first time editing a multiclip with 6 HD streams, and playback hangs after just a few seconds.  If i pause and give it a moment to catch up, it will play for a few seconds more. 
    On the RT button on the Timeline, I have selected: Safe RT, play base layer only (doesn't seem to matter) Video Quality Poor (Dynamic isn't any better), Frame Rate Quarter, and of course Multiclip playback is checked.
    I'm working with ingested AVCHD footage in ProRes LT.  I already shut down, waited a minute, and restarted the machine, no other programs running besides browser and mail.
    I'm wondering if there are any other adjustments I can make so that I can see the multiclip view to do live switching thru this footage.
    I'm working with an eSata external drive with an eSata card in the expansion slot.  It's the fastest drive I've got.
    Thanks for any suggestions (besides buying the Thunderbolt drive) I'd be grateful!

    It is highly unlikely your disk system can handle playing back 6 steams of ProResLT.
    A serious multi drive RAID run through esata should handle this. A single drive will probably choke.
    First set your RT playback to Dynamic - not safe.
    Beyond that there are at least three ways to deal with this ...
    1. Use ProRes Proxy (or DV) in an offline-online process.
    2. Figure out if you REALLY need all six angles. Choose which 4 to use for the main cut (or three if that's all your drive can handle), then output that sequence as a new file using "current settings, self contained". Bring that new file in and make a second multiclip adding in the other two (or three) streams.
    3. Acquire a RAID that can push out 400-500 MB/s.
    x

  • IdeaPad A1000-F wifi hangs after a few minutes

    Hello,
    Just got a A1000-F tablet and i encounter a strange problem with wifi connection:
    Setting up and connecting to my home router (wpa protected) : ok, connection works.
    Then, after a few minutes of usage, all network traffic stops ( no internet connection in apps, browser, play store, messenger and sync stops...). However wifi icon remains on and seems connected with full signal power.
    Notice that router is connected to internet (other wifi devices are connecting fine)
    I have to cycle wifi off and then on to make it work again, and it hangs systematically again after a few minutes.
    Tried deleting and recreating wifi connection: no effect.
    Same behavior when tried on another wifi network.
    Tablet has been updated to last firmware (larger partition).
    Please help.
    Kind regards

    Do a factory Reset. Go here:-
    Settings > Backup & Reset > Factory Data Reset.
    You can say thank you by pressing the star left to my post IF I HELPED YOU

  • The audio in "speak screen" stops working after a few uses. IOS 8.2 did not fix this problem unfortunately. I'm using the Alex voice on a Sprint iPhone 6 plus- if that matters.

    I really enjoy the speak screen feature, as the voiceover is too inconvenient and tricky to use. The speak screen option works oerfectly for reading, and helps me as I'm dyslexic. However, the Alex voice stops working after the initial use or soon after. I then have to restart the phone every time in order to get the speak screen to acruelly speak again. Really annoying and was hoping that IOS 8.2 Would fix this, but it appears it had not fixed this bug. Any help with this?

    Any problem when connected to another wi-fi network besides your own?
    The only additonal troubleshooting options after powering the iPhone off and on, an iPhone reset, and resetting network settings on the iPhone is restoring the iPhone with iTunes from the iPhone's backup and/or restoring with iTunes as a new iPhone or not from the backup.
    If no change after restoring as a new iPhone or not from the backup - the same when connected to any wi-fi network besides your own as well as not being able to maintain internet access when connected to your carrier's cellular network, the iPhone has a hardware problem.

  • Mail hangs after a few seconds

    Just this evening, about an hour after I downloaded the MobileMe update, my Mail app started hanging after about 4 seconds. Totally unresponsive, beachball of doom etc requiring a force quit. I've tried most of the suggestions I can find here (deleting To-do lists, turning off synching, moving plists, repairing drives etc) but nothing seems to work.
    Logic points to the MobileMe update (I have a new 3G iPhone that seems to be working and synching ok), but I'm kind of stuck with no mail on my main machine and was wondering if there was anything else I could do rather than sit in and wait for an Apple update (providing there will be one).
    Many thanks in advance (and apologies if I've pasted the wrong part of the report here -I had no idea what to post)
    Date/Time: 2008-07-13 22:58:55 +1000
    OS Version: 10.5.4 (Build 9E17)
    Architecture: i386
    Report Version: 4
    Command: Mail
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    Version: 3.4 (928)
    Build Version: 1
    Project Name: Mail
    Source Version: 9280000
    Parent: launchd [76]
    PID: 254
    Event: hang
    Time: 6.52s
    Steps: 41
    Process: Mail [254]
    Path: /Applications/Mail.app/Contents/MacOS/Mail
    ADDRESS BINARY
    00001000 /Applications/Mail.app/Contents/MacOS/Mail
    002de000 /System/Library/Frameworks/Message.framework/Versions/B/Message
    00687000 /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    00690000 /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    006f7000 /Library/InputManagers/1PasswdIM/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
    15960000 /Users/fulldark/Library/Mail/Bundles/httpmail.mailbundle/Contents/MacOS/httpmai l
    15e07000 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    161e4000 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    16457000 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    164d0000 /usr/lib/liblangid.dylib
    17e91000 /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
    17ec2000 /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    Thread id: 76d8f20
    User stack:
    41 ??? [0xfb29e]
    41 _NSApplicationMain + 574 (in AppKit) [0x94e42030]
    41 -[NSApplication run] + 795 (in AppKit) [0x94e74df3]
    41 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128 (in AppKit) [0x94e7bdb8]
    41 __DPSNextEvent + 657 (in AppKit) [0x94e7c505]
    41 _BlockUntilNextEventMatchingListInMode + 106 (in HIToolbox) [0x9112ea31]
    41 _ReceiveNextEventCommon + 175 (in HIToolbox) [0x9112eaf6]
    41 _RunCurrentEventLoopInMode + 283 (in HIToolbox) [0x9112eda4]
    41 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x9386ecf8]
    41 _CFRunLoopRunSpecific + 844 (in CoreFoundation) [0x9386dd1c]
    41 _CFRunLoopDoObservers + 466 (in CoreFoundation) [0x9386c9c2]
    41 __handleWindowNeedsDisplay + 436 (in AppKit) [0x94e7e660]
    41 ??? [0x1f7a2]
    41 -[NSWindow displayIfNeeded] + 189 (in AppKit) [0x94e7e83d]
    41 -[NSView displayIfNeeded] + 869 (in AppKit) [0x94e7ec4f]
    41 -[NSView _sendViewWillDrawInRect:] + 1015 (in AppKit) [0x94f3c902]
    41 -[NSView viewWillDraw] + 579 (in AppKit) [0x94f3d220]
    41 -[NSView viewWillDraw] + 579 (in AppKit) [0x94f3d220]
    41 -[NSView viewWillDraw] + 579 (in AppKit) [0x94f3d220]
    41 -[NSView viewWillDraw] + 579 (in AppKit) [0x94f3d220]
    41 -[NSSplitView viewWillDraw] + 81 (in AppKit) [0x94fd14ae]
    41 -[NSView viewWillDraw] + 579 (in AppKit) [0x94f3d220]
    41 -[NSView viewWillDraw] + 579 (in AppKit) [0x94f3d220]
    41 -[NSView viewWillDraw] + 579 (in AppKit) [0x94f3d220]
    41 -[NSTableView viewWillDraw] + 72 (in AppKit) [0x94f84641]
    41 -[NSTableView tile] + 285 (in AppKit) [0x94f5a658]
    41 -[NSTableView _totalHeightOfTableView] + 129 (in AppKit) [0x94f5af18]
    41 -[_NSTableRowHeightStorage computeTableHeight] + 39 (in AppKit) [0x9506a1ad]
    41 -[_NSTableRowHeightStorage createAndCacheRowHeightSumsIfNecessary] + 294 (in AppKit) [0x9506a2de]
    41 -[_NSTableRowHeightStorage _cacheRowHeightsIntoBucket:bucketFirstRowIndex:lastCacheableRowIndex:] + 102 (in AppKit) [0x9506a38e]
    41 -[NSTableView _uncachedRectHeightOfRow:] + 78 (in AppKit) [0x9506a49f]
    41 -[NSOutlineView _sendDelegateHeightOfRow:] + 58 (in AppKit) [0x9506a63a]
    41 -[NSOutlineView itemAtRow:] + 78 (in AppKit) [0x94f0ce61]
    41 _loadItemEntryLazyInfoIfNecessary + 418 (in AppKit) [0x94f0d08a]
    41 -[NSOutlineView _dataSourceIsItemExpandable:] + 125 (in AppKit) [0x94f0d20f]
    41 ??? [0xf95f]
    41 ??? [0xfaa5]
    41 ??? [0xf403]
    41 -[SpecialMailboxUid numberOfVisibleChildren] + 34 (in Message) [0x2ebba2]
    41 +[MailAccount sentMessagesMailboxUids] + 44 (in Message) [0x3dd893]
    41 +[MailAccount _specialMailboxUidsUsingSelector:] + 274 (in Message) [0x3d9838]
    41 ___forwarding__ + 272 (in CoreFoundation) [0x938ed6e0]
    Kernel stack:
    37 usertrap + 853 [0x1a9034]
    36 exceptiontriage + 230 [0x12b77a]
    34 exceptiondeliver + 503 [0x12b43d]
    32 mach_exceptionraise + 179 [0x14993e]
    29 mach_msg_rpc_fromkernel + 290 [0x12d7a1]
    28 ipc_mqueuereceive + 750 [0x120eaa]
    28 threadblock + 33 [0x136ac0]
    18 threadcontinue + 1181 [0x136853]
    7 thread_blockreason + 135 [0x136a1c]
    7 threadsetrun + 3173 [0x135f10]
    7 machineidle + 278 [0x1a2aab]
    3 ml_set_interruptsenabled + 47 [0x1a2389]
    1 ml_set_interruptsenabled + 47 [0x1a2389]
    2 mach_msg_rpc_fromkernel + 185 [0x12d738]
    2 ipc_kmsgsend + 278 [0x12017e]
    2 ipc_mqueuesend + 418 [0x120bb2]
    2 ml_set_interruptsenabled + 47 [0x1a2389]
    1 mach_msg_rpc_fromkernel + 41 [0x12d6a8]
    1 ipc_kmsgalloc + 18 [0x11d909]
    1 mach_msg_rpc_fromkernel + 177 [0x12d730]
    1 mach_msg_rpc_fromkernel + 16 [0x12d68f]
    1 exceptiondeliver + 456 [0x12b40e]
    1 mutexunlock + 252 [0x19adac]
    1 exceptiondeliver + 466 [0x12b418]
    1 _mutexlock + 68 [0x19a934]
    1 exceptiondeliver + 120 [0x12b2be]
    2 loalltraps + 231 [0x19ecd7]
    1 exceptiondeliver + 918 [0x12b5dc]
    1 PE_incominginterrupt + 131 [0x447fe8]
    1 lapicinterrupt + 300 [0x1af7ce]
    1 sync_iss_toiks + 114 [0x1a7fa8]
    Thread id: 69346b0
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 -[RSSInterchange _runManager] + 2140 (in Message) [0x3d3f35]
    41 -[NSRunLoop(NSRunLoop) run] + 84 (in Foundation) [0x915475c4]
    41 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213 (in Foundation) [0x9153b4a5]
    41 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x9386ecf8]
    41 mach_msgtrap + 10 (in libSystem.B.dylib) [0x961b74a6]
    Thread id: 85b0998
    User stack:
    41 __workqops + 10 (in libSystem.B.dylib) [0x9622107a]
    Thread id: 76d8000
    User stack:
    41 ??? [0x0]
    Thread id: 70447d8
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 fe_fragmentthread + 54 (in QuartzCore) [0x96aa5e51]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]
    Thread id: 805b000
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __Z22CFURLCacheWorkerThreadPv + 396 (in CFNetwork) [0x92071a32]
    41 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x9386ecf8]
    41 mach_msgtrap + 10 (in libSystem.B.dylib) [0x961b74a6]
    Thread id: 805b790
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320 (in Foundation) [0x9156a460]
    41 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x9386ecf8]
    41 mach_msgtrap + 10 (in libSystem.B.dylib) [0x961b74a6]
    Thread id: 85afa78
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 -[InvocationQueue _drainQueue] + 772 (in Message) [0x3d5fbe]
    41 -[MonitoredInvocation invoke] + 409 (in Message) [0x3d63dc]
    41 -[NSInvocation invoke] + 136 (in CoreFoundation) [0x938ed468]
    41 __invoking__ + 29 (in CoreFoundation) [0x938eda7d]
    41 -[IMAPAccount fetchSynchronouslyIsAuto:] + 186 (in Message) [0x437051]
    41 -[MailAccount todosMailboxUidCreateIfNeeded:] + 87 (in Message) [0x3d0ce1]
    41 -[IMAPAccount _specialMailboxUidWithType:create:] + 89 (in Message) [0x3cdb29]
    41 -[IMAPAccount _specialMailboxUidWithType:create:isLocal:] + 271 (in Message) [0x3cdde2]
    41 -[IMAPAccount mailboxUidForRelativePath:create:] + 497 (in Message) [0x3cd41f]
    41 -[MailAccount mailboxUidForRelativePath:create:] + 252 (in Message) [0x3c4c92]
    41 __MFAcquireObjectLock + 66 (in Message) [0x2dfbc0]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]
    Thread id: 85afe40
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 -[InvocationQueue _drainQueue] + 772 (in Message) [0x3d5fbe]
    41 -[MonitoredInvocation invoke] + 464 (in Message) [0x3d6413]
    41 -[ActivityMonitor postActivityFinished] + 363 (in Message) [0x3d6f9c]
    41 -[NSNotificationCenter postNotificationName:object:] + 56 (in Foundation) [0x9150cff8]
    41 ??? [0x3910]
    41 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128 (in Foundation) [0x915037b0]
    41 __CFXNotificationPostNotification + 179 (in CoreFoundation) [0x9384fd93]
    41 _CFXNotificationPost + 362 (in CoreFoundation) [0x9384faba]
    41 _nsnotecallback + 106 (in Foundation) [0x9150654a]
    41 ??? [0x3928f]
    41 ??? [0x2a9ab]
    41 -[POPAccount primaryMailboxUid] + 57 (in Message) [0x43c6b9]
    41 -[MailAccount mailboxUidForRelativePath:create:] + 252 (in Message) [0x3c4c92]
    41 __MFAcquireObjectLock + 66 (in Message) [0x2dfbc0]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]
    Thread id: 7b03410
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 -[InvocationQueue _drainQueue] + 772 (in Message) [0x3d5fbe]
    41 -[MonitoredInvocation invoke] + 464 (in Message) [0x3d6413]
    41 -[ActivityMonitor postActivityFinished] + 363 (in Message) [0x3d6f9c]
    41 -[NSNotificationCenter postNotificationName:object:] + 56 (in Foundation) [0x9150cff8]
    41 ??? [0x3910]
    41 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128 (in Foundation) [0x915037b0]
    41 __CFXNotificationPostNotification + 179 (in CoreFoundation) [0x9384fd93]
    41 _CFXNotificationPost + 362 (in CoreFoundation) [0x9384faba]
    41 _nsnotecallback + 106 (in Foundation) [0x9150654a]
    41 ??? [0x3928f]
    41 ??? [0x2a9ab]
    41 -[POPAccount primaryMailboxUid] + 57 (in Message) [0x43c6b9]
    41 -[MailAccount mailboxUidForRelativePath:create:] + 252 (in Message) [0x3c4c92]
    41 __MFAcquireObjectLock + 66 (in Message) [0x2dfbc0]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]
    Thread id: 85b1c80
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 -[InvocationQueue _drainQueue] + 772 (in Message) [0x3d5fbe]
    41 -[MonitoredInvocation invoke] + 464 (in Message) [0x3d6413]
    41 -[ActivityMonitor postActivityFinished] + 363 (in Message) [0x3d6f9c]
    41 -[NSNotificationCenter postNotificationName:object:] + 56 (in Foundation) [0x9150cff8]
    41 ??? [0x3910]
    41 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128 (in Foundation) [0x915037b0]
    41 __CFXNotificationPostNotification + 179 (in CoreFoundation) [0x9384fd93]
    41 _CFXNotificationPost + 362 (in CoreFoundation) [0x9384faba]
    41 _nsnotecallback + 106 (in Foundation) [0x9150654a]
    41 ??? [0x3928f]
    41 ??? [0x2a9ab]
    41 -[POPAccount primaryMailboxUid] + 57 (in Message) [0x43c6b9]
    41 -[MailAccount mailboxUidForRelativePath:create:] + 252 (in Message) [0x3c4c92]
    41 __MFAcquireObjectLock + 66 (in Message) [0x2dfbc0]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]
    Thread id: 85b0208
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 -[IMRemoteObjectBroadcaster _workerThread] + 246 (in IMUtils) [0x94df2dc7]
    41 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x9386ecf8]
    41 mach_msgtrap + 10 (in libSystem.B.dylib) [0x961b74a6]
    Thread id: 792d6b0
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 +[_NSSocket _runIOThread] + 98 (in Message) [0x2f910d]
    41 -[NSRunLoop(NSRunLoop) run] + 84 (in Foundation) [0x915475c4]
    41 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213 (in Foundation) [0x9153b4a5]
    41 _CFRunLoopRunInMode + 88 (in CoreFoundation) [0x9386ecf8]
    41 mach_msgtrap + 10 (in libSystem.B.dylib) [0x961b74a6]
    Thread id: 85aeb58
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _select + 10 (in libSystem.B.dylib) [0x962075e2]
    Thread id: 85ae790
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 +[WorkerThread _execute:] + 144 (in Message) [0x3d729e]
    41 -[MonitoredInvocation invoke] + 409 (in Message) [0x3d63dc]
    41 -[NSInvocation invoke] + 136 (in CoreFoundation) [0x938ed468]
    41 __invoking__ + 29 (in CoreFoundation) [0x938eda7d]
    41 ??? [0x386de]
    41 ??? [0x17ea4c4b]
    41 ??? [0x17ea5013]
    41 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 184 (in Foundation) [0x9155a9b8]
    41 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 938 (in Foundation) [0x9150739a]
    41 -[NSCondition wait] + 210 (in Foundation) [0x9154ea02]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]
    Thread id: 85af6b0
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 +[WorkerThread _execute:] + 144 (in Message) [0x3d729e]
    41 -[MonitoredInvocation invoke] + 409 (in Message) [0x3d63dc]
    41 -[NSInvocation invoke] + 136 (in CoreFoundation) [0x938ed468]
    41 __invoking__ + 29 (in CoreFoundation) [0x938eda7d]
    41 -[LibraryThread _runThread] + 403 (in Message) [0x366bd7]
    41 -[ActivityMonitor addActivityTarget:] + 407 (in Message) [0x367332]
    41 ??? [0x3910]
    41 -[NSNotificationCenter postNotificationName:object:userInfo:] + 128 (in Foundation) [0x915037b0]
    41 __CFXNotificationPostNotification + 179 (in CoreFoundation) [0x9384fd93]
    41 _CFXNotificationPost + 362 (in CoreFoundation) [0x9384faba]
    41 _nsnotecallback + 106 (in Foundation) [0x9150654a]
    41 ??? [0xd826c]
    41 -[MailboxUid tildeAbbreviatedPath] + 62 (in Message) [0x2f0441]
    41 -[MailAccount tildeAbbreviatedPath] + 47 (in Message) [0x3c086f]
    41 __MFAcquireObjectLock + 66 (in Message) [0x2dfbc0]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]
    Thread id: 8c18ba0
    User stack:
    41 threadstart + 34 (in libSystem.B.dylib) [0x961e85b2]
    41 _pthreadstart + 321 (in libSystem.B.dylib) [0x961e86f5]
    41 __NSThread__main_ + 308 (in Foundation) [0x91506ac4]
    41 -[NSThread main] + 45 (in Foundation) [0x91506f1d]
    41 -[InvocationQueue _drainQueue] + 772 (in Message) [0x3d5fbe]
    41 -[MonitoredInvocation invoke] + 409 (in Message) [0x3d63dc]
    41 -[NSInvocation invoke] + 136 (in CoreFoundation) [0x938ed468]
    41 __invoking__ + 29 (in CoreFoundation) [0x938eda7d]
    41 -[IMAPAccount _fetchUnreadCountsCheckForNewMessages:] + 1014 (in Message) [0x3386a6]
    41 +[MailAccount mailboxUidForURL:] + 49 (in Message) [0x2f2fdb]
    41 +[MailAccount mailboxUidForURL:forceCreation:] + 299 (in Message) [0x2f310e]
    41 +[MailAccount infoForURL:] + 54 (in Message) [0x2f320b]
    41 +[MailAccount _accountForURL:includeInactiveAccounts:] + 166 (in Message) [0x2f32cf]
    41 +[MailAccount mailAccounts] + 38 (in Message) [0x3bf475]
    41 __MFAcquireObjectLock + 66 (in Message) [0x2dfbc0]
    41 __semwaitsignal + 10 (in libSystem.B.dylib) [0x961be68e]

    First of all, don't be trying random solutions unless you know what you're doing and why; you'll create a lot of trouble for yourself, and often it can't be fixed without a radical, time-consuming solution.
    You seem to have httpmail running as a Bundle for Mail; disable it and then try starting Mail again to see if that resolves the problem. If so, that means you'll have to delete it, since it is conflicting with Mail and will cause it to hang or crash.
    Mulder

  • Firefox hangs after a few seconds

    When I open a site like Youtube or some livestreams, Firefox quits working after a few seconds. I can only close it with Task Manager.
    I've tried all possibilities from Firefox help, nothing works. The problem seems not to depend on any configurations, Add-Ons or Plugins.
    I've deleted Malware and also tried de-installation and new installation, but the problem is still on board.
    I hope anyone can help me :-(

    i have the same problem..... and i still waiting for an answer...

  • Why does Firefox hang after a few minutes connected using ATT on a USB antennae, but IE continues to stay connected??

    I've used a USB interface to connect to the internet for several years without a problem. Last month our Alltel account was sold to ATT. They sent us a new USB device, and it works for about 5 minutes, but then Firefox will just hang, and not reload the page, or any page, until we disconnect and then reconnect. On a whim I tried connecting using IE when I was locked up on Firefox, and the connection worked fine. Until then I was blaming ATT, but now I think it is a Firefox issue.

    hello, maybe that's an issue with hardware acceleration - please try [[Upgrade your graphics drivers to use hardware acceleration and WebGL|updating your graphics driver]], or in case this doesn't solve the issue or there is no new version available at the moment, disable hardware acceleration in the firefox ''menu ≡ > options > advanced > general'' (that setting will take a restart of the browser to take effect).

  • Firefox hangs after a few hours. The task manager shows it using 50% of the time, and I don't see where it's doing anything. What is going on?

    It will not respond to any mouse clicks or key presses. I use the task manager to shut it down. When I restart, I select the option to restart Firefox with the same tabs and it does that and runs fine for a few hours and then it hangs again.

    iPhones are not user servicable.
    Take the device to a competent repair person or buy a new one.

  • Weblogic hangs after running few hours

    Hi!
    We have encountered the following errors with Oracle when runing weblogic
    for few hours. What should we do in order to identify the problem?
    Wed Feb 14 14:48:19 CST 2001:<I> <VCBOProductMgr::updateTransactionStatus>
    Updating status of transaction TAC2001021411100000350
    Wed Feb 14 14:48:19 CST 2001:<I> <TX> Exception during commit for a single
    resource. Transaction = TxC (1911283416, xid = 982068338574_239, timeout =
    300, txState = Rolledback, root = null
    Wed Feb 14 14:48:19 CST 2001:<E> <Adapter> Exception thrown by rmi server:
    [4151517674918611947S192.168.7.13:[7001,7001,7002,7002,7001,-1]/263]
    Wed Feb 14 15:10:56 CST 2001:<I> <TX> Transaction (TxC (-343122239, xid =
    982068338574_253, timeout = 60, txState = Marked Rollback, root = null)
    rolled back after 60 sec.
    Wed Feb 14 15:10:56 CST 2001:<I> <TX> java.sql.SQLException: Io exception:
    There is no process to read data written to a pipe.
    Wed Feb 14 15:11:10 CST 2001:<I> <TX> Transaction (TxC (1882185409, xid =
    982068338574_254, timeout = 60, txState = Marked Rollback, root = null)
    rolled back after 60 sec.
    Wed Feb 14 15:11:10 CST 2001:<I> <TX> java.sql.SQLException: Io exception:
    There is no process to read data written to a pipe.
    System Configuration:
    AIX 4.3
    IBM JDK 1.2.2
    Oracle JDBC 8.1.6 Thin Driver
    Thanks!
    Regards,
    Yew Yap

    hi!
    If I use DriverManager to get my connection, will it still inherit the
    transaction attributes defined in EJB? Will it auto-commit?
    Thanks!
    Regards
    Yew Yap
    "Rob Woollen" <[email protected]> wrote in message
    news:<[email protected]>...
    You are deadlocking because you are using DriverManager to get your
    database connections. Unfortunately, it is prone to deadlock and should
    be avoided.>
    An easy temporary work-around is to set your initial number of db
    connections equal to your max number of connections. In general, this
    is a good idea for production systems, and it will avoid your deadlock.>
    You should either get the db connection from a DataSource or use
    java.sql.Driver.connect. They are not synchronized like DriverManager.>
    -- Rob>
    Goh Yew Yap wrote:>>
    hi!>>
    here is it.>>
    "Adam Messinger" <[email protected]> wrote in message
    news:[email protected]...
    Goh,>>>
    From the exceptions it appears to me as though the JDBC driver isthrowing
    exceptions, perhaps because the Oracle listener is dying. It is alittle
    hard to tell what is causing the hang without a thread dump though.Could
    you generate one and post it here?>>>
    Regards,>>>
    Adam>>>
    >>>
    >>
    Wed Feb 14 18:07:33 2001>>
    SIGQUIT received at 0 in .
    Current Thread Details
    ---------------------->>
    "Signal dispatcher" (TID:0x800337a8, sys_thread_t:0x300d8c28,state:CW, native ID:0x102) prio=5
    >>
    ----- Native Stack -----
    at 0xd0012264 in pthreadevent_wait
    at 0xd000e2b4 in condwait_local
    at 0xd000e68c in condwait
    at 0xd000f2f4 in pthread_cond_wait
    at 0xd1a20ab8 in condvarWait
    at 0xd1a26720 in sigMonitorWait
    at 0xd1a26ab4 in sysSignalWait
    at 0xd198934c in sigthread
    at 0xd1986fec in xmSaveStackBase
    at 0xd1a20c68 in _start
    at 0xd00081fc in pthreadbody
    unable to backtrace through native code - iar 0x0 not in textarea (sp is 0x301a1110)
    >>
    ----- Monitors Held -----
    Monitor Cache lock
    Monitor Registry lock
    Thread queue lock>
    J2RE 1.2.2 IBM build ca122-20000915>>
    Operating Environment
    Host : sist1:192.168.3.16
    OS Level : AIX 4.3.3.0
    Processors -
    Architecture : POWER_PC (impl: unknown, ver: unknown)
    How Many : 2
    Enabled : 2>>
    User Limits (in bytes except for NOFILE and NPROC) -
    RLIMIT_FSIZE : 1073741312
    RLIMIT_DATA : 1342177280
    RLIMIT_STACK : 33554432
    RLIMIT_CORE : 1073741312
    RLIMIT_NOFILE : 2000
    NPROC(max) : 128>>
    Page Space (in blocks) -
    /dev/hd6: size=131072, free=130351>>
    Application Environment
    Signal Handlers -
    SIGHUP : ignored
    SIGINT : ignored
    SIGQUIT : intrDispatchMD (libhpi.a)
    SIGILL : intrDispatchMD (libhpi.a)
    SIGTRAP : unknown handler (libjitc.a)
    SIGABRT : intrDispatchMD (libhpi.a)
    SIGEMT : intrDispatchMD (libhpi.a)
    SIGFPE : intrDispatchMD (libhpi.a)
    SIGBUS : intrDispatchMD (libhpi.a)
    SIGSEGV : intrDispatchMD (libhpi.a)
    SIGSYS : intrDispatchMD (libhpi.a)
    SIGPIPE : ignored
    SIGUSR1 : sigusr1Handler (libhpi.a)
    SIGUSR2 : unknown handler (libjitc.a)
    Environment Variables -
    _=/usr/java_dev2/jre/sh/../bin/java
    LANG=en_US
    LOGIN=weblogic
    NLSPATH=/usr/lib/nls/msg/%L/%N:/usr/lib/nls/msg/%L/%N.cat
    IMQCONFIGCL=/etc/IMNSearch/dbcshelp>>
    PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:/home/weblogic/bin:/usr/bin/X11:/sbin:
    /weblogic/bin:/oracle/bin:/weblogic:/weblogic/ldap:.
    ORACLE_BASE=/oracle
    LC__FASTMSG=true
    CGI_DIRECTORY=/var/docsearch/cgi-bin
    IMQCONFIGSRV=/etc/IMNSearch
    EDITOR=vi
    LOGNAME=weblogic
    MAIL=/usr/spool/mail/weblogic
    LOCPATH=/usr/lib/nls/loc
    ORACLE_SID=vcheq
    PS1=weblogic$
    DOCUMENT_SERVER_MACHINE_NAME=localhost
    USER=weblogic
    AUTHSTATE=compat
    SHELL=/usr/bin/ksh
    ODMDIR=/etc/objrepos
    JAVAHOME=/usr/java_dev2/jre/sh/..
    DOCUMENT_SERVER_PORT=49213
    XFILESEARCHPATH=/usr/java_dev2/jre/sh/../lib/locale/%L/%T/%N%S:
    HOME=/home/weblogic
    TERM=vt100
    MAILMSG=[YOU HAVE NEW MAIL]
    ORACLE_HOME=/oracle
    PWD=/weblogic
    DOCUMENT_DIRECTORY=/usr/docsearch/html
    TZ=TAIST-8
    AIXTHREAD_SCOPE=S
    A__z=! LOGNAME>>
    LIBPATH=/usr/java_dev2/jre/sh/../bin:/usr/java_dev2/jre/sh/../bin/classic::/
    weblogic/lib/aix:/weblogic/lib/aix
    >>
    Loaded Libraries (sizes in bytes)
    /weblogic/lib/aix/libmuxer.so
    filesize : 18471
    text start : d1c09000
    text size : 2cc7
    data start : 31f44200
    data size : 168
    /usr/java_dev2/jre/bin/libmath.a
    filesize : 65667
    text start : d1bfe000
    text size : aeb3
    data start : 30c42fa8
    data size : 3ac
    /usr/java_dev2/jre/bin/libnet.a
    filesize : 51753
    text start : d1bf6000
    text size : 7b8f
    data start : 30c413a8
    data size : 338
    /usr/java_dev2/jre/bin/libjitc.a
    filesize : 2199966
    text start : d1a3d000
    text size : 1b8600
    data start : 30284580
    data size : c954
    /usr/lib/libiconv.a
    filesize : 377832
    text start : d0034100
    text size : 13f3a
    data start : f011fda0
    data size : a574
    /usr/lib/libi18n.a
    filesize : 122287
    text start : d002c100
    text size : 7834
    data start : f017d440
    data size : 1114
    /usr/lib/nls/loc/en_US
    filesize : 14340
    text start : d0026000
    text size : 2d71
    data start : d0029130
    data size : 2324
    /usr/java_dev2/jre/sh/../bin/libzip.a
    filesize : 102070
    text start : d1a2a000
    text size : 127ec
    data start : 300812f8
    data size : 1ea0
    /usr/java_dev2/jre/sh/../bin/libhpi.a
    filesize : 83039
    text start : d1a1f000
    text size : a38e
    data start : 3003fc98
    data size : b5c
    /usr/java_dev2/jre/sh/../bin/libxhpi.a
    filesize : 8871
    text start : d1a1e000
    text size : f29
    data start : 3003e948
    data size : 1a8
    /usr/java_dev2/jre/sh/../bin/libjava.a
    filesize : 366095
    text start : d19e4000
    text size : 39f86
    data start : 30037508
    data size : 6428
    /usr/java_dev2/jre/sh/../bin/classic/libjvm.a
    filesize : 1295285
    text start : d1906000
    text size : dde9e
    data start : 30011340
    data size : 252e0
    /usr/lib/libdl.a
    filesize : 5248
    text start : d0a7f0f8
    text size : 1e0
    data start : f02560f8
    data size : 0
    /usr/lib/libbsd.a
    filesize : 62186
    text start : d00cf4e0
    text size : 7deb
    data start : f00f6b28
    data size : 1460
    /usr/lpp/xlC/lib/libC.a
    filesize : 2610937
    text start : d07ed360
    text size : 5982
    data start : f01cf760
    data size : a08
    /usr/lpp/xlC/lib/libC.a
    filesize : 2610937
    text start : d0779660
    text size : 5fca
    data start : f01ce460
    data size : 83c
    /usr/lpp/xlC/lib/libC.a
    filesize : 2610937
    text start : d07807c0
    text size : 6c174
    data start : f01bbdc0
    data size : 113c4
    /usr/lpp/xlC/lib/libC.a
    filesize : 2610937
    text start : d076d070
    text size : b756
    data start : f01ba31c
    data size : 1c
    /usr/lib/libpthreads.a
    filesize : 712412
    text start : d0001000
    text size : 2290
    data start : f006f000
    data size : 41004
    /usr/lib/libpthreads.a
    filesize : 712412
    text start : d0004000
    text size : 20174
    data start : f00b1000
    data size : 400c
    /usr/lpp/xlC/lib/libC.a
    filesize : 2610937
    text start : d0739100
    text size : 33653
    data start : f01b5d00
    data size : 411c
    /usr/lib/libcrypt.a
    filesize : 11167
    text start : d00250f8
    text size : 87a
    data start : f006e528
    data size : 13c
    /usr/lib/libc.a
    filesize : 6367431
    text start : d0163720
    text size : 1c0845
    data start : f0000da0
    data size : 6d108>>
    "HighPriority TimeEventGenerator" (TID:0x828c68c0,sys_thread_t:0x31df64d8, state:CW, native ID:0x191d) prio=9
    at java.lang.Object.wait(Native Method)
    atweblogic.time.common.internal.TimeTable.snooze(TimeTable.java(Compiled
    Code))
    atweblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java
    :141)
    at java.lang.Thread.run(Thread.java:481)>>
    ----- Native Stack -----
    at 0xd01f0450 in gettimeofday
    at 0xd0012264 in pthreadevent_wait
    at 0xd000e188 in condwait_local
    at 0xd000e68c in condwait
    at 0xd000f058 in pthread_cond_timedwait
    at 0xd1a20978 in condvarTimedWait
    at 0xd1a230bc in sysMonitorWait
    at 0xd1998e28 in lkMonitorWait
    at 0xd1929d70 in JVM_MonitorWait
    unable to backtrace through native code - iar 0x31f240b8 not intext area (sp is 0x31eb1b9c)
    >>
    ----- Monitors Held ----->
    ------------------------------------------------------------------------->>
    "SSLListenThread" (TID:0x80032d28, sys_thread_t:0x31218bd8, state:R,native ID:0x181c) prio=5
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:414)
    at java.net.ServerSocket.implAccept(ServerSocket.java:242)
    at java.net.ServerSocket.accept(ServerSocket.java:226)
    atweblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLServerSocket.java
    :121)
    atweblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:112)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)>>
    ----- Native Stack -----
    at 0xd1a251b0 in sysAccept
    at 0xd191fb90 in JVM_Accept
    at 0xd1bfafa0 in Java_java_net_PlainSocketImpl_socketAccept
    at 0xd193bda4 in mmisInvoke_O_VHelper
    at 0xd193da88 in entryCmp
    unable to backtrace through native code - iar 0x3000c268 not intext area (sp is 0x3001d818)
    >>
    ----- Monitors Held -----
    (flat) java.net.PlainSocketImpl@8287E490/8287E498>
    ------------------------------------------------------------------------->>
    "ListenThread" (TID:0x80032dd0, sys_thread_t:0x31218958, state:R,native ID:0x171b) prio=5
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:414)
    at java.net.ServerSocket.implAccept(ServerSocket.java:242)
    at java.net.ServerSocket.accept(ServerSocket.java:226)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:277)>>
    ----- Native Stack -----
    at 0xd1a251b0 in sysAccept
    at 0xd191fb90 in JVM_Accept
    at 0xd1bfafa0 in Java_java_net_PlainSocketImpl_socketAccept
    at 0xd193bda4 in mmisInvoke_O_VHelper
    at 0xd193da88 in entryCmp
    unable to backtrace through native code - iar 0x0 not in textarea (sp is 0x3134b120)
    >>
    ----- Monitors Held -----
    (flat) java.net.PlainSocketImpl@8287CC50/8287CC58>
    ------------------------------------------------------------------------->>
    "NBExecuteThread-1" (TID:0x80032e68, sys_thread_t:0x308a3988,state:CW, native ID:0x1617) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    atweblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)>>
    ----- Native Stack -----
    at 0xd0012264 in pthreadevent_wait
    at 0xd000e2b4 in condwait_local
    at 0xd000e68c in condwait
    at 0xd000f2f4 in pthread_cond_wait
    at 0xd1a20ab8 in condvarWait
    at 0xd1a230a0 in sysMonitorWait
    at 0xd1998e28 in lkMonitorWait
    at 0xd1929d70 in JVM_MonitorWait
    at 0xd193f544 in sysInvokeNative
    at 0xd1939b2c in mmisInvokeJniMethodHelper
    at 0xd19305e8 in ThreadCPUTimeMillis
    unable to backtrace through native code - iar 0x0 not in textarea (sp is 0x30e2e60c)
    >>
    ----- Monitors Held ----->
    ------------------------------------------------------------------------->>
    "NBExecuteThread-0" (TID:0x80032ed8, sys_thread_t:0x308a3478,state:CW, native ID:0x1516) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:426)
    atweblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)>>
    ----- Native Stack -----
    at 0xd0012264 in pthreadevent_wait
    at 0xd000e2b4 in condwait_local
    at 0xd000e68c in condwait
    at 0xd000f2f4 in pthread_cond_wait
    at 0xd1a20ab8 in condvarWait
    at 0xd1a230a0 in sysMonitorWait
    at 0xd1998e28 in lkMonitorWait
    at 0xd1929d70 in JVM_MonitorWait
    at 0xd193f544 in sysInvokeNative
    at 0xd1939b2c in mmisInvokeJniMethodHelper
    at 0xd19305e8 in ThreadCPUTimeMillis
    unable to backtrace through native code - iar 0x0 not in textarea (sp is 0x30de840c)
    >>
    ----- Monitors Held ----->
    ------------------------------------------------------------------------->>
    "ExecuteThread-14" (TID:0x80032f48, sys_thread_t:0x30871a78,state:CW, native ID:0x1415) prio=5
    atjava.sql.DriverManager.getConnection(DriverManager.java(Compiled Code))
    at com.vcheq.tjs.TJSRemove.remove(TJSRemove.java:56)
    atcom.vcheq.transaction.VCDOTransactionEJB.deletePostDatedTransaction(VCDOTran
    sactionEJB.java:1408)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl.deletePostDatedTransaction(VC
    DOTransactionEJBEOImpl.java:155)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl_WLSkel.invoke(VCDOTransaction
    EJBEOImpl_WLSkel.java:75)
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestDispatcher.dispatch(BasicRequestDispatch
    er.java(Compiled Code))
    atweblogic.rmi.internal.ServerRequest.sendOneWay(ServerRequest.java:73)
    atweblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:77)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl_WLStub.deletePostDatedTransac
    tion(VCDOTransactionEJBEOImpl_WLStub.java:193)
    atcom.vcheq.transaction.VCBOProductMgrEJB.deletePostDatedTransaction(VCBOProdu
    ctMgrEJB.java:475)
    atcom.vcheq.transaction.VCBOProductMgrEJBEOImpl.deletePostDatedTransaction(VCB
    OProductMgrEJBEOImpl.java:142)
    atcom.vcheq.transaction.VCBOProductMgrEJBEOImpl_WLSkel.invoke(VCBOProductMgrEJ
    BEOImpl_WLSkel.java:75)
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java(Compiled Code))
    atweblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)>>
    ----- Native Stack -----
    at 0xd0012264 in pthreadevent_wait
    at 0xd000e2b4 in condwait_local
    at 0xd000e68c in condwait
    at 0xd000f2f4 in pthread_cond_wait
    at 0xd1a20ab8 in condvarWait
    at 0xd1a230a0 in sysMonitorWait
    at 0xd1999500 in lkMonitorEnter
    unable to backtrace through native code - iar 0x30291804 not intext area (sp is 0x30da1cac)
    >>
    ----- Monitors Held ----->>
    ----- Blocked On -----
    java.lang.Class@80016588/80016590>
    ------------------------------------------------------------------------->>
    "ExecuteThread-13" (TID:0x80032fb8, sys_thread_t:0x3085b3b8,state:R, native ID:0x1314) prio=5
    at java.net.SocketInputStream.socketRead(Native Method)
    atjava.net.SocketInputStream.read(SocketInputStream.java(Compiled Code))
    atweblogic.socket.JavaSocketMuxer.processSockets(JavaSocketMuxer.java:209)
    atweblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)>>
    ----- Native Stack -----
    at 0xd1a24ba8 in sysTimeout
    at 0xd191fcc0 in JVM_Timeout
    at 0xd1bfb608 in Java_java_net_SocketInputStream_socketRead
    unable to backtrace through native code - iar 0x311ebec0 not intext area (sp is 0x30d5bf8c)
    >>
    ----- Monitors Held ----->
    ------------------------------------------------------------------------->>
    "ExecuteThread-12" (TID:0x80033028, sys_thread_t:0x3085b158,state:CW, native ID:0x1213) prio=5
    atjava.sql.DriverManager.registerDriver(DriverManager.java(Compiled Code))
    atcom.vcheq.common.VCEnvironment.getProfileConnection(VCEnvironment.java(Compi
    led Code))
    atcom.vcheq.common.VCEnvironment.getBankGMT(VCEnvironment.java:574)
    atcom.vcheq.transaction.VCDOTransactionEJB.submitTransaction(VCDOTransactionEJ
    B.java:690)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl.submitTransaction(VCDOTransac
    tionEJBEOImpl.java:245)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl_WLSkel.invoke(VCDOTransaction
    EJBEOImpl_WLSkel.java:97)
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestDispatcher.dispatch(BasicRequestDispatch
    er.java(Compiled Code))
    atweblogic.rmi.internal.ServerRequest.sendOneWay(ServerRequest.java:73)
    atweblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:77)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl_WLStub.submitTransaction(VCDO
    TransactionEJBEOImpl_WLStub.java:252)
    atcom.vcheq.transaction.VCBOProductMgrEJB.submitTransaction(VCBOProductMgrEJB.
    java:123)
    atcom.vcheq.transaction.VCBOProductMgrEJBEOImpl.submitTransaction(VCBOProductM
    grEJBEOImpl.java:99)
    atcom.vcheq.transaction.VCBOProductMgrEJBEOImpl_WLSkel.invoke(VCBOProductMgrEJ
    BEOImpl_WLSkel.java:97)
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java(Compiled Code))
    atweblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)>>
    ----- Native Stack -----
    unable to backtrace through native code - iar 0x30d156b4 not intext area (sp is 0x30d154fc)
    >>
    ----- Monitors Held ----->>
    ----- Blocked On -----
    java.lang.Class@80016588/80016590>
    ------------------------------------------------------------------------->>
    "ExecuteThread-11" (TID:0x80033098, sys_thread_t:0x3085aef8,state:CW, native ID:0x1112) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    atweblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)>>
    ----- Native Stack -----
    unable to backtrace through native code - iar 0x3001c350 not intext area (sp is 0x30ccf8ec)
    >>
    ----- Monitors Held ----->
    ------------------------------------------------------------------------->>
    "ExecuteThread-10" (TID:0x80033108, sys_thread_t:0x3085ac98,state:CW, native ID:0x1011) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    atweblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)>>
    ----- Native Stack -----
    unable to backtrace through native code - iar 0x3001c350 not intext area (sp is 0x30c896ec)
    >>
    ----- Monitors Held ----->
    ------------------------------------------------------------------------->>
    "ExecuteThread-9" (TID:0x80033178, sys_thread_t:0x30852598, state:R,native ID:0xf10) prio=5
    at java.net.SocketInputStream.socketRead(Native Method)
    atjava.net.SocketInputStream.read(SocketInputStream.java(Compiled Code))
    at oracle.net.ns.Packet.receive(Unknown Source)
    at oracle.net.ns.NSProtocol.connect(Unknown Source)
    at oracle.jdbc.ttc7.TTC7Protocol.connect(TTC7Protocol.java:1139)
    at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:199)
    atoracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:200)
    atoracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:251)
    atoracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    atjava.sql.DriverManager.getConnection(DriverManager.java(Compiled Code))
    atjava.sql.DriverManager.getConnection(DriverManager.java(Compiled Code))
    at com.vcheq.tjs.TJSRemove.remove(TJSRemove.java:56)
    atcom.vcheq.transaction.VCDOTransactionEJB.deletePostDatedTransaction(VCDOTran
    sactionEJB.java:1408)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl.deletePostDatedTransaction(VC
    DOTransactionEJBEOImpl.java:155)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl_WLSkel.invoke(VCDOTransaction
    EJBEOImpl_WLSkel.java:75)
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestDispatcher.dispatch(BasicRequestDispatch
    er.java(Compiled Code))
    atweblogic.rmi.internal.ServerRequest.sendOneWay(ServerRequest.java:73)
    atweblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:77)
    atcom.vcheq.transaction.VCDOTransactionEJBEOImpl_WLStub.deletePostDatedTransac
    tion(VCDOTransactionEJBEOImpl_WLStub.java:193)
    atcom.vcheq.transaction.VCBOProductMgrEJB.deletePostDatedTransaction(VCBOProdu
    ctMgrEJB.java:475)
    atcom.vcheq.transaction.VCBOProductMgrEJBEOImpl.deletePostDatedTransaction(VCB
    OProductMgrEJBEOImpl.java:142)
    atcom.vcheq.transaction.VCBOProductMgrEJBEOImpl_WLSkel.invoke(VCBOProductMgrEJ
    BEOImpl_WLSkel.java:75)
    atweblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAda
    pter.java(Compiled Code))
    atweblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandle
    r.java(Compiled Code))
    atweblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:1
    5)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)>>
    ----- Native Stack -----
    at 0xd1a24ddc in sysRecv
    at 0xd191fd8c in JVM_Recv
    at 0xd1bfb714 in Java_java_net_SocketInputStream_socketRead
    unable to backtrace through native code - iar 0x311ebec0 not intext area (sp is 0x30c1f078)
    >>
    ----- Monitors Held -----
    (flat) java.lang.Class@80016588/80016590
    (flat) oracle.jdbc.ttc7.TTC7Protocol@827B72B0/827B72B8>
    ------------------------------------------------------------------------->>
    "ExecuteThread-8" (TID:0x800331e8, sys_thread_t:0x30852338,state:CW, native ID:0xe0f) prio=5
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java(Compiled Code))
    atweblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java(Compiled
    Code))
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)>>
    ----- Native Stack -----
    unable to backtrace through native code - iar 0x800331e8 not intext area (sp is 0x30bda3fc)
    >>
    ----- Monitors Held ----->
    ------------------------------------------------------------------------->>
    "ExecuteThread-7" (TID:0x80033258, sys_thread_t:0x308520d8,state:CW, native ID:0xd0e) prio=5
    at java.lang.Object.wait(Native Method)

  • [SOLVED]Boot hang after recent updating issues

    I am having issues after the last update. First, I made a mistake of holding back the filesystem package. Because of this (at least I think so) I was having an error that said it could not boot because at boot it said "/sbin/init does not exist". I solved this by upgrading the filesystem package by chrooting from a live arch usb. Now I am having an issue where my system hangs at boot, I believe it is right after systemd runs fsck although I might be wrong. But after maybe 5 minutes it just starts as usual... my ususal boot time is less than a minute. What should I do?
    This is from a thread i accidentally hijacked:
    cfr wrote:
    Try systemctl --failed and or examine the journal for clues.
    Post fstab. Are all of the disks referred to there available when you boot? If systemd can't find them, it will basically wait until it times out and I think that's about 5 minutes and then it will continue booting (assuming it isn't missing anything critical, of course).
    My fstab:
    # /etc/fstab: static file system information
    # <file system> <dir> <type> <options> <dump> <pass>
    # /dev/sda6
    UUID=5dc84b70-a9f9-42eb-981c-40e84f7e9e75 / ext4 rw,relatime,data=ordered 0 1
    # /dev/sda6
    UUID=5dc84b70-a9f9-42eb-981c-40e84f7e9e75 / ext4 rw,relatime,data=ordered 0 1
    # /dev/sda5
    UUID=f7bccd4f-4b47-4dbb-a8f8-d8e374bb9867 /home ext4 rw,relatime,data=ordered 0 2
    # /dev/sda7
    UUID=07dcd099-50c4-4c35-a102-10a39b74ac0b none swap defaults 0 0
    Would deleting the second /dev/sda6 fix it?
    Last edited by life_enjoyer (2013-06-10 20:24:14)

    Thanks jasonwryan So my exact boot time was 1 minute and 34.151 seconds (which is not unbearable but like i said it used to be in a matter of seconds)... The kernel took  2.790 seconds and userspace took 1 minute and 31.361 Output of systemd-analyze blame :
    922ms systemd-logind.service
    832ms systemd-modules-load.service
    774ms systemd-fsck@dev-disk-by\x2duuid-f7bccd4f\x2d4b47\x2d4dbb\x2da8f8\x2dd8e374bb9867.service
    614ms udisks2.service
    545ms dev-mqueue.mount
    509ms sys-kernel-debug.mount
    499ms dev-hugepages.mount
    499ms systemd-udev-trigger.service
    497ms systemd-vconsole-setup.service
    478ms systemd-remount-fs.service
    477ms tmp.mount
    439ms systemd-tmpfiles-setup-dev.service
    365ms dhcpcd.service
    218ms temp-links-catalyst.service
    192ms upower.service
    169ms polkit.service
    165ms systemd-journal-flush.service
    151ms systemd-sysctl.service
    149ms systemd-udevd.service
    113ms systemd-update-utmp.service
    105ms gpm.service
    68ms home.mount
    68ms systemd-tmpfiles-setup.service
    57ms systemd-random-seed-load.service
    30ms systemd-user-sessions.service
    1ms sys-kernel-config.mount
    Now maybe I am wrong, but these don't add up to 1 min 31 seconds...It actually adds to about 9 seconds which is probably my old boot time.. What am I missing here?
    Last edited by life_enjoyer (2013-06-09 03:36:53)

  • HT1665 my iphone headphones remote has stopped working after a few uses. does anyone have any suggestions on how to fix it please??....

    Hi all.
    My headphones are new form apple as they came with the phone. They have been good for the few times i have used them but out of the blue after about a weeks use they have stopped allowing me to skip forwrd or backwards???????? I am still able to pause and use my mic for Siri so im a little bit confused as to what the problem can be.. Is there anyone out there who knows what the problem might be or how to fix it??
    Thanks.

    Go to the settings in your Jeep, "forget" the iPhone. And on the iPhone "forget" the jeep. Then put the Jeep in Pairing Mode and tap Settings/BlueTooth on the phone and pair them anew (which sounds less confusing than "repair them").

Maybe you are looking for