Advertisement
Templario_7777

Agregar un Usuario Linux

Nov 28th, 2024 (edited)
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.25 KB | None | 0 0
  1. useradd -m UsuarioNuevo
  2. sudo passwd UsuarioNuevo
  3. usermod -a -G sudo UsuarioNuevo
  4.  
  5. ###
  6. sudo visudo
  7.  
  8. Al final añadir
  9. # Usuario actual
  10. root    ALL=(ALL:ALL) ALL
  11. UsuarioNUevo    ALL=(ALL:ALL) ALL
  12.  
  13. ### AGREGANDO SUDOERS
  14. usermod -aG sudo sammy
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement