Forums
New posts
Articles
Product Reviews
Policies
FAQ
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Menu
Log in
Register
Install the app
Install
Forums
Apple Computing Products:
macOS - Operating System
Two (or more) questions from a new MacBook owner
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="dcow" data-source="post: 1000577" data-attributes="member: 139944"><p>Yes, DiskUtility can do all this. All you need to do is select your OS partition in DiskUtility and select new image at the top. Then save it to the data partition. Anytime you want to restore, just boot up with your grey disc, go into DiskUtility and select the partition you want to restore then go to the restore tab, locate the image on your data partition and you're good to go. </p><p></p><p>The more I think about it the more I think you'll want to use a hardlink in your case. I think it will be cleaner and since you're not dealing with multiple pointers to your data partition for your home directory you shouldn't run into any of the common issues with using hardlinks (like infinite loops or anything). Yeah use a hardlink. It will be more 'proper' this way and some of the UNIX programs are programed not to follow symlinks when removing files and such which you don't want to happen, if you want your home directory to function EXACTLY as if it was your home folder, just on a different partition, then use a hardlink (=</p><p></p><p>To create a hardlink use the command:</p><p></p><p>ln [source] [target]</p><p></p><p>so you'll want it to look something like this:</p><p></p><p>ln /Users/your_user_name /Volumes/DATA/</p><p></p><p>if you don't delete your home folder you can use this command to force ln to override your homefolder:</p><p></p><p>ln -Fi /Users/your_user_name /Volumes/DATA/</p><p></p><p>(note F needs to be capital, the i flag is a prompt so you'll just have to type y to confirm that you want to override)</p></blockquote><p></p>
[QUOTE="dcow, post: 1000577, member: 139944"] Yes, DiskUtility can do all this. All you need to do is select your OS partition in DiskUtility and select new image at the top. Then save it to the data partition. Anytime you want to restore, just boot up with your grey disc, go into DiskUtility and select the partition you want to restore then go to the restore tab, locate the image on your data partition and you're good to go. The more I think about it the more I think you'll want to use a hardlink in your case. I think it will be cleaner and since you're not dealing with multiple pointers to your data partition for your home directory you shouldn't run into any of the common issues with using hardlinks (like infinite loops or anything). Yeah use a hardlink. It will be more 'proper' this way and some of the UNIX programs are programed not to follow symlinks when removing files and such which you don't want to happen, if you want your home directory to function EXACTLY as if it was your home folder, just on a different partition, then use a hardlink (= To create a hardlink use the command: ln [source] [target] so you'll want it to look something like this: ln /Users/your_user_name /Volumes/DATA/ if you don't delete your home folder you can use this command to force ln to override your homefolder: ln -Fi /Users/your_user_name /Volumes/DATA/ (note F needs to be capital, the i flag is a prompt so you'll just have to type y to confirm that you want to override) [/QUOTE]
Verification
Name this item 🌈
Post reply
Forums
Apple Computing Products:
macOS - Operating System
Two (or more) questions from a new MacBook owner
Top