where are configuration and user saved?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












I am trying to save my configuration and data files to a usb before reinstalling 16.04 on same computer and reinstalling the the files to the reinstalled operating system.







share|improve this question




















  • Don't. Store your personal data on a stick; you already should have a backup already ;) Sync your browsers online (chrome, and firefox can do that). do not assume configs pass over to another release. 18.04 uses gdm3. 16.04 uses unity.
    – Rinzwind
    May 18 at 19:33















up vote
0
down vote

favorite












I am trying to save my configuration and data files to a usb before reinstalling 16.04 on same computer and reinstalling the the files to the reinstalled operating system.







share|improve this question




















  • Don't. Store your personal data on a stick; you already should have a backup already ;) Sync your browsers online (chrome, and firefox can do that). do not assume configs pass over to another release. 18.04 uses gdm3. 16.04 uses unity.
    – Rinzwind
    May 18 at 19:33













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am trying to save my configuration and data files to a usb before reinstalling 16.04 on same computer and reinstalling the the files to the reinstalled operating system.







share|improve this question












I am trying to save my configuration and data files to a usb before reinstalling 16.04 on same computer and reinstalling the the files to the reinstalled operating system.









share|improve this question











share|improve this question




share|improve this question










asked May 18 at 18:29









T. Clark

11




11











  • Don't. Store your personal data on a stick; you already should have a backup already ;) Sync your browsers online (chrome, and firefox can do that). do not assume configs pass over to another release. 18.04 uses gdm3. 16.04 uses unity.
    – Rinzwind
    May 18 at 19:33

















  • Don't. Store your personal data on a stick; you already should have a backup already ;) Sync your browsers online (chrome, and firefox can do that). do not assume configs pass over to another release. 18.04 uses gdm3. 16.04 uses unity.
    – Rinzwind
    May 18 at 19:33
















Don't. Store your personal data on a stick; you already should have a backup already ;) Sync your browsers online (chrome, and firefox can do that). do not assume configs pass over to another release. 18.04 uses gdm3. 16.04 uses unity.
– Rinzwind
May 18 at 19:33





Don't. Store your personal data on a stick; you already should have a backup already ;) Sync your browsers online (chrome, and firefox can do that). do not assume configs pass over to another release. 18.04 uses gdm3. 16.04 uses unity.
– Rinzwind
May 18 at 19:33











2 Answers
2






active

oldest

votes

















up vote
0
down vote













Everything that belongs to the user is stored under



/home/<username>


In most cases configurations are "hidden", that means they have a dot . in front of them.



You can see them in a console with the command



ls -la


or you open your file manager in ubuntu go to your home folder and press



<CTRL>-h


this should show them.






share|improve this answer



























    up vote
    0
    down vote













    If you get enough room on device, you may want to save all disk for safety before reinstall, or install on an empty partition, and then copy by parts to the new OS. An OS update keeps all user data and configurations, but if you choose to install the full OS, read about options and select wisely. Answering what you asked:
    user data can be stored anywhere where write access is given, but most applications should default to user home ~ (typically /home/


    configuration made by a user are in principle in the user home, in hidden files or directory, seen with:
    ls -a ~

    exemple:

    .bashrc .config .eric6 .hplip .lesshst .ICEauthority .local .pki .thumbnails .xsession-errors.old
    .adobe .dbus .gconf .profile .cache .dmrc .gimp-2.8 .ipynb_checkpoints .macromedia .python_history

    .bash_history .compiz .gnome .ipython .ssh

    .bash_logout .conda eric0.ini .gnupg .keras .mozilla .sudo_as_admin_successful .Xauthority



    So saving all /home is a first step, then



    Configuration made with sudo may be under /root under hidden directory,
    or in many other places (/etc ...), but it is likely better to perform them again on a new clean OS, since the reason to reinstall maybe some misconfiguration you want to get rid of. Maybe you save as well /root and /etc and attempt to replace them after OS install without erasing, as:



    sudo mv /root /root.ori /etc /etc.ori # rename the clean system dir
    sudo cp /media/xx/root / # copy saved system dir
    sudo cp /media/xx/etc / # same


    And try if this suits you. Any packages or applications that you installed, you must reinstall after OS reinstall






    share|improve this answer




















      Your Answer







      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "89"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      convertImagesToLinks: true,
      noModals: false,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );








       

      draft saved


      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1037858%2fwhere-are-configuration-and-user-saved%23new-answer', 'question_page');

      );

      Post as a guest






























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      0
      down vote













      Everything that belongs to the user is stored under



      /home/<username>


      In most cases configurations are "hidden", that means they have a dot . in front of them.



      You can see them in a console with the command



      ls -la


      or you open your file manager in ubuntu go to your home folder and press



      <CTRL>-h


      this should show them.






      share|improve this answer
























        up vote
        0
        down vote













        Everything that belongs to the user is stored under



        /home/<username>


        In most cases configurations are "hidden", that means they have a dot . in front of them.



        You can see them in a console with the command



        ls -la


        or you open your file manager in ubuntu go to your home folder and press



        <CTRL>-h


        this should show them.






        share|improve this answer






















          up vote
          0
          down vote










          up vote
          0
          down vote









          Everything that belongs to the user is stored under



          /home/<username>


          In most cases configurations are "hidden", that means they have a dot . in front of them.



          You can see them in a console with the command



          ls -la


          or you open your file manager in ubuntu go to your home folder and press



          <CTRL>-h


          this should show them.






          share|improve this answer












          Everything that belongs to the user is stored under



          /home/<username>


          In most cases configurations are "hidden", that means they have a dot . in front of them.



          You can see them in a console with the command



          ls -la


          or you open your file manager in ubuntu go to your home folder and press



          <CTRL>-h


          this should show them.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered May 18 at 19:29









          s1mmel

          947514




          947514






















              up vote
              0
              down vote













              If you get enough room on device, you may want to save all disk for safety before reinstall, or install on an empty partition, and then copy by parts to the new OS. An OS update keeps all user data and configurations, but if you choose to install the full OS, read about options and select wisely. Answering what you asked:
              user data can be stored anywhere where write access is given, but most applications should default to user home ~ (typically /home/


              configuration made by a user are in principle in the user home, in hidden files or directory, seen with:
              ls -a ~

              exemple:

              .bashrc .config .eric6 .hplip .lesshst .ICEauthority .local .pki .thumbnails .xsession-errors.old
              .adobe .dbus .gconf .profile .cache .dmrc .gimp-2.8 .ipynb_checkpoints .macromedia .python_history

              .bash_history .compiz .gnome .ipython .ssh

              .bash_logout .conda eric0.ini .gnupg .keras .mozilla .sudo_as_admin_successful .Xauthority



              So saving all /home is a first step, then



              Configuration made with sudo may be under /root under hidden directory,
              or in many other places (/etc ...), but it is likely better to perform them again on a new clean OS, since the reason to reinstall maybe some misconfiguration you want to get rid of. Maybe you save as well /root and /etc and attempt to replace them after OS install without erasing, as:



              sudo mv /root /root.ori /etc /etc.ori # rename the clean system dir
              sudo cp /media/xx/root / # copy saved system dir
              sudo cp /media/xx/etc / # same


              And try if this suits you. Any packages or applications that you installed, you must reinstall after OS reinstall






              share|improve this answer
























                up vote
                0
                down vote













                If you get enough room on device, you may want to save all disk for safety before reinstall, or install on an empty partition, and then copy by parts to the new OS. An OS update keeps all user data and configurations, but if you choose to install the full OS, read about options and select wisely. Answering what you asked:
                user data can be stored anywhere where write access is given, but most applications should default to user home ~ (typically /home/


                configuration made by a user are in principle in the user home, in hidden files or directory, seen with:
                ls -a ~

                exemple:

                .bashrc .config .eric6 .hplip .lesshst .ICEauthority .local .pki .thumbnails .xsession-errors.old
                .adobe .dbus .gconf .profile .cache .dmrc .gimp-2.8 .ipynb_checkpoints .macromedia .python_history

                .bash_history .compiz .gnome .ipython .ssh

                .bash_logout .conda eric0.ini .gnupg .keras .mozilla .sudo_as_admin_successful .Xauthority



                So saving all /home is a first step, then



                Configuration made with sudo may be under /root under hidden directory,
                or in many other places (/etc ...), but it is likely better to perform them again on a new clean OS, since the reason to reinstall maybe some misconfiguration you want to get rid of. Maybe you save as well /root and /etc and attempt to replace them after OS install without erasing, as:



                sudo mv /root /root.ori /etc /etc.ori # rename the clean system dir
                sudo cp /media/xx/root / # copy saved system dir
                sudo cp /media/xx/etc / # same


                And try if this suits you. Any packages or applications that you installed, you must reinstall after OS reinstall






                share|improve this answer






















                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  If you get enough room on device, you may want to save all disk for safety before reinstall, or install on an empty partition, and then copy by parts to the new OS. An OS update keeps all user data and configurations, but if you choose to install the full OS, read about options and select wisely. Answering what you asked:
                  user data can be stored anywhere where write access is given, but most applications should default to user home ~ (typically /home/


                  configuration made by a user are in principle in the user home, in hidden files or directory, seen with:
                  ls -a ~

                  exemple:

                  .bashrc .config .eric6 .hplip .lesshst .ICEauthority .local .pki .thumbnails .xsession-errors.old
                  .adobe .dbus .gconf .profile .cache .dmrc .gimp-2.8 .ipynb_checkpoints .macromedia .python_history

                  .bash_history .compiz .gnome .ipython .ssh

                  .bash_logout .conda eric0.ini .gnupg .keras .mozilla .sudo_as_admin_successful .Xauthority



                  So saving all /home is a first step, then



                  Configuration made with sudo may be under /root under hidden directory,
                  or in many other places (/etc ...), but it is likely better to perform them again on a new clean OS, since the reason to reinstall maybe some misconfiguration you want to get rid of. Maybe you save as well /root and /etc and attempt to replace them after OS install without erasing, as:



                  sudo mv /root /root.ori /etc /etc.ori # rename the clean system dir
                  sudo cp /media/xx/root / # copy saved system dir
                  sudo cp /media/xx/etc / # same


                  And try if this suits you. Any packages or applications that you installed, you must reinstall after OS reinstall






                  share|improve this answer












                  If you get enough room on device, you may want to save all disk for safety before reinstall, or install on an empty partition, and then copy by parts to the new OS. An OS update keeps all user data and configurations, but if you choose to install the full OS, read about options and select wisely. Answering what you asked:
                  user data can be stored anywhere where write access is given, but most applications should default to user home ~ (typically /home/


                  configuration made by a user are in principle in the user home, in hidden files or directory, seen with:
                  ls -a ~

                  exemple:

                  .bashrc .config .eric6 .hplip .lesshst .ICEauthority .local .pki .thumbnails .xsession-errors.old
                  .adobe .dbus .gconf .profile .cache .dmrc .gimp-2.8 .ipynb_checkpoints .macromedia .python_history

                  .bash_history .compiz .gnome .ipython .ssh

                  .bash_logout .conda eric0.ini .gnupg .keras .mozilla .sudo_as_admin_successful .Xauthority



                  So saving all /home is a first step, then



                  Configuration made with sudo may be under /root under hidden directory,
                  or in many other places (/etc ...), but it is likely better to perform them again on a new clean OS, since the reason to reinstall maybe some misconfiguration you want to get rid of. Maybe you save as well /root and /etc and attempt to replace them after OS install without erasing, as:



                  sudo mv /root /root.ori /etc /etc.ori # rename the clean system dir
                  sudo cp /media/xx/root / # copy saved system dir
                  sudo cp /media/xx/etc / # same


                  And try if this suits you. Any packages or applications that you installed, you must reinstall after OS reinstall







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered May 18 at 19:49









                  bardouy

                  1




                  1






















                       

                      draft saved


                      draft discarded


























                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1037858%2fwhere-are-configuration-and-user-saved%23new-answer', 'question_page');

                      );

                      Post as a guest













































































                      Popular posts from this blog

                      Trouble downloading packages list due to a “Hash sum mismatch” error

                      How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

                      How do I move numbers in filenames, in a batch renaming operation?