where are configuration and user saved?

Clash 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.
16.04
add a comment |Â
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.
16.04
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
add a comment |Â
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.
16.04
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.
16.04
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
add a comment |Â
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
add a comment |Â
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.
add a comment |Â
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
add a comment |Â
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.
add a comment |Â
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.
add a comment |Â
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.
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.
answered May 18 at 19:29
s1mmel
947514
947514
add a comment |Â
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
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
answered May 18 at 19:49
bardouy
1
1
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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