Linux COMPLETE reset

Discussion in 'Linux' started by lous, Dec 10, 2008.

  1. lous

    lous

    Joined:
    Dec 10, 2008
    Messages:
    11
    Likes Received:
    0
    Hello,

    before i start, i just want to say, that my english isnt very good :)

    Today i have get the Acer Aspire One A150L and as i started it the first time, i had to set up the system. Like language, keyboard language and so on.

    My question is now, how can i reset that, so that i have to set up my linux once again?
    Cause this acer should be a present for someone, i just wanted to test if it runs.

    Thanks soo much in advance
     
    lous, Dec 10, 2008
    #1
  2. lous

    checksix

    Joined:
    Nov 16, 2008
    Messages:
    21
    Likes Received:
    0
    Search these forums for "oobe" (out of box experience). I have not tried this myself, however.
     
    checksix, Dec 10, 2008
    #2
  3. lous

    lous

    Joined:
    Dec 10, 2008
    Messages:
    11
    Likes Received:
    0
    ye it works :)

    BUT i want that this window is coming up on the next boot, like i did the first time.

    Cause as i told u, its a present. And i want to reset all settings.

    Hope you know what i mean :)

    thanks in advance
     
    lous, Dec 10, 2008
    #3
  4. lous

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    Well then use the Recovery DVD to set the system back to its original. instructions come with the computer on how to do this.

    Cheers.
     
    rbil, Dec 10, 2008
    #4
  5. lous

    JimK

    Joined:
    Aug 14, 2008
    Messages:
    218
    Likes Received:
    0
    Using the recovery DVD will give the setup screen to the person doing the recovery. The OP wants the gift recipient to get the setup screen. I think he wants to know if he can set it to run the first-run program after he shuts it down and gives it to the lucky recipient.

    If that can't be done, a less elegant (and less safe) way might be to do a hard power off during the recovery process before the set-up program begins, but that would be a last resort.
     
    JimK, Dec 11, 2008
    #5
  6. lous

    lous

    Joined:
    Dec 10, 2008
    Messages:
    11
    Likes Received:
    0
    So no way on a safe way?

    What JimK sad, thats want i ment :) But if its not safe, then i should think about another way or got any other one a idea?

    thanks in advance again
     
    lous, Dec 11, 2008
    #6
  7. lous

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    OK, he can try this then ...

    Open a terminal. (ALT-F2, terminal, Run). Then in the terminal do:

    Code:
    cd /usr/share/oobe
    
    rm oobe.log
    
    sudo shutdown -h now
    
    Should run the setup again next time the AAO is started.

    Cheers.
     
    rbil, Dec 11, 2008
    #7
  8. lous

    lous

    Joined:
    Dec 10, 2008
    Messages:
    11
    Likes Received:
    0
    thanks, but there is no file in this folder "oobe.log"
     
    lous, Dec 11, 2008
    #8
  9. lous

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    That's curious, because there is on my system and its date indicates it was created when I first setup my system. Maybe a newer version of Acer Linpus writes the file somewhere else now? Try a search for oobe.log and see if that's the case.

    Cheers.
     
    rbil, Dec 12, 2008
    #9
  10. lous

    lous

    Joined:
    Dec 10, 2008
    Messages:
    11
    Likes Received:
    0
    sorry but how can i search files :)
     
    lous, Dec 12, 2008
    #10
  11. lous

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    The "locate" command is really a valuable thing to have installed on your system, for quickly finding files/directories. Here's how to install it ... open a terminal and do:

    Code:
    sudo yum install mlocate
    Locate keeps a database of all files/directories it finds on your system. After installing mlocate, you'll need to build the database. Here's the command:

    Code:
    sudo updatedb
    A cronjob will be created when you install mlocate that will update the database during the middle of the night each day. But since we don't keep these netbooks running 24/7, that won't happen. So you'll need to simply run that command manually in a terminal whenever you want the database updated.

    To use locate, you'd simply open a terminal and do something like this:

    Code:
    locate oobe.log
    To find all occurances of the word "oobe" as a file or directory on your system, you'd do this:

    Code:
    locate oobe
    If that file exists it'll tell you where it is on your system.

    Cheers.
     
    rbil, Dec 13, 2008
    #11
  12. lous

    checksix

    Joined:
    Nov 16, 2008
    Messages:
    21
    Likes Received:
    0
    Open a terminal and type:

    Code:
    find / | fgrep whatever-you-are-looking-for
     
    checksix, Dec 13, 2008
    #12
  13. lous

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    locate is MUCH faster since it simply queries a database. Results are returned instantly, whereas find must scan each time through the whole hard drive.

    Cheers.
     
    rbil, Dec 13, 2008
    #13
  14. lous

    jinx022

    Joined:
    Oct 2, 2008
    Messages:
    76
    Likes Received:
    0
    There is also a search function in the file manager. Click on the binoculars and you can search by partial name. For a full search, select the file system, not just the user directory. Options are available to search by size etc.

    I did not find an oobe.log file on my system but there is a usr/share/oobe folder with some scripts.
     
    jinx022, Dec 14, 2008
    #14
  15. lous

    alSee

    Joined:
    Oct 28, 2008
    Messages:
    4
    Likes Received:
    0
    It's really funny that "find" is slower than "updatedb" :lol:
    If someone should produce only one search it is much faster to use "find" instead of installing "locate" and creating its database.
     
    alSee, Dec 14, 2008
    #15
  16. lous

    rbil

    Joined:
    Aug 14, 2008
    Messages:
    730
    Likes Received:
    0
    Location:
    The Wet Coast, Canada
    If you're using a Linux system and only have to find files once, then you're indeed one lucky guy. Enuf said.

    Cheers.
     
    rbil, Dec 14, 2008
    #16
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.