The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Root password forgotten - can reset with OSX Install CD

    Discussion in 'Apple and Mac OS X' started by lanwarrior, Nov 29, 2009.

  1. lanwarrior

    lanwarrior Notebook Evangelist

    Reputations:
    73
    Messages:
    372
    Likes Received:
    2
    Trophy Points:
    31
    So I forgot my root password ( from Terminal -> su - root). I was told that I can reset the root password by doing the following:

    1) Boot using OSX Install CD
    2) Click on "Utilities" and select "Reset Password".

    Is this correct?
     
  2. SP Forsythe

    SP Forsythe Notebook Evangelist

    Reputations:
    173
    Messages:
    664
    Likes Received:
    0
    Trophy Points:
    30
  3. lanwarrior

    lanwarrior Notebook Evangelist

    Reputations:
    73
    Messages:
    372
    Likes Received:
    2
    Trophy Points:
    31
    Thanks for the quick info, SP.

    I read through the link and it said the following:

    "Select the user account you wish to reset. Important: Do not select "System Administrator(root). This is a reference to the root user. Do not confuse it with a normal administrator account."

    So it is saying that the Install CD Utilities can NOT change the root password, or I should NOT USE it to change the root password?
     
  4. doh123

    doh123 Without ME its just AWESO

    Reputations:
    996
    Messages:
    3,727
    Likes Received:
    1
    Trophy Points:
    106
    roots log in is disabled by default.

    if you manually enabled root log in and forgot the root password, then reset it... the warning is for defaults where root is not enabled.

    You really should not ever enable root... any admin can do all root functions.... on terminal use sudo
     
  5. lanwarrior

    lanwarrior Notebook Evangelist

    Reputations:
    73
    Messages:
    372
    Likes Received:
    2
    Trophy Points:
    31
    Correct, but I was having a hard time removing Epson Printer app that keep running in the background. Based on others who had the problem, unfortunately I had to use root to remove some .kext files (I don't know what .kext files are).

    I will try to reset the root password using the Install CD method.
     
  6. doh123

    doh123 Without ME its just AWESO

    Reputations:
    996
    Messages:
    3,727
    Likes Received:
    1
    Trophy Points:
    106
    in the future... if you want root level access on the command line, just use sudo, not su... and your normal admin account password. no need to enable or use root.

    like if you typed
    Code:
    rm -rf /usr/local/temp
    and it said insufficient privileges... then type
    Code:
    sudo rm -rf /usr/local/temp
    and it will ask for a password... type an admin account password and hit enter, and it'll take care of it all at a root level.
     
  7. Vogelbung

    Vogelbung I R Judgemental

    Reputations:
    3,677
    Messages:
    4,067
    Likes Received:
    699
    Trophy Points:
    181
    I've not come across a situation where I need root access yet. As doh123 points out, sudo should be able to tackle any such issues - even in situations when the Mac is fairly terminally crashed and you've just managed to coax Terminal into starting.

    .kext files are essentially device drivers.
     
  8. Dilipb69

    Dilipb69 Newbie

    Reputations:
    0
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    5
    I have Dell XPS M1530 laptop and the person using it forgot the admin password. Can somebody help me to reset the password please
     
  9. snork

    snork Notebook Evangelist

    Reputations:
    27
    Messages:
    435
    Likes Received:
    0
    Trophy Points:
    30
    You would do best to post in the Dell and Windows OS forums. The Mac forum isn't going to be of much help.
     
  10. crazycanuk

    crazycanuk Notebook Virtuoso

    Reputations:
    1,354
    Messages:
    2,705
    Likes Received:
    3
    Trophy Points:
    56
    short for Kernel Extensions, as Vogel said they are device drivers.
     
  11. Modly

    Modly Warranty Voider

    Reputations:
    1,413
    Messages:
    1,890
    Likes Received:
    0
    Trophy Points:
    55
    I think it really depends on what you are doing. I've spent countless hours with a terminal, and after a certain point, typing sudo every time you want to run a command will drive you nuts.

    Root can be dangerous if you don't know what you are doing.