Thak you? How to install a package in the nfsroot? Must i do 'apt-get install makepasswd'?
2010/9/13 Stephan Hermann <[email protected]> > 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 > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.10 (GNU/Linux) > > iEYEARECAAYFAkyOC8wACgkQwYnnM8CY76jRZQCghjf/NAaWeEpHi/rAuJ/4l372 > hsYAnirL1tvX2BqI8FLa6jLbHOIX8gG3 > =LTf3 > -----END PGP SIGNATURE----- > >
