0

I am running Ubuntu 14.04 LTS. I think one of the updates damaged something. I now have no menus. I did discover that I can create a second user. This user has all functioning menus. My goal is to copy my home directory into the second user, resulting in a complete functioning machine. Can you walk me through the process?

Breen
  • 1

1 Answers1

0

You might have to use the 'sudo' command: sudo cp /home/olduser/* /home/newuser. By default Ubuntu does not install a 'root' user. So when you type 'sudo', it will ask you for your password and you enter your normal password. But you (your username) must also be listed in /etc/sudoers.

To edit /etc/sudoers:

  1. sudo nano /etc/sudoers. (Nano is an editor installed by default so it should be there.)
  2. For more info on this file, do: man sudoers.
  3. For my Ubuntu 14.04, I just noticed my user is not in /etc/sudoers, yet I can use sudo just fine.
Bulrush
  • 772