Ubuntu clone a user profile with all applications
Procedure
First create a new user manually (e.g. user2), you can do it through GUI
Then you copy the files recursively (need to explicitly copy . files as well)
1 | cp -a /home/user/* /home/user2/ |
Then (Optional) set a password for that newly created user
1 | sudo passwd user2 |
Reference
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment