Multi-user support
===================

Take place only if SRV addon is mounted


Create a new user with adduser (if any)
--------------------------------------
		
	# adduser

Create a new user by hand 
--------------------------------------


Let "bob" the new username.

o Create the new entry in /etc/passwd


	bob:uid:100:full name:/home/bob:/bin/sh

Chose the first "uid" (user id) available

O Change "bob" password

	# passwd -o bob
	
o Create the new entry in /home

	# mkdir /home/bob
	# chown bob.users /home/bob
 
