how to configure windows xp client for using user profiles that made with samba server
Main Topics
Browse All TopicsHi,
I Want to Know how to configure Linux+Samba with roaming profile suport for windows clients
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: MultipathPosted on 2009-04-02 at 16:38:35ID: 24055639
There is great data on this on the Samba website... Some gottchas I have come accross with this is to make sure you set up the proper amount of disk sace for the share I would suggest 200mg per user or an automated clean up process for this.
x.php/Samb a_& _Window s_Profiles #Implement ing_Roamin g_Profiles _with_Samb a
*Briefcase */
http://wiki.samba.org/inde
Implementing Roaming Profiles with Samba
To implement Roaming Profiles with Samba a few things must happen. First you must create a share to store these profiles, then you must set a few Samba directives to enable roaming profiles.
NOTE: You can theoretically store profiles within the users home directory, unfortunately Windows does not release a share immediately after logging out. So if you do store user's profiles within the home directories and another user logs into a machine immediately after another user logs out, the newly logged in user could invariably use the other users profile resulting in a possible security issue, as well as other issues. It is best to simply store all of the user profiles within a separate Samba share.
[edit]
Creating the Profile Share
To create a Samba share to use for your user's profiles simply add something similar to your share section of the smb.conf file:
* [profiles]
* comment = Network Profiles Share
* path = /srv/samba/profiles
* read only = No
* store dos attributes = Yes
* create mask = 0600
* directory mask = 0700
* browseable = no
* guest ok = no
* printable = no
* hide files = /desktop.ini/outlook*.lnk/
Then ensure that everyone has write access to the directory listed as the path:
* chmod o+rw /srv/samba/profiles
[edit]
Setting relevant directives for Roaming Profiles
The smb.conf settings required to use Roaming Profiles by default are:
* logon path = \\%L\profiles\%U
* logon home = \\%L\%U\.9xprofile
* logon drive = P:
The logon home directive is only used if you have any Windows 9x based machines on your Domain, otherwise it does not need to be set. The logon drive specifies the Drive Letter Windows will assign your home directory, this alleviates the need to create a logon script that essentially would do the same thing.
The logon path directive is where you actually setup roaming profiles. This directive should contain a Windows Network path to the location of the profile for each user. If the user's profile directory does not exist, one will be created at that location (as long as the user has write access to that directory).
You can also take full advantage of Samba's Variable Substitutions and further separate User's profiles, such as by architecture. Using the directive:
* logon path = \\%L\profiles\%U\%a
will separate the user's profiles relating to each version of Windows, such as WinXP, WinNT, etc. This is extremely helpful if you have users that jump from computer to computer that have different versions of Windows on them. This can solve a whole slew of problems relating to the registry on different versions of Windows, especially when running different version of Internet Explorer. Separating profiles in this way can be a very powerful feature, especially when you include Folder Redirection into the mix.