Newbie with Macs with alot of questions

Ok.. I am a PC guy and never worked with a MAC before.
I have a Ibook POWER PC G3
Memory 256 MB SDRAM
MAC OSX Version 10.4.11
I believe it has 12GB of space left on the main hdd.. I am not that sure again, because I am not used to MACS
First question is the time will never stay set. Whenever I turn it on, it will tell me that the time is not set.
Secondly, I believe the battery is not good at all.. Whenever i unplug the power cable, it cuts off.
Are the two issues related??
I am thinking of upgrading the ram and the HDD in this MAC. Is it feasible or it it a lost cause?
I also want to upgrade the OS on it to the latest one. Is it possible or should I leave the OS as is?
Does it have an internal wireless card?? I am thinking it does not, but I am not that sure. How do I find out??
Does it uses the same type of ram sticks that is found in a windows laptop??
Thanks for all of your assistance once again...

Hi, and welcome to Apple Discussions.
First question is the time will never stay set. Whenever I turn it on, it will tell me that the time is not set.
Secondly, I believe the battery is not good at all.. Whenever i unplug the power cable, it cuts off.
Are the two issues related??
Yes. There is no secondary battery in the iBook to hold the settings, so if the main battery is no good, the setting will not hold for more than a few seconds after it is shut down. (A capacitor holds the settings long enough to swap out batteries if you have more than one battery to use with it.)
I am thinking of upgrading the ram and the HDD in this MAC. Is it feasible or it it a lost cause?
The RAM is absolutely upgradeable. You can upgrade the RAM with a 512 MB module which will replace the 128 MB module which currently occupies the one user-accessible RAM slot. It takes a 144-pin 3.3 V, PC100 or PC133 compliant, 1.25 inch SDRAM SO-DIMM available here:
http://eshop.macsales.com/shop/memory/iBooks-PowerBooks/G3-iBook/
Instructions for replacing the memory card can be found in this Apple Knowledge Base article:
http://docs.info.apple.com/article.html?artnum=111918
A hard drive upgrade is a complicated procedure, and not recommended unless you really know your way around such things. You almost have to completely disassemble the iBook to do it.
Assuming it is the 12-inch model, here is the link to instructions:
http://www.ifixit.com/Guide/Repair/iBook-G3-12-Inch-Hard-Drive/130/1
I also want to upgrade the OS on it to the latest one. Is it possible or should I leave the OS as is?
Mac OS X 10.4.11 is the best that an iBook G3 can do.
Does it have an internal wireless card?? I am thinking it does not, but I am not that sure. How do I find out??
Maybe or maybe not? Click on the Apple logo at the top left of the display and select "About This Mac." Then click on "More Info." This brings up the System Profiler and it will tell you whether or not an original AirPort Card is installed. While you're there, find out which exact iBook it is and tell us so we are better able to assist you. (Processor MHz rating and type of optical drive will do it.)
Does it uses the same type of ram sticks that is found in a windows laptop??
It uses the same type of RAM found in some Windows laptops. (See specific info above.)
In order to find out the size of the hard drive and how much space remains available on it, go to Applications > Utilities > Disk Utility. You can check the S.M.A.R.T. Status of the drive here, and also its specs (total capacity and available space).
Good luck with it, but keep in mind that it is a very old computer, so don't expect a whole lot from it. Apple discontinued G3 iBooks seven years ago.

Similar Messages

  • Newbie with JSP & JDBC questions

    Hi. I have a quick question. I have a client jsp page with a table, listing all the fields from my mySQL table called kellybclients. At the end of each row, I also have a submit button that I would like navigate the user to the campus jsp page that only shows the data associated with the client who's button they clicked on in the table. I'm trying to figure out how to pass this data from my JSP into the rowset.setCommand method in my connection/data bean. I am using a cached row set. Here's the code from my bean:
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package ETS;
    import java.sql.SQLException;
    import javax.sql.rowset.CachedRowSet;
    import java.util.ArrayList;
    import com.sun.rowset.CachedRowSetImpl;
    public class CampusDataBean {
        private CachedRowSet rowSet;
      public CampusDataBean() throws Exception
        Class.forName("com.mysql.jdbc.Driver");
        rowSet = new CachedRowSetImpl();
        rowSet.setUrl("jdbc:mysql://traderseven.nmsu.edu/is470Spring08?relaxAutoCommit=true");
        rowSet.setUsername("is470Spring08");
        rowSet.setPassword("1DoNtier");
        rowSet.setCommand("SELECT campid, clientid, campname,campcounty FROM kellybCampus WHERE clientid=?");
        CampusBean camp = new CampusBean();
        rowSet.setString(1, camp.getClientID());
        rowSet.execute();
      public ArrayList<CampusBean> getCampusList() throws SQLException
        ArrayList<CampusBean> campusList = new ArrayList<CampusBean>();
        rowSet.beforeFirst();
        while(rowSet.next())
          CampusBean campus = new CampusBean();
          campus.setCampID(rowSet.getString(1));
          campus.setClientID(rowSet.getString (2));
          campus.setCampName(rowSet.getString(3));
          campus.setCounty(rowSet.getString(4));
          campusList.add(campus);
        return campusList;
    public void addCampus(CampusBean campus) throws SQLException
        rowSet.moveToInsertRow();
        rowSet.updateString(1,campus.getCampID());
        rowSet.updateString(2,campus.getClientID());
        rowSet.updateString(3,campus.getCampName());
        rowSet.updateString(4,campus.getCounty());
        rowSet.insertRow();
        rowSet.moveToCurrentRow();
        rowSet.acceptChanges();
    }I'm sorry if this is too vague. I'd appreciate any help, fixes, or pointers on where to learn how to do this. Thank you again.
    KellyJo

    So the button should be a Submit button for a form. There are a couple of different methods for doing this:
    1) Each row on the table can be a different form, each form uses the same action (servlet) target and has a hidden input with a unique identifier for each of the clients:
    <table>
      <tr><form action="selectClient" method="post"><td> etc </td><td><input type="hidden" name="id" value="1"/><input type="submit"/></td></form></tr>
      <tr><form action="selectClient" method="post"><td> etc </td><td><input type="hidden" name="id" value="2"/><input type="submit"/></td></form></tr>2) Use a single form with a button type=submit for each row with different values (Note: This is broken in IE7 so you probably shouldn't use it)
    <table><form action="selectClient" method="post">
      <tr><td> etc </td><td><button type="submit" name="id" value="1">Submit</button></td></tr>
      <tr><td> etc </td><td><button type="submit" name="id" value="2">Submit</button></td></tr>3) Use a single form, have a hidden value with a blank value. Each row has a submit button with a javascript onclick method that sets the form's hidden value to one appropriate to the row, then submits the form. I won't show you this code but there are examples on the web.
    4) Use a single form with an input="submit" element on each row. Each button would have a different name with the ID info encoded in it, then you would have server-side code that takes parameters, finds the right one and parses out the proper row to edit:
    <table><form action="selectClient" method="post">
      <tr><td> etc </td><td><input type="submit" name="submit__id_1"/></td></tr>
      <tr><td> etc </td><td><input type="submit" name="submit__id_2"/></td></tr>I think most people end up doing some variant of 3, which I don't like because I hate to rely on JavaScript to make my web apps work properly. I would prefer 4, which takes more work on the server side (which I like better) but 1 works just as well with a lot more typing and uglier HTML code. Actually, I would like 2 the best because that is pretty much what the <button> element was designed for, but Microsoft screwed that up.

  • PS CC newbie with layer translate question

    I am a newbie in PS. Currently I am using Adobe PS CC, in which I want to merge quite a number of images together to form a "collage". Those images are already named with coordinates, like (0, 1).png with size 1280 x 1280 pixel, and I already load all of them into a PS document by photomerge. I suppose each of them is contained in a independent layer, and I can use free transform to move those layers to my required position such that those images can resemble into a large image like a puzzle. When the number of layers is large, doing this by hand is really a tedious work. So I want to automate it with the script. I have try the following script and run it, but without any response; please correct me as I am new (and also new in JavaScript as well)
    # target photoshop
    function Main()
         MoveLayerTo = function(l, x, y) {
               var b = l.bounds;
               var x1 = b[0].as("px");
               var y1 = b[1].as("px");
               var x2 = b[2].as("px");
               var y2 = b[3].as("px");
               var xc = x1 + (x2-x1)/2;
               var yc = y1 + (y2-y1)/2;
               l.translate(x-xc, y-yc);
      var i = 0;
      var j = 0;
      for (i = -6; i < 3; i++) {
      for (j = 3; j > -11; j--) {
      MoveLayerTo(app.activeDocument.layers.getByName("(" + i + ", " + j + ").png"), new UnitValue(640 +  (i + 6) * 1280, "px"), new UnitValue(640 + (3 - j) * 1280, "px"))

    Photo Collage Toolkit
    Photoshop scripting is powerful and I believe this package demonstrates this A video showing a 5 image collage PSD template  being populates with images:
    The package includes four simple rules to follow when making Photo Collage Template PSD files so they will be compatible with my Photoshop scripts.
    Size the photo collage templates for the print size you want - width, height and print DPI resolution.
    Photo collage templates must have a Photoshop background layer. The contents of this layer can be anything.
    Photo collage templates must have alpha channels named "Image 1", "Image 2", ... "Image n".
    Photo collage templates layers above the background layers must provide transparent areas to let the images that will be placed below them show through.
    There are twelve scripts in this package they provide the following functions:
    TestCollageTemplate.jsx - Used to test a Photo Collage Template while you are making it with Photoshop.
    CollageTemplateBuilder.jsx - Can build Templates compatible with this toolkit's scripts.
    LayerToAlphaChan.jsx - Used to convert a Prototype Image Layer stack into a template document.
    InteractivePopulateCollage.jsx - Used to interactively populate Any Photo Collage template. Offers most user control inserting pictures and text.
    ReplaceCollageImage.jsx - use to replace a populated collage image Smart Object layer with an other image correctly resized and positioned.
    ChangeTextSize.jsx - This script can be used to change Image stamps text size when the size used by the populating did not work well.
    PopulateCollageTemplate.jsx - Used to Automatically populate a Photo Collage template and leave the populated copy open in Photoshop.
    BatchOneImageCollage.jsx - Used to Automatically Batch Populate Collage templates that only have one image inserted. The Collage or Image may be stamped with text.
    BatchMultiImageCollage.jsx - Used to Automatically Batch Populate Any Photo Collage template with images in a source image folder. Easier to use than the interactive script. Saved collages can be tweaked.
    BatchPicturePackage.jsx - Used to Automatically Batch Populate Any Photo Collage template with an image in a source image folder
    PasteImageRoll.jsx - Paste Images into a document to be print on roll paper.
    PCTpreferences.jsx - Edit This File to Customize Collage Populating scripts default setting and add your own Layer styles.
    Documentation and Examples

  • IMovie newbie with problems and questions

    I first posted this in iMovie 9 which was incorrect. I am at iMovie version 6.0.3.
    I am new to iMovie and am struggling with my first project. My current problem is with transitions and playback. I have added a transition between my first and second clips and it shows in the clip viewer. However, when I click on the first clip and click play the clip plays to it's end but the transition does not start. If I then click on the transition and click play it goes through the transition but the next clip doesn't start to play. In fact, none of the clips play unless I click on the specific clip and click play. I would expect the entire movie to play from start to finish. Am I missing something? The iMovie Getting Started instructions are not very helpful
    Thank you
    John

    Sorry guys (Klaus and Karsten). I didn't look thoroughly enough (most unlike me)! When the iMovie Help window appears (following the link Klaus provided), it is blank. But then I clicked on the Home button - the middle icon shaped like a house at the top left of the window. Immediately, the Help Index appeared from which I could access all the items.
    How embarrassing - I should have known better, having used Help many times in the past (in all versions of iMovie).
    Apologies also for my comment about Apple removing Support articles! I think baby sitting yesterday threw me off a bit
    For the benefit of other users (including John Hendrie, the OP), this is the link we are talking about (as kindly provided by Klaus): http://docs.info.apple.com/article.html?path=iMovie/6.0/en/imv1096.html
    John
    Message was edited by: John Cogdell

  • Newbie with one small question

    im brand new to cisco, and ive just purchased a catalyst 1900 to start learning on.
    im trying to get some switching started, and i cant seem to get things working.
    what i did was create an ip address for the switch, which is the same ip address for interface 0/1. interface 0/1 goes to the gateway router and then out to the internet(so that we are clear, switch ip = interface 1 ip). the gateway has a static ip, and i have 5 allocatable statics(sticky ip) after that. so the switch has its own static ip(i made sure to set the ip default-gateway on the cisco switch).
    i then set interface 2 ip to a different ip address and then connected that to a linux system with that static ip.
    from the linux box, i can successfully ping the switch, the gateway, and anything else with an ip address. but i cant seem to get internet access on this linux box. i can successfully ping, but when i fire up the browser, i get nothing.
    any ideas. i really appreciate it. i know theres something that im missing. ive got my book in front of me and ive followed all of the steps, but this stuff is all written for simulations, so its a little different.
    thanks a ton.

    ok, turns out i cant ping out on the internet.
    i can tell you what commands ive entered
    ok, the gateway is xxx.xxx.xxx.238
    i have 5 other ip's, 233 - 237
    i have the cable going from the gateway switch into the first port on the switch. theres another ethernet cable going from port 2 to the linux box.
    into the switch:
    ip address xxx.xxx.xxx.236 255.255.255.248
    ip default-gateway xxx.xxx.xxx.238
    interface ethernet 0/1
    ip address xxx.xxx.xxx.236
    exit
    interface ethernet 0/1
    ip address xxx.xxx.xxx.237
    then into the linux box,
    ifconfig eth0 xxx.xxx.xxx.237 netmask 255.255.255.248 broadcast xxx.xxx.xxx.255
    from the linux box, i can successfully ping the switch and another computer that has been assigned a static ip that is connected into the gateway switch, not the cisco switch. i can successfully ping the linux box from that computer, so i can successfully send a ping from a windows computer to the gateway switch, to the cisco switch, and then to the linux box.
    i cannot ping anything beyond the gateway switch.
    any help would be great. i know this has to be a simple problem, sorry.

  • My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    Hmmmm... would appear that you need to be actually logged in to enable the additional menu features.
    Have you tried deletting the plists for MAS?
    This page might help you out...
    http://www.macobserver.com/tmo/answers/how_to_identify_and_fix_problems_with_the _mac_app_store
    Failing that, I will have to throw this back to the forum to see if anyone else can advise further.
    Let me know how you get on?
    Thanks.

  • My macbook pro is still under warranty.  I have just put it into Mac 1 to be repaired because I had the folder with the dreaded Question mark on it....new hard drive.  I was told that if I wanted my data retrieved, I would have to pay $445 p/h. Ahh!!!

    My macbook pro is still under warranty.  I have just put it into Mac 1 to be repaired because I had the folder with the dreaded Question mark on it....new hard drive.  I was told that if I wanted my data retrieved, I would have to pay $445 p/h. Ahh!!!  Shouldn't that be covered by warranty?

    My newest Mac just did the same "folder of death" dance. It's too late for you now, but you might consider a passport backup drive.You can get 2&3 T-bytes now fairly reasonably priced. A given with computers is they will crash, just a question of how bad and when, so you can be prepared for the next time.

  • Newbie to mac - need help with idvd

    heya people.
    i'm hoping someone can help me with my problem i have created a dvd using i dvd 6 with the one step dvd once it finished burning it ejected the dvd. however i accidentally closed the software. and i can't seem to find where its put the temp files it recorded to the HD when recording the movie, now i've only got a small hard disk space left because this was a rather long movie and i'm not liking the fact that with everything ese i have on here i only have 5 gb of space left.
    can anyone please tell me how to get rid of these temp files it would have created because i did a search and can't find a single file over 2gb on my hd yet i know the file is over 7gb in size. please anyone that can help it would be much appreciated. as i say i'm a newbie to macs only having this MBP for a few weeks, oh and i have bootcamp installed as well... ok ok i know tis wrong having windows on a mac but its for some software i have to use at work that isn't compatible with OSX. so please please please help me if you can.
    many thanks
    Danwilliams

    the best thing about macs are they are so obvious when you know what you are doing with them!
    Would someone please put that sentence in flashing lights at the top of every forum here!
    Dan:

  • My question is the my daughter has an ipod touch with alot of music and games on it, but the computer that had itunes in it and all the apps and music is now gone. How can I transfer all her games and music her new computer without loosing her stuff?

    My daughter has an ipod touch with alot of games and music on it. The computer it was synced to is forever gone and on her new computer some of the games dont show up along with her music. She is worried if she connects it to her new computer all will be lost. Is there anyway for this to not happen? The ipod is on its last life due to a cracked screen, and as for the games she has spent money on them such as smurf village and others. When i looked at game center on my phone about less than half of that game showed up. Is there anyway to fix these things before its to late and eveything is gone forever?
    THANK YOU.

    Follow these instructions
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • Newbie with a Motif ES8 - optimum setup with a minimalistic approach?

    hi,
    I'm trying to decide on the optimum setup with a minimalistic approach!
    I a newbie with the Motif ES8 and am at cross roads deciding on the type of computer setup for my VST.
    PC + Cubase vs. MAC + Logic Pro or Logic Pro Express?
    With MAC, how far do I need to go;i.e. MACBook Pro a must?
    how many USB ports (types 400 vs 800), etc?
    With Logic Pro, is Express going to be sufficient for a full soup to nuts recording and mastering given that this is for a home studio setup though with an idealist running it?
    I'm a one woman show and so don't need too many inputs/outputs. I'd be recording a track at a time and my songs take up less than 16 tracks.
    I would really appreciate any and all responses.
    Roya
    macbook pro   Mac OS X (10.4.7)  

    thanks for the detailed response PK
    so, the extra USB port on the HD would facilitate a
    hub type interface i.e. once you hook up another\
    device to the HD via USB, you're really hooked up to
    the computer.. right? and so, if I get a powered USB
    Hub, this wouldn't really matter.. correct?
    For the most part, you have to be careful hooking
    too many devices up to a computer WHEN you are trying
    to do some sound work. When they say a computer
    can do ABC we sometimes think that should include D.
    As for the sound interface, I already have an
    Audiophile that has midi in/out, firewire to
    computer, RCA jack for i/o. I know its not the high
    end stuff but I hope to do a stepwise upgrade here if
    at all possible..
    That actually might work, if it supports at least
    16 bit 44.1 khz that is the lowest you want to go.
    Ideally it should be 24 bit to take advantage of Logics
    24bit environment. You might be able to run the ES8
    straight into those RCA jacks if they are SPDIF and your
    keyboard has the same on the back.
    There are a bunch of people on Motifator discussion
    groups that warn against Apple's lack of support for
    Logic. Not sure if the concern is only regarding the
    combination of Yamaha (Motif) and Apple (Logic).
    I went and read that thread, here are some of my thoughts
    on some of this.
    Can't comment on MAC, but a dear friend of mine who is an audio engineer said >he had walked away from Logic after Apple bought them out. "Straight downhill" >I think is how he put it.
    Many windows users just hate Apple and their products.
    I think much of it is ignorance. They will say
    Macs are junk but when I ask them why
    they never have an answer or say something
    that is false. It sounds like this "professional"
    did not even wait to see that Logic did get better.
    Apple charges 200.00 for support of it's Professional
    applications. You really do not need it since there are
    so many experienced Logic users here that I never had
    a question go unanswered. I've noticed on those forums
    the same small group of people do most of the problem
    solving. I am not overly impressed with Yamaha's support.
    I had my questions about my keyboard answered quicker
    by those forums. So I guess both companies need work
    in this area. Frankly, for recording, I think the Motif
    and Logic are a Killer combination. Both have steep
    learning curves but once you get up to speed I think
    the results speak for themselves. The main difference
    in my opinion is that the Motif is the ultimate
    performance tool and Logic is the ultimate studio toolshop.
    After having a Motif for over a month, I am convinced
    it has a steeper learning curve than Logic take for instance
    that thread on getting your keyboard to record it's own
    audio output. The list of things to do each time is as long
    as my arm. In case you did not read it here it is.
    First thing – STORE your MIX setup and SAVE the Song to SmartMedia (or USB mass storage device) before resampling it so you have a backup. You would create a mix to balance the instruments the way you like them.
    * Select a target track, then press the [INTEGRATED SAMPLING] button.
    Setup the parameters for resampling:
    * Press [F1] DEST
    * Select a TRACK and [KEYBANK] (note) into which you will record the resampled data. You can target either an empty track or the track on which you are going to play (if you are going to play along). If all tracks are full, don't worry, you can still resample anyway.
    * Press [F2] SOURCE. Set the source parameters as follows:
    - Type = Sample - with this type the Integrated Sampling Sequencer will not create any NOTE-ON data in your sequencer, it will just simply add a new sample waveform to the waveform list
    - Source = Resample
    - Mono/Stereo = Stereo
    - Next = OFF
    - Frequency = 44.1k
    * Press [F6] REC This will place the sampling sequencer in Standby mode. Set the TrggrMode paramter to Manual
    * Press Start on the sequencer and check your levels. If too low set the REC GAIN higher +6bB or +12dB, if the level is to high (clipping- you will see a lightning bolt) lower the GAIN to -6dB or -12dB. When you have checked the levels, press STOP and return to the top of the SONG.
    * Press F6 REC to start the Resample, Press [>] (play) to begin recording the resample. The Motif ES will draw the wave as it samples.
    * When the song is over press [F6] STOP. The Motif ES will take a few moments to gather the data.
    To create the .wav file:
    * Press [FILE]
    * Press [F1] CONFIG
    * Press [SF1] CURRENT
    * If you will be saving the resampled song to a SmartMedia Card set the Current parameter to CARD. To save to a USB device, set this parameter to USB
    * Press [F2] SAVE
    * Set the data TYPE field to WAV
    * Cursor down and Name the wave
    * (If desired, navigate to the subdirectory where you want to save the *.wav file.)
    * Press [ENTER]
    * The ES will ask you which TRACK and NOTE to save as a wave file. Enter the values you selected as the sample destination in the procedure above.
    * Press and hold the AUDITION button to make sure your sample is there.
    * Press [ENTER] and the Motif ES will export the sample as a .wav to your SmartMedia card or USB device.
    Once you have configured Logic which are takes about
    3 minutes (and only has to be done once)
    and set up the keyboard which takes 30 seconds.
    (this has to be done once for each session)
    you plug your keyboard into your audio interface then
    Hit Record
    that is the whole list, two words.
    Once it is in Logic, you have many way to edit it
    and process if needed. The midi is much
    easier to manipulate and there are more
    ways than the ES has keys. Plus you can add to the
    sounds with the internal instruments which are
    as sophisticated and as high quality as the ES.
    Then if your happy with it you can create MP3's
    and burn Red book compliant CD's for
    commercial duplication.
    It really is a complete setup.
    But at any rate I'm going to do some more research on
    another scenario, i.e. what about MAC and Cubase? As
    you may know Yamaha just acquired Cubase..
    I dont think I would be the best to comment on that.
    Maybe ask one of the Gurus on the unofficial
    website for Cubase, The Cubinator.
    Sorry, I just couldn't resist.
    you've been very helpful - thanks again
    cheers,
    Roya
    Cheers!
    P.S. I agree with Dave, If you have a Macbook
    Pro you dont need another computer. If you
    wanta desktop whatever reasons I understand
    Oh and btw, what's QWERTY?
    They are the first 6 keys (top row/left to right)
    on your computer keyboard

  • My MBP (mid 09)/ folder with a flashing question mark.

    My MBP (mid 09) is showing a folder with a flashing question mark. I tried the usual things like PRAM Reset and booting with a external drive. I also changed the hard drive and could use it as a external drive on an other Mac - so this seems to work. Another drive could not be used too. The Apple Hardware Test does not work - my Superdrive is broken. Any ideas?

    https://discussions.apple.com/docs/DOC-3046
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • At startup I get grey screen and a folder with a flashing question mark.  How do I reset my MacBook Pro to the manufacture defaults?

    At startup I get grey screen and a folder with a flashing question mark.  How do I reset my MacBook Pro to the manufacture defaults?

    Click here and follow the instructions. If the computer originally shipped with Mac OS X 10.6.8 or earlier, when you reach step 5, insert its original disk, restart with the C key held down, use the Disk Utility to erase the internal drive, and install a fresh OS.
    (113954)

  • TS1440 iMac freezes, no choice but to hard shutdown, turn back on, white screen with folder and question mark appears

    Hi,
    so my iMac (it's not the most recent iMac if it makes any difference, and I'm running mountain lion 10.8.3) often freezes and I do a hard shutdown as I cannot force quit the applications or click on the apple in the top left to shut it down. When I come to turn it back on, I'm greeted with a white screen, in the middle of which is the dreaded folder with the flashing question mark in it. I've noticed that just before a freeze occurs, it starts running slowly and if I try going onto Facebook for example, it says that it cannot connect to facebook.com despite the internet connection being fine as I can browse things on Google. I have also noticed that before a freeze, in Finder, in All My Files, no files show. I went through this http://support.apple.com/kb/TS1440 and the problem still persists. Sometimes it does load fine if I shut it down again but when I eventually open up safari, if I had been on youtube for example, it will reload the page from a few videos before and not the one I was on when it actually froze.
    Any help would be hugely appreciated,
    Thanks
    Side note: When it says I must choose a community in order to post this, it only gives me a choice of 3 which are Mac OS X v10.4 Tiger, v10.5 Leopard, v10.6 Snow leopard, so apologies if this is posted in the wrong place - is there any way to get it moved to the correct place?

    Yes,easy fix but difficult to buy,think you can get them from the states (off the top of my head about £15).When you go to the apple store,tell yhem what you suspect and they will test if it is the cable or if its the hard drive,dosn't take that long and it's free.If you know what to do you can take the back off and with strong magnifying glass you might be able to see the fray look at the bend of the cable.

  • Embedded images replaced with blue square/question mark

    Guys,
    Am new to Macs so it's probably user error however, I regularly receive mails with embedding images in them. On my PC I had they came in fine however on my new Mac all the images get stripped out of the e-mail and saved as attachments. This means all the image place holders in the mail show as small blue squares with a white question mark in them and doing quick look on the attachments shows the correct images!
    Is there a config setting that stops mail stripping the images off as attachments when they're "in" an e-mail??
    Hope someone can help as this is bugging me now!!
    Thanks,
    Mark

    Don't know if this suggestion will help but..........
    I experienced problems with attaching images to outgoing mail. When I did this with my new iMac (OSX 10.4.11) the attached files were replaced with a blue square containing a question mark.
    I browsed various forums and found quite a few references to the same problem and I tried all the various 'fixes' to no avail.
    Earlier today I called Apple's tech support and spoke with Mujahid. He went through the problem, established that it was 'system wide' on my iMac and then he suggested that I trash Mail (v2.1.2) and re-install Mail (only Mail) from the disks that came with my Mac. I followed his instructions and after a shut down/restart cycle, Mail now functions correctly. When I attach an image file to an outgoing email, the file no longer appears as a blue square with ? mark but as the original image.
    I wonder if the same sort of fix might resolve the problems with Safari?
    Thanks to Mujahid.
    Regards.
    Niall

  • What do I do if wen I go to download an app it comes up with three security questions .wen I press on the third question it does not respond just turned blue n stays blue n won't let me go any further therefor not lettin me download any apps

    What do I do if wen I go to download an app it comes up with three security questions .wen I press on the third question it does not respond just turned blue n stays blue n won't let me go any further therefor not lettin me download any apps.   Thanks

    I have decided to dedicate this thread to the wonderful errors of Lion OSX. Each time I find a huge problem with Lion I will make note of it here.
    Today I discovered a new treasure of doggie poop in Lion. No Save As......
    I repeat. No Save As. In text editor I couldn't save the file with a new extension. I finally accomplished this oh so majorly difficult task (because we all know how difficult it should be to save a file with a new extension) by pressing duplicate and then saving a copy of the file with a new extension. Yet then I had to delete the first copy and send it to trash. And of course then I have to secure empty trash because if I have to do this the rest of my mac's life I will be taking up a quarter of percentage of space with duplicate files. So this is the real reason they got rid of Save As: so that it would garble up some extra GB on the ole hard disk.
    So about 20 minutes of my time were wasted while doing my homework and studying for an exam because I had to look up "how to save a file with a new extension in  mac Lion" and then wasted time sitting here and ranting on this forum until someone over at Apple wakes up from their OSX-coma.
    are you freaking kidding me Apple? I mean REALLY?!!!! who the heck designed this?!!! I want to know. I want his or her name and I want to sit down with them and have a long chat. and then I'd probably splash cold water on their face to wake them up.
    I am starting to believe that Apple is Satan.

Maybe you are looking for

  • ANT error while doing a setup-bpm from the OBPM documentation - antlib err

    Hi, Have anyone see this particular error and found a solution for the following problem: I've tried using the samples in OBPM Enterprise version for weblogic. It has samples under OBPMWlHome directory samples/interop. Setup my environment settings s

  • Xml in workflow

    Hello, Can someone plz help me with following problem. I would like to start a business event with as attribute an xml document. Depending on a certain tag in the xml file, another business event should be started. How do i 'connect' an xml document

  • When watching Youtube, there is no picture, but on Internet Explorer there is. How come?

    When opening YouTube in Firefox there is sound, but the picture immediately disappears. On Internet Explorer there are no problems. It might have to do with updating of Firefox some week ago.

  • Mappe Crash in I-Pad

    After several months of excellent use, the built-in application "mappe" in my I-Pad crashes as soon as I launch it. Any suggestion how to solve the problem? Thank you

  • When Satellite E105 will be available in UK

    HEY Does anyone know if the Satellite E105 (below) will be coming to the UK. http://explore.toshiba.com/laptops/satellite/E105 Cheers