If you don&#39;t mind doing some extra work now, you can move people&#39;s data to another partition now, and in the future, you can do as you like with the system volume going forward without worry about user data.<div><br>
</div><div>Note that if you boot an existing Mac (with user data) to a Leopard volume, you can create new partitions non-destructively and this task can be scripted.</div><div><br></div><div>I would (and do) do it like this:</div>
<div><br></div><div><div>#!/bin/sh</div><div>#</div><div><div>##### HEADER BEGINS #####</div><div># scr_sys_symlinkUsers.sh</div><div>#</div><div># Created 20071011 by Miles A. Leacy IV</div><div># <a href="mailto:miles.leacy@themacadmin.com">miles.leacy@themacadmin.com</a></div>
<div># Modified&nbsp;20090106&nbsp;by Miles A. Leacy IV</div><div># Copyright 2009 Miles A. Leacy IV</div><div>#</div><div># This script may be copied and distributed freely as long as this header remains intact.</div><div>#</div><div>
# This script is provided &quot;as is&quot;. &nbsp;The author offers no warranty or guarantee of any kind.</div><div># Use of this script is at your own risk. &nbsp;The author takes no responsibility for loss of use,</div><div># loss of data, loss of job, loss of socks, the onset of armageddon, or any other negative effects.</div>
<div>#</div><div># Test thoroughly in a lab environment before use on production systems.</div><div># When you think it&#39;s ok, test again. &nbsp;When you&#39;re certain it&#39;s ok, test twice more.</div><div>#</div><div># This script moves /Users to /Volumes/Data. &nbsp;If your data volume is named differently,</div>
<div># be sure to replace each instance of &quot;/Volumes/Data&quot; with the path to your data volume.</div><div># Run as an &quot;at reboot&quot; script when imaging with Casper.</div><div>#</div><div>##### HEADER ENDS #####</div>
</div><div><br></div><div>/bin/mv /Users /Volumes/Data</div><div><br></div><div>rm -R /Users</div><div><br></div><div>/bin/ln -s /Volumes/Data /Users</div><div><br></div><div>diskutil repairPermissions /</div><div><br></div>
<br>----------<br>Miles A. Leacy IV<br><br> Certified System Administrator 10.4<br> Certified Technical Coordinator 10.5<br> Certified Trainer<br>Certified Casper Administrator<br>----------<br>voice: 1-347-277-7321<br>
<a href="mailto:miles.leacy@themacadmin.com">miles.leacy@themacadmin.com</a><br><a href="http://www.themacadmin.com">www.themacadmin.com</a><br><br><br>
<br><br><div class="gmail_quote">On Mon, Jan 5, 2009 at 4:10 PM, David Lundgren <span dir="ltr">&lt;<a href="mailto:david.lundgren@brooks.edu">david.lundgren@brooks.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I was wondering how you all have done migrations from Tiger to Leopard.<br>
<br>
We have an Active Directory setup where the users home directories are local<br>
to the machine (our faculty often have 10GB+ of data, and some have<br>
laptops).<br>
<br>
We were contemplating doing separate user and OS partitions at the same time<br>
to make any future OS upgrades less painful, without having to worry about<br>
user data.<br>
<br>
Thanks,<br>
<br>
David Lundgren<br>
IT Systems Administrator<br>
<br>
Brooks Institute - &quot;Passion, Vision, Excellence&quot;<br>
27 East Cota Street<br>
Santa Barbara, CA 93101<br>
(888) 304-3456 (toll-free)<br>
(805) 690-7615 (office)<br>
<a href="http://www.brooks.edu" target="_blank">http://www.brooks.edu</a><br>
<br>
_______________________________________________<br>
Casper mailing list<br>
<a href="mailto:Casper@list.jamfsoftware.com">Casper@list.jamfsoftware.com</a><br>
<a href="http://list.jamfsoftware.com/mailman/listinfo/casper" target="_blank">http://list.jamfsoftware.com/mailman/listinfo/casper</a><br>
</blockquote></div><br></div>