On Mon, Sep 13, 2010 at 10:06:21AM +0000, mamadou diop wrote: > Hello, instead of login 'fai' and password 'fai', i want after my > installation the user of the new system installed is > 'student' and his password 'student'. What to do?
you need to write your own script for adding users to your to be deployed
system.
Something like this will help you with this:
in your NFSROOT install "makepasswd" package
------------
#!/bin/bash
user="student"
echo "student" > $target/root/clearpassword.txt
makepasswd --clearfromfile --crypt-md5 | while read pw password ; do
$ROOTCMD useradd -d /home/${user} -s /bin/bash -G groupname -m -p
${password} -U ${user}
done
-----------------
now you have your student account with password "student" inside your to be
deployed system.
This is untested, but should work out of the box
Regards,
\sh
signature.asc
Description: Digital signature
