Thank you Stephan for your help. I have used fai-class to add the class to my host but i don&#39;t understand<br>it very well in spite of reading the man page.<br><br><div class="gmail_quote">2010/9/13 Stephan Hermann <span dir="ltr">&lt;<a href="mailto:sh@sourcecode.de">sh@sourcecode.de</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi mamadou,<br>
<div class="im"><br>
<br>
On Monday, September 13, 2010 01:52:03 pm mamadou diop wrote:<br>
&gt; Thak you? How to install a package in the nfsroot? Must i do &#39;apt-get<br>
&gt; install makepasswd&#39;?<br>
<br>
</div>ok you ssh to your fai box,<br>
then chroot &lt;your FAI-NFSROOT&gt;<br>
apt-get install makepasswd<br>
exit<br>
<br>
now you enter your FAI config space and switch to the SCRIPTS directory<br>
<br>
mkdir ACCOUNTS  &lt;- this is your class name for those hosts where you want to<br>
install the accounts.<br>
<br>
cd ACCOUNTS<br>
vi 10-add-acounts<br>
<br>
and add the contents to the script<br>
<br>
after that, save it, and chmod 755 10-add-accounts<br>
<br>
Now you add the ACCOUNTS class to your host, redeploy et voila...<br>
<br>
Regards,<br>
<font color="#888888"><br>
\sh<br>
</font><div><div></div><div class="h5">&gt;<br>
&gt;<br>
&gt; 2010/9/13 Stephan Hermann &lt;<a href="mailto:sh@sourcecode.de">sh@sourcecode.de</a>&gt;<br>
&gt;<br>
&gt; &gt; On Mon, Sep 13, 2010 at 10:06:21AM +0000, mamadou diop wrote:<br>
&gt; &gt; &gt; Hello, instead of login &#39;fai&#39; and password &#39;fai&#39;, i want after my<br>
&gt; &gt; &gt; installation the user of the new system installed is<br>
&gt; &gt; &gt; &#39;student&#39; and his password &#39;student&#39;. What to do?<br>
&gt; &gt;<br>
&gt; &gt; you need to write your own script for adding users to your to be deployed<br>
&gt; &gt; system.<br>
&gt; &gt;<br>
&gt; &gt; Something like this will help you with this:<br>
&gt; &gt;<br>
&gt; &gt; in your NFSROOT install &quot;makepasswd&quot; package<br>
&gt; &gt;<br>
&gt; &gt; ------------<br>
&gt; &gt;<br>
&gt; &gt; #!/bin/bash<br>
&gt; &gt; user=&quot;student&quot;<br>
&gt; &gt; echo &quot;student&quot; &gt; $target/root/clearpassword.txt<br>
&gt; &gt;<br>
&gt; &gt; makepasswd --clearfromfile --crypt-md5 | while read pw password ; do<br>
&gt; &gt;<br>
&gt; &gt;        $ROOTCMD useradd -d /home/${user} -s /bin/bash -G groupname -m -p<br>
&gt; &gt;<br>
&gt; &gt; ${password} -U ${user}<br>
&gt; &gt; done<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; -----------------<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; now you have your student account with password &quot;student&quot; inside your to<br>
&gt; &gt; be deployed system.<br>
&gt; &gt;<br>
&gt; &gt; This is untested, but should work out of the box<br>
&gt; &gt;<br>
&gt; &gt; Regards,<br>
&gt; &gt;<br>
&gt; &gt; \sh<br>
&gt; &gt;<br>
&gt; &gt; -----BEGIN PGP SIGNATURE-----<br>
&gt; &gt; Version: GnuPG v1.4.10 (GNU/Linux)<br>
&gt; &gt;<br>
&gt; &gt; iEYEARECAAYFAkyOC8wACgkQwYnnM8CY76jRZQCghjf/NAaWeEpHi/rAuJ/4l372<br>
&gt; &gt; hsYAnirL1tvX2BqI8FLa6jLbHOIX8gG3<br>
&gt; &gt; =LTf3<br>
&gt; &gt; -----END PGP SIGNATURE-----<br>
</div></div></blockquote></div><br>