Saved jpgs stuck with loading graphic image (prog bar and X)

Some jpgs downloaded onto my desktop do not display a preview, but also don't display the jpg format icon. They show a progress bar as if they were still downloading, but when clicked are fully loaded. This only happens with jpgs; pngs show up fine, as well as document type formats (pdf, doc, etc.)

According to the wiki adding rcutree.rcu_idle_gp_delay=1 as a kernel parameter should mitigate this:  "NVRM: GPU at 0000:01:00.0 has fallen off the bus."
https://wiki.archlinux.org/index.php/NV … iled.21.29
Adding nolapic stops my monitors from going black, but then I only have one cpu core, and probably other problems...

Similar Messages

  • HT201210 my Ipod is stuck with a picture of a connection and Itunes showing..

    my Ipod is stuck with a picture of a connection and Itunes showing.. my Itunes says it is unable to recover it,
    what should I do..the Ipod is stuck in this screen and nothing happens if I turn it on or off...

    Due the unsuccessful updation your iPhone has stuck in recovery mode. you need to download the iOS 7.0.2 from the following link http://appldnld.apple.com/iOS7/091-9872.20130924.2wc82/iPhone4,1_7.0.2_11A501_Re store.ipsw and restore your device manually,please make sure you have all the backup stored since this will be a restore not an update so you data will be lost and you will have to restore your data from backup.You can do this by shift + mouse click the restore button in iTunes this will give you an opendialogue box to select the iPSW from which you want to update your iPhone after that have some patience and let the iTunes complete the installation and enjoy iOS 7.0.2.

  • HT4623 My phone is stuck with the iTunes display, an arrow and power cord on the display???

    My iphone is stuck with the iTunes logo, an arrow and powercord on the display.  It will not power down or allow me to do anything.  I updated to the most recent OS version this morning after my battery drained overnight (it was fully charged yesterday afternoon) and this was the result.  I also have downloaded the latest version of iTunes on my laptop ...

    My 2-year old iPhone 4s running iOS7 suddenly started doing the same thing (randomly going into Recovery Mode) almost every morning for the last week or so.  It recovers OK (albeit back to factory presets), but I'd sure like to know what's going on.  Any info?    

  • HT1414 I "Erased all content and settings" and now my itunes does not recognize my iphoe when i plug it in. Plus my iphone is stuck with the apple symbol on it and wont do anything. what did i do?

    I "Erased all content and settings" and now my iTunes does not recognize my iPhone when I plug it in. Plus my iPhone is stuck with the apple symbol on it and wont do anything. what did I do? How do I get my phone to work again?    

    Reset, hold both Home and Power buttons until the iPhone begins to restart. Usually takes about 10 seconds time. If still problem. Open iTunes on computer. Connect iPhone to computer with USB Cable. Hold both Home and Power buttons until iTunes recognizes iPhone in Recovery Mode. Usually takes about 20 seconds of holding both buttons. Restore the Firmware.

  • I desperately would like to update Firefox to version 10 from version 9 but each time I try, I am stuck with FF10 checking addons for comparability and the Welcome page opening every time I start the browser.

    Windows 7 64 bit
    I desperately would like to update Firefox to version 10 from version 9 but each time I try, I am stuck with FF10 checking addons for compatability and the Welcome page opening every time I start the browser. I continue to have to revert to version 9 to resolve this issue.

    Sorry to be a while getting back! Tried all of that with no sucess so this AM, bit the bullet and deleted the FF folder from programs and downloaded and installed FF 10.01. Still was plagued with the same problem. Went into the appdata folder and there were two sessionstore.js files. Deleted them both, restarted the browser and no compatibility check for add-ons was done at start up and the extra tab for Welcome to FF was no longer opening Everything seems to be working as it should and I did not loose any of my settings.. Thank you for trying to help and I hope my solution helps anyone else who might experience this in the future. Here's hoping the next update goes smoother!

  • Help With Loading an Image In AIR

    I need to load an image (GIF) with AIR using File and FileStream, but can't figure out how to do it. I need to load the image into a Bitmap or BitmapData object, so I can't use the loader class. Here's what I have so far:
    import flash.display.*;
    import flash.events.*;
    import flash.filesytem.*;
    import flash.net.FileFilter;
    import flash.utils.ByteArray;
    import flash.geom.Rectangle;
    var file:File = File.documentsDirectory;
    var myImage:BitmapData;
    var myFilter:FileFilter = new FileFilter("GIF Image","*.gif");
    file.addEventListener(Event.SELECT,loadImage);
    file.browseForOpen("Open",[myFilter]);
    function loadImage(e:Event):void{
    var stream:FileStream = new FileStream();
    stream.open(file,FileMode.READ);
    var bytes:ByteArray = new ByteArray();
    stream.readBytes(bytes);
    stream.close();
    //By the way, this image is a special format and will always be 160 by 160 pixels.
    myImage = new BitmapData(160,160);
    bytes.position = 0;
    myImage.setPixels(new Rectangle(0,0,160,160),bytes);
    addChild(new Bitmap(myImage));
    However, this never works. I always get this error:
    Error #2030: End of file was encountered.
    I don't quite understand why. Help would be much appreciated.

    I already know how to do that, but I specifically stated in my post that I can't use the Loader class. The reason for that is that my program is an image manipulation program, and I need to load the data into a BitmapData object. However, since I originally made my post, I have found some more information. I used trace() to find out the length of the ByteArray I was loading the data into, and then the position after trying to create the BitmapData object, like so:
    import flash.display.*;
    import flash.events.*;
    import flash.filesytem.*;
    import flash.net.FileFilter;
    import flash.utils.ByteArray;
    import flash.geom.Rectangle;
    import flash.errors.EOFError;
    var file:File = File.documentsDirectory;
    var myImage:BitmapData;
    var myFilter:FileFilter = new FileFilter("GIF Image","*.gif");
    file.addEventListener(Event.SELECT,loadImage);
    file.browseForOpen("Open",[myFilter]);
    function loadImage(e:Event):void{
         var stream:FileStream = new FileStream();
         stream.open(file,FileMode.READ);
         var bytes:ByteArray = new ByteArray();
         stream.readBytes(bytes);
         stream.close();
         trace(bytes.length); //Outputs: 4631
         //By the way, this image is a special format and will always be 160 by 160 pixels.
         myImage = new BitmapData(160,160);
         bytes.position = 0;
         try{
              myImage.setPixels(new Rectangle(0,0,160,160),bytes);
         } catch(e:EOFError){
              trace(bytes.position); //Outputs: 4628
         addChild(new Bitmap(myImage));
    As the comments show, though the ByteArray is 4631 bytes, it is only read up until byte number 4628. Then it throws an error. Any idea what's going on?

  • Help with loading multiple images via LoadVars

    Hello everybody.
    I need a hand loading multiple images using the LoadVars
    method with a text file. I can get it to load 1 image but not
    anymore than that. I am aware of other methods like using
    components but I am looking for a method where I can access and
    change all data from 1 text file (there will be text variable text
    within the file aswell to, but I am more concerned with the images
    at the moment).
    Anyway on to the issue. I have created a much simple .fla
    file that outlines my problem.
    The movie contains 3 layers:
    - top layer contains AS
    - middle layer contains an empty movie clip with the
    instance name of mcImage1
    - bottom layer contains an empy movie clip with the instance
    name of mcImage2
    The AS layer contains the following code:
    imagedata = new LoadVars()
    imagedata.load("data.txt")
    imagedata.onLoad = function(ok){
    if(ok){
    mcImage1.loadMovie(this.Image1)
    mcImage2.loadMovie(this.Image2)
    } else trace("Problem Loading")
    In the same folder of my .swf file I have a text file called
    data.txt which contains the following
    &Image1=image1.gif
    &Image2=image2.gif
    Also in the same folder of my .swf file I have two images
    image1.gif and image2.gif.
    When I run the flash the image2.gif is imported correctly.
    image1.gif does not appear.
    You can download my source files and all images here
    http://www.myrealpage.com/projects/var_test/var_test.zip
    Any help that can be shed on this problem is much
    appreciated.
    Thanks
    Matt

    Glad to help. It is just that I see so many folks who have
    two different parts of a problem smushed together – each
    problem isn't so hard on its own, but together they are difficult
    to wrap your head around. Always try and break down each step of
    the problem and it will help you in the end.
    That being said, I'm not quite so sure on this next problem.
    I don't do so much timeline stuff along with the Actionscript. I
    can get tricky. So this I don't quite have as much of clear mental
    picture of what you are describing. But here are some questions
    that I would ask – either of myself if I was doing it or of
    you.
    Is there a stop() on frame one to wait for the
    LoadVars.onLoad? Does the onLoad then say to play?
    If not, what happens if we get to Frame 10 before the
    LoadVars has even finished? That could be a problem.
    Remember that the LoadVars object is an actual object that
    will exist until it is deleted or removed in various ways. You can
    access it at any time after it is loaded. The onLoad event handler
    is just that thing you want to happen immediately after it is
    loaded.
    So my design would probably be.
    LoadVars on Frame 1.
    Where I am stopped.
    In the onLoad handler load the first image and tell the
    timeline to play
    On frame 10, the LoadVars object will still exist (unless
    you've deleted it)
    Get the variable out of the LoadVars and load the image.
    If you want to check this. Put a stop() in frame 10 and run
    it in the testing environment. When it gets to that frame, go to
    the debug menu and List Variables. You should see that your
    LoadVars object is still there.
    Does that answer your question or am I totally missing the
    point?

  • Ipad stuck with loading circle!???

    Please help tried to restore my Ipad now its stuck on loading circle!
    When i do a hard reset it still goes back to the loading circle.
    It won't let me switch the Ipad off??

    By hard reset do you mean you held the power and home keys down until the Apple logo appeared?
    Barry

  • TS3694 I am stuck with the restore image on the ipod touch. I do not wish to loose all photos and videos on it, I tried everything. help! tried ireb and tiny umbrella.

    I am stuck iwth the restore image on the ipod touch I tried ireb and tiny umbrella without success, i do not wish to lose all the pictures and videos what can I do?

    Your iPod encountered an error and must be restore.
    To get back photos and videos restore:
    - Restore from backup
    - If you used PhotoStream then try getting photos  ony from your PhotoStream. See that topic of:
    iOS: Importing personal photos and videos from iOS devices to your computer
    - Maybe via How to perform iPad recovery for photos, videos

  • Macbook is stuck with loading wheel? Please help.

    i recently got a brand new macbook pro, today I decided to restart it, and when that happened. And turned back on it started loading, loaded half way and stopped them the only thing that appears is the loading wheel thst pops up and goes away and it continues to do that, I'm new to this and Have no clue what to do!

    Since you have a new MBP that is under warranty, you should take advantage of the 90 day telephone support or bring it into an Apple store genius bar for service.
    You can try SMC and NVRAM resets by a safe boot:
    http://support.apple.com/en-us/HT201295
    http://support.apple.com/en-us/HT204063
    http://support.apple.com/en-us/HT201262
    Ciao.

  • Trouble with loading videos - Manually manage music and videos not supported now with iOS5 and a 1st gen iPad?

    Since updating my iPad 1st gen to iOS5.0.1 videos don't get loaded properly into the Videos app.
    On the Summary page in iTunes of my docked iPad, I have always checked the box for "Manually manage music and videos".
    I have my reasons for doing it this way, but that's for another thread perhaps.
    The problem is that when I load a video to my iPad this way - by simply just dragging it from the desktop and onto the iPad, under Devices in iTunes - it copies/updates, and shows up on the iPad like it always has before iOS5. But now, with iOS5, when I undock, it can't be found anywhere within the Videos app on the iPad. The only way I can find it is to do a Search, which seems to find it, but when I click it, a different video plays - the first video in the Movies list in the Video app. Dock the iPad again, yes the video is there, according to iTunes, but no way to play it once iPad is undocked.
    My suspicion is that with iOS5 you are no longer able to use the "Manually manage music and videos (Mmm&v)" that you will be forced to run everything through iTunes - and probably iCloud. I've unchecked the Mmm&v box, and get prompted with "Are you sure? - All existing content on the iPad will be replaced with content from your iTunes library". READ - "Rebuild your entire video and music collection, and this time run it all through iTunes. Welcome to iOS5. Have a nice day or two wasting your time rebuilding your entire video and music collection. Don't fight it. Use iTunes for everything! Until we finally make iTunes a decent piece of digital media management software, then you'll have to do it all again."
    Okay, rant over - Anyone out there with running iOS5 on a 1st gen iPad with the Mmm&v option checked and able to load a video manually (not through iTunes)? Any other thoughts?
    Thanks

    Yea, i managed to fix my issue in a wild fashion way But I DONT suggest it to anyone.
    I like to hear why it happened after upgrading iTunes and if there is any peaceful solution.
    Bythe way, here is how i fixed it :
    1-i checked "manually manage music and videos" checkbox and clicked on "Sync" button
    2-It showed a threating message that it will erase my music and videos ,......
    3-I clicked on OK button and let iTunes do any thing she said , but the second it started to delete my treasures from my iphone, i disconnected my phone by pulling USB cable.
    Now i have my musics and videos untouched and got that Option enabled again and i can manage my Music/Videos and Books manually.

  • Stuck with HomeSync icon in top bar

    Hi,
    I have Snow Leopard 10.6.2 connected to Active Directory in my company. There were home sync feature enabled in active directory, but now it is disabled by AD administrator.
    Now I am stuck with homeSync icon (http://img638.imageshack.us/img638/5287/screenshotqj.png) in my top bar and I can't disable it, since I can't get into homeSync preferences from system preferences gui.
    I guess I can edit it manualy going into ~/Library/Preferences, but I don't know where I can find setting I am looking for (enabling/disabling homeSync icon in top bar).
    Does anyone know where it is?

    command+drag the icon off the menu bar.

  • My ipad had a message saying it wasn't backed up and so I used my iPhone went to iCloud and instead of backing up I accidentally deleted ipad account now I am stuck with the message in my ipad and can't back it up

    My ipad had a message saying it wasn't backed up. So I went to iCloud on my phone but instead of backing up I accidentally deleted my ipad account from my iCloud now I am stuck with ipad with the message and can't back up. Can someone please tell me what can I do.

    On the iPad... Perform a Reset...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430

  • I just tried to install a the new update for my iPad and it started but now its stuck with the apple in the window and it won't finish the update

    My iPad is stuck with the apple and the updating line but it is not finishing the update and the iPad is stuck I can't shut it off nothing is working just the bright white apple in the window.

    Hi rm44,
    Try resetting your device (nothing will be lost): Hold down the Home and Power buttons at the same time and continue to hold them down until the Apple appears (up to 30 seconds). Once the reset is complete, the Home or Lock screen will display. Once the device is back up, go to Settings>General>About, and see what version is displaying. If it has the iOS number you were updating to, then you are all set.
    If it has the old iOS version number, then the update did not take place. The best thing to do in that situation is to hook the device up to iTunes on the computer you sync with, and to update via iTunes.
    Cheers,
    GB

  • Sync failure with "Unknown error" in bottom bar and " h2 Client sent a bad request /h2 " in sync log

    For about two days all my devices have been failing to sync, with "Unknown error" in the bottom bar, and errors like this in the sync logs:
    <pre><nowiki>1366935522699 Sync.Tracker.History DEBUG Saving changed IDs to history
    1366935524160 Sync.Collection DEBUG mesg: POST success 200 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935524160 Sync.Collection DEBUG POST success 200 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935524544 Sync.Engine.History INFO Uploading 100 - 200 out of 643 records
    1366935524547 Sync.Collection DEBUG POST Length: 53358
    1366935525789 Sync.Collection DEBUG mesg: POST success 200 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935525789 Sync.Collection DEBUG POST success 200 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935525981 Sync.Engine.History INFO Uploading 200 - 300 out of 643 records
    1366935525985 Sync.Collection DEBUG POST Length: 48900
    1366935527259 Sync.Collection DEBUG mesg: POST success 200 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935527259 Sync.Collection DEBUG POST success 200 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935527654 Sync.Engine.History INFO Uploading 300 - 400 out of 643 records
    1366935527657 Sync.Collection DEBUG POST Length: 47409
    1366935527786 Sync.Collection DEBUG mesg: POST fail 400 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935527786 Sync.Collection DEBUG POST fail 400 https://phx-sync500.services.mozilla.com/1.1/zackw/storage/history
    1366935527786 Sync.Engine.History DEBUG Uploading records failed: <h2>Client sent a bad request.</h2>
    1366935527795 Sync.Status DEBUG Status for engine history: error.engine.reason.record_upload_fail
    1366935527795 Sync.Status DEBUG Status.service: success.status_ok => error.sync.failed_partial
    1366935527795 Sync.ErrorHandler DEBUG history failed: <h2>Client sent a bad request.</h2>
    No traceback available
    1366935527795 Sync.Synchronizer INFO Sync completed at 2013-04-25 20:18:47 after 14.18 secs.
    1366935527795 Sync.SyncScheduler DEBUG Next sync in 600000 ms.
    1366935527796 Sync.ErrorHandler DEBUG Some engines did not sync correctly.</nowiki></pre>

    They are having sync server issues for the past few days.
    https://services.mozilla.com/status/
    https://twitter.com/mozservices
    '''''Mozilla Services ‏@mozservices 26m'''''
    '''''Sorry folks, we're still experiencing some intermittent server/hardware issues with sync. We really do appreciate your patience!'''''

Maybe you are looking for

  • IPOD 3rd Gen not recognized by itunes on firewire but it does on USB

    Hi, I have a 3rd gen Ipod (the one with the buttons) since its release date. It worked perfectly with FIREWIRE. Months ago i restore it and now it's a mess. I have to connect it via USB to sync it with my itunes library, to delete music, to add new o

  • Converting word to pdf in A4 with specific margins

    I need  all my new forms designed in Word and converted into pdf  to be in A4 size with specific sized margins top, bottom, left and right as  per Standards guidelines. Do I need to set up Acrobat to do this or will it just convert exactly from MS Wo

  • Invalid column name error in JDBC adapter

    Hi all, My scenario is Proxy->XI->JDBC. I get the following error in receiver JDBC  adapter. Unable to execute statement for table or stored procedure. 'Account_Master' (Structure 'STATEMENT') due to com.microsoft.sqlserver.jdbc.SQLServerException: I

  • Preview -- two windows for one file?

    Hi, I'm stumped by an amazingly simple problem: I want to have two or three Preview.app windows open (at different positions of) the same .pdf file, but I can't find any possibility short of duplicating the file, once for every window! Where's the ma

  • Installation required form9i

    hi i m new to form9i. i want to deploy a project in organization. i m confused abt wht installation should be made on server side and on client side. (in network environment and in non network envir(stand alone)). wether i have to install application