Applications, data and folders structure question

I am new to the Mac OS X and wish to setup my folder structure correctly in a multi-disk environment (Mac Pro). I have 2 drives at the moment and plan to add more.
I assume that I should boot the OS from a separate OS disk and put apps and data on different disks. I also understand that Mac OS X uses a structure which includes a "users" folder in the root directory, application folder in root dir and "home" folders located in the "users" folder for various users which contain data.
Is this correct? How do you structure this over several disks? Do you move the "users" folder and or application folders to a different drive or partition? What are considered to be the best practices in that regard?

I never found putting any applications on another drive helps, even with multiple 15K drives.
I would invest in a faster drive for your system though.
And yes, it can help to use 2nd drive for the user account(s)
System control panel "Accounts" - unlock, command + control + click on the account's name and you can set the location of where it is...
/Volumes/volname/Users/acccount
Just copy or move or set up the folders (Users, and "myaccount") on the drive or partition of drive.
Also, you may want to have a scratch disk or partition, and a media drive or for editing.
http://www.barefeats.com/harper14.html - WD 640GB Caviar $83 @ MacSales
http://eshop.macsales.com/item/Western%20Digital/WD6400AAKS/
http://www.barefeats.com/hard94.html - 1TB drives compared

Similar Messages

  • HP G 42 UNABLE TO RECOVER OLD DATA AND FOLDERS AFTER I RAN RECOVERY TO FACTORY SETTINGS

    HP G 42 UNABLE TO RECOVER OLD DATA AND FOLDERS AFTER I RAN RECOVERY TO FACTORY SETTINGS

    Factory restore erases everyting on the drive, if you did not back up first, they are gone forever.

  • Interaction about applications data and notification timeout

    Hi Experts,
    I have an issue about a workflow that the reminder notifications be sent every day, the workflow stage has a property "Days to Respond", the workflow can sent the reminder notifications by the value before, but it sent the reminder notifications every day now, regardless the property value.
    The reminder notifications has timeout attribute "RESPONSE_TIMEOUT", the Note:1053545.1 output shows that the attribute value is 365, the due_date of wf_notifications shows that it equals the next day of begin_date.
    I try to find the interaction of application data and the workflow Notification node timeout, but I didn't find any clue in the workflow developer guide, or the admin guide.
    What's the mechanism of application data and workflow? ("Days to Respond" value with the Notification node timeout) Could anyone point the clue of the issue?
    Any suggestions are welcome.
    Thanks,
    Tsinhua.

    The "Days to Respond" will be set to the workflow attribute "RESPONSE_TIMEOUT" if the attribute value is null, it be set by the post-function of a node.
    As customer set the workflow attribute value "RESPONSE_TIMEOUT" as 365, so the "Days to Respond" value is discarded yet, the notification reminder must be timeoutted in one day.

  • Keeping backups of application data and migrations to new ipod?

    I'm planning to share an iPod Touch with my younger brother since I so rarely use it so I'm barely familiar with basic usage. I want him to have his own account separate from mine, but I would like to be able to backup his data and restore my data when the time comes. The iPod should either only have his data or mine, but obviously not both. I might even buy myself a new ipod touch or migrate to an iPhone.
    So the question is:
    a) Does backups take backup of application data such as save games and application settings?
    b) Can I restore all the applications, app data, game saves, music and video to another ipod touch/iphone in the future? i.e. migrate to another device?
    c) How do I backup the backup? i.e. if I keep this backup on my PC (Windows) and need to wipe the computer clean and re-install Windows. How do I retain the iTunes backup data?
    d) How do I perform the backup? Yeah, I literally used the iTunes application a dusin times at most, so have little clue how to operate it.
    Please help, since I'm not familiar with my own iPod Touch!

    this will answer most (if not all) your questions: About Backups.
    also check out iTunes: Backing up, updating, and restoring your iPhone, iPad, or iPod touch software

  • Validation Script for Dates and General Event Questions

    I have just started using Javascript, and am now using some objects and methods etc. that I did not even know about. It's progressing rather well, now I need to know some Livecycle Designer Basics that I can't seem to answer from my searches.
    Here's what I am trying to do in English:
    I want users to choose a date that they will miss at our Farmers Market. I have the date field on the form - works well.
    I want to validate the entry for:
    The date must be today or in the future
    AND
    The date must be before the closing date
    AND
    The date must be a Saturday
    Here's some script I've written and placed in the Validation Event (I have actually written more for testing out that the results are coming out properly):
    ----- form1.#subform[0].Missdate::validate - (JavaScript, client) ----------------------------------
    var entereddate = this.rawValue;// The date vendor will not attend as entered on the form
    var dentry = new Date(entereddate.slice(0,4),[entereddate.slice(5,7)-1],entereddate.slice(8,10),0,0,0); // month starts at 0!
    var closingdate = "October 04,2008" // closing date of the market
    var today = Date();// today
    (dentry.getDay() = 6);// and attempt to validate that the day = Saturday - nothing happens!
    But now -
    How do I actually validate this - my last statement seems to be ignored. How to I force a 'false' being returned? In Formcalc I simply put a camparison statement here and if it resulted in 'False' validation failed and if it resulted in 'True' it passed - What's the JS equivalent? Or are the variables giving me troubles?
    Maybe I'm putting this in the wrong Event? If so which one should I place it in.
    I want to force the user to enter the correct data - how do I code this - and put in a custom message refering to this. I may even get fancy and ask the user if the next Saturday is what they meant if they enter the incorrect one (this will be a real challenge!)
    I think I'm lacking some basic knowledge here that other posts have assumed. Please refer me to any help pages as well - although I've done extensive searching on this and have not really found a good explanation of Validation - only specific pages that are not basic or general enough for my understanding. Thank!

    In the validation script you have to allow the field's length to be 0, or
    it will not be possible to clear it...

  • Date and time stamp question

    Is there a way to drag the "date and time stamp" to my project all at once, or do I have to continue to drag it to each individual section of my project?
    Thanks

    Hi,
    I don't find any function module, but it does'nt really hard to code this using DIV and MOD instructions :
    If you've got your time in seconds :
    w_day = w_time DIV 86400.
    w_mod = w_time MOD 86400.
    w_hour = w_mod DIV 3600.
    w_mod = w_mod MOD 3600.
    It doesn't seem too bad in term of performance....
    Mathieu

  • IPhone SDK - How to add application files and folders to Xcode?

    I want to package a folder with data specific to my app. The data is just a bunch of binary files in proprietary format.
    These files should be installed under /Documents folder of the application. The files themselves will be in a folder called say Data. So when i run the app from Xcode i want it to copy the files to
    /Documents/Data folder under the bundlePath.
    There could be a file called data.dat under the Data folder.
    So in my application i want to be able to use the NSFileHandle interface or the standard C fopen() function to access the file /Documents/Data/data.dat .
    How can i do this using Xcode? Is there a tool one needs to use to create an install package?
    Any help would be greatly appreciated.
    -TRS

    If you look at the SQLiteBooks example, it shows and example of installing some extra data (books.sql) into the documents folder. Look at the function createEditableCopyOfDatabaseIfNeeded in AppDelegate.m
    You should also add in the starting/static data files in the build process in XCode - you can probably add to, or create another build step that will copy the files from your host machine into the app bundle.

  • Eclipse beginner, work with already defined packages and folders structure

    Hi! my apologies if this is not the correct subforum, the question is about beginning Eclipse
    I've already compiled and run the "hello world" example but I need to run an already developed (not by me) software.
    I'm doing something wrong:
    first I created a workspace for Eclipse D\alex
    then I created a project MyProject there
    When I created MyProject the D\alex\MyProject\src was created.
    The class that I need to compile is in C\spv7.3\cb\pfv\spv\tests it is the package: package cb.pfv.spv.tests;
    I copied the folders cb\pfv\spv\tests to D\alex\MyProject\src, so now I have
    D\alex\MyProject\src\cb\pfv\spv\tests
    Then I do File-Open File and open the file I need to compile from D\alex\MyProject\src\cb\pfv\spv\tests
    then I try to compile it Project-Build Project but nothing happens.
    Thanks in advance and sorry if this question is too naive

    - is automatic compilation turned on by any chance? (by default it is I believe)
    - When you copied the files to the eclipse project directory, did you refresh the project view in the Eclipse editor?
    - when you navigate to the project folder, there is no target directory with generated classes?

  • New mail.app and folders/trash question

    Hello, yes I know it's new to a lot of us but maybe someone knows....
    I've synched my mail accounts thru iTunes to my iPod Touch.
    Receiving and sending mails works fine.
    I've found that folders are created by the mail.app as soon they are needed (like Inbox, Trash, etc).
    My question is if someone found a way to create a folder manually...?
    Also: How can I empty trash without deleting every single mail one by one?
    Maybe I've only overseen it...
    TIA, Uli

    Yes, same here.
    Double deleting!
    For one account I have set up a spam filter at the provider side which works quite well.
    For a second account, where it doesn't seem to be possible I decided to switch off the account on the Touch (Mail settings) and read mails for that account only at home (where the Junk filter of mail works). In case I travel I might switch it on again and fight thru the spam.
    But seriously:
    There need to be a button to empty trash in one go!
    Also the option to create folders!
    (And maybe synching of Notes too...)
    I'll tell Apple thru feedback. Hopefully others too!
    http://www.apple.com/feedback/ipodtouch.html
    Uli

  • Pc to ipad data and folders

    how do you convert file folders from pc to ipad

    You need to select and sync all the photos that you want on the iPad together in one go, as only the most recent photo sync remains on it - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.
    You could consider using a third-party photo management app instead of Photos e.g. Photo Manager Pro allows you to delete synced photos directly on the iPad, and each sync doesn't replace the previous sync

  • [SOLVED] package versions out of date, and a wireless question

    Hey guys,
    I'm completely new to arch, have used ubuntu and fedora for a few years so im familiar with a lot of linux concepts (although im far from being a guru), and I decided to switch to arch because of the messes that are unity and gnome 3 respectively (imho, of course), and because I've always wanted to learn more about how my OS works. I did my first arch install today, got gnome 2 working and almost everything works great.
    I just have 2 problems as of right now, and after being unable to find an answer in the wiki or online i decided to try the forums.
    My first problem is that the versions for packages seem to be all wrong when i search or install them through pacman. For example, running pacman -S firefox installed firefox 3.6, but according to the online package list ( http://www.archlinux.org/packages/extra/i686/firefox/ ), firefox 5 is the latest version in the repos... I've run pacman -Syu and pacman -Syy, but pacman says there are no updates available... so yea, i have no idea whats up with that, im a bit too used to apt i guess
    my second problem is trying to get wireless internet working... ive got a broadcom BCM4318 chip, and i installed the b43 drivers from the AUR (which was a hassle in and of itself, because the package required b43-fwcutter>=0.14, and pacman assured me that 0.13 was the newest version... so you can see how my problems are intertwined to an extent). I also installed network-manager-applet, but that doesnt show up in the gnome notification area, so I'm at a loss as to how to check if i can connect to wireless networks (all the options in the gnome "network settings" program are greyed out....).
    So that's where I'm stuck currently, if anyone can help I'd appreciate it
    Thanks in advance
    Last edited by archnublet (2011-06-28 08:03:28)

    oh wow... i had just left pacman using a mirror from a college near where i live, after using the mirrorlist generator and running pacman -Syyu, seems pacman wants to dl another 500 megs and run some updates glad that seems to be working, and hopefully that will lead to something with my wireless working
    thanks for the response!
    Last edited by archnublet (2011-06-28 07:23:59)

  • Planning 11.1.1.3 application comparison, and some BR questions

    1) Does anyone know how to compare 2 versions of the same Classic 11.1.1.3 Planning apps? Hiearchies, forms? Lets say, I have QA and DEV versions, and I want to see if they are in sync/identical? I remember that Ver 9 had Manage Models option in Administration menu that with some tricking was doing comparison of the two models (their file xtracts), but can't find anything like that in v 11.
    2) Anyone knows the way to easily export the code of BRs into a file? The export XML doesn't always have the readable code in it, so its not reliable. Any suggestions?
    3) Speaking of BRs, I've realised that in order to re-import BRs using XML export-import, I need first to delete all (to-be-reimported) BRs form my target server. Doing it one by one in EAS can be time consuming. Any easier way to delete BRs in bulks?
    Thanks,
    smilo

    For exporting the rules to a flat file have a read of :- Re: Exporting Hyperion Business Rules as Text files
    Deleting classic business rules has always been a pain, if only they developed a multi select, well it won't happen now because calc mangler is around.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can I undelete Time Mashine backup? Restoring folders structure.

    When surfing Time Mashine wanted to delete one of the files and when it was highlited thought I cliked delete *this name* file  form backup. It said operation cant be undone and started to delete! Not Just deleted but started to delete the whole back up. My fault.
    I cancelled the process, but me "video" "music" folders are gone only documents left undeleted.
    I don't wright on this disk anything and looking for programm to restore file. "Data rescue" programm restores files whith no structure and my family archive on DVD seams lost forever.
    Is any way to restore data with folders structure. May be I could restore any spesial file for OS X could see time mashine back up again.

    Any thoughts how to restore data? There should be the way to restore?

  • Why Is My Application Data So Gigantic?

    Can someone please explain what my Application Data takes up almost a gig of storage?  I do not even have many Application installed on my Z10.  The bulk of them are Pictures but I have those on my media card and I do not choose to back up my media card. 

    In BlackBerry Link where you do the Backups, it shows Media, Application Data, and Settings sizes.

  • Not able to view data and song folders/files in my ipod

    Hi All,
    I have a 30 GB Video iPod which I have been using since the past 6 odd months. Recently, my iPod was infected with a virus. I managed to clean up the virus but since then I am not able to view the data and song files or folders stored in the iPod. I can only view a hidden folder with the name 'astry' and when I double click on it nothing is visible. I tried some freewares available for data recovery but they just scan the iPod and tell that so many number of files are available. But for retrieving them I will have to buy the software.
    Has anyone faced similar project? Does anyone knows any solution to this problem?
    Thanks,
    Sameer

    Hi Aneesh,
    First be more clear about Aria Application. As Aria, is been related to an hrms part of an organization carrying the people infomation and it has some separate features too.
    But in your prespective i couldnt able to understand what do you want to do with that packeged application.
    Since you want to customize the aria application according to your organization needs means, First collect all your necessary organization information that is needed(like tables etc.). Then substitute those (i.e) your organization tables in the appropriate places in the form of query.
    Please dont use the same Aria people table, as the Oracle may framed according to their employee information. Nearly Aria application has 200 supporting objects. If you want to use the same objects means whether u r going to creating nearly 200 supporting objects..It is not worth at all.
    Please be more clear in your requirement that, what you are doing, and then raise the question. Be more prepared with your tables along with datas, and let give your reply once you were been prepared with your organization details table.
    As there are more peoples in the forums to help you other than me.
    Brgds,
    Mini
    Mark Answers Promptly

Maybe you are looking for

  • Is there any way I can change my apple I'd from english to canadian

    Is there any way I can change my apple ID from English to Canadian

  • Move Crystal Reports 10 Registration To A New Machine

    Is there a way to deregister a Crystal Key Code to transfer the application to a new PC and reregister?

  • Data Guard Concepts

    Hi, I've been reading about data guard in oracle 9i, and there some concepts not still clear at all to me, could anyone explain what is it really the data guard broker? is it a process, a daemon, a tool? What is the DMON process, is it the same as th

  • Archives in dataguard.

    Hi Group, I have a doubt. When configure dataguard (10g, 11g), while archive received from the primary are applied the standby database also generates archives?

  • X-post - Director Developments at Adobe

    I wrote up a longish post in the basics forum. Won't post the entire thing here. But, just in case anyone is interested, here's the link: http://forums.adobe.com/thread/529479?tstart=0 Dean Director Lecturer / Consultant / Director Enthusiast http://