Because of some upgrade problems with 17.10 I reinstalled it from live image DVD. I used first option (Reinstall Ubuntu 17.10). When prompted to chose username I chose another username and I get another /home/mynewusername
directory. Besides that I have /home/myoldusername
with all my old files. How do I get my old username files to my new username or how do I get another install as my old usermame? Do I chose Something else option and chose the right partition and home folder? Do I chose Reinstall option again and make the same username as old one? Do I have to delete mew username? How?
Asked
Active
Viewed 245 times
0

Kristijan Iliev
- 522

Mersault
- 287
useradd
to create yourolduser
in the new system but WITHOUT creating a new home folder (don't know the options right now). – derHugo Nov 03 '17 at 10:47sudo chown -R newuser /home/olduser
followed bysudo cp -r /home/olduser /home/newuser
this will also copy your old configuration files. – derHugo Nov 03 '17 at 10:54-p
option for preserve permissions. Another issue might be missing executable flags on scripts – derHugo Nov 03 '17 at 12:33