More than one network home directory? (newbie question)

I have a brand new shiny XServer for a small school. They wanted their Macs managed and secured so I eagerly started moving ahead with it. Now, because of the specific file sharing requirements of the school (teachers want access to student accounts and files for homework and such) I created a standard, by-the-book Network Home folder. Then I thought about it, and I shared another directory as a Network User Home folder. And now none of my networked user accounts can log in. They all give me "can't log in, there is an error".
Is what I did possible? Allowed? Recommended? Discouraged? Can you actually define two separate Network User Home folders on the same server, and then assign different users to different home folders? My server crapped out and now I may have to wipe/reinstall the whole thing to fix it.
Does anybody have any experience with home folders like that?
Any information would be dearly appreciated,
Thanks.

Each user can have one and only one home directory, network or local. (Yes, even if you use Mobile Accounts or Portable Homes each account still has one home directory. You just have multiple copies of the user account and each copy has one home.)
You can have multiple share points that serve as home directory share points. In other words, not all of your users' homes need to be stored in the same place. By "network home directory share point," we mean a shared folder (share point) that has a corresponding dynamic automount record in the directory domain. The share point mounts at /Network/Servers/servername/path/to/sharepoint, and users defined in the directory domain can have their network homes defined there.
If you want to grant a group of teachers (let's call it teachers for simplicity) read/write access to student home directories, I'd suggest the following strategy:
1. Create two network home directory share points - one to house the students' homes and one to house the teachers' homes. For this example, let's say that the student home directory share point is located at /Volumes/Disk1/StudentHomes.
2. Create home directories for each student as you normally would.
3. Then add an ACL that allows members of the teachers group to read/write within the student home directory share point. For our example:
sudo chmod -R +ai "group:teachers allow readattr,readextattr,readsecurity,list,search,\
read,execute,writeattr,writeextattr,delete,deletechild,add_file,addsubdirectory,\
write,append,fileinherit,directoryinherit" /Volumes/Disk1/StudentHomes.
4. Now teachers simply navigate to /Network/Servers/yourservername/path.../StudentHomes/student's name and dig around to find what they want. (The teachers have read/write control of all student home directories now.)
5. When your teachers find it a little inconvenient to dig around in each student's home, suggest the following alternative: Simply create a share point to which students have read-only access and teachers can read/write. Within that share point, create "turn-in" folders for each teacher or class, and give students write-only (drop box) permission to the sub-folder. You could get more granular than this simple example where all students can turn anything into any teacher's "turn-in" folder, though.
--Gerrit

Similar Messages

  • Can printer connect to more than one network?

    Hello.
    I just bought the wireless HP deskjet 3050 printer. I've connected it to the internet (network) and it's working perfectly. Is it possible to connect to more than one network? We have more than one internet line in the house so I was wondering if I can set it up for both lines. I understand that I can print with multiple computers on the same network (and I am able to do so), but how about on different networks?
    Thanks.

    No, it only has one network connection device so can only connect to one at time, sorry.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Connecting to more than one network

    Can I set up the 8620 to connect to more than one network?  If so, will the printr connect to whatever network the computer is using?  

     Welcome to the HP Community Forum. If I understand your inquiry, the following might be helpful. It is possible to switch the default printer when you switch networks. Example here:Set Printer as Default See section titled Method 3 – Set the Printer Default when you change Networks  When you see a Post that helps you,Inspires you, provides fresh insight,Or teaches you something new,Click the "Thumbs Up" on that Post. Click my Answer Accept as Solution to help others find Answers.
     

  • Copy preferences to more than one users home folder

    hey all
    i have up to 800+ users on some of the servers I maintain @ a k-8 school district.
    I need to copy new java preferences in to all of there home folders on the server.
    I have tried
    cp /Users/computerservices/Library/Caches/Java\ Applets/deployment.properties /Users/*/Library/Caches/Java\ Applets/
    it seams that you can not use * in a cp destination
    from the spike in CPU usage I think it writes the preferences file to the last(alphabetically) user 800 times
    my collage professor said that I need a script but I have not had time to get to writing a script
    thanks
    sam

    here is the code for the script I finished on friday
    thanks so much for the help Nils
    #!/bin/bash
    #copy and paste this in to a new vi file and set chmod to 770
    #then save it in /bin/
    #you will need to run it while root so you have read/write privileges to all of #the users directories
    # prefstick 1.0.1
    clear
    echo
    echo -e "Blank responce at any question will exit program."
    echo -e "CapiTalIZatioN and Spelling matters when typing file and folder paths"
    echo -e "all y/n questions will take yes, no, Yes, No, Y, N, y, n, or that path that you want."
    echo
    echo -e "Are your users located in \"/Users/\"?(y/n)\c"
    read UsrLocQ
    case $UsrLocQ in
    [Yy]*)
    UsrLoc="/Users/"
    [Nn]*)
    echo -e "Where are your home folders locatied? (i.e. /StudentUsers/) \c"
    read UsrLoc
    if [ "$UsrLoc" = "" ]
    then
    echo "goodbye"
    exit
    fi
    UsrLoc=$UsrLocQ
    echo "goodbye"
    exit
    esac
    echo
    echo "List of all users located in "$UsrLoc
    ls $UsrLoc
    echo -e "What user has the master preference?(short name)\c"
    read MasUsr
    if [ "$MasUsr" = "" ]
    then
    echo "goodbye"
    exit
    fi
    echo
    echo -e "Do you want the new preferences saved in \""$UsrLoc"*/Library/Preferences/\"?(y/n) \c"
    read UsrSubDirQ
    case $UsrSubDirQ in
    [Yy]*)
    UsrSubDir="/Library/Preferences/"
    [Nn]*)
    echo
    echo -e "What is the sub directroy for the preference? (i.e. /Library/Safari/) \c"
    read UsrSubDir
    if [ "$UsrSubDir" = "" ]
    then
    echo "goodbye"
    exit
    fi
    UsrSubDir=$UsrSubDirQ
    echo "goodbye"
    exit
    esac
    echo
    MasPrefDir=$UsrLoc$MasUsr$UsrSubDir
    echo " list of all items in "$MasPrefDir
    ls $MasPrefDir
    echo "What preference/preference folder do you want to copy?(i.e. QuickTime\ Preferences or Explorer)"
    echo -e " Spaces reqire \ before them."
    read MasPref
    if [ "$MasPref" = "" ]
    then
    echo "goodbye"
    exit
    fi
    echo
    echo -e "what file permaissions do you want your Preference to have?(I suggest 666):\c"
    read MasPrefChmod
    if [ "$MasPrefChmod" = "" ]
    then
    echo "goodbye"
    exit
    fi
    MasPrefLoc=$MasPrefDir$MasPref
    chmod -R $MasPrefChmod $MasPrefLoc
    clear
    echo "Lets review"
    echo "You want to copy "$MasPref" from "$MasPrefDir
    echo "to all users that fit "$UsrLoc"*"$UsrSubDir
    echo "and with the file permissions set to "$MasPrefChmod
    echo
    echo -e "are you ready to do this? (y/n)\c"
    read AreUSure
    case $AreUSure in
    [Yy]*)
    clear
    echo "here we go"
    echo "goodbye"
    exit
    esac
    MasHome=$UsrLoc$MasUsr
    UsrLocShared=$UsrLoc"Shared"
    for CpUsr in $UsrLoc*
    do
    case $CpUsr in
    $UsrLocShared)
    $MasHome)
    $UsrLoc"Icon")
    $UsrLoc"Network Trash Folder/")
    $UsrLoc"Recent Items/")
    $UsrLoc"Starting Points/")
    $UsrLoc"Temporary Items/")
    $UsrLoc"TheFindByContentFolder/")
    $UsrLoc"TheVolumeSettingsFolder/")
    $UsrLoc"Users/")
    echo $CpUsr
    cp -R "${MasPrefLoc}" ${CpUsr}"${UsrSubDir}"
    esac
    done
    echo "Done!"

  • Can I use more than one network cards simultaneously?

    I have installed two network cards in my PC, there are two default routes. Can I send the data via two different interfaces simultaneously? thank you very much!

    Sorry, but I wonder if there is any java program for me to do so...
    sorry again -_-!                                                                                                                                                                           

  • Wireless not working - can't locate servers on more than one network

    I am having a really strange problem with my wireless on my iBook that I'm hoping someone out there has had before, or has ideas for fixing.
    This began a few days ago. My computer could get on wireless networks, but when I tried to use my web browser, it couldn't locate any servers. I at first suspected it was the network that I was using that was the problem, but I've since gone to several cafes and my university to try to use their internet. I get this problem about 50% of the time, despite the fact that others are using the same networks with no problems. Sometimes a network will work on and off (ie it will work fine at first, then not be able to locate servers) and sometimes they never work at all.
    I'm wondering if there's any kind of reinstallation or resetting of settings that I can do short of reinstalling OS X (or if a reinstall would even work). Does anyone have a suggestion for me? Again, I have already determined that it's not the networks I'm using that are the problem (and I don't have my own internet, and can't go fiddling with router settings at the cafes around me!).
    iBook G4   Mac OS X (10.4.9)  

    JerryMc, Welcome to the discussion area!
    Is the AirPort Express (AX) the only router you have? If so, you need to make sure that it is configured to "share a single IP address".

  • Hello! I have in my home 2 iMac, 2 iPad, 2 iPhone, and 1 air base extreme. I don't succeed to connect more than one divice from similar type. I tried everything what I knew. I build another network, etc...

    Hello! I have in my home 2 iMac, 2 iPad, 2 iPhone, and 1 air base extreme. I don't succeed to connect more than one divice from similar type. I tried everything what I knew. I build another network, etc...
    So only one imac, only one ipad..and so on simultain.
    More over, all the divices are conect through wifi to air base but are not receiveing internet as i told above.
    I need to disconnect one device to have internet on the second one from the same type!
    Could somebody help me?
    Many Thnaks,
    dan

    If your network configuration is:
    Cable modem > (Ethernet cable) > [WAN] AEBS > (wireless) > Macs, then
    AirPort Extreme Base Station Setup (AEBS) w/High-Speed Cable Modem
    Modem/Router Power ReCycling
    - Power-off the Cable modem, AEBS, & computer(s). (If possible, leave the modem off overnight.)
    - Power-on the Cable modem; Wait at least 30 minutes.
    - Power-on the AEBS; Wait at least 5 minutes.
    - Power-on the computer(s)
    Perform a "hard" reset of the AEBS.
    - (ref: http://docs.info.apple.com/article.html?artnum=107451)
    Setup the AEBS
    With the network components powered down, set up the AEBS, using the AirPort Admin Utility, connect your computer directly (using an Ethernet cable) to the LAN port of the AEBS, and then, try these settings:
    AirPort tab
    - Base Station Name: <whatever you wish or use the default>
    - AirPort Network Name: <whatever you wish or use the default>
    - Create a closed network (unchecked)
    - Wireless Security: Not enabled
    - Channel: Automatic
    - Mode: 802.11b/g Compatible
    Internet tab
    - Connect Using: Ethernet
    - Configure: Using DHCP
    - WAN Ethernet Port: Automatic
    Network tab
    - Distribute IP addresses (checked)
    - Share a single IP address (using DHCP & NAT) (enabled)
    Once you verified that you can get Internet access for all of your computers, you should secure your wireless network. To do so, I suggest that you make these changes:
    AirPort tab (optional)
    - Create a closed network (checked)
    Change Wireless Security
    - Wireless Security: WPA Personal
    Base Station Options - WAN Ethernet Port
    - Enable SNMP Access (unchecked)
    - Enable Remote Configuration (unchecked)
    - Enable Remote Printer Access (unchecked)
    Wireless Options
    - Transmitter Power: 10%
    Access Control tab (optional)
    - + <add the computer(s) that will access this wireless network>

  • Can I have more than one Apple TV in my home on one account?

    I want to buy an Apple TV for my daughter and allow it to access my iTunes account. I already have an Apple TV in use in my home.
    Can I have more than one Apple TV in my home on one account?

    yes
    they access the computers shared itunes lib all the ios devices and appletv's and other computers on your network can access your shared itunes lib and all of them can use your appleID should you so choose

  • Can I have more than one home page so that both would open upon connecting to the internet?

    On my desktop I can have more than one home page so that they all load when I connect to the internet.
    On my laptop, I cannot figure out if or how I can add a second home page. Is it possible to have more than one home page on my laptop?

    Firefox can have more than one homepage. Multiple homepages are separated by the keyboard character "|".
    *See: http://support.mozilla.com/en-US/kb/How+to+set+the+home+page
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • How to allow access to my airport extreme network for more than one wirelss device at the same time

    I received a Kobo Vox ereader for Christmas and have not been able to connect to my home wireless network. It works with unsecured networks and I tested it out at an Apple reseller with their airport extreme netwok and it connects fine.
    It seems as if I cannot have more than one wireless device connected to my home netork at the same time.
    So here is what I did to test this out:
    - I powered off the Kobo vox
    - I shut down my macbook
    - I turned off the modem and unplugged the power cord and removed the cable connection from the modem.
    -  I also unplugged the airport extreme router.
    - I waited for about 15 minutes and then set it all up again and turned on the power to the router and the modem
    - I turned on the kobo  vox (I left my laptop shut down)
    - my kobo vox was able to connected to the internet.
    - I powered up my laptop and it couldn't connect to the internet.
    So, I went through the above steps again and powered up my laptop first and was able to connect to the internet. I then turned on my Kobo and was not able to connect.
    It seems as if I can only have one device connected to my wireless network at one time and that device is the first one to be powered on and connected to the internet.
    Am I missing some network or airport extreme settings...
    thanks

    Try the following on your Mac.....
    Open Macintosh HD > Applications > Utilities > AirPort Utility
    Click Manual Setup
    Click the Internet icon
    Click the Internet Connection tab
    Change the setting for Connection Sharing to read Share a public IP address
    Click Update

  • TS2972 Using more than one Apple TV on same wireless network

    Sorry if this is answered elsewhere, but I have an Apple TV for the main home TV, and now want to add another Apple TV for elsewhere in my house.
    Can I have two or more Apple TVs using home sharing on the same home wireless network? I'm assuming that I can, but don't want to buy another Apple TV and have to return it. Thanks. RB

    Welcome to the Apple Community.
    Yes you can have more than one, but be aware this will place more demand on your network, generally speaking this shouldn't be a problem for 2 Apple TV's on a reasonable network, but if your network is flakey or you add many more Apple TV's, it may become a problem.
    We have 7 and have installed additional base stations for the network to cope with the bandwidth required.

  • Can more than one laptop use a wireless network at a time?

    Hi...quick question and this may be a stupid one .. but a few months ago my uncle was living with us and had a laptop which had a wireless Internet connection. I had already had my Ibook set up and was using a wireless Internet connection. When he turned on his mine stopped working? Why was that happening? Also ... my dad is buying my mom a laptop for Xmas and I'm sure that it will have a wireless connection as well? I'm hoping that same thing will not happen again. Why would the wireless router only read one laptop in the same house? Aren't wireless routers suppose to read more than one computer? I just don't want my MAC to be unable to use the Internet once another laptop is in our house. Does anyone have any suggestions? Thanks a ton!
    IBook   Mac OS X (10.4.8)  
    IBook   Mac OS X (10.4.8)  

    Karen, welcome to the discussions.
    Using a wireless router will enable you to connect upwards of 50 computers all at the same time and simultaniously.
    Take care to read the set up procedure for the particular Wireless Router you are using for your Network.
    There are several different ways to confiqure a wireless Network.
    AS long as all of the computers you have, do in fact have wireless cards in them you shouldn't have a problem.
    There is a difference in the set up for PC and a Mac.
    There is also a difference in Wireless Routers and there capabilitys, some are for older wireless 802.11b compliant systems. Whereas the newer Routers or Base stations are for both older 802.11b and the newer 802.11g connections.
    They will say 802.11b/g or something close.
    Most will require you connect your Internet Service Providers Modem to the WAN Port of your choice of Wireless Router. Like I said follow the directions.
    Good Luck
    Don

  • Can apple tv be set up on a network to be used on more than one tv at a time?

    I am trying to find out if I can use my Apple TV on more than one TV at a time over a home wireless network?

    It only has a single HDMI out.
    Unless you can find some third party solution or AV amp that will duplicate the output over additional HDMI outputs the answer is no.
    You could take an AppleTV from room to room where it is needed and connect to the TV in use, but if you want more than one AppleTV feed best to get another AppleTV...
    AC

  • Why won't my Time Capsule allow me to connect more than one device to the network at a time?

    Ok here is the shortest story I can come up with...
    Several months ago lightening struck my house and ruined the power cord for my old AIR PORT EXTREME....after replacing the power cable my wireless network began to prohibit more than one device at a time to connect to the wireless network.
    I replaced that network with a new TIME CAPSULE and it is doing the same thing.  I took my old AirPort Extreme to my work and it works like a charm.  My ISP says it is an Apple problem but I have had the same settings both at home and at work.  Work is great, multiple devices connect but home is one at a time and in order to connect ANOTHER device I have to power down one, and reboot the router and fire up the device I wish to connect.
    Any suggestions?

    I am running off a Fiber line....the unit that is a battery back up and appears to be a modem as well is called CyberPower CS24U12V-NA3
    Techincally, there is no "router" in my house, there is a LOCKED control box outside, a battery back up module in the garage that shows battery life and connection, then a cat5 outlet in my laundry room..All of which was installed by my ISP.
    I am using a 2TB Time Capsule running DHCP in Bridge Mode.  I can't find the software version but updated it while installing it within the last two months.
    Under Network Tab
    Enable NAT Port mapping is checked
    Under the Wireless Tab
    we have a 5ghz Network
    Radio mode is set to:  802.11a/n-802.11b/g/n (Automatic)
    2.4 GHz is Auto
    5 Ghz is Auto
    I hope this helps....

  • May I start more than one interface at boot using network profiles ?

    Hi everybody,
    I installed ArchLinux on my laptop and I was playing with network profiles to obtain different configurations of the ethernet and wireless interfaces for home, office etc. Everything works fine using "!" in from of each configuration name in /etc/rc.conf and I found useful the menu option.
    As far as I understood each configuration file in /etc/network-profiles/ correspond to one interface only, therefore this utility does not allow me to start more than one interface at boot time. Am I right?
    In this case it exist already a script to choose between different configuration for two interfaces?
    Thanks in advance
    Jimmi

    Welcome to the Apple Community da dad.
    Yes you can connect multiple Apple TV's by ethernet.
    What do you mean by outside.

Maybe you are looking for