How do I update my emac?

How do I update an Emac? I need to be able to download adobe and anti virus and games,

OSX retail disks work, but the eMac needs a 1.0Ghz or faster processor for the 10.5 installer to work. She needs to check the speeds.
The sticker on the inside of the optical drive door has the serial number but also the original hardware config and processor info. In this picture:
the third line starting with "G4" has the hardware config. The example has a 1.25Ghz processor, Have your friend check that before buying any OS disks.
She should also see if the serial numbers fall in these ranges:
G8412xxxxxx- G8520xxxxxx
YM412xxxxxx - YM520xxxxxx
VM440xxxxxx - VM516xxxxxx
Quite a few eMacs in these ranges had very bad logic board issues and may not be worth the cost of system disks, which are not cheap.
I hope you don't mind me asking an add-on question,
Around here, add-on posts sometimes get ignored because of the difficult they pose to the responder in keeping multiple issues straight in a single thread. We find the phrase, "exact same problem" seldom applies! It's always best to start a new thread so you get the full attention you deserve with diluting help offered to others. We gotcha covered this time, however!

Similar Messages

  • I would like to update my eMac from 10.4.11 to 10.6. How can I get this os version for the update?

    I would like to update my eMac from 10.4.11 to to 10.6.x How can I get this os version for the update?

    Highest an eMac can go is 10.5.8...
    Leopard requirements/10.5.x...
        *  Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    minimum system requirements
        * 512MB of memory (I say 1.5GB for PPC at least, 2-3GB minimum for IntelMacs)
        * DVD drive for installation
        * 9GB of available disk space (I say 30GB at least)
    Trouble is appl no longer sells it, you have to search eBay & such for the full retail version, not any grey Install Disc.
    There are workarounds if the 867MHz is the only hangup...
    http://sourceforge.net/projects/leopardassist/
    List of Applications Not Compatible with Leopard...
    http://guides.macrumors.com/List:Applications_Not_Compatible_with_Leopard
    Snow Leopard/10.6.x Requirements...
    General requirements
       * Mac computer with an Intel processor
        * 1GB of memory (I say 2GB at least)
        * 5GB of available disk space (I say 30GB at least)
        * DVD drive for installation
        * Some features require a compatible Internet service provider; fees may apply.
        * Some features require Apple’s MobileMe service; fees and terms apply.

  • TA48312 How can i update my osx software from my emac from osx 10.3 to the highest available software for an emac?

    How can i update my osx software from my emac from osx 10.3 to the highest available software for an emac?
    I have osx 10.3.x and i want to update to the highest possible. Please help!!!!! i cant find the download. And i dont want to lose any data!!

    Depending upon the specific model you have you can upgrade to either 10.4.x or 10.5.x. Neither are available from Apple any longer, so you will need to look to eBay or Amazon for copies. Be sure to only purchase retail copies and not gray labled machine-specific copies.
    If your eMac came with 10.3 originally and has a clock speed of 1 GHz or higher, then you can install Leopard, 10.5.x.
    If you don't want to lose data then make backups.

  • How do I update stocks widget?

    Every time I try to add a stock I get a message saying "failed to validate symbol". I am trying to add well known stocks from a published list such as DJI? Why am I getting that message and how do I update my list?

    Are you using Leopard as your computer profile data you entered suggests (emac Mac OS X (10.5.8) ), or Snow Leopard which is the forum in which you posted?

  • How can I update my app store account ?

    Hi, I have a new Iphone and I wanted to add some applications from apple store.
    Unfortunately, I had a message saying that I was using app store on a new device (true) and they needed to check some security thing from my visa card. Unfortunately, I had a new  card and do not have the previous one anylonger (the previous one expires in 1 year but had to be cancelled).
    Therefore I am blocked and cannot get into my account.
    How can I update my bank account and get into the apple store again ?
    Thanks
    Nadiege

    Great, it worked. i could update the account from the laptop (but not from the phone).
    Many thanks for such a swift feedback !!

  • I upgraded from 3gs and want to use my old 3gs as an ipod. how can i update my new apple ID on the 3gs as it still shows a previous one that I had?

    I recently upgraded from 3Gs to Iphone4 and want to use my old 3Gs as an ipod. how can i update
    the user ID on the 3gs to a new one that I have as it is still showing a previous user ID?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.

  • How can i update data in JTable at run time ?

    i am trying to build a client/server architecture for conducting quizzes & online tests.. My client will return a object to the server after the test is over, which contains details about the participant, his score and other details. i am putting the incoming object to an Vector. I'll create a new thread each time for the incoming connection and insert the object to the Vector.. Now, please tell me tat, how can i update my table automatically at run time so tat, my table is updated whenever a new object is entered into vector..
    here is my code for the table..
    public class MyTableModel extends AbstractTableModel {
        String columNames[] = { "ID", "NAME", "COLLEGE", "SCORE", "CELL" };
        /** Creates a new instance of MyTableModel */
        public MyTableModel() {
            Main.List = new Vector();
            SetDefaultData();
        public int getRowCount() {
            return Main.List == null ? 0 : Main.List.size();
        public int getColumnCount() {
            return columNames.length;
        public String getColumnName(int column) {
            return columNames[column];
        public boolean isCellEditable(int row,int col) {
            return false;
        public Object getValueAt(int rowindex, int columnindex) {
            if(rowindex < 0 || rowindex >= getRowCount())
                return "";
            Student row = (Student)Main.List.elementAt(rowindex);
            switch (columnindex)
                case 0 : return row.id;
                case 1 : return row.name;
                case 2 : return row.college;
                case 3 : return row.score;
                case 4 : return row.cell;
            return "";
        public String getTitle() {
            return "Student Table";
        private void SetDefaultData() {
            Main.List.removeAllElements();
            Main.List.addElement(new Student("CS041","Keerthivasan M","MNM",95,"9884326321"));
            Main.List.addElement(new Student("CS012","Arun M","MNM",90,"9884825780"));
            Main.List.addElement(new Student("CS019","Balaji S","MNM",79,"9841742068"));
            Main.List.addElement(new Student("CS005","Anand R","MNM",89,"9884130727"));
            Main.List.addElement(new Student("CS045","Manish J","MNM",55,"9841624625"));
            Main.List.addElement(new Student("CS013","Mangal S","MNM",5,"9841961742"));
    }

    In the future Swing related questions should be posted in the Swing forum.
    how can i update my table automatically at run time so tat, my table is
    updated whenever a new object is entered into vector..You don't update the Vector directly. You should be creating a method in your TableModel, called "addRow(...)". This method will do two things:
    a) add the Student object to the Vector
    b) invoke the fireTableRowsInserted(..) method of AbstractTableModel. This will cause the table to be repainted.

  • Steps to put itunes (50 gb) on external drive and delete from imac.  How would I update my ipods and ipad from the external drive if I do this

    I am planning to put itunes library on external hard drive. My Imac is running out of room and itunes is 50+ gb of music.
    What steps do I take to do this.  Also, if I do so, how do I update my ipods and my ipad 2.  I do back up my files with time machine.  This would be a completely separate new external hard drive.  Thanks in advance for any help.

    Two ways:
    1. After transferring to the external drive create an alias to the iTunes Music folder on the external drive.  Copy the alias into your Home folder.  Rename the alias to "iTunes Music."  Delete the alias from the external drive.
    2. In the iTunes preferences click on the Advanced icon in the toolbar.  You should see a field labeled, "iTunes Media Folder Location."  Click on the Change button and select the /iTunes Music/ folder on the external drive.

  • I have osx 10.6.8 and safari 5.1.10, how do I update safari?

    I been using MSN.com as my homepage for some time.  Suddenly I cannot access it using the Safari browser on my iMac.  Instead I get an MSN "preview" page with a message that I am using an outdated browser.  My browser is Safari 5.1.10.  I opened the Apple Menu and chose Software Updates, but it does not provide a Safari update.  How do I update Safari and what version should I use for OSX 10.6.8? 

    Safari is now a part of OS X and there are different versions (5, 6 and 7) of it.
    To update Safari you must update OS X.

  • How can we update data in LDAP server using PL/SQL.

    Hi,
    How can we update data in LDAP server using PL/SQL program.
    Is there any sample code for refrence.
    Thanks,
    Tarun

    Hi Justin,
    Thanks for your help. You got my correct requirements.
    Tim's example returning all the attributes of current user which is admin user. Please correct me if I am wrong.
    I have the following information:
    the admin user and password,server info , port and ldap_base for admin.
    I have uid and password for regular user, I am trying find the ldap_base for regular user, which may be different from adminuser.
    Please help me.
    Thanks,
    Edited by: james. on Jan 12, 2009 5:39 PM

  • HT3576 Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    Ok so i have this iPod touch (3rd gen) and i'm trying to update it through iTunes and when i click  check for update it keeps saying this version of iPod software (2.2.1) is your current version. what do i do? how do i update it?

    You have a 1st generation iPod Touch. It can not be upgraded beyond iOS 3.1.3, it is available at the link below.
    http://support.apple.com/kb/HT2052

  • How do I update my ipod touch with my  new email address for my  itunes account?

    How do I update my ipod touch with my new email address for my itunes account?  I recently changed my email address and updated it on my itunes account but now my ipod keeps asking me for the password associated with my old email address.

    I did this and I still get a error message about either the
    password or the email account is incorrect!

  • How do I update my Macbook Air 10.6.8 to a newer version?

    How do i update my Macbook Air 10.6.8 to a newer version

    Open the Mac App Store and try downloading Mavericks. If you get told it's incompatible, choose About this Mac from the Apple menu, click here, and order a download code for Lion 10.7.
    Mac OS X 10.7 and newer don't support PowerPC programs such as Microsoft Office 2004.
    (97791)

  • How do i updates itunes on a macbook pro 2009 10.5.8 to newer 10.6.8

    Hey guys i hope someone can help me. I recenlty brought an older model macbook pro 2009 with itunes 10.5.8 on it. for a great low price of $ 300 dollars. How ever i cant update a newer version of itunes to replace the 10.5.8. So everytime I plug my new ipad into the older mac it says i need itunes 10.6.8 or higher. how do i update to a newer version for free???? youtube was not helpful or goole. So  I am stuck.

    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.

  • How do I update the software on my Airport Express?

    Hello everyone,
    I have an Airport Extreme base station acting as WDS and an Airport Express station. I recently upgraded the security on the Airport Extreme base station from 128-WEP to WPA (Personal), but I don't know whether I have to do something to the Airport Express base station. It's green light is on. Do I need to do something? Also, how do I update the software in the Express? Whenever I open the Airport Admin Utility, the only thing that comes up on a scan is my Extreme base station. Any advice would be most appreciated.

    yes you need to update your Airpost Express. I just went through this last week with two of my Airport Expresses. I updated my Base and my Remote's light was green but was unable to view it in Airport Admin Utility. So this is what I ended up doing and it works great.
    First bring the Airport Express you are working on in the same room as your computer......just the ease of seeing what is going on with the Airport Express. Next you need to reset it.....take a paper clip and push in the little button next to the Audio port and hold in 10 seconds. Then unplug the unit wait 10 seconds and plug it back in. wait about 3 minutes and then you will need to use Airport Set Up Assistant. You will need to make sure you have WPA Personal on your Airport Express too.
    don't forget to make sure you have the update firmware too.
    http://www.apple.com/support/airport/
    I hope this helps.....
    Powerbook G4 1.67 15", 1 gig ram, 128 vram, 80 gig harddrive   Mac OS X (10.4.6)   Powermac G3 266 mt, Dell 5150,ibook G4, 1 gig shuffle, epson printers, airport

Maybe you are looking for

  • How do I choose the font when I write messages in Firefox? Right now, the default seems to be Courier.

    I'm on an iMac running OS 10.6.4 and, because of IT issues, I have to go through Webmail and Microsoft Outlook Web Access. I have already checked the Firefox Preferences pane. It only gives me the option to change the font for the Firefox "shell" and

  • How to configure Time Capsule to add another 2GB of storage via USB External Hard Drive?

    Hi All, I've recently added an external 2GB hard drive via USB to my 1GB Time Capsule as I had reached capacity.  Time Capsule recognises the new 2GB hard drive so I know I have got that at least that bit right! But... I cant seem to figure out how t

  • Cannot sort files in bridge cs4

    Hi As you know it, since Windows XP xp2, the explorer sorts the files this way : 1, 002, 03, 000004... For getting back the "right" alphabetical way, you can change the registry. So did I. Now in the explorer, I get the files sorted like this : 00000

  • SELECT TABLE BASED ON CONDITION

    hi every one , i need your help in resolving this issue . if you look at the last column service_id in the select the value of the service_id is derived from by the source_system. each source system can have 1 to multiple service_ids . the below quer

  • SMARTFORMS field in STRING format

    Hi! <b>Is there limitations when using data type STRING in connection with SMARTFORMS?</b> I'm trying to send a text field (581 digit long) into an XML file. It is declarated: AVVTEXT     <i>(text field, can be 0-2004 digit)</i> data type <b>STRING</