Difference between revisions of "User Account Configuration"

From wiki.emacinc.com
Jump to: navigation, search
Line 1: Line 1:
{{todo|Polish (11.21.13-16:55->KY)|Klint Youngmeyer|project=oe 4,oe 5,ky,inprogress}}
+
{{todo|Review (11.25.13-15:00->KY+)|Klint Youngmeyer|project=oe 4,oe 5,ky,review,md}}
  
Nearly every important file on a Linux system is owned by a single user and group: root. The root account is essential to the security of any Linux system. Having all of the important executable and configurations files on the system owned by root means that only the root user may alter the way the system works. Other users have no permission to execute or change system files, and therefore, they cannot modify or damage the system.
+
Nearly every important file on a Linux system is owned by a single user and group: ''root''. The root account is essential to the security of any Linux system. Having all of the important executable and configurations files on the system owned by root means that only the root user may alter the way the system works. Other users have no permission to execute or change system files, and therefore, they cannot modify or damage the system.
 
+
__TOC__
As such, it is critical that the root password be kept secret, and changed as often as is practical. A clumsy or malicious individual with the system's root password could render the entire system inoperative in a matter of seconds. Every EMAC Linux system ships from the factory with the same root password. EMAC recommends you change the root password after your first login.
+
== Account Management ==
 +
Unsurprisingly, it is critical that the root password be kept secret, and changed as often as is practical. A clumsy or malicious individual with the system's root password could render the entire system inoperative in a matter of seconds. Every EMAC Linux system ships from the factory with the same root password: ''emac_inc''. EMAC recommends you change the root password after your first login.
  
 
Use the <code>passwd</code> utility to change the root password as illustrated below:
 
Use the <code>passwd</code> utility to change the root password as illustrated below:
Line 13: Line 14:
  
 
To change the password for the user, either login as user and use the <code>passwd</code> utility as shown above, or use the command <code>passwd user</code> when logged in as root.
 
To change the password for the user, either login as user and use the <code>passwd</code> utility as shown above, or use the command <code>passwd user</code> when logged in as root.
 
+
===New User===
 
If desired, additional users may be added to the system. The following example demonstrates the process for creating a user named "test":
 
If desired, additional users may be added to the system. The following example demonstrates the process for creating a user named "test":
 
  root@emac-oe:~# adduser test
 
  root@emac-oe:~# adduser test
Line 20: Line 21:
 
  Retype password:
 
  Retype password:
 
  Password for test changed by root
 
  Password for test changed by root
 +
 +
== Next Steps ==
 +
Once all desired users are set up and secured, the network may be [[Network_Configuration | configured.]]
  
 
[[Category:Linux]]
 
[[Category:Linux]]
 
[[Category:OpenEmbedded]]
 
[[Category:OpenEmbedded]]

Revision as of 15:59, 25 November 2013

TODO: {{#todo:Review (11.25.13-15:00->KY+)|Klint Youngmeyer|oe 4,oe 5,ky,review,md}}

Nearly every important file on a Linux system is owned by a single user and group: root. The root account is essential to the security of any Linux system. Having all of the important executable and configurations files on the system owned by root means that only the root user may alter the way the system works. Other users have no permission to execute or change system files, and therefore, they cannot modify or damage the system.

Account Management

Unsurprisingly, it is critical that the root password be kept secret, and changed as often as is practical. A clumsy or malicious individual with the system's root password could render the entire system inoperative in a matter of seconds. Every EMAC Linux system ships from the factory with the same root password: emac_inc. EMAC recommends you change the root password after your first login.

Use the passwd utility to change the root password as illustrated below:

root@emac-oe:~# passwd
Changing password for root
New password:
Retype password:
Password for root changed by root

To change the password for the user, either login as user and use the passwd utility as shown above, or use the command passwd user when logged in as root.

New User

If desired, additional users may be added to the system. The following example demonstrates the process for creating a user named "test":

root@emac-oe:~# adduser test
Changing password for test
New password:
Retype password:
Password for test changed by root

Next Steps

Once all desired users are set up and secured, the network may be configured.