Lion/iMac problem for real experts!

I have some bad trouble with my iMac 10.7 after installing Lion.
First Lion (obviously) didn't install right. Mac OS X Programms (iCal, Safari, Mail, Softwareupdate et cetera) didn't work and crashed right after start.
I decided to do a Recovery HD reinstall of Lion. The download went quite well it just didn't reinstall Lion.
So for the next step I decided to save my data (Time machine also crashed so I did it manual) and formate my Mac HD out off the recovery HD to install Lion on the system.
After doing that I tried the known way of installing Lion off the HD recovery window but it didnt install LIon again! Then I decided to reinstall Snow leopard but the mac ejects the install DVD immediatley so I cant do that.
After starting the Mac it automatically goes into Revovery HD because there is nothing on the Hard Drive.
I think my last chance now is to get the Mac back to factory settings, but I don't know how to do that.
Anyone got a clue what to do wiith my problem? I am desperate because I didn't plan on killig my Mac with Lion!
Hardware: iMac 21,5", 3,06Ghz Intel Core 2 Duo, 8GB RAM

I think doing a fresh reinstall would be the wise way to go. However the reason most people have problems installing or updating their OS is if there was a prior problem. So my recommendation would be once your have reinstalled Snow Leopard to make sure it's running perfectly before re-attempting to install Lion.
In order to start over you will need a back up of your Snow Leopard system, this should be on your Time Machine Backup or Bootable Clone. This will have all  your data files you will need. Just another heads up, always, Always, ALWAYS backup prior to any system update!!!! Things can and do go wrong.
Assuming you have a viable backup then insert either the original Snow Leopard Install Disc that shipped with your computer or the SL upgrade DVD you purchased. Then restart the machine while holding down the Option key, choose the Install Disc and then choose  your language. Then click the Utilities menu and open Disk Utilities. In Disk Utilities select  your internal HD on the left pane then click the Erase tab. Ensure Format is set to Mac OS Extended (Journaled) and then click Erase. This will totally wipe your HD clean and will take a couple of minutes probably. After the HD has been wiped clean then exit DU and continue with the Install of Snow Leopard following the on-screen prompts. When it asks if you migrating from another Mac select yes and follow the prompts to restore from your backup. After the Installation has been done then navigate to 10.6.8 Update Combo and install the Combo Update. After that has run then run Software Update to ensure everything else is up-to-date. Finally after this is installed and is running smoothly then re-attempt to install Lion.
NOTE: With any update to OS X it's smart to:
a) BACKUP first !!!!!!!
b) Disconnect all peripherals except the keyboard and mouse
c) Repair Disk Permissions prior to and after the update.

Similar Messages

  • A small Java Problem for java Experts

    Hi Guys...
    I have a small problem with my program...
    Tha program I am using consist of several frames where one invokes the other in row.
    These are the classes I am using:
    the FIRST class://THIS CLASS IS NOT COMPLETE
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    * LabelDemo.java is a 1.4 application that needs one other file:
    * images/middle.gif
    public class CSVloader extends JPanel implements ActionListener {
         ImageIcon icon ;
         JLabel label;
    JButton theButton1;
    JButton saveButton;
    JButton displayButton;
    JButton displayStyleButton;
    JFileChooser fc;
    final boolean shouldFill = true;
    final boolean shouldWeightX = true;
    public CSVloader() {
    GridBagLayout gridbag = new GridBagLayout();
    GridBagConstraints c = new GridBagConstraints();
    setLayout(gridbag);
    if (shouldFill) {
    //natural height, maximum width
    c.fill = GridBagConstraints.HORIZONTAL;
    theButton1 = new JButton("Choose source File");
    theButton1.addActionListener(this);
    if (shouldWeightX) {
    c.weightx = 0.5;
    c.gridx = 0;
    c.gridy = 0;
    gridbag.setConstraints(theButton1, c);
    add(theButton1);
    displayStyleButton = new JButton("CSV Display style");
    displayStyleButton.addActionListener(this);
    c.gridx = 0;
    c.gridy = 2;
    gridbag.setConstraints(displayStyleButton, c);
    add(displayStyleButton);
    displayButton = new JButton("Display");
    displayButton.addActionListener(this);
    c.gridx = 1;
    c.gridy = 0;
    gridbag.setConstraints(displayButton, c);
    add(displayButton);
    saveButton = new JButton("Save");
    saveButton.addActionListener(this);
    c.gridx = 0;
    c.gridy = 1;
    gridbag.setConstraints(saveButton, c);
    add(saveButton);
    icon = new ImageIcon("c:/applets/CSVlogo.gif");
    //Create the first label.
    label = new JLabel(icon);
    c.ipady = 45; //make this component tall
    c.weightx = 0.0;
    c.gridwidth = 1;
    c.gridx = 1;
    c.gridy = 1;
    gridbag.setConstraints(label, c);
    add(label);
    fc = new JFileChooser();
    public Dimension getDimension(int hight, int width) {
    Dimension theDimension = new Dimension(hight,width);
    return theDimension;
    public void actionPerformed(ActionEvent e) {
    //Handle open button action.
    if (e.getSource() == theButton1) {
    int returnVal = fc.showOpenDialog(CSVloader.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //This is where a real application would open the file.
    //Handle save button action.
    } else
    if (e.getSource() == displayButton) {
         try {
    Runtime.getRuntime().exec("cmd /c start " + "c:\\applets\\displayData.html");
    catch(IOException io)
    System.err.println("Caught IOException: " +
         io.getMessage());
    }else
    if (e.getSource() == displayStyleButton)
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("Display Style");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    DisplayStyle newContentPane = new DisplayStyle();
    newContentPane.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    else
    if (e.getSource() == saveButton) {
         int returnVal = fc.showOpenDialog(CSVloader.this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    File saveFile = fc.getSelectedFile();
    //This is where a real application would open the file.
    public static void main(String[] args) {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("LabelDemo");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    CSVloader newContentPane = new CSVloader();
    newContentPane.setBackground(Color.WHITE);
    newContentPane.setOpaque(true);
    frame.setContentPane(newContentPane);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    // Runtime.getRuntime().exec("cmd /c start " + "....\\docs\\index.html");
    this is the SECOND class:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class DisplayStyle extends JPanel implements ActionListener{
         public static final int FIRST_OPTION = 0;
         public static final int SECOND_OPTION = 1;
         public static final int THIRD_OPTION = 2;
         public static final int THE_BUTTON_OPTION =3;
    public static final int ERROR = -1;
         public int selectedOption = ERROR;
         static String table = "Table";
         static String tableNoBorders = "Table without Borders";
         static String highlightedTable = "Highlighted Table without Borders";
         public JRadioButton theTable;
         public JRadioButton theTable2;
         public JRadioButton theTable3;
         public JButton theButton;
         public String theName;
         public DisplayStyle ()
         theTable = new JRadioButton(table);
         theTable.setActionCommand(""+ FIRST_OPTION);
         theTable.addActionListener(this);
         theTable.setMnemonic(KeyEvent.VK_B);     
    theTable.setSelected(true);
    theTable2 = new JRadioButton(tableNoBorders);
    theTable2.setActionCommand(""+ SECOND_OPTION);
         theTable2.addActionListener(this);
         theTable2.setMnemonic(KeyEvent.VK_B);     
    theTable3 = new JRadioButton(highlightedTable);
    theTable3.setActionCommand(""+ THIRD_OPTION);
         theTable3.addActionListener(this);
         theTable3.setMnemonic(KeyEvent.VK_B);     
    theButton = new JButton("OK");
    theButton.setActionCommand(""+ THE_BUTTON_OPTION);
    theButton.addActionListener(this);
         ButtonGroup group = new ButtonGroup();
    group.add(theTable);
    group.add(theTable2);
    group.add(theTable3);
    JLabel theLabel = new JLabel("Choose the style of Display");
    JPanel radioPanel = new JPanel(new GridLayout(0, 1));
    radioPanel.add(theLabel);
    radioPanel.add(theTable);
    radioPanel.add(theTable2);
    radioPanel.add(theTable3);
    radioPanel.add(theButton);
    add(radioPanel, BorderLayout.LINE_START);
         public void actionPerformed (ActionEvent e) {
         if(e.getSource() == theButton)
         JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame1 = new JFrame("The Format");
    frame1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    Formats newFormat = new Formats();
    newFormat.setOpaque(true); //content panes must be opaque
    frame1.setContentPane(newFormat);
    //Display the window.
    frame1.pack();
    frame1.setVisible(true);
         selectedOption = Integer.parseInt(e.getActionCommand().trim());
         public DisplayStyle getInstance(){
              return this;      
    this is the THIRD class:
    mport java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Formats extends JPanel implements ActionListener{
         public static final int FIRST_OPTION = 0;
         public static final int SECOND_OPTION = 1;
         public static final int THIRD_OPTION = 2;
         public static final int FOURTH_OPTION = 4;
         public static final int THE_BUTTON_OPTION =3;
    public static final int ERROR = -1;
         public int selectedOption = ERROR;
         static String standardFormat = "Date first";
         static String timeFirstFormat = "Time First";
         static String typeFirstFormat = "Type of call first";
         static String extFirstFormat = "Extension first";
         public JButton theButton;
         public JRadioButton theStandardButton1 ;
         public JRadioButton theTimeButton;
         public JRadioButton theTypeButton;
         public JRadioButton theExtButton ;
         public Formats()
    theStandardButton1 = new JRadioButton(standardFormat);
         theStandardButton1.setMnemonic(KeyEvent.VK_B);     
    theStandardButton1.setSelected(true);
         theTimeButton = new JRadioButton(timeFirstFormat);
         theTimeButton.setMnemonic(KeyEvent.VK_B);     
    theTypeButton = new JRadioButton(typeFirstFormat);
         theTypeButton .setMnemonic(KeyEvent.VK_B);     
    theExtButton = new JRadioButton(extFirstFormat);
         theExtButton.setMnemonic(KeyEvent.VK_B);     
         ButtonGroup group = new ButtonGroup();
    group.add(theStandardButton1);
    group.add(theTimeButton);
    group.add(theTypeButton);
    group.add(theExtButton);
    JLabel newLabel = new JLabel("Choose the Format type for the data to be displayed");
    theButton = new JButton("OK");
    theButton.addActionListener(this);
    theButton.setActionCommand("" + THE_BUTTON_OPTION);
    JPanel radioPanel = new JPanel(new GridLayout(0, 1));
    radioPanel.add(newLabel);
    radioPanel.add(theStandardButton1);
    radioPanel.add(theTimeButton);
    radioPanel.add(theTypeButton);
    radioPanel.add(theExtButton);
    radioPanel.add(theButton);
    add(radioPanel, BorderLayout.LINE_START);      
         public void actionPerformed (ActionEvent e) {
         if(e.getSource() == theButton)
         JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("The Font");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    TableFonts newFont = new TableFonts();
    newFont.setOpaque(true); //content panes must be opaque
    frame.setContentPane(newFont);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
         selectedOption = Integer.parseInt(e.getActionCommand().trim());
         public Formats getInstance(){
              return this;      
    and the last class:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class TableFonts extends JPanel implements ActionListener{
         static String standardFont = "Standard Font";
         static String boldFont = "Bold Font";
         static String italicFont = "Italic Font";
         static String monospaceFont = "Monospace Font";
         public      JRadioButton theStandardButton ;
         public JRadioButton theBoldButton;
         public JRadioButton theItalicButton;
         public JRadioButton theMonospaceButton ;
         public TableFonts()
    theStandardButton = new JRadioButton(standardFont);
         theStandardButton.setMnemonic(KeyEvent.VK_B);     
    theStandardButton.setSelected(true);
         theBoldButton = new JRadioButton(boldFont);
         theBoldButton.setMnemonic(KeyEvent.VK_B);     
    theItalicButton = new JRadioButton(italicFont);
         theItalicButton .setMnemonic(KeyEvent.VK_B);     
    theMonospaceButton = new JRadioButton(monospaceFont);
         theMonospaceButton.setMnemonic(KeyEvent.VK_B);     
         ButtonGroup group = new ButtonGroup();
    group.add(theStandardButton);
    group.add(theBoldButton);
    group.add(theItalicButton);
    group.add(theMonospaceButton);
    theStandardButton.addActionListener(this);
    theBoldButton.addActionListener(this);
    theItalicButton.addActionListener(this);
    theMonospaceButton.addActionListener(this);
    JLabel newLabel = new JLabel("Choose the correct font for the data to be displayed");
    JPanel radioPanel = new JPanel(new GridLayout(0, 1));
    radioPanel.add(newLabel);
    radioPanel.add(theStandardButton);
    radioPanel.add(theBoldButton);
    radioPanel.add(theItalicButton);
    radioPanel.add(theMonospaceButton);
    add(radioPanel, BorderLayout.LINE_START);
         public void actionPerformed(ActionEvent e) {
    The problem I am getting is the Number format exception when the OK button of the class Formats is clicked...
    here is the error I am getting:
    java.lang.NumberFormatException: For input string: "OK"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.
    java:48)
    at java.lang.Integer.parseInt(Integer.java:426)
    at java.lang.Integer.parseInt(Integer.java:476)
    at Formats.actionPerformed(Formats.java:80)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:17
    64)
    at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(Abstra
    ctButton.java:1817)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel
    .java:419)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:257
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonL
    istener.java:245)
    at java.awt.Component.processMouseEvent(Component.java:5134)
    at java.awt.Component.processEvent(Component.java:4931)
    at java.awt.Container.processEvent(Container.java:1566)
    at java.awt.Component.dispatchEventImpl(Component.java:3639)
    at java.awt.Container.dispatchEventImpl(Container.java:1623)
    at java.awt.Component.dispatchEvent(Component.java:3480)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3450
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3165)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3095)
    at java.awt.Container.dispatchEventImpl(Container.java:1609)
    at java.awt.Window.dispatchEventImpl(Window.java:1590)
    at java.awt.Component.dispatchEvent(Component.java:3480)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:197)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:150)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    COULD YOU GUYS PLEASE TELL ME HOW TO GET AROUND THIS PROBLEM:
    THANKS...

    It's in this line:
    selectedOption = Integer.parseInt(e.getActionCommand().trim());
    Kind regards,
      Levi
    PS. have you noticed the [code][code[i]] tags?

  • This is a problem for the experts around here

    I really need help with this - I have been trying to get this
    to work for 2 weeks now and so far no one has been able to help.
    See
    http://www.kirupa.com/forum/showthread.php?t=248030
    and
    http://www.kirupa.com/forum/showthread.php?t=249806
    for my previous attempts at figuring this out.
    I am attempting to use components in my flash movie, but when
    I test the movie, none of the labels show up.
    The components are placed into a movie clip that is
    instantiated and manipulated at runtime - in other words, it exists
    only in the library and is called into existence at runtime through
    the attachMovie method.
    On the side of the screen are buttons that make this MC move
    around the screen.
    These components I am trying to use are not being rotated,
    just moved (because they are inside a MC that is being moved). I've
    tested this and have determined that moving a component at runtime
    does not cause the text to disappear - only rotating it does.
    If you need it, I have uploaded the
    source
    file
    . Just run it and you'll see the component - with no text
    displaying. The rows should be labeled "1" "2" and "3".
    If you get this far (downloading and looking at the source
    fla) I will go the distance here and point you directly to where
    this object is located. Simply open the fla's library and double
    click on the
    searchAreaContent
    movieclip inside the
    search panel
    folder. You will find the component in there. Thanks in
    advance for any help!

    Daleweb,
    The method to create components and place them on the stage
    is this (example
    is for a checkBox component):
    import mx.controls.CheckBox;
    placeHolder.createClassObject(CheckBox, "myCB1",
    {label:"Yes"});
    myCB1._x = 100;
    myCB1._y = 100;
    I did not download your zip file however, when you load
    components into
    child clips, they can lose their functionality. Instead, load
    them at
    level0.
    hth
    Dan Mode
    ->Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "dalewb" <[email protected]> wrote in
    message
    news:[email protected]...
    >I really need help with this - I have been trying to get
    this to work for 2
    > weeks now and so far no one has been able to help. I am
    attempting to use
    > components in my flash movie, but when I test the movie,
    none of the
    > labels
    > show up.
    >
    > The components are placed into a movie clip that is
    instantiated and
    > manipulated at runtime - in other words, it exists only
    in the library and
    > is
    > called into existence at runtime through the attachMovie
    method.
    >
    > On the side of the screen are buttons that make this MC
    move around the
    > screen.
    >
    > These components I am trying to use are not being
    rotated, just moved
    > (because
    > they are inside a MC that is being moved). I've tested
    this and have
    > determined
    > that moving a component at runtime does not cause the
    text to disappear -
    > only
    > rotating it does.
    >
    > If you need it, I have uploaded the
    >
    http://www.dwbgallery.com/stuff/gamepal/tcg68c.zip
    > Just
    > run it and you'll see the component - with no text
    displaying. The rows
    > should
    > be labeled "1" "2" and "3".
    >
    > If you get this far (downloading and looking at the
    source fla) I will go
    > the
    > distance here and point you directly to where this
    object is located.
    > Simply
    > open the fla's library and double click on the
    >
    searchAreaContent
    > movieclip inside the
    search panel
    folder. You will find the
    > component in there. Thanks in advance for any help!
    >

  • A Maverick backup problem for Terminal Expert

    I upgraded my MacBook Pro from Mountain Lion 10.8.5 and Tri-BackUp 6 to Maverick 10.9.1 and Tri-BackUp 7.
    From that upgrade Tri-BackUp is checking the Volume folder and suspend the backup because it find an incompatible element in Volume.
    It was not there before the upgrade to Maverick because Tri-BackUp 6 have the same detection feature.
    In the finder there is only one Sauvegarde (BackUp) MacBook element.
    But using the Terminal with the command ls -l -a -b -F -H /Volumes/  we find two Sauvegarde MacBook:
    d--x--x--x+  3 root    admin   102 10 avr  2013 Sauvegarde MacBook/
    drwxr-xr-x@ 34 root    wheel  1224 15 fév 03:03 Sauvegarde MacBook 1/
    This element is invisible and the +x indicate a special protection:
    d--x--x--x+  3 root    admin   102 10 avr  2013 Sauvegarde MacBook/
    If I disconnect the Sauvegarde MacBook external hard drive (USB3) then the command l -a -b -F -H /Volumes/  find only d--x--x--x+  3 root    admin   102 10 avr  2013 Sauvegarde MacBook/
    So the problem is on the internal hard drive.
    The Terminal command sudo rm -R /Volumes/Sauvegarde MacBook do not find the file.
    MacBook-Pro-de-Gilles-Chatillon-2:~ Gilles$ sudo rm -R /Volumes/Sauvegarde MacBook
    rm: /Volumes/Sauvegarde: No such file or directory
    rm: MacBook: No such file or directory
    MacBook-Pro-de-Gilles-Chatillon-2:~ Gilles$
    How can I locate and delete this element.

    Don't delete files in the shell. It's very dangerous. You're lucky you didn't wipe out a lot more than you intended.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Volumes
    In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return. A folder will open. Drag the subfolder named "Sauvegarde MacBook" to the Trash and empty.

  • Baffling problem for the experts.

    Hi.
    I recently uploaded a cd and but of the tracks was damaged and wouldn't upload so I purchased that missing track from iTunes. The idea was that I would end up with the complete album.
    In theory, that is what I have. However, I can't find a way to actually incorporate that one track with the others so it will appear as the one complete album in my iTunes library. In other words, at present iTunes shows two albums: one album being the original uploaded tracks, and one album containing the one track obtained from iTunes.
    Any ideas?

    Highlight all the tracks that are supposed to be in the album, the ones from the CD and the one you bought off iTunes. Do a get info on the whole bunch of them. Check the Artist and Album fields. If either are blank that means one or more of the tracks have different information entered. If that is the case then correct them all to have the same info by entering the correct info. If the field is filled in, then it is ok.
    Any differences like capitalization, extra characters, etc. will make iTunes treat them as different. For example, your CD might have imported with an artist name of "U2" but the purchased song might be "u2". Like wise, you might have an album name of "Rattle And Hum" while others are "Rattle & Hum" or a "The" was left off one of the others.
    Patrick

  • Has anyone had any luck returning there iMac w/ Lion? I couldn't even reconnect back to the iternet tonight w/o restarting my new iMac....  Looks like folks have been having this problem for months

    Has anyone had any luck returning their iMac w/ Lion? I couldn't even reconnect back to the iternet tonight w/o restarting my new iMac....  Looks like folks have been having this problem for months & months .. The Apple tech told me that all I could do is wait for Apple to come up with a fix... Got a new router this week so that isnt' it.  Would I be better off w/o this until Apple gets their act together?  I downloaded the combo update 10.7.3 & it helped for about a day...  yesterday I still had to manually reset the connection but now it's resorting back to disconnectiong w/o fully going into sleep mode first.  Sorry to say this is a major lemon.  Help!

    Seems unfair... I thought I was probalby having a router problem...  got a new router this week. Thst's when we realized we have a computer problem.  My next door nieghbor got zero sleep staying up all night while trying to help us figure out what the problem could be. He said if it were him he would have returned the iMac / Lion.  Got the new iMac w/ Lion for Christmas but didn't realize until this week that Apple is the problem....  Hard to believe that Apple just has kept on selling this like ... oh  No problem!  Can't stay on the internet... but will sell you another one today!  I'm getting mad...  It's not every day we spend that kind of money on a computer .  & ALL they can give us is that LOUSY Lion combo update.  I can't even stay connected long enough to make a vitamin order with Puritan's Pride...  & then the disconnection wipes out my cart... so I have to  start over. When are they going to fix this!   'Not feeling very positive'.  I feel like Apple KNOWINGLY sold my husband a defective... system.  14 days... oh please...

  • Please read my question carefully, this is, I think, a question for the experts. It's not the usual name change question.   When I setup my new MacBook Pro, something slipped by me and my computer was named First-Lasts-MacBook-Pro (using my real first and

    Please read my question carefully, this is, I think, a question for the experts. It's not the usual name change question.
    When I setup my new MacBook Pro, something slipped by me and my computer was named First-Lasts-MacBook-Pro (using my real first and last name).
    I changed the computer name in Preferences/Sharing to a new name and Preferences/Accounts to just be Mike. I can right click on my account name, choose advanced, and see that everything looks right.
    However, If I do a scan of my network with my iPhone using the free version of IP Scanner, it lists my computer as First-Lasts-MacBook-Pro! And it lists the user as First-Last.
    So even though another Mac just sees my new computer name, and my home folder is Mike, somewhere in the system the original setup with my full name is still stored. And it's available on a network scan. So my full name might show up at a coffee shop.
    Can I fully change the name without doing a complete re-install of Lion and all my apps?

    One thought... you said the iPhone displayed your computer's old name? I think that you must have used the iPhone with this computer before you changed the name. So no one else's iPhone should display your full name unless that iPhone had previously connected to your Mac. For example, I did this exact same change, and I use the Keynote Remote app to connect with my MacBook Pro. It would no longer link with my MacBook Pro under the old name, and I found that I had to unlink and then create a new link under the new name. So the answer to your question is, there is nothing you need to do on the Mac, but rather the phone, and no other phone will display your full name.

  • New iMac-Questions for musicians/computer experts

    Friends,
    My primary reason for buying a new iMac has to do with home music recordings. (Especially w GarageBand, but other music programs as well.)
    Spent the day trying to get things going with my brand new iMac. (Specs below).
    Things went pretty well, except when I got to peripherals. So, for some of you musicians out there who might have encountered similar situations when upgrading computers/operating systems:
    1) *Presonus Firebox* preamp. On my old iMac, all I would do was plug in the firewire to the computer and the preamp turned on. (Usually left the firewire plug into the preamp all the time.) Never used the AC adaptor. Apparently wasn't necessary. The cable was a 6-pin to 6-pin. (Meaning, I think, 400 to 400.)
    a) Tried to get the preamp going on the "new" iMac. Used a new 6-pin, coming out of the PreSonus Firebox, to 9-pin, going into the new iMac firewire port, cable. Nothing happened. Firebox didn't turn on.
    b) Thoughts? Why didn't it work? Do I need to go to the PreSonus Firebox web-page to download an updated driver that will work with +Snow Leopard+? (Been to that site and it said +Mac users do not need to do this+.)
    c) This is critical for me. I don't want to by a new preamp to do my recordings.
    2) *Yamaha DGX-305* keyboard/synthesizer. I've used this for many recording purposes...sole piano work, comping, effects, etc... bringing it in as either MIDI (via USB cable) or analog (headphone out to iMac audio line in). But...
    a) when I tried to bring it into my new iMac (same way: USB cable for MIDI), nothing happened. Tried to record....settings were all the same as on the old Mac (i.e. to a MIDI track in GB, line in/out were correct after setting them on the computer)....pushed "record" button, played, marker/track moved, but nothing was recorded.
    b) It would seem that I would have to go to the Yamaha web site to download the latest driver to make this work.
    Following a visit to the HP site and a phone call, was told that HP stopped making the printer I have (about six years old) and, therefore, do not make drivers compatible with +Snow Leopard+. So, today, I purchased a brand new printer. Certainly did not think I would have to do that after buying a new computer. And wasn't particularly happy about it. Present printer works just fine.
    I will be visiting the websites and calling +PreSonus Firebox+ and Yamaha tomorrow morning to inquire about workable updated drivers for +Snow Leopard+. My great fear is that either or both will say the same thing as HP: "Stopped making those models and do not have downloadable drivers" for my new computer/operating system.
    If that would be the case, it would mean that the "critical" peripherals for my home music recordings would be obsolete. Effectively negating the usefulness of my brand new iMac.
    *THE MAIN CONCERN:*
    *I do not want to buy a new preamp, keyboard, or whatever to enable me to resume my recording efforts. I didn't sign up for that when I bought my new iMac.*
    Anxiously awaiting your thoughts.
    The only reason I bought a new iMac (the old one...which I will still keep, works perfectly fine, just pushed to capacity) was to make my home recording efforts easier. Meaning, less stress on the processor, more space available on the computer itself for those huge music files, and more speed with much more RAM.
    But it never occurred to me that buying a new computer would require buying everything else to go with it: printer, preamp, keyboard, etc.
    And, just a quick p.s. regarding GB: on the old version I have, GB2, when you double-clicked the "instrument" icon at the very left of the track, it brought up a window where you could adjust things, change instrument sound/audio font, turn monitor on/off etc. However, when I double-clicked the instrument icon on the new GB, nothing happened. It would seem this is a typical problem with updated programs. Nothing, or at least not enough, is where it used to be. A real problem for an old guy like me to re-learn everything. I'm sure I'll have to do a lot more exploring to find out how this new GarageBand works.
    Thanks for any comments/suggestions. (If it weren't for the invaluable resource of Apple Discussion Forums, I wouldn't even have considered buying a new computer. At least I know you guys are here.)

    • Firebox: There is a problem with the Firewire card in newer Macs - I have the same problem. It will not sync up with some interfaces (I have the Inspire) when they have no external power source. There's only two solutions: use the power adaptor, or chain it with an externally powered hard drive. After everything is up and running, it should be okay to unplug the power adaptor.
    • Keyboard: The device that your computer is connected to is not the keyboard but the midi interface (which you call "cable"). You can plug any midi instrument into that, the Mac doesn't care. So you'll have to update your interface's driver, but you don't tell us what it is. If it's a yamaha intereface:
    http://www.global.yamaha.com/download/usb_midi/
    (And a note: Lengthy posts like yours, with a lot of talk about why you bought your computer etc., don't attract a lot of people to give you answers. A short but concise description of your problem - like what interface you are using - is a lot more helpful.)

  • Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Hi all, I upgraded my MBP to Lion , but on the screen where i need to type my password, click  on my photo and it does not appear the place for me to type my password and it stay stuck there. Can anyone solve this problem for me?

    Reboot the machine holding Command and r keys down, you'll boot into Lion Recovery Partition
    In there will be Disk Utility, use that to select your Lion OS X Partition and Repair Permissions.
    After that is done reboot the machine and see if you can log in.
    If not repeat the above steps to get into Lion Recovery, get online and reinstall Lion again, it will overwrite the installed version and hopefully after that it wil work.
    Reboot and try again.
    If not follow my steps to create a Snow Leopard Data Recovery drive, then option boot from it and grab a copy of your files off the machine.
    Then reinstall all your programs onto the external drive like setting up a new machine, then use Disk Utility to erase the entire internal boot drive (select the drive media on the far left, not the partiton slightly indented) format Option: GUID , 1 partition OS X Extended and then use Carbon Copy Cloner to clone the external to the newly formatted internal drive. Once that is finished reboot and disconnect the external drive.
    Once you go that, boot into Snow Leopard and update to 10.6.8, use the AppStore and option click on Purchases and download Lion again and install.
    Lots of work, but there is no Lion disks.
    https://discussions.apple.com/message/16276201#16276201

  • HT4889 Migration Assistant to update my new Mountain Lion iMac from an external USB hard disk drive, it is constantly saying that it is "looking for other computers". It doesn't find the external drive. Why is it looking for other computers?

    I'm trying to use Migration Assistant to update my new Mountain Lion iMac from an external USB hard disk drive. I told it to look for a drive, yet it is constantly saying that it is "looking for other computers". It doesn't find the external drive ... it just endlessly looks for other computers. Why is it looking for other computers at all, when I told it not to?

    Wow, the wording in Migration Assistant is misleading. I've never used it before, so I thought I would try to copy my files from the external drive ... my old iMac died, but I managed to get everything I need off it, using the 'cp' command in single-user mode. So I guess I'll just have to manually copy the files from the external drive to the new machine. I was hoping that Migration Assistant might help somehow, but obviously not.
    Thanks for the quick reply!

  • Hi just upgraded to lion , now i can't use "word" can this be for real?

    hi just upgraded to lion, now i cant use "word" help please

    If it's Word 2004 or earlier, it's for real. That is a PPC app and it is no longer supported in Lion. You need an Intel version of Office. You and a lot of others who didn't know are out in the cold.

  • My zero Key isn't working after waking from sleep mode. This is a real problem for me because my password contains a zero

    My zero Key isn't working after waking from sleep mode. This is a real problem for me because my password contains a zero.  I don't recall spilling anything or jamming it just that it worked before I closed the computer and wasn't after I woke it up.
    I would like to fix the key but if that's not possible right away , Is there a way to reset my password without being able to type with a key thats in it?

    Start by swapping the keyboard. You don't need to spend a fortune, and handy to have spare. USB cables can be bad even new.
    When I had some problems Apple wanted to blame the mouse, keyboard, cable, but in the end I found
    A. run Disk Warrior
    B. Corrupt pref or conflict with version of Hardware Monitor and other background tasks

  • HT204053 I have downloaded Lion onto my MacBook Pro.  My husband and I share a desktop.  Can download Lion onto the desktop from my Apple ID without causing problems for my husband's Apple ID use.

    I have downloaded Lion onto my MacBook Pro.  My husband and I share a desktop.  Can we download Lion onto the desktop from my Apple ID without causing problems for my husband's Apple ID use?

    Yes. In the future, however, only you will be able to update Lion because it will now require your Apple ID.

  • I use Entourage for all my email and Excel and Word. From time to time one or other will drop out which means re starting the iMac.  A real pest.

    I use Entourage for my email and Excel and Word for their respective applications. From time to time one or other will drop out which means re starting the iMac.  A real pest.  Comments would be welcomed.

    Not sure how to do this except to reply to myself.
    The question I asked is not "answered," but for whatever reason Acrobat XI has settled down and is working normally as before.  Don't have a clue why.  I did not make any further changes in anything.  Thanks to those who read my question and pondered. 

  • TS3938 How does one get the upgrades necessary after getting Lion when there is no upgrade for Real Player for Mac????

    Just got Lion. How can I get the upgrades necessary if there is no t one for Real Player for Mac????

    http://www.macupdate.com/app/mac/8428/realplayer-sp

Maybe you are looking for

  • How can I link my iCloud identity to my iTunes account?

    I signed for itunes in the early 2000's and icloud some years later with a different user name and password. It always gives me trouble-the wrong identity alwys pops up on ios devices and downloads. I now have match and genius, gift accounts for chil

  • There has to be a reason (Permissions).......?

    Please indulge me and let's talk about this Disk Utilities error (that many of you are familiar with): +Disk Utility has lost its connection with the Disk Management Tool and cannot continue. Please quit and relaunch Disk Utility+ Let me bring you cu

  • Report - Status of a specific advertisement showing 900 resources when only deployed to 100

    we have a strange problem where we run the "Status of a specific advertisment" is showing some bogus data. We deployed to a collection containing 100 PCs and the report for that collection ID shows: Accepted = 300 Rejected = 5 No Status = 600 I found

  • FILE MANAGER FOR UNIX

    I am trying to write a file manager for a unix machine. Does anyone know how to 'grab' the existing file structure, l just want to copy the functionality of existing Unix file managers - then add my own graphical representation of files and directori

  • Wireless works in Bridge mode but refuses in Share a Public IP

    This might seem like the easiest problem, but after searching the forum for ages I am still clueless. I connect to the internet by plugging the ethernet cable straight into the wall. Living in a student flat connecting through the uni's network. MAC-