Sharing user folders between two OSX partitions

I have two partitions on my drive running OSX, one running 10.9.4 (we'll call this Partition 1), the other running another recent version of OSX that I apparently can't name here because someone out there doesn't know how to read or is being a troll (you know who you are), and keeps getting my thread deleted for no valid reason. We'll call the second partition, you guessed it, Partition 2.
What I'd like to be able to do is have my computer booted to Partition 2 and access my user folders (movies, photos, etc) that exist on Partition 1, as it's a drag to have to reboot to Partition 1 every time I want to work, watch a movie, listen to music, etc, etc. etc.
I've had no luck. No matter what I try, when I'm booted to Partition 2 and try to access the user folders in Partition 1, they all have the red circle on the icon, and I get a "you don't have permission..." error when I try to open them.Helpful facts:
The username is the same for my user account on both Partition 1 and Partition 2.
I've tried allowing permissions to everyone, and in Get Info I've tried applying the permission settings to enclosed items (the only suggestion I got on the discussion I started about a month ago on this issue.
No, I don't have the HD space in my MBPr to have a duplication of the entire user account on the other partition, nor would I want to - if something is modified in Partition 1, I want to have fluid access in Partition 2.
When in Partition 1, I can move files into the public folder for my Partition 2 user (which I've done a couple times when I know in advance that I might want a file to play with in Partition 2 - though this is nowhere near a practical solution to my issue).
Thanks for any help.

You have two different account usernames and passwords, so you cannot access the information in a user account unless you are logged into that account. If you want to access data across the partitions, then both user accounts must have the same username and password. You may then access the information directly or using aliases.
The alternative to this is to use the entire home folder on one partition as the default home folder on the other partition. You can do this using Users & Groups preferences.
Open Users & Groups preferences. Click on the lock icon and authenticate. CTRL- or RIGHT-click on your user account listing in the sidebar and select Advanced Options from the context menu. You will see a field labeled "Home dir:" At the right end you will see a Change button. Click on it. In the file dialog locate the Home folder now located on the other partition (HDD/Users/account_name/.) Select the folder, click on Open button. Restart the computer as directed.
When the computer boots up it will now be using the Home folder located on the other partition.
I am the person who reported your posts because of the discussion related to beta software. Apparently, you did not like what you were told by the moderators and decided to try again. By insisting on not following the forum rules you were the troll, not I. All you had to do was simply refer to two partitions without regard to what operating systems were involved, etc.
You have an answer to your question despite your rudeness.

Similar Messages

  • Share all folders and files between two OSX partitions

    So I have two partitions on my drive, one running 10.9, the other running 10.10 beta. I'm having a hard time figuring out how to make all folders read/write accessible from the other partition. I'd like to be able to access them easily, so that I don't have to change back over to 10.9 every time I want to watch a movie or access one of my files in one of my folders.
    All of the info I can find online is totally focused on how to share files between, say, a windows partition and osx partition for example, all the drivers needed etc... and I'm having a hard time just figuring out how to set permissions or whatever is needed to just get those pesky red dots off my folder icons and have them open and available form either partition.
    Thanks for any help.
    For what it's worth, I've tried hitting "get info" on one of the folders I know I can't get to from the other side (basically, all the main folders in my user except Public), and Everyone has Read Access (I can't even get in for Read at this point from other partition so I'm guessing that's not the right place). My user on the other partition is same username.
    Possibly a beta issue with Yosemite, or is there something I'm missing?

    This is a screen shot of the shared folder between my 2 partitions (10.6 and 10.9).

  • Sharing same iTunes library between two OSX partitions

    I have two partitions with an instance of 10.6.6 on each. Is there a way that my iTunes library on one partition can also be used by the other? So if I boot up OSX from the second drive, then I want to be able to access the library on the other partition.

    From one OS, launch iTunes with the Option key held down and point it to the other library. Both installs may need to be running the same iTunes version.
    (57118)

  • Sharing a shared network variable between two PC's connected to a network

    Sharing a shared network variable between two PC's connected to a network
    Surely this shouldn’t be so difficult! I have a little LabVIEW program running in the background of PC1. The exe’s task is to collect and send OPC variables held on a SCADA system and convert them to shared network variables (as I thought that they would be easy to share over a network, easier than the nasty OPC and DCOM issues). I have PC2 which runs measurement studio and I have created a nice test VB program which either writes or reads the network variables which are on PC1. The PC1 collection software is working perfectly and when I change the values on the SCADA system I can see the network variable change on ‘NI Distributed System Manager’. I When I look at ‘NI Distributed System Manager’ on PC2 I can’t see PC1 on the list and when I use the basic measurement studio code below to read the network variable it times out at the TestVariable.connect() line.
    Ok so what do I need to do to read a shared network variable sat on PC1 from PC2 on the network
    Public Class Form1
    Private WithEvents TestVariable As NetworkVariableSubscriber(Of Double)
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    TestVariable = New NetworkVariableSubscriber(Of Double)("\\192.168.58.139\Test\TestVariable")
    TestVariable.Connect()
    End Sub
    Private Sub TestVariable_Data_Updated(ByVal sender As System.Object, ByVal e As NationalInstruments.NetworkVariable.DataUpdatedEve​ntArgs(Of Double)) Handles TestVariable.DataUpdated
    TextBox1.Text = e.Data.GetValue
    End Sub
    End Class

    Sorry lost all the formatting
    Surely this shouldn’t be so difficult! I have a little
    LabVIEW program running in the background of PC1. The exe’s task is to collect
    and send OPC variables held on a SCADA system and convert them to shared
    network variables (as I thought that they would be easy to share over a
    network, easier than the nasty OPC and DCOM issues). I have PC2 which runs
    measurement studio and I have created a nice test VB program which either
    writes or reads the network variables which are on PC1. The PC1 collection
    software is working perfectly and when I change the values on the SCADA system
    I can see the network variable change on ‘NI Distributed System Manager’. I
    When I look at ‘NI Distributed System Manager’ on PC2 I can’t see PC1 on the
    list and when I use the basic measurement studio code below to read the network
    variable it times out at the TestVariable.connect() line.
    Ok so what do I need to do to read a shared network variable
    sat on PC1 from PC2 on the network
    Public Class Form1
        Private
    WithEvents TestVariable As NetworkVariableSubscriber(Of Double)
    Private Sub Form1_Load(ByVal sender As System.Object,
    ByVal e As System.EventArgs) Handles MyBase.Load
    TestVariable = New NetworkVariableSubscriber(Of
    Double)("\\192.168.58.139\Test\TestVariable")
    TestVariable.Connect()
    End Sub
    Private Sub TestVariable_Data_Updated(ByVal sender As
    System.Object, ByVal e As
    NationalInstruments.NetworkVariable.DataUpdatedEve​ntArgs(Of Double)) Handles
    TestVariable.DataUpdated
    TextBox1.Text = e.Data.GetValue
    End Sub
    End Class 

  • Sharing iPhoto Library between Two User Accounts

    Is there any way to fully share a single iPhoto library between two user accounts on one machine (iMac 2.0GHz dual core Intel, 10.5.1, iPhoto '08), without using an external drive (because I don't have one)? By share, I mean each user has full rights and priveledges to the entire library, regardless of who uploaded the pics. Holding down the option key on iPhoto startup does not work because my wife can't access the pics I loaded even though she's pointing to the shared library in a shared folder.

    If you want the other user to have the same access to the library as you: to be able to add, edit, organise, keyword etc. then:
    Quit iPhoto in both accounts
    Move the iPhoto Library Folder to an external HD set to ignore permissions. *You could also use a dmg*.
    (Some people have had success putting the library in the Users/ Shared folder. If you do this make sure the file permissions are set to allow read/write access to everyone. But that's unlikely to work on 10.5 because of the way that the permissions have changed with the new OS.)
    In each account in turn: Hold down the option (or alt) key and launch iPhoto. From the resulting dialogue, select 'Choose Library' and navigate to the new library location. From that point on, this will be the default library location. Both accounts will have full access to the library, in fact, both accounts will 'own' it.
    However, there is a catch with this system and it is a significant one. iPhoto is not a multi-user app., it does not have the code to negotiate two users simultaneously writing to the database, and trying will cause db corruption. So only one user at a time, and back up, back up back up.
    Regards
    TD

  • Sharing iPhone apps between two accounts on a single mac.

    Firstly, apologies if this topic has been covered many times before, I've tried to look, but can't find the exact answer I need.
    I have recently purchased two iphones and want to use them on seperate apple ID's - I want different iCloud storage for each phone.
    I have a macbook which has two accounts (one for me and one for my wife).  When I login to my account I have access to my itunes account and when my wife logins into her account she has access to her itunes account.
    I have followed the instructions for sharing musics between two users on the same mac - by moving the itunes media folder to the shared folder on my mac.  I have copied everything in that folder (music, movies, apps etc).  I have also set up home sharing as I believe that you can share apps between itunes accounts using it.  Everything seems to have worked ok in terms of her itunes being able to access the music, movies etc, but the apps don't seem to work properly.  I went through the subfolders of the itunes media folder and changed the folder permissions to read and write for everybody (because I was getting a permissions error) and she now has access to the apps that are there (on my itunes account), but the apps that she has downloaded on her phone are not being transferred to the macbook.  I've tried the reset warnings suggestion and that hasn't solved the issue. 
    Am I doing something wrong?  Should the apps folder within the itunes media folder not be moved with the music when transferring to the shared folder?  Any ideas why music and movies sharing is working ok, but not apps?
    Thanks in advance!

    This should help:
    iTunes: How to share music between different accounts on a single computer
    Note that when it says "publicly accessible location", it needs to be a place where everyone has read and write access. The most common such place is the Shared folder in the Users folder.

  • Sync folders between two Macs

    Howdy,
    I want Mail on two of my Macs to be in sync. I have a lot of rules set up and once the rules are applied the mail is sorted in local folders so it disappears from the inbox. This of course causes it to no longer be available on the other Mac.
    Looking for an application that can sync files I select between two Macs whenever a change is detected on either of them, in this case my Mail folder and peferences. This can go directly or through an OS X server that's running 24/7. I don't want to move my folders to the mailserver but keep them local.
    Any suggestions?
    Thanks in advance.

    fossy207 wrote:
    I've had a Macbook Pro for about a year and a half and love it so much that this Christmas I decided to buy myself a second Mac. I got a refurbished 24 inch iMac and just set it up last night. During the setup it occurred to me that there are certain folders on both computers (documents, pictures, audio, downloads, etc) that I would like to have available and synchronized between both computers. I'm sure I'm not the only one who'd like to do this. Does this functionality exist in Snow Leopard?
    no. not unless you want to use a command line tool like rsync.
    If not, are there any 3rd party apps that will solve my problem?
    you can use Chronosync or ForkLift. also,you can sync not directly between computers but via a cloud. there are many services that do that. there is apple's own mobileme. another very popular one is DropBox.
    Thank you for reading.
    -Chris

  • Sharing Keynote documents between two macs.

    I am Sharing Keynote documents between my two macs via wi-fi, so my question , is there a potential problem of data lost when going back and for from one computer to the other. It is very important that no possible problems may happen for important lectures.....
    Thanks

    Ok that sounds good, Both computers should have all the fonts, no music at the moment.
    I was wondering that I had data lost when transferenig keynote documents using usb memory sticks, lost of pictures, the trick that avoid that was compressing the document before placing it into the usb memory stick.....I undertood that was because of the memory stick format. So going from computer to computer through wifi should be fine...just does recomendations that you were saying. Right ?

  • Sharing aperture library between two computers in same house

    How do I go about sharing the same library between two computers in the same house? I would like to take some or all photos around with me on my laptop and be able to have them also at home for use by my family. Will I have trouble with changes and keeping things in sync? Would I locate the library on a portable drive on our home network? Thanks,
    Todd

    cut and dry ???
    are you wanting to constantly move the external around from machine to machine ??? or are you looking for simultaneous access ???
    if you had a library on an external and moved it between computers, it could work ... just be careful to always have the external connected before starting aperture, else it will create a new null library for you ...
    you could have db issues if you tried to have two people access it at once ... i dont believe that the aperture db could handle multi access at once ... not robust enough ... no locking of records, etc ...

  • After Tiger to Leopard conversion shared user folders stopped working

    Hi,
    Today i updated our mailserver to leopard. This server is also the OD master. Directly updated to 10.5.1 to have the latest bugfixes. Most things seem to work ok, but somehow our shared folders are not visible anymore. Checked the rights on them with cyradm and those are still good. When opening the account in thunderbird i can see the boxes but i cannot select them (can chose to subscribe / unsubscribe though). Has anybody else experienced this or know the answer to this problem?
    Best regards,
    Eelco

    since i am testing leopard server with tiger and leopard clients i just noticed this problem seems somehow related to mail 3.1 accessing IMAP ACLs differently to mail 2.x, as tiger client to leopard server works fine in picking up shared imap folders.
    result: atm assigning ACLs individually seems to be the only way to share imap folders... ;0(
    any ideas on how to make group ACLs work again would be highly appreciated.
    ds.

  • Sharing a project between two Macs?

    Is it possible to share an un-finished iMovie project between two different Macs?
    And if yes, how?
    And is it possible to share an iMovie 08' project with an iMovie 09' project?
    Thank you for your help :'D

    Hi
    I think an intermediat external hard disk
    • FireWire
    • Mac OS Extended formatted (MUST BE)
    Storing material and project on this should make it "Share-ably" but not
    in same time of-course. One at a time.
    and
    • iMovie'09 on both Macs (I would go for exactly same version no. and same regarding
    QuickTime and it's version no.)
    (Heart of iLife and FinalCut it's the real motor doing the job. iMovie is just an interface to it.)
    Yours Bengt W

  • Sharing iPhoto library between two user accounts on the same Mac

    My wife and I each have an iPad and we share the same iMac. We each have our own user account on the iMac. She syncs with her account, and I sync with mine. This works fine in general, but we store all our photos within iPhoto on my account. She is therefore unable to sync the photos to her iPad. The same is true with the music that we keep on the iTunes in my user account.
    Is there a way for her to sync so that the photos and music sync with her iPad also?

    I have used a program called iPhoto Library Manager (http://www.fatcatsoftware.com/iplm/) for years and it has worked like a charm. The program handles all of the permission/subfolder aspects transparently. Our iPhoto library is stored in my wife's default location, but I have seamless read-write access to it. When I open iPhoto, I see the same thing she does, and I have complete control.
    To answer your question about music, there are a couple of approaches. If you turn on Sharing in iTunes, and your wife's iTunes is set to look for shared libraries, she'll be able to have complete access to play anything in your iTunes library (as long as you have iTunes open). I believe she also has rights to copy files from your iTunes library into hers.
    That's great for playback on a Mac, but what you can't do is sync an iPod/iPad/iPhone with someone else's shared library, so here's how I do it:
    1) My iTunes library is our "primary" library, located in my Public folder (where other users have read-access).
    2) In my wife's iTunes, library, I hit keystroke Apple-O to add content to her library, and navigated over to my iTunes Library in my public folder to select it. Once I did this, her iTunes library looked like mine.
    3) The key thing is that under her iTunes Advanced Preferences, I ensure that "Copy content to iTunes library" is deselected. Otherwise, it would make a copy of my entire library on her side, and that would chew up a ton of disk space.
    Note that I don't think it's entirely necessary to have the iTunes library in the Public folder. It could stay in the default location as long as you changes your music folder to have read-access by other users. I moved mine before I knew any better.
    When I add new content to my library that my wife wants, we hit Apple-O from her side and add it to her library. This setup is kludgy, but a) both users can sync the music to iDevices and b) it doesn't require having two copies of everything. Note that unlike the iPhoto Library Manager solution, this is a static thing. You have to manually update the "satellite" library to keep it up to date with the main one.
    I'm not in front of my Mac, so some of my notations may not be completely accurate.
    Good Luck!

  • Sharing iTunes music between two User accounts

    hey all,
    my mom and i share an iMac G5, each with our own user account. we both listen to a lot of the same music and it seems silly to use double the Hard drive space by each maintaining separate iTunes libraries. What is the best way to share music between user accounts? is there a way to make it so that when she opens iTunes, it will open as if it is opening iTunes on my account, giving her immediate access to all my music? any suggestions are greatly appreciated. Thanx much!
    David

    This article describes two methods:
    iTunes: How to share music between different accounts on a single computer
    If you want only one library, use the second method.
    There are some disadvantages:
    If one of the users deletes a song, the other can't play it no more.
    If one user adds a song, the other has to add it to his/her library too.
    Hope this helps.
    M
    17' iMac fp 800 MHz 768 MB RAM   Mac OS X (10.3.9)   Several ext. HD (backup and data)

  • Sharing iTunes library between two users on the same Mac

    I recently bought my parents a new MacBook Pro (they switched from Windows). I was able to get all of their songs over and into my dad's iTunes library. My mom and dad each have separate accounts on the MBP, but they'd both like to be able to see (and listen to) the same iTunes library, not at the same time, obviously.
    Is that possible? If so how? Is it enough to point my mom's iTunes to the same folder? Do I need to put special permissions on that iTunes folder while logged into my dad's account?

    brown_sm wrote:
    I recently bought my parents a new MacBook Pro (they switched from Windows). I was able to get all of their songs over and into my dad's iTunes library. My mom and dad each have separate accounts on the MBP, but they'd both like to be able to see (and listen to) the same iTunes library, not at the same time, obviously.
    Is that possible? If so how?
    the easy way is to use itunes sharing. start itunes in your dad's account and enable sharing in itunes preferences->sharing. then other users including your mother will be able to listen to the songs from your dad's itunes library but ONLY while your dad is logged in. so in order for this to work both of them should be logged in at the same time. to make that possible enable fast user switching in system preferences->accounts->login options. However, this is not terribly convenient.
    it's possibly (but surprisingly tricky) to use the same itunes library without having both users logged in at the same time.
    Is it enough to point my mom's iTunes to the same folder? Do I need to put special permissions on that iTunes folder while logged into my dad's account?
    yes. not just permissions. you need to put inherited ACLs on your dads Music folder to give both of them read+write access to all current and future files in it. so log in as your dad and run the following terminal command (copy and paste please)
    chmod -R +a "username allow delete,chown,list,search,add_file,\
    addsubdirectory,delete_child,file_inherit,directoryinherit" ~/Music
    instead of username put the short user name of your dad's account. it's the same as the name of his home directory in /Users. then repeat the command with your mother's username instead of your dad's. after that log out of your dad's account, log into your mom's account and point her itunes library to his itunes library. to do that start itunes while holding option.

  • Sharing iTunes music between two users (two logins) on one Mac

    Hi,
    I have a Macbook with the latest iTunes. My I have a lot of music in my library which I want to be able to share with my wife when she logs in under her own ID. How can I get my library to show up in her iTunes library? I tried >Prefs>Sharing, but this did nothing. There was no change. I also tried setting the files to allow all to Read/Write in the "Get Info" window - no joy. There must be a way. Please advise.
    Thank you
    Kyur

    Zevoneer,
    I talked to a mac cust rep and he game me the same article. I did everything step by step but when I open up itunes in my acct or my wifes acct, I can only see music bought with each acount respectively. Do I need to import libraries? I just want to be able to share our music on itunes.
    Thanks in advance.
    Justin

Maybe you are looking for