Hi Tom,<br><br>Take a look at this doc. It uses ubuntu, but for the most part it's agnostic in terms of flavor. The pam.d section is very good.<br><br><a href="https://help.ubuntu.com/community/ActiveDirectoryWinbindHowto">
https://help.ubuntu.com/community/ActiveDirectoryWinbindHowto</a><br><br>After your users can authenticate with their Windows domain credentials<br>Basically:<br><br>1) install pam_mount<br><br>2) Leave all of the stuff at the top alone and at the bottom of the file configure /etc/security/pam_mount.conf to look something like:
<br><br><br>volume * smbfs FILE_SERVER DIRECTORY_W-STND_SHARES /home/WINDOWS/&/.windowsShare uid=&,gid=&,dmask=750,workgroup=YOUR_WIN_DOMAIN - -<br><br>This file will:<br><br>a) look for the fileserver by name or ip (i added to file server to my /etc/hosts file just to be sure).
<br>b) mount the shared directory<br>c) mount the share whereever you want it to be in this case in /home/WINDOWS/domain_user/.hiddenfile (pam_mount will auto-magically create this if it doesn't exist, I believe)<br><br>d) Then I use a little script to in /etc/gdm/PostLogin/Default to create a shortcut on the desktop which points to the hidden windows share. It's not quite right yet, but you can try it out:
<br><br>#!/bin/sh<br>zd=/home/WINDOWS/$USER/Desktop/ZDrive <br>if [ ! -L $zd ]<br>then<br>    rm -f /home/VANGUARD/$USER/Desktop/ZDrive <br>    ln -s $HOME/.windowsShare/*/$USER $zd<br>fi<br><br>Hope this helps.<br><br>John 
<br><br><div><span class="gmail_quote">On 11/17/06, <b class="gmail_sendername">Tom Wolfe</b> <<a href="mailto:twolfe@sawback.com">twolfe@sawback.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Good news: I've got a functioning lab of 20 ancient machines composed of<br>1996 IBM 350s and a bunch of custom PIII machines from the late 1990s. The<br>principal is psyched and the teachers are psyched. It's quite the sight,
<br>all of that ancient hardware spitting out a KDE desktop. I'm planning on<br>adding another 15-workstation lab on the other side of the school powered<br>by the same server, we'll see how that works.<br><br>No sound yet, I gave up the fight last week and am hoping for divine
<br>intervention on that one. Teachers seem far less discouraged by that than<br>I though.<br><br>Now I just have to get things moving with domain logons and home<br>directories.<br><br>Can anyone suggest a helpful how-to on configuring K12LTSP logons to
<br>Active Directory...? Or should I just hit the samba docs? I've already got<br>authentication working, and I think I just need to configure the pam.d<br>configs.<br><br>Regards,<br>Tom Wolfe<br><br>_______________________________________________
<br>K12OSN mailing list<br><a href="mailto:K12OSN@redhat.com">K12OSN@redhat.com</a><br><a href="https://www.redhat.com/mailman/listinfo/k12osn">https://www.redhat.com/mailman/listinfo/k12osn</a><br>For more info see <<a href="http://www.k12os.org">
http://www.k12os.org</a>><br></blockquote></div><br>