Slashdot Mirror


Using Networked Home Directories with Mac OS X?

trouser asks: "I work in a small office using Macs running Mac OS X and PCs running Linux (Debian). There's no problem sharing files between the machines using Samba, Netatalk, and FTP. However, we want to set the Macs up so that at login they mount home directories from one of the Linux boxes so that we get the same home directory no matter which machine we login on. I've read a little about doing this using NetInfo but I gather with LDAP being included with Jaguar that there might be other options now. Any clues?"

2 of 74 comments (clear)

  1. Lots of stuff depends on HFS+ by bill_mcgonigle · · Score: 4, Interesting

    On 10.1, I hacked NetInfo to keep my home directory on a linux NFS share. Lots of stuff broke. Lots of stuff, even good stuff like Mozilla, doesn't work because the filesystem isn't transparent to Carbon on non-HFS+ volumes. Even local UFS doesn't work.

    --
    My God, it's Full of Source!
    OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
  2. Slightly OT for those having automount issues by alyandon · · Score: 4, Interesting

    For those that were using the following format for fstab: /dev/disk### /Applications hfs rw 1 2

    You may have noticed that automount refuses to mount partitions on your /Application and /Users mount points under Jaguar like it did for before. The correct format for your fstab entries should be:

    LABEL=(partition name as mounted under /Volumes) /Users|/Applications|/Whatever hfs rw 1 2

    Instead of spaces between the items use tabs -- I haven't verified if spaces work yet.

    I'm not a mac user myself but my roommate struggled with this issue for quite a few hours before hitting on the solution. I figured I'd pass it along in case anyone else was struggling with it.