Bit off the topic!

Yo all
Its the first time i've ever seen this, can any of you help me please!
I have an apache http server running, and i've copied an applet accross to the server with its html file(obviously!), i can connect to the java server through the applet 100% from the local machine, but when i go accross to the windows machine with jre 1.4 installed, i cant seem to connect! there is no firewall software running and i can telnet into the port,(it used to work)and now i get the following error:
java.net.SocketException: Connection reset by peer: JVM_recv in socket input stream read
at java.net.SocketInputStream.socketRead0(Native Method)
at java.net.SocketInputStream.read(Unknown Source)
at java.net.SocketInputStream.read(Unknown Source)
at java.io.ObjectInputStream$PeekInputStream.peek(Unknown Source)
at java.io.ObjectInputStream$BlockDataInputStream.peek(Unknown Source)
at java.io.ObjectInputStream$BlockDataInputStream.peekByte(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at iROClntComms.readObject(iROClntComms.java:169)
at iROClntComms.MessageLoop(iROClntComms.java:226)
at iROClntComms.loginUser(iROClntComms.java:189)
at iROCLoginScreen.verifyUser(iROCLoginScreen.java:129)
at iROCLoginScreen.login(iROCLoginScreen.java:98)
at iROCLoginScreen.keyTyped(iROCLoginScreen.java:122)
at java.awt.Component.processKeyEvent(Unknown Source)
at javax.swing.JComponent.processKeyEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
java.net.SocketException: Connection reset by peer: socket write error
at java.net.SocketOutputStream.socketWrite0(Native Method)
at java.net.SocketOutputStream.socketWrite(Unknown Source)
at java.net.SocketOutputStream.write(Unknown Source)
at java.io.ObjectOutputStream$BlockDataOutputStream.drain(Unknown Source)
at java.io.ObjectOutputStream$BlockDataOutputStream.setBlockDataMode(Unknown Source)
at java.io.ObjectOutputStream.writeNonProxyDesc(Unknown Source)
at java.io.ObjectOutputStream.writeClassDesc(Unknown Source)
at java.io.ObjectOutputStream.writeOrdinaryObject(Unknown Source)
at java.io.ObjectOutputStream.writeObject0(Unknown Source)
at java.io.ObjectOutputStream.writeFatalException(Unknown Source)
at java.io.ObjectOutputStream.writeObject(Unknown Source)
at iROClntComms.writeObject(iROClntComms.java:157)
at iROClntComms.MessageLoop(iROClntComms.java:224)
at iROClntComms.loginUser(iROClntComms.java:189)
at iROCLoginScreen.verifyUser(iROCLoginScreen.java:129)
at iROCLoginScreen.login(iROCLoginScreen.java:98)
at iROCLoginScreen.keyTyped(iROCLoginScreen.java:122)
at java.awt.Component.processKeyEvent(Unknown Source)
at javax.swing.JComponent.processKeyEvent(Unknown Source)
at java.awt.Component.processEvent(Unknown Source)
at java.awt.Container.processEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.KeyboardFocusManager.redispatchEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.preDispatchKeyEvent(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.typeAheadAssertions(Unknown Source)
at java.awt.DefaultKeyboardFocusManager.dispatchEvent(Unknown Source)
at java.awt.Component.dispatchEventImpl(Unknown Source)
at java.awt.Container.dispatchEventImpl(Unknown Source)
at java.awt.Component.dispatchEvent(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
any ideas would be greatly appreciated

here is where you are sending the object through the sockets
public synchronized boolean MessageLoop(Object sendObject) {
boolean returnResult = false;
resultObject = null;
iROCMessage inMessage;
iROCMessage outMessage = new iROCMessage();
int retries = 0;
while (retries < MAX_RETRIES) {
try {
switch (currentState) {
case iROCStateDefs.ROC_INITIATE_STATE:
control.iROCDebugLog("CONNECT STATE");
iROCMessage message = new iROCMessage();
iROCLoginInfo loginInfo = new iROCLoginInfo();
loginInfo.setName(this.name);
loginInfo.setPassword(this.password);
message.setObject(loginInfo);
message.setCommand(iROCMessageDefs.ROC_CONNECT);
/* Send the information to the server */
writeObject(message);
control.iROCDebugLog("Reading the server object");
Object result = readObject();
control.iROCDebugLog("Testing server response");
if (((iROCMessage)result).getCommand() == iROCMessageDefs.ROC_ACK) {
iROCLoginInfo loginStuff = (iROCLoginInfo)((iROCMessage)result).getObject();
if(loginStuff.getAdminRights()){
iROCMainConsole.adminItem.setEnabled(true);
iROCMainConsole.controlMenu.setEnabled(true);
}else{
iROCMainConsole.adminItem.setEnabled(false);
iROCMainConsole.controlMenu.setEnabled(false);
control.iROCDebugLog("Account info authorised...");
currentState = iROCStateDefs.ROC_REQUEST_COMMAND_STATE;
returnResult = true;
} else {
control.iROCDebugLog("Account failed...");
break;
case iROCStateDefs.ROC_REQUEST_COMMAND_STATE:
/**iROCMainPanel.setDescription("Sending Request to server...");*/
//iROCStatsMessage sendingObject = (iROCStatsMessage) sendObject;
//receiveRequestID = sendingObject.getObjectType();
control.iROCNotifyState("Sending Request to server...");
control.iROCDebugLog("REQUEST COMMAND STATE");
outMessage.setCommand(iROCMessageDefs.ROC_COMMAND);
outMessage.setMessage(this.request);
outMessage.setObject(sendObject);
writeObject(outMessage);
control.iROCNotifyState("Request Sent...");
inMessage = (iROCMessage)readObject();
if (inMessage.getCommand() == iROCMessageDefs.ROC_ACK) {
currentState = iROCStateDefs.ROC_RECEIVE_RESULT_STATE;
if (MessageLoop(null) == true) //Call once more to get the result
returnResult = true;
} else {
control.iROCLog(">>Server Denied Request : ");
break;
case iROCStateDefs.ROC_RECEIVE_RESULT_STATE:
control.iROCNotifyState("Receiving data from server...");
control.iROCDebugLog("RECEIVE RESULT STATE");
inMessage = (iROCMessage)readObject();
if (inMessage.getCommand() == iROCMessageDefs.ROC_RESULT) {
resultObject = inMessage.getObject();
outMessage.setCommand(iROCMessageDefs.ROC_ACK);
writeObject(outMessage);
currentState = iROCStateDefs.ROC_REQUEST_COMMAND_STATE;
returnResult = true;
control.iROCNotifyState("Data received...");
break;
case iROCStateDefs.ROC_TERMINATE_STATE:
control.iROCNotifyState("Disconnecting from server...");
control.iROCDebugLog("Sending Disconnect to server");
outMessage.setCommand(iROCMessageDefs.ROC_DISCONNECT);
writeObject(outMessage);
break;
case iROCStateDefs.ROC_ERROR_STATE:
control.iROCDebugLog("Error in communications encountered");
break;
retries=MAX_RETRIES;
catch (Exception e) {
returnResult = false;
control.iROCDebugLog("Retrying after failed send/receive - "+retries);
control.iROCNotifyState("Error receiving/sending data, retrying - "+retries);
/*iROCMainPanel.setDescription("Error receiving/sending data, retrying - "+retries);*/
retries++;
return returnResult;
now this exact server and client is running on a Unix ibm ips80 server and it works 100%

Similar Messages

  • Off the topic (Again!!!)

    Yo all
    I'm posting this here because the other forums aren't much help at all...
    I'm running queries on an Informix database, I've got the JDBC up and running but i cant seem to set the isolation level to dirty read
    I've tried running it in the same query and it throws and SQL exception
    I've also tried running it as a separate query just to try it out but that doesnt work either?!
    Has anybody got experience in Informix and Java integration?
    thanks
    mike

    But... it's a reality to want to use these plug-ins
    fairly early in the game, as you suggested.
    So my solution, for now, is to do an offline bounce,
    of say, the drums, with all their delicious UAD
    plug-ins activated.
    I then save the song under a different title, such as
    "Song Title- For Recording".
    I then import the newly bounced stereo drum submix
    into this song, deactivate the buss and Aux plug-ins,
    and turn delay compensation back to off, or Audio
    Instruments and tracks."
    I can now record vocals, guitars, anything live,
    without the worry of it being recorded in any other
    spot other then where it was intended!
    When those new live tracks are finished, and use the
    Export feature to export continuous regions, and
    bring it back into the "master" song file.
    I realize this might not be an efficient way of
    working for some, but it has proven very reliable,
    and easy enough to do, at least for the way I like to
    work.
    The problem with this method, especially if you work to picture, is that all the resultant audio files will have some "digital null" as Apple calls it, blank audio to me, at the beginning of each track and so if you bring in the auido files they will not be out of syne with the picture unless you trim them all.
    I really hope Apple fixes this soon.
    Logic Certified Trainer
    www.jayasher.com

  • Off the topic

    this is not related to java directly, but am hoping there might be some java developers from the financial industry here.
    I have a job offer from a major investment bank in the "reference data" group as a java developer. However my objective is to gain some experience in FIXED INCOME, DERIVATIVES or EQUITY. I am not sure if these technologies or any related technologies would be involved in this group. or to make it simple would working with a reference data group gain you any such experience.
    I am hoping that somebody over here would be able to advise.

    I have a job offer from a major investment bank in
    the "reference data" group as a java developer.
    However my objective is to gain some experience in
    FIXED INCOME, DERIVATIVES or EQUITY. I am not sure
    if these technologies or any related technologies
    would be involved in this group. So to make it simple: you had a job interview, where you could have asked somebody from the company in question whether you would be getting that experience if you accepted the job. But no. You chose to ask a group of total strangers who know nothing about the company who offered you the job. That doesn't sound very sensible to me.
    Or maybe I am misinterpreting your question.

  • Getting HDV to stop cutting off the first 5 seconds of a clip

    So I know that HDV capture with FCP is bad about cutting just a wee little bit off the front of a clip, but I'm having it cut 5+ seconds off! It's frustrating because I slated all my clips for the final editor, but stupid FCP keeps cutting of more than just A second. Has anyone found a way to keep it from doing that? I tried unchecking "make new clip on start/stop", but it still made it into tons of clips. It's a little frustrating to say the least.
    BTW, I am capturing 24P 720P off a JVC HD-110U.
    Thanks,
    Matthew

    Tapes need preroll. More than 1 second preroll. HDV is especially susceptible to this. Always roll tape for a bit before action begins. There's a good reason for the incantation: "Rolling... Speed... Scene 1, Take 7... >clap<... ACTION!"
    Patrick

  • Hi, I'm a bit low on memory and I can't update the iOS. I need to move some photos off the iPad but I don't want to transfer them to a pc, I'd prefer to transfer them to iCloud and leave them there.  Is that possible?

    Hi, I'm a bit low on memory and I can't update the iOS. I need to move some photos off the iPad but I don't want to transfer them to a pc, I'd prefer to transfer them to iCloud and leave them there.  Is that possible?

    Yes, you could, because in this case you would have something like a backup in the cloud. BTW, personally I also like Flickr. Flickr offers you 1 TB (1000 GB) of free storage and automatic upload for photos since iOS 7 (it is a very attractive offer, at least for me)

  • I have been unable to print from FF to Brother HL-1440. print generate pages w/odd bits of text from the page, and sometimes one image. If I want to print off the web, I have to print PDF. Older versions of FF print fine.

    I have been unable to print from FF to Brother HL-1440. print generate pages w/odd bits of text from the page, and sometimes one image. If I want to print off the web, I have to print PDF. Older versions of FF print fine.

    I downloaded OpenOffice and am able to print documents (in particular, the same document I created in MS Word). I guess MS Word is to blame. I believe the issue is concluded, but I'd welcome any comments about the Active Directory, as I might have a problem
    with OpenOffice in the future regarding that.

  • Whenever I use the search engine, it brings up sites within the topic but when i press on a website it goes off on an entirely different topic. And it happens all of the time every time except with my favorites.

    I type in a topic i want to research, it gives me a list of websites, any website i click on, the search goes in random sites,,,,,,,,,,,,unrelated to the topic.

    I type in a topic i want to research, it gives me a list of websites, any website i click on, the search goes in random sites,,,,,,,,,,,,unrelated to the topic.

  • Import from Word-Numbers at end of headings are cut off in the TOC though not in the topics themselv

    I'm using Robohelp10, though this has always been an issue in all versions of RH that I've used. I have a document with many headings that end in a particular # (it's a version #)
    e.g.
    I3DMLFeatureLayer65.
    I3DMLFeatureLayers65.
    I3DMLFeatureProperties65.
    I3DViewshed65.
    IAction65.
    IAttachment65.
    IAttribute65.
      IAttributes65 
    When I import and automatically have the TOC converted, all these headings appear in the RH TOC (books and pages) with the # 65 at the end missing, as such:
    I3DMLFeatureLayer.
    I3DMLFeatureLayers
    I3DMLFeatureProperties
    I3DViewshed
    IAction
    IAttachment
    IAttribute
      IAttributes 
    In the topics themselves, the topic title displays correctly (with the 65 at the end).
    Has anyone else experienced this/have any suggestions? TIA.

    Simply that plans change at this time of year.
    I got exactly the same result and at first I wondered if it was because the document had tracked changes in it. I have seen that cause problems in the past and always recommend accepting them, in a copy document if you don't want to lose the tracking.
    Accepting the changes made no difference and I would say this is a bug. Fortunately though there is a workaround that may be acceptable. Quite simply, add a full stop (period) or some other character after the number. A space will not work.
    The more people who report a bug or request a feature, the more likely it is to be actioned. Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Switching off the Time Capsule: risk of damage?

    Hello everyone. If I switch off my time capsule (1TB, recently bought) when not in use, for example at night (I think to connect it to a power strip), could I damage it? Or maybe only if the TC hard drive is running?
    Thanks

    Welcome to the discussions!
    This topic has been pretty much beat to death on the forums as there has been and will remain different schools of thought on this.
    One school maintains that there is a very good reason that Apple chose not to even put a power switch on the device, and that is that it was designed to run 24/7. Powering off the TC causes it to lose its connection with the local network and internet. When the device is powered back up, these connections must be re-established. Also, when any electronic device is powered up from an off state, the components within the device are subjected to a sudden rush of current. The school thinking on this is that the device will last longer if the unit is left on and subjected to less stress.
    The other school says power it down when not in use to save a bit of electricity. They don't buy the theory that a sudden rush of current has any long term effect on the device and claim that the device may actually last longer because the electronic components are subjected to less heat this way over time.
    Choose your school, or maybe a middle ground that would have the TC powered off for long weekends, vacations or other extended periods when the device is not needed for backups.

  • Off-the-shelf products that can access DNG's XMP?

    I'm sorry if this is off-topic.
    I'm a photographer who uses DNG as my raw file format, and puts various things, (name, copyright statement, website, keywords, etc), into the DNGs, in the form of XMP. (Using Bridge + ACR). Then this XMP eventually gets into the PSDs, JPEGs, etc.
    I do so on the assumption that in future I will be able to get off-the-shelf tools that will do something useful with this. Asset managers, etc. Or perhaps tools that will add to it - for example, adding GPS log data. Etc.
    But this assumes that embedded XMP will be accepted as something that (non-Adobe) off-the-shelf tools will handle, perhaps routinely. I simply don't have a feel for whether that is the way the industry is going, or whether it will be concentrated in niche and specialised and bespoke tools. I would appreciate information of "routine" take-up.
    Thanks.
    (PLEASE don't give me a sales-pitch for XMP! I'm beyond the need for that).

    Thanks, johnbeardy. (And thanks for your recent suggestions, you know where, for classifying support for DNG, and even XMP).
    I am building up a picture here that the key to a sustainable DNG-based workflow isn't simply to have lots of tools, (by that I include "full blown applications"), that support DNG in some form. It is to have tools that can also exploit, in & out, the XMP metadata within the DNGs.
    The vision I am getting of the desirable future of raw shooting has DNG at the centre, as a container for the raw image, a lot of XMP metadata of various sorts, plus some other stuff. It isn't a product-centred vision, it is a DNG-containing-XMP centred vision.
    I suspect that this will be a hard vision to explain to others! You, and AlaskaBob, and Peter Krogh, and some, (probably not all), people in Adobe, won't have a problem - in fact, I'm a bit late on the scene. But there are very many people who can't even see the strategic advantages of DNG, let alone DNG-containing-XMP!
    Very illuminating! Thanks.

  • [SOLVED]suspend fails NVRM: GPU at 0000:01:00.0 has fallen off the bus

    Hi All,
    After a update of my laptop, it does not fully wakes after going into suspend. It does not react to numlock anymore.  I have to push the power button for 10 seconds to shut it down.
    /var/log/everything.log, normal operations:
    Jul 21 03:42:38 localhost dhcpcd[1029]: wlan0: sending IPv6 Router Solicitation
    Jul 21 03:42:38 localhost dhcpcd[1029]: wlan0: sendmsg: Cannot assign requested address
    Jul 21 03:42:38 localhost dhcpcd[1029]: wlan0: no IPv6 Routers available
    Jul 21 03:42:45 localhost dbus[533]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
    Jul 21 03:42:45 localhost dbus[533]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
    Jul 21 03:42:45 localhost acpid: client connected from 1134[0:1000]
    Jul 21 03:42:45 localhost acpid: 1 client rule loaded
    Jul 21 03:42:46 localhost NetworkManager[559]: <info> (wlan0): IP6 addrconf timed out or failed.
    Jul 21 03:42:46 localhost NetworkManager[559]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
    Jul 21 03:42:46 localhost NetworkManager[559]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
    Jul 21 03:42:46 localhost NetworkManager[559]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    Jul 21 03:42:50 localhost acpid: client connected from 1134[0:1000]
    Jul 21 03:42:50 localhost acpid: 1 client rule loaded
    Jul 21 03:42:55 localhost kernel: [ 48.812457] fuse init (API version 7.18)
    Jul 21 03:42:59 localhost dbus[533]: [system] Activating service name='org.freedesktop.UDisks2' (using servicehelper)
    Jul 21 03:42:59 localhost udisksd[1209]: udisks daemon version 1.94.0 starting
    Jul 21 03:42:59 localhost dbus[533]: [system] Successfully activated service 'org.freedesktop.UDisks2'
    Jul 21 03:42:59 localhost udisksd[1209]: Acquired the name org.freedesktop.UDisks2 on the system message bus
    Jul 21 04:01:01 localhost /USR/SBIN/CROND[1363]: (root) CMD (run-parts /etc/cron.hourly)
    Jul 21 04:01:01 localhost anacron[1369]: Anacron started on 2012-07-21
    Jul 21 04:01:01 localhost anacron[1369]: Will run job `cron.daily' in 42 min.
    Jul 21 04:01:01 localhost anacron[1369]: Jobs will be executed sequentially
    Jul 21 04:21:01 localhost -- MARK --
    /var/log/everything.log, after starting suspend:
    Jul 21 04:21:13 localhost kernel: [ 2346.821030] EXT4-fs (sda5): re-mounted. Opts: commit=0
    Jul 21 04:21:13 localhost kernel: [ 2347.000872] EXT4-fs (sda8): re-mounted. Opts: commit=0
    Jul 21 04:25:10 localhost kernel: [ 2349.512404] PM: Syncing filesystems ... done.
    Jul 21 04:25:10 localhost kernel: [ 2349.514874] PM: Preparing system for mem sleep
    Jul 21 04:25:10 localhost kernel: [ 2349.514891] Freezing user space processes ... (elapsed 0.01 seconds) done.
    Jul 21 04:25:10 localhost kernel: [ 2349.526541] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Jul 21 04:25:10 localhost kernel: [ 2349.539896] PM: Entering mem sleep
    Jul 21 04:25:10 localhost kernel: [ 2349.539930] Suspending console(s) (use no_console_suspend to debug)
    Jul 21 04:25:10 localhost kernel: [ 2349.573787] sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Jul 21 04:25:10 localhost kernel: [ 2349.611052] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:25:10 localhost kernel: [ 2349.613512] sd 0:0:0:0: [sda] Stopping disk
    Jul 21 04:25:10 localhost kernel: [ 2350.236650] PM: suspend of devices complete after 696.314 msecs
    Jul 21 04:25:10 localhost kernel: [ 2350.236925] PM: late suspend of devices complete after 0.270 msecs
    Jul 21 04:25:10 localhost kernel: [ 2350.237272] r8169 0000:08:00.0: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.266603] ehci_hcd 0000:00:1d.7: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.303271] uhci_hcd 0000:00:1d.1: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.326605] uhci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.343218] ehci_hcd 0000:00:1a.7: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.379942] uhci_hcd 0000:00:1a.2: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.403292] uhci_hcd 0000:00:1a.1: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.426606] uhci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.426678] PM: noirq suspend of devices complete after 189.749 msecs
    Jul 21 04:25:10 localhost kernel: [ 2350.427140] ACPI: Preparing to enter system sleep state S3
    Jul 21 04:25:10 localhost kernel: [ 2350.519991] PM: Saving platform NVS memory
    Jul 21 04:25:10 localhost kernel: [ 2350.520810] Disabling non-boot CPUs ...
    Jul 21 04:25:10 localhost kernel: [ 2350.623205] CPU 1 is now offline
    Jul 21 04:25:10 localhost kernel: [ 2350.623688] Extended CMOS year: 2000
    Jul 21 04:25:10 localhost kernel: [ 2350.623688] ACPI: Low-level resume complete
    Jul 21 04:25:10 localhost kernel: [ 2350.623688] PM: Restoring platform NVS memory
    Jul 21 04:25:10 localhost kernel: [ 2350.623688] Extended CMOS year: 2000
    Jul 21 04:25:10 localhost kernel: [ 2350.623688] Enabling non-boot CPUs ...
    Jul 21 04:25:10 localhost kernel: [ 2350.630554] Booting Node 0 Processor 1 APIC 0x1
    Jul 21 04:25:10 localhost kernel: [ 2350.641916] NMI watchdog: enabled, takes one hw-pmu counter.
    Jul 21 04:25:10 localhost kernel: [ 2350.645407] CPU1 is up
    Jul 21 04:25:10 localhost kernel: [ 2350.647122] ACPI: Waking up from system sleep state S3
    Jul 21 04:25:10 localhost kernel: [ 2350.653227] uhci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.659889] uhci_hcd 0000:00:1a.1: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.666555] uhci_hcd 0000:00:1a.2: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.683204] ehci_hcd 0000:00:1a.7: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.689888] uhci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.696556] uhci_hcd 0000:00:1d.1: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.713204] ehci_hcd 0000:00:1d.7: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.715075] PM: noirq resume of devices complete after 67.761 msecs
    Jul 21 04:25:10 localhost kernel: [ 2350.715286] PM: early resume of devices complete after 0.105 msecs
    Jul 21 04:25:10 localhost kernel: [ 2350.715344] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715373] usb usb1: root hub lost power or was reset
    Jul 21 04:25:10 localhost kernel: [ 2350.715391] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715421] usb usb2: root hub lost power or was reset
    Jul 21 04:25:10 localhost kernel: [ 2350.715437] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715465] usb usb3: root hub lost power or was reset
    Jul 21 04:25:10 localhost kernel: [ 2350.715480] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715521] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715540] snd_hda_intel 0000:00:1b.0: irq 47 for MSI/MSI-X
    Jul 21 04:25:10 localhost kernel: [ 2350.715550] usb usb4: root hub lost power or was reset
    Jul 21 04:25:10 localhost kernel: [ 2350.715571] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715601] usb usb5: root hub lost power or was reset
    Jul 21 04:25:10 localhost kernel: [ 2350.715611] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715623] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715639] usb usb6: root hub lost power or was reset
    Jul 21 04:25:10 localhost kernel: [ 2350.715647] pci 0000:00:1e.0: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715663] ata_piix 0000:00:1f.2: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715667] ata_piix 0000:00:1f.5: setting latency timer to 64
    Jul 21 04:25:10 localhost kernel: [ 2350.715690] r8169 0000:08:00.0: wake-up capability disabled by ACPI
    Jul 21 04:25:10 localhost kernel: [ 2350.723377] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:25:10 localhost kernel: [ 2350.723395] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:25:10 localhost kernel: [ 2350.816609] r8169 0000:08:00.0: eth0: link down
    Jul 21 04:25:10 localhost kernel: [ 2351.111777] ata4: SATA link down (SStatus 0 SControl 300)
    Jul 21 04:25:10 localhost kernel: [ 2351.128460] ata3: SATA link down (SStatus 0 SControl 300)
    Jul 21 04:25:10 localhost kernel: [ 2351.199920] usb 2-1: reset low-speed USB device number 2 using uhci_hcd
    Jul 21 04:25:10 localhost kernel: [ 2351.263475] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jul 21 04:25:10 localhost kernel: [ 2351.276859] firewire_core 0000:1a:00.0: rediscovered device fw0
    Jul 21 04:25:10 localhost kernel: [ 2351.283960] ata2.00: configured for UDMA/100
    Jul 21 04:25:10 localhost kernel: [ 2351.739942] usb 2-2: reset low-speed USB device number 3 using uhci_hcd
    Jul 21 04:25:10 localhost kernel: [ 2352.129932] usb 8-2: reset high-speed USB device number 2 using ehci_hcd
    Jul 21 04:25:10 localhost kernel: [ 2352.359839] usb 6-1: reset full-speed USB device number 2 using uhci_hcd
    Jul 21 04:25:10 localhost kernel: [ 2352.784239] usb 6-1.1: reset full-speed USB device number 3 using uhci_hcd
    Jul 21 04:25:10 localhost kernel: [ 2352.883229] btusb 6-1.1:1.0: no reset_resume for driver btusb?
    Jul 21 04:25:10 localhost kernel: [ 2352.883233] btusb 6-1.1:1.1: no reset_resume for driver btusb?
    Jul 21 04:25:10 localhost kernel: [ 2352.941243] usb 6-1.2: reset full-speed USB device number 4 using uhci_hcd
    Jul 21 04:25:10 localhost kernel: [ 2352.969919] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 21 04:25:10 localhost kernel: [ 2353.101249] usb 6-1.3: reset full-speed USB device number 5 using uhci_hcd
    Jul 21 04:25:10 localhost kernel: [ 2353.181194] ata1.00: configured for UDMA/133
    Jul 21 04:25:10 localhost kernel: [ 2353.181463] sd 0:0:0:0: [sda] Starting disk
    Jul 21 04:25:10 localhost kernel: [ 2353.436737] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
    Jul 21 04:25:10 localhost kernel: [ 2358.057138] PM: resume of devices complete after 7341.844 msecs
    Jul 21 04:25:10 localhost kernel: [ 2358.057602] PM: Finishing wakeup.
    Jul 21 04:25:10 localhost kernel: [ 2358.057604] Restarting tasks ... done.
    Jul 21 04:25:10 localhost kernel: [ 2358.064234] video LNXVIDEO:00: Restoring backlight state
    Jul 21 04:25:11 localhost kernel: [ 2358.233575] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:25:11 localhost kernel: [ 2358.272368] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:25:11 localhost kernel: [ 2358.309721] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:25:11 localhost kernel: [ 2358.349601] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:25:13 localhost kernel: [ 2360.644416] EXT4-fs (sda5): re-mounted. Opts: commit=0
    Jul 21 04:25:13 localhost kernel: [ 2360.648163] EXT4-fs (sda8): re-mounted. Opts: commit=0
    Jul 21 04:25:13 localhost acpid: client 1134[0:1000] has disconnected
    Jul 21 04:25:13 localhost acpid: client 1134[0:1000] has disconnected
    Jul 21 04:25:13 localhost acpid: client connected from 1134[0:1000]
    Jul 21 04:25:13 localhost acpid: 1 client rule loaded
    Jul 21 04:25:26 localhost kernel: [ 2373.415894] NVRM: Xid (0000:01:00): 8, Channel 0000007e
    Jul 21 04:25:26 localhost kernel: [ 2373.700350] hrtimer: interrupt took 91847280 ns
    Jul 21 04:25:26 localhost kernel: [ 2373.700352] NVRM: GPU at 0000:01:00.0 has fallen off the bus.
    Jul 21 04:28:36 localhost kernel: [ 2563.568752] EXT4-fs (sda5): re-mounted. Opts: commit=0
    Jul 21 04:28:36 localhost kernel: [ 2563.573610] EXT4-fs (sda8): re-mounted. Opts: commit=0
    What does this message mean?
    Jul 21 04:25:26 localhost kernel: [ 2373.700352] NVRM: GPU at 0000:01:00.0 has fallen off the bus.
    What can i do to solve this?
    Best regards,
    Cedric
    Last edited by cdwijs (2012-08-09 18:33:34)

    I did a quick google search. This page suggested that I set my videocard in persistend mode:
    http://scientificlinuxforum.org/index.p … topic=1469
    So i did the following:
    ]# /usr/bin/nvidia-smi -pm 1
    Enabled persistence mode for GPU 0000:01:00.0.
    All done.
    # /usr/bin/nvidia-smi -q
    ==============NVSMI LOG==============
    Timestamp : Sat Jul 21 04:58:55 2012
    Driver Version : 302.17
    Attached GPUs : 1
    GPU 0000:01:00.0
    Product Name : GeForce 9600M GS
    Display Mode : N/A
    Persistence Mode : Enabled
    Driver Model
    Current : N/A
    Pending : N/A
    Serial Number : N/A
    GPU UUID : N/A
    VBIOS Version : 62.94.8D.00.0B
    Inforom Version
    OEM Object : N/A
    ECC Object : N/A
    Power Management Object : N/A
    PCI
    Bus : 0x01
    Device : 0x00
    Domain : 0x0000
    Device Id : 0x064810DE
    Bus Id : 0000:01:00.0
    Sub System Id : 0x02C01028
    GPU Link Info
    PCIe Generation
    Max : N/A
    Current : N/A
    Link Width
    Max : N/A
    Current : N/A
    Fan Speed : N/A
    Performance State : N/A
    Memory Usage
    Total : 511 MB
    Used : 30 MB
    Free : 480 MB
    Compute Mode : Default
    Utilization
    Gpu : N/A
    Memory : N/A
    Ecc Mode
    Current : N/A
    Pending : N/A
    ECC Errors
    Volatile
    Single Bit
    Device Memory : N/A
    Register File : N/A
    L1 Cache : N/A
    L2 Cache : N/A
    Total : N/A
    Double Bit
    Device Memory : N/A
    Register File : N/A
    L1 Cache : N/A
    L2 Cache : N/A
    Total : N/A
    Aggregate
    Single Bit
    Device Memory : N/A
    Register File : N/A
    L1 Cache : N/A
    L2 Cache : N/A
    Total : N/A
    Double Bit
    Device Memory : N/A
    Register File : N/A
    L1 Cache : N/A
    L2 Cache : N/A
    Total : N/A
    Temperature
    Gpu : 61 C
    Power Readings
    Power Management : N/A
    Power Draw : N/A
    Power Limit : N/A
    Clocks
    Graphics : N/A
    SM : N/A
    Memory : N/A
    Max Clocks
    Graphics : N/A
    SM : N/A
    Memory : N/A
    Compute Processes : Not Supported
    This did not solve the issue. The laptop goes into suspend (the power LED starts blinking), but when the power button is then briefly pressed, the machine does power-up, but after hearing 2 clicks from the speaker, i get a black screen, a full-running CPU fan, and no reaction to numlock.
    /var/log/everything.log:
    Jul 21 04:30:13 localhost NetworkManager[565]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
    Jul 21 04:50:40 localhost -- MARK --
    Jul 21 04:54:46 localhost kernel: [ 1516.765698] EXT4-fs (sda5): re-mounted. Opts: commit=0
    Jul 21 04:54:46 localhost kernel: [ 1516.942964] EXT4-fs (sda8): re-mounted. Opts: commit=0
    Jul 21 04:55:02 localhost kernel: [ 1519.654895] PM: Syncing filesystems ... done.
    Jul 21 04:55:02 localhost kernel: [ 1519.657049] PM: Preparing system for mem sleep
    Jul 21 04:55:02 localhost kernel: [ 1519.657066] Freezing user space processes ... (elapsed 0.01 seconds) done.
    Jul 21 04:55:02 localhost kernel: [ 1519.669943] Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Jul 21 04:55:02 localhost kernel: [ 1519.683296] PM: Entering mem sleep
    Jul 21 04:55:02 localhost kernel: [ 1519.683337] Suspending console(s) (use no_console_suspend to debug)
    Jul 21 04:55:02 localhost kernel: [ 1519.717139] sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Jul 21 04:55:02 localhost kernel: [ 1519.749832] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:55:02 localhost kernel: [ 1519.786781] sd 0:0:0:0: [sda] Stopping disk
    Jul 21 04:55:02 localhost kernel: [ 1520.410064] PM: suspend of devices complete after 726.343 msecs
    Jul 21 04:55:02 localhost kernel: [ 1520.410337] PM: late suspend of devices complete after 0.266 msecs
    Jul 21 04:55:02 localhost kernel: [ 1520.410678] r8169 0000:08:00.0: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.440024] ehci_hcd 0000:00:1d.7: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.476689] uhci_hcd 0000:00:1d.1: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.500023] uhci_hcd 0000:00:1d.0: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.516685] ehci_hcd 0000:00:1a.7: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.553353] uhci_hcd 0000:00:1a.2: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.576688] uhci_hcd 0000:00:1a.1: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.603354] uhci_hcd 0000:00:1a.0: wake-up capability enabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.603426] PM: noirq suspend of devices complete after 193.085 msecs
    Jul 21 04:55:02 localhost kernel: [ 1520.603888] ACPI: Preparing to enter system sleep state S3
    Jul 21 04:55:02 localhost kernel: [ 1520.693403] PM: Saving platform NVS memory
    Jul 21 04:55:02 localhost kernel: [ 1520.694218] Disabling non-boot CPUs ...
    Jul 21 04:55:02 localhost kernel: [ 1520.796623] CPU 1 is now offline
    Jul 21 04:55:02 localhost kernel: [ 1520.797088] Extended CMOS year: 2000
    Jul 21 04:55:02 localhost kernel: [ 1520.797088] ACPI: Low-level resume complete
    Jul 21 04:55:02 localhost kernel: [ 1520.797088] PM: Restoring platform NVS memory
    Jul 21 04:55:02 localhost kernel: [ 1520.797088] Extended CMOS year: 2000
    Jul 21 04:55:02 localhost kernel: [ 1520.797088] Enabling non-boot CPUs ...
    Jul 21 04:55:02 localhost kernel: [ 1520.803951] Booting Node 0 Processor 1 APIC 0x1
    Jul 21 04:55:02 localhost kernel: [ 1520.815303] NMI watchdog: enabled, takes one hw-pmu counter.
    Jul 21 04:55:02 localhost kernel: [ 1520.816608] CPU1 is up
    Jul 21 04:55:02 localhost kernel: [ 1520.818293] ACPI: Waking up from system sleep state S3
    Jul 21 04:55:02 localhost kernel: [ 1520.823322] uhci_hcd 0000:00:1a.0: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.829975] uhci_hcd 0000:00:1a.1: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.836638] uhci_hcd 0000:00:1a.2: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.853290] ehci_hcd 0000:00:1a.7: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.859971] uhci_hcd 0000:00:1d.0: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.866638] uhci_hcd 0000:00:1d.1: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.883290] ehci_hcd 0000:00:1d.7: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.885162] PM: noirq resume of devices complete after 66.681 msecs
    Jul 21 04:55:02 localhost kernel: [ 1520.885372] PM: early resume of devices complete after 0.105 msecs
    Jul 21 04:55:02 localhost kernel: [ 1520.885432] uhci_hcd 0000:00:1a.0: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885432] uhci_hcd 0000:00:1a.1: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885465] usb usb1: root hub lost power or was reset
    Jul 21 04:55:02 localhost kernel: [ 1520.885466] usb usb2: root hub lost power or was reset
    Jul 21 04:55:02 localhost kernel: [ 1520.885487] uhci_hcd 0000:00:1a.2: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885490] ehci_hcd 0000:00:1a.7: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885518] usb usb3: root hub lost power or was reset
    Jul 21 04:55:02 localhost kernel: [ 1520.885549] uhci_hcd 0000:00:1d.0: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885582] usb usb4: root hub lost power or was reset
    Jul 21 04:55:02 localhost kernel: [ 1520.885582] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
    Jul 21 04:55:02 localhost kernel: [ 1520.885600] uhci_hcd 0000:00:1d.1: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885629] usb usb5: root hub lost power or was reset
    Jul 21 04:55:02 localhost kernel: [ 1520.885648] uhci_hcd 0000:00:1d.2: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885653] ehci_hcd 0000:00:1d.7: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885680] pci 0000:00:1e.0: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885679] usb usb6: root hub lost power or was reset
    Jul 21 04:55:02 localhost kernel: [ 1520.885698] ata_piix 0000:00:1f.2: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885713] ata_piix 0000:00:1f.5: setting latency timer to 64
    Jul 21 04:55:02 localhost kernel: [ 1520.885736] r8169 0000:08:00.0: wake-up capability disabled by ACPI
    Jul 21 04:55:02 localhost kernel: [ 1520.890553] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:55:02 localhost kernel: [ 1520.891048] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:55:02 localhost kernel: [ 1520.960285] r8169 0000:08:00.0: eth0: link down
    Jul 21 04:55:02 localhost kernel: [ 1521.281391] ata3: SATA link down (SStatus 0 SControl 300)
    Jul 21 04:55:02 localhost kernel: [ 1521.297666] ata4: SATA link down (SStatus 0 SControl 300)
    Jul 21 04:55:02 localhost kernel: [ 1521.332377] Extended CMOS year: 2000
    Jul 21 04:55:02 localhost kernel: [ 1521.376657] usb 2-1: reset low-speed USB device number 2 using uhci_hcd
    Jul 21 04:55:02 localhost kernel: [ 1521.406940] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Jul 21 04:55:02 localhost kernel: [ 1521.427670] ata2.00: configured for UDMA/100
    Jul 21 04:55:02 localhost acpid: client 1147[0:1000] has disconnected
    Jul 21 04:55:02 localhost acpid: client 1147[0:1000] has disconnected
    Jul 21 04:55:02 localhost kernel: [ 1521.453328] firewire_core 0000:1a:00.0: rediscovered device fw0
    Jul 21 04:55:02 localhost kernel: [ 1521.915219] usb 2-2: reset low-speed USB device number 3 using uhci_hcd
    Jul 21 04:55:02 localhost kernel: [ 1522.303337] usb 8-2: reset high-speed USB device number 2 using ehci_hcd
    Jul 21 04:55:02 localhost kernel: [ 1522.533339] usb 6-1: reset full-speed USB device number 2 using uhci_hcd
    Jul 21 04:55:02 localhost kernel: [ 1522.955078] usb 6-1.1: reset full-speed USB device number 3 using uhci_hcd
    Jul 21 04:55:02 localhost kernel: [ 1523.057065] btusb 6-1.1:1.0: no reset_resume for driver btusb?
    Jul 21 04:55:02 localhost kernel: [ 1523.057070] btusb 6-1.1:1.1: no reset_resume for driver btusb?
    Jul 21 04:55:02 localhost kernel: [ 1523.113342] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Jul 21 04:55:02 localhost kernel: [ 1523.115078] usb 6-1.2: reset full-speed USB device number 4 using uhci_hcd
    Jul 21 04:55:02 localhost kernel: [ 1523.278082] usb 6-1.3: reset full-speed USB device number 5 using uhci_hcd
    Jul 21 04:55:02 localhost kernel: [ 1523.321369] ata1.00: configured for UDMA/133
    Jul 21 04:55:02 localhost kernel: [ 1523.321637] sd 0:0:0:0: [sda] Starting disk
    Jul 21 04:55:02 localhost kernel: [ 1523.613501] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
    Jul 21 04:55:02 localhost kernel: [ 1528.234017] PM: resume of devices complete after 7348.637 msecs
    Jul 21 04:55:02 localhost kernel: [ 1528.234472] PM: Finishing wakeup.
    Jul 21 04:55:02 localhost kernel: [ 1528.234474] Restarting tasks ... done.
    Jul 21 04:55:02 localhost kernel: [ 1528.239320] video LNXVIDEO:00: Restoring backlight state
    Jul 21 04:55:02 localhost acpid: client connected from 1147[0:1000]
    Jul 21 04:55:02 localhost acpid: 1 client rule loaded
    Jul 21 04:55:02 localhost kernel: [ 1528.396372] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:55:02 localhost kernel: [ 1528.433245] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:55:02 localhost kernel: [ 1528.469720] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:55:02 localhost kernel: [ 1528.506634] sdhci-pci 0000:1a:00.1: Will use DMA mode even though HW doesn't fully claim to support it.
    Jul 21 04:55:03 localhost kernel: [ 1530.007718] EXT4-fs (sda5): re-mounted. Opts: commit=0
    Jul 21 04:55:04 localhost kernel: [ 1530.271879] EXT4-fs (sda8): re-mounted. Opts: commit=0
    Jul 21 04:55:55 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
    Jul 21 04:55:55 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
    Interestingly, the message that the GPU has fallen off the bus is no longer present. Something else is going on as well :-)
    Best regards,
    Cedric

  • Sample rate off the audio input and out devices do not match - what to do?

    This is fundamental, I know, but nevertheless I can't find my way around it. I get this error message when trying to recor:
    Sample rate off the audio input and out devices do not match
    and am asked to do this:
    Use the appropriate operating system or audio device control panel to adjust the sample rates of the input and output devices to use the same settingt.
    I have defined the sample rate to 44.1/16 bit in accordance with my inbuild soundcardt.
    I am trying to record from LineIn.
    When running on a M-Audio sound card I don't face any problems.
    HP 8560W, sound card IDT/High definition audio Codec
    Any suggestions?
    Knud
    Copenhagen

    You're sure you have set BOTH the input and output settings to 44.1 16 bit?
    Which version of Windows are you running?  There are a number of posts on this forum about how to fully access both the Windows Mixer and the Mixer for your soundcard.  Especially, you need to ensure that all "Windows Sounds" are turned OFF.

  • How to safely turn off the computer while the motion servo is still enabled?

    When we use PCI-7344 and set it for serve closed control, I have found a very serious problem
    in using the control card in this mode.
    As the card is able to control motors only with the computer at power on status, but if we are very
    carelessly to shut down the computer and without the notice to turn off motor driver power first
    we would always get serious sudden moves of the motors, and might cause damages to the system. The same situation also applies to when control the motors under open/closed loop stepper mode.
    How should I do to prevent the above situation?
    (note: in my system, we have hook up relays and timers if we could set DIO bits before shut down
    the computer. But
    still, there are a certain occassions that the operator would still forget to set the DIO bits
    and turn off the computer directly)

    The Inhibit output pin of the motion controller (also called drive enable) is the best way to achieve this. It is basically a signal that most power drives take in as an active low input so that when the powergoes out of the computer, the line goes low and immediately kills the axis so that no servo ouptut command affects the motor.
    Best regards,
    Alex Games

  • Bootcamp - Seems there is no Support for Windows 8.1 once it is loaded. Just got off the Microsoft Help line and they refused to help me because I was running Win 8.1 in Bootcamp. Where do I go for help?

    Bootcamp - Seems there is no Support from Microsoft  for Windows 8.1, once it is loaded.
    I Just got off the Microsoft Technical Help line (Australia ph132058) and they refused to help me because I am running Win 8.1 in Bootcamp.
    I have the latest Mac Book Pro Retina with a 1TB Solid State Hard drive running Win 8.1, beautiful machine, but its slower than my old MBP running windows 7 on a standard Drive.
    The niggiling problem is that it seems to hang up for seven or 8 seconds on menial tasks........ like generating a new Folder or Note etc. Otherwise it runs reasonably well but not blindingly fast....
    I wasn't aware Microsoft refused to help win 8.1 users on the Mac Platform........ shouldn't this Information be made more public...! Seems they are keen to drive potential Windows users away!!
    Any suggestions on where I should go for help on this (Windows/Bootcamp in General) would be much appreciated ? ........ don't mind paying a reasonable price if the service is good......
    I guess the wheel has turned and Microsoft are having a go at Apple again...?
    Many thanks ....... Martin V

    Thanks Turbostar.
    I was thinking along the same lines. I installed Win 8.0 Pro and upgraded to 8.1 ........ probably a bad move.
    I have bought a new 8.1 Licence but cant risk doing a complete reinstall until I have a back up machine ready. (My old MBP is getting a new hard drive) ......... so will give that a go in about a weeks time when the back up is in place. Cant risk having nothing!
    When you say "Clean Install" ..... do you mean everything ..... as in Reformat the Bootcamp sector and start from scratch.?
    I have a 2 TB LaCie Thunderbolt drive with my back up data on ..... is there a way to make the Reinstall process and large amount of Data transfer easy?
    The reinstall is something I need to read up on. I was hoping the solution might be some kind of Tune up on the SSHD.
    Good to hear you have a number of MBP's that are flying, I would be disappointed if the final quality wasnt a bit better.
    ..... do you have any tips on screen Res on the Retina ..... I am running Windows at 125% Zoom, but the Bluetooth, power, wireless, Date Icons etc are all still tiny ...... could really do with an alternative to the old "Advanced Appearance Settings"
    cheers ..... Martin V

  • How can I turn off the preview (overview) automatically executed when I launch Image Capture?

    I love using Image Capture, but every time I launch it, it automatically does a previes of my scanner's flatbed.  Most of the time, I don't use the flatbed.  I use the feeder to scan multiple pages. 
    My question is this:  Is there any way to turn off the automatic preview (overview) that Image Capture executes when it's launched?
    Thanks in advance for any and all assistance!   

    Not a direct answer.
    From Image Capture Help:
    Scan pages with a document-feeding scanner
    When you scan a document with a document-feeding scanner, the same settings are used for all the pages in the feeder. If your pages need different settings (for example, some are grayscale and some are color), separate them into different groups.
    Before you begin these steps, you need to open your scanner. For instructions, see one of these help topics:
    Scan an image
    Scan an image with Image Capture
    Scan an image with Preview
    Place the pages in the scanner’s document feeder.
    Turn on the Use Document Feeder option, if it’s present.
    Set scanning options.You may need to click Show Details to see all the available options.Here are some of the options you can set. The options available to you depend on the scanner you’re using. Some options aren’t available on all scanners, and some scanners may have more options.
    To choose the type of image being scanned, use the Kind pop-up menu.Choose Text for black-and-white images with high contrast, such as text. Choose Black & White for grayscale images. Choose Color for color images.
    To scan both sides of a page, select Duplex.
    To choose a size for the scanned image, use the Size pop-up menu.
    To choose where to save the scanned images, use the Scan To pop-up menu.If you choose a folder, the images are stored in that folder. If you choose an app, the images are opened with that app.
    To adjust the colors or exposure of the scanned image, choose Manual from the Image Correction pop-up menu, and adjust the controls.If you don’t see the image correction controls, scroll down or make the Scanner window taller.
    Click Scan.The scanner scans the pages one by one.

Maybe you are looking for

  • Tcp data b/w labview and c++

    Hi  i am trying to establish TCP connection b/w LABVIEW and C++ program. Server is established in C++ while client is implemented in labview.Although connection is successfully establish b/w server and client, both are unable to correctly understand

  • Photoshop EPS Won't Open/Distorted When Opened

    The two problems I'm having revolve around Photoshop EPSs and Illustrator CS4. I created a very high resolution file in Photoshop which included some vector shapes & text. My client wanted the files delivered in EPS format, so I exported them as Phot

  • Why can't I create a PDF from a Word file with your $9.99 monthly plan. I have done so before.

    Why can't I change a Word file to a PDF file with your $9.99 monthly plan? I have done so before.

  • How do I get infinite bars when zooming in on piano roll?

    When zooming in on the piano roll, the bars stop at 128th notes or something. I can add smaller values of notes, but then theres no grid to make the input accurate. Is there a setting or button within the piano roll Im missing? Thanks, Sverre

  • Oracle 9i Warehouse builder...

    HI, We are in the process on designing a datawarehouse. Please let me know if Oracle ware house builder provides interfaces to the follwing financial systems :- 1)Great Plains     V6.0 2)Sun     4.2.6 3)Oracle Financials     11.5.8 4)Navision     2.6