Two Macs with same Home Folder name

Hello,
We have a new iMac 27" to setup. I plan to use Migration Assistant to migrate files, apps, settings, etc. from our MacBook Pro 15" (OS 10.6.4). This will result in both computers having the same name for their Home Folder (the one with the house icon). Changing this name is not recommended so I don't intend to. However, will having the same name for both Mac Home Folders result in conflict problems when they are connected over our network, using target disk mode or other situations?
Thanks.
Mike

No, same usernames on different computers is absolutely fine. In fact, if you set them to have the same passwords, it's a little easier to share files between them.
One thing: If you use Migration Assistant pull over the network settings (or maybe it's just "settings", I forget) then both computers will also have the same name - one of them will rename itself computername(2), to make sure there is no confusion on the network. You can sort out the computer names yourself in the System Prefs/Sharing panel after.

Similar Messages

  • IMatch on two Macs with same Apple ID

    I have 2 Macs in different locations with the same Apple ID's. One has less music than the other. Could I purchase iMatch on one and use it on the other to upload the remaining music?

    Hi,
    Macworld has a great article on multiple apple ID's and imatch.   Here's the link: hope it helps.
    http://www.macworld.com/article/163013/2011/10/all_about_icloud_common_signup_sc enarios.html
    Please be careful however:  if you do not have a US credit card, you CANNOT use iTunes gift cards (nor your iTunes account balance) to buy imatch.     Do NOT upgrade your software to get iCloud just for this.  (I did, and am rather annoyed).
    Hopefully apple will let gift card payment for imatch soon & that this was just an error. 
    (if you're in the same situation though: here's the post I put up).  
    https://discussions.apple.com/message/16746152#16746152
    Cheers,

  • Two EJBs with same home interface.

    Hi
    Can I have the single home interface for my two entity beans as they have same create and find by primary key Methods. But they are referencing to two different tables in database?
    Also can i create a base home interface for common methods like create and findby and create the child home interfaces for some extra mehods?

    Hi
    Ofcourse u can have single Home Interface for two different bean.
    And also u can have the common findby methods in a superHome (Adaptor) and can create any no of Home.
    All the Best
    Kumar.R

  • I traded for a mac; how can I change the home folder name?

         Well I traded a PC for my first iMac and well...... I love it.
    1.  I'm running into a little problem though; I can't seem to change the home folder name to my name.  Although I know it doesn't affect any of the operation of the system or my settings, it psychologically upsets me. 
    2.  Also, is there a way to assign my Apple ID to the computer or does that not matter either? 
    3.  I also see a little lag when trying to connect to the web, but once I do get on it seems pretty beefy, any suggestable reasons? 
    4.  And the final question, did I make the right decision? I traded a Sony Vaio S series tablet (laptop/PC) with an Intel core i5 @ 2.30ghz for an iMac with an Intel Duo Core processor @ 3.06ghz. I've heard the numbers don't really matter but some clarification would help.

    Trying to address some of your questions:
    You state you are running Mountain Lion? Was that the original OS on the Mac? That is very important because:
    a) if it was, the seller/trader needed to transfer the Mountain Lion license to you or it will stay with his Apple ID;
    b) if he purchased ML, he is required to uninstall it before selling the machine because the license is not transferable, which means - again - that it is tied to his Apple ID (along with the machine ID).
    Both/either can present some problems for you since ML is now tied to someone else's Apple ID. If you manage to "introduce" your Apple ID, it will no longer match the records MAS (Mac App Store) has, so updates or other purchases may present problems.
    I would suggest that you either call Apple or book an appointment at the nearest Genius Bar and ask them how to proceed - that way you may be able to set up your own Apple ID on the machine as well as get ML registered as yours (although, as explained above, they may require you to purchase it for yourself).
    Whether or not you made the right decision - well, I've never owned a Windows machine, so I can't answer your question since I have nothing to compare it with. Obviously, I use Macs...... you should be able to run your own test: just do what you normally do and see if it appears to take about the same time, is faster, or is slower.

  • Two user accounts using the same home folder

    This may sound like a silly or goofy question, but I was wondering if anyone knows how to use two different user accounts, but with each using the same home folder?
    I was wondering because there are many different settings I would like to use for different settings. Kind of like a "Spaces on Steroids." When I'm at school, I'd like to use one Network Settings, one desktop and icons, one Dock, etc. And when at home, a different set of each, but still using the same home folder.
    Any help or suggestions would be most appreciated.

    ZooCrewMan wrote:
    So, I figured the easiest was would be seperate user accounts, "Home" "School" "Work" etc., and all have different settings, but still point to the same Home Folder.
    The problem is, most of those settings are kept in the home folder.
    You could probably do what Softwater suggests, with an AppleScript, or perhaps an Automator workflow, but it's not without some serious downsides.  You'd need one for each setup.
    At least one complication would be, any change you wanted to make to each setup would have to be done to that script; you couldn't just drag something into (or out of) the Dock.
    Another theoretical possiblility would be to have separate user accounts, but use the special Shared user folder for your data.  You'd have to select it as a souce or destination for each app you use, but many will remember that from use to use. 
    The complication would be permissions.  When you save a document there, the user that saved it is the owner, with read & write rights.  All other users have read-only rights, so could view and open them, but not update them.  You'd probably want to create one or more sub-folders in the Shared account (for various types of files), and you could probably set a Folder Action on each to grant read & write permissions to anything created in them.
    Then you could set up the desired network location, Dock, and Desktop for each user account.

  • Two methods with same name but different return type?

    Can I have two methods with same name but different return type in Java? I used to do this in C++ (method overloading or function overloading)
    Here is my code:
    import java.io.*;
    public class Test{
    public static void main(String ar[]){
    try{          
    //I give an invalid file name to throw IO error.
    File file = new File("c:/invalid file name becasue of spaces");
    FileWriter writer = new FileWriter(file ,true);
    writer.write("Test");
    writer.close();     
    } catch (IOException IOe){
         System.out.println("Failure");
    //call first method - displays stack trace on screen
         showerr(NPe);
    //call second method - returns stack trace as string
            String msg = showerr(NPe);
            System.out.println(msg);
    } // end of main
    public static void showerr(Exception e){
         StringWriter sw = new StringWriter();
         PrintWriter pw = new PrintWriter(sw);
         e.printStackTrace(pw);
         try{
         pw.close();
         sw.close();
         catch (IOException IOe){
         IOe.printStackTrace();     
         String stackTrace = sw.toString();
         System.out.println("Null Ptr\n" +  stackTrace );
    }//end of first showerr
    public static String showerr(Exception e){
         StringWriter sw = new StringWriter();
         PrintWriter pw = new PrintWriter(sw);
         e.printStackTrace(pw);
         try{
         pw.close();
         sw.close();
         catch (IOException IOe){
         IOe.printStackTrace();     
         return sw.toString();
    }//end of second showerr
    } // end of class
    [\code]

    Overloading is when you have multiple methods that have the same name and the same return type but take different parameters. See example
    public class Overloader {
         public String buildError(Exception e){
              java.util.Date now = new java.util.Date() ;
              java.text.DateFormat format = java.text.DateFormat.getInstance() ;
              StringBuffer buffer = new StringBuffer() ;
              buffer.append(format.format(now))
                   .append( " : " )
                   .append( e.getClass().getName() )
                   .append( " : " )
                   .append( e.getMessage() ) ;
              return buffer.toString() ;
         public String buildError(String msg){
              java.util.Date now = new java.util.Date() ;
              java.text.DateFormat format = java.text.DateFormat.getInstance() ;
              StringBuffer buffer = new StringBuffer() ;
              buffer.append(format.format(now))
                   .append( " : " )
                   .append( msg ) ;
              return buffer.toString() ;
         public String buildErrors(int errCount){
              java.util.Date now = new java.util.Date() ;
              java.text.DateFormat format = java.text.DateFormat.getInstance() ;
              StringBuffer buffer = new StringBuffer() ;
              buffer.append(format.format(now))
                   .append( " : " )
                   .append( "There have been " )
                   .append( errCount )
                   .append( " errors encountered.")  ;
              return buffer.toString() ;
    }Make sense ???
    Regards,

  • Two Switches with same MAC+Priority running STP

    Hi
    what will happen if two switch with same MAC-ADDRESS and same STP priority will run STP , how will elect to the root bridge ???? how the STP process will handle this situation?
    thanx

    Well, first off, no two switches (or switchports) will have the same MAC (if they do, you're buying switches from the wrong, very bad place).
    Every port of the switch will have (at least) one MAC of it's own.
    Given the same priority for all switches/bridges on the LAN, the lowest switch/bridge MAC on the LAN will win as the root.
    VLANS take on the MAC of the administrative interface ("CPU"): i.e., xxxx.xxxx.5000, the first port (i.e., fa0/1) is xxxx.xxxx.5001, the second (fa0/2) is xxx.xxxx.5002, and so on
    If you do a "show interface", the MAC / bia is displayed in the second line.
    Good Luck
    Scott

  • HT2470 I need to change the home folder name. I just bought this mac today and my cousin put his name in because he had to back up his phone while we were still at the store so he could get a new phone and now my brand new imac says his name in the home f

    I need to change the home folder name. I just bought this mac today and my cousin put his name in because he had to back up his phone while we were still at the store so he could get a new phone and now my brand new imac says his name in the home folder. This is very frustrating. I would not have let him put his name in there if I didn't think you could change it. Someone please help!

    Delete his user account and create your own, using your name.

  • Unable to monitor two databases with same name on two different hosts

    I have got two databases with same name on two different hosts. I added one database to the list of monitored databases. Now If I try to add the other one , I get the message that the database is already being managed.
    Can't we monitor two databases with same name on two different hosts?

    you can... while saving the target,give a different name.. for eg target-2

  • How to separate two contact with same name

    Hi, anyone knows how to separate two contacts with same name in Contacts?  Actually they are two persons from two gmail contacts with same name but different contact numbers, different emails....etc, but Contacts assume they are same person and merge them as one!

    FG,
    In Lion, you have the File > Duplicate option. You will then have two copies of your document open, and the one on top will have the temporary filename "OriginalFileName copy", and your next responsibility is to File > Save (or Command-S) and rename the duplicate. At this point, you edit the copy's name, to perhaps ...copy 1, or whatever you wish. The document you had open when you initiated the File > Duplicate will still be there on your screen, waiting for you to Close it or continue editing.
    Jerry

  • Did you change your home folder name and now your computer is all wierd?

    Hello. I did the same thing and I called apple help and they just couldn't help me on this subject. I was messing around with the computer and I found a proper solution where you don't have to re-install the software. Here are the steps:
    Step one: login (if your not already logged in) into the account. It should still be there as the original name.
    Step two: Open your Finder or HD and select the Users folder.
    Step three: You should see your original account name as well as any one else's account name if you have other people sharing the computer. In addition to this you will also see the name you attempted to use as a replacement for your old Home Folder name, note that this is a new unexpected user.
    Have it in column mode for the easiest experience.
    In the new folder you created (this is the user on the list that you named your original folder) You will find all your old settings. Don't do anything yet! take and highlight all of the content in that folder by holding shift and clicking or your preferred way. Drag ALL the content to your original home folder, which should only have library and Documents. (if it has more than it's okay) it will tell you that there are already folders with that name and will ask permission to replace them. Say yes.
    Step four: log out or restart your computer.
    Step five: log in, and or wait till it's restarted Your desktop and dock should be restored to the way you originally had it. Don't change the name on it again. if you want to change the name, you'll need to create a new user.
    Step six: Thank me and leave me complements or questions.

    I think it is rather surprising that the Mac OS allows you to change the name of the home folder and doesn't seem to put up a warning or anything.
    I did change the short name used on my home folder about three weeks ago. I used ChangeShortName Utility v1.2 which I got from here:
    http://www.macosxpowertools.com
    All indications are that using this utility has been 100% successful.
    I did create a new temporary account with administration privileges and I ran the utility from that account. This meant I wasn't changing the short name on the account I was actually using.
    It is very important to read the "read me" with ChangeShortName so that you are 100% sure of what you are doing when you use it.
    Also, of course, back up first

  • Changed home folder name, how do I get my desktop back?

    I changed the home folder name and when I logged off and then back on to the computer, my desktop was completely different. I was told by apple care that it had to be corrected through the command lines. I would greatly appreciate someone's help with this issue!
    iMac   Mac OS X (10.4.10)  

    http://docs.info.apple.com/article.html?artnum=107854

  • How to change users home directory home folder name?

    Is there a way in Mountain Lion to simply change the name of the home directory home folder name without it throwing off anything else for that particular user?
    I read the article about 'Enabling and using the "root" user', but it specifically says for 'Lion' and not 'Mountain Lion'
    When I get to step 8 there is no clear place to enter an adminstator account name and password so I can't go any further.
    I also did a quick test with a newly created user and after setting some preferences and customizing the desktop, I changed the home directory name and I pretty much lost all my preferences after logging back in. It's as if changing the home directory name in any way shape or form literally wipes out the previous user and you have to start anew.
    I don't want to risk changing the home directory name and end up losing essentially my whole user setup, but I really want a different name for my home directory and I don't want anything else to change. Is this possible?
    Thanks

    Hi Blastic,
    I'm trying to do the same thing.  I did follow Apple's instructions and while they are easy to follow.....I was unable to rename the folder as described  (clicking on it or pressing enter).  I did enable root user, I did log out and re-log in as root user.....and I got stopped.  I simply could not rename the folder as per Apple's instructions and ther is NOTHING on the internet about it......save for your beacon of light!  Thanks for the post.  I'm using 13 inch MacBookPro Mid 2010 2.4 GHz, Intel Core 2 Duo, 8GB ram, OS 10.8

  • Two account with same UPN in Active Directory

    Is it possible to have two accounts with same UPN in AD? 
    I'm using Windows Server 2012 R2

    To expand on what Mr X said. Active Directory allows you to assign just about anything to the userPrincipalName attribute, as long as the value is unique. The value of this attribute is generally referred to as the UPN. But you could assign values with no
    "@" symbol, for example, or more than one "@" symbol. Also, Active Directory does not require that any value be assigned. It is an optional attribute.
    If no value is assigned to the userPrincipalName attribute, then the user can use a "default" UPN, which is <sAMAccountName>@<DNS domain name>, where <sAMAccountName> is the "pre-Windows 2000 logon" name of the user
    (the value of the sAMAccountName attribute), and <DNS domain name> is the DNS name of the domain.
    If a user has a value assigned to userPrincipalName that does not match this "default" form, then they can logon with either UPN, as long as no one else has either value assigned to their userPrincipalName attribute. You will note that Active
    Directory enforces uniqueness in the domain on sAMAccountName values.
    If in domain "domain.com" a user has a sAMAccountName of "jsmith" but userPrincipalName "[email protected]", then another user can have userPrincipalName of "[email protected]" (as long as no one else
    has that value assigned to userPrincipalName). They can each logon with their assigned values for userPrincipalName. But the first user can no longer also logon with their "default" value, based on their sAMAccountName, because it is now
    used by someone else. But if you attempt to assign a value to userPrincipalName that is also assigned to another user, you get an error.
    Bottom line, only one person can logon with any given UPN.
    Richard Mueller - MVP Directory Services

  • Struts- two actions with same path in struts config

    hai
    I am having html:select tag with two options (View And Download) in a form.My form signature is like <html:form action="select">.I mapped two options(View,Download) with same action path.When i click view it doesn't forwards(remains idle) and no error is shown.But i click download it forwards to the appropriate page.If iam having two tags with same action path the second is only working.This problem doesn't comes when iam having one tag alone.
    My code is here:
    -----------Select.jsp----------------
    <html:form action="Select">
    <html:select property="id">
    <html:option value="view">View</html:option>
    <html:option value="download">Download</html:option>
    </html:select>
    </html:form>
    ----------------Struts-config.xml------------
    <form-beans>
    <form-bean name="viewForm" type="ViewForm"/>
    <form-bean name="download" type="DownloadForm"/>
    </form-beans>
    <action-mappings>
    <action path="/Select"
    name="viewForm"
    type="ViewAction"
    input="/Select.jsp">
    <forward name="success" path="/Success.jsp"/>
    </action>
    <action path="/Select"
    name="downloadForm"
    type="DownloadAction"
    input="/Select.jsp">
    <forward name="success" path="/Welcome.jsp"/>
    </action>
    </action-mappings>
    Can i have action tag with same paths like this.If not please provide me a solution

    I have created two success pages.
    I have created two findForward in my ActionClasspublic ActionForward execute(ActionMapping mapping,...............)
    if(a==view)
    return mapping.findForward("success");
    else
    return mapping.findForward("success1");
    ----------------Struts-config.xml------------
    <form-beans>
    <form-bean name="viewdownloadForm" type="ViewdownloadForm"/>
    </form-beans>
    <action-mappings>
    <action path="/Select"
    name="viewdownloadForm"
    type="ViewdownloadAction"
    input="/Select.jsp">
    <forward name="success" path="/Success.jsp"/>
    <forward name="success1" path="/Success1.jsp"/>
    </action>

Maybe you are looking for

  • Audio only working for one user at a time - flash is the cause

    but what is the solution? OSX 10.6.8 flash player 10,3,183,10 If one user is listening to something via some kind of web (flash) media player, and the other user logs on, then this 'new' user is unable to listen to anything at all - all audio is bloc

  • Getting error when testing the webservice in webservice navigator

    hello experts, i created the rfc for to delete the calender appointments it was working fine and i created the webservice for this . when i'm trying to test the webservice  with ws navigator  i can insert the values on request screen , but result is

  • Urgent!!!! regarding report output

    i have a requirement such that, i need report without top of page..but headers needed to be in the printout in all pages.......pls gv ur suggestions. thanks

  • DVD Player error -69902?

    I've successfully played DVDs on my iMac (24" 2.4 GHz Aluminum) -- Front Row works like a charm! However, I've recently encountered a DVD that has issues with my computer: A couple of weeks ago I received the Beatles' "Help!" two-DVD set in timely fa

  • Video card going out?

    i get bars of pixels going across my screen most of the time. They are sometimes black and other times they are multi-colored. Also when i scroll down a page, some times it does this funky thing where it looks like....man i cant really describe it...