Mkdir on a afp share - file exists ???

Can anyone explain why this happens and if there is a way round it?
For example:
mkdir -m 700 /Volumes/MacHomes/$username
returns "File Exists"
Thanks

Assuming $username exists, and not an empty variable, then you get that error if /Volumes/MacHomes/$username really does exist.
If $username does not have a value in the variable, then you are trying to create /Volumes/MacHomes which already exists.
If $username does have a value, and the error is being reported because some of the /Volumes/MacHomes/xyz directories already exist and you wish to ignore this fact, then you can use
mkdir -p -m 700 /Volumes/MacHomes/$username
Or you can test to see if the directory already exists
if [[ ! -d /Volumes/MacHomes/$username ]]; then
mkdir -m 700 /Volumes/MacHomes/$username
fi
then the question comes up, are you creating all 500 at one time, if so, have you figured out how to handle ownership issues? That is to say the process creating the directory is going to own the directory, so do you also have code to change the owner to the user that will be using the directory? Just asking.

Similar Messages

  • Files copied from AFP share point are unwriteable by client

    This is the same issue as: http://discussions.apple.com/thread.jspa?messageID=8044984
    Has anyone found a fix yet? Basically, when copying files from an AFP server, Leopard is not having the file inherit the permissions of the parent folder. It is inheriting the permissions of the file within /Volumes.
    I am accessing an AFP share point on a server that has files that are 644 (readable by everyone, but only writable by the owner). I am not the owner. When viewing the AFP volume on my client within /Volumes/whatever the permissions appear to be 400 (unwriteable by the owner, no access to anyone else). When I copy the file over to desktop, the permissions remain as 400 when they should obviously be 600.
    What does this mean? Even though I am NOW the owner, and it is on MY desktop, I am unable to write to the file unless I chmod it. Very, very annoying and this behavior is unique to Leopard. Tiger does not mangle the permissions.
    The server is ubuntu-8.10-server running Netatalk.
    The test clients are Leopard 10.5.5 and Tiger 10.4.11
    On the server:
    $ pwd
    /srv/www
    $ ls -l
    -rw-r--r-- 1 www-data www-data 1024 2008-11-23 23:29 test.doc
    On the Leopard client:
    $ pwd
    /Volumes/www
    $ ls -l
    -r-x------@ 1 sauce staff 1024 Nov 23 23:29 test.doc
    $ cp test.doc ~/Desktop
    $ ls -l ~/Desktop/test.doc
    -r-x------@ 1 sauce staff 1024 Dec 7 00:21 /Users/sauce/Desktop/test.doc
    Message was edited by: iSauce

    I don't believe this is a problem of leopard in general. i can not reproduce this behavior with any of my afp shares. no matter how i connect (as an owner or as a guest) after I copy something to the desktop it gets standard 644 (not 600) permissions.

  • Save as dialog not showing files on a AFP share in CS2

    I have a user who is not able to see any files or folders on an AFP share (SFM on Windows 2003) when attempting to Save As. The files are visible in the finder, terminal, it is not a permissions issue, and I have trashed permissions. Any ideas? Are there hidden files on the share that need to be trashed?
    10.4.10, 2.66 Mac Pro, AD user
    Thanks!

    Open the Script Editor in the /Applications/AppleScript/ folder, and use this script to make all files visible.
    (22547)

  • File.exists() is not accurate on smb2 network share (use WatchService?)

    Hi,
    According to this document: SMB2 Client Redirector Caches Explained File.exists() is not accurate on a smb2 network share. I am not able to change any register settings, so I want to deal with it. According to the document there is an API to get the notifications from the file system. I assumed that the WatchService is the Java implementation of this API. Am I correct?
    I started with the WatchDir example from the jdk samples and stripped it a bit. I only need to know when a file is created and delete (I don't care about file modifications). For testing I have added new File.exists() when a new event has been triggered. I also start a separated Thread which test the file existence also. When I don't start this separated thread the file exists returns true immediately. When the extra thread is started it is not accurate any more. I need a more accurate file.exists check in the whole application and all running threads.
    The output for my test case is this:
    FileExistsThread: subdir\test.txt == false
    watch registered for dir: subdir\
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    WatchDir event: ENTRY_CREATE: test.txt
    WatchDir: subdir\test.txt exists == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == false
    FileExistsThread: subdir\test.txt == true
    FileExistsThread: subdir\test.txt == true
    FileExistsThread: subdir\test.txt == true
    FileExistsThread: subdir\test.txt == true
    As you can see the file test.txt  is created on line 9. The FileExistsThread have seen it on line 20, (at least 10 x 300 ms later).
    For testing I have used 2 Windows 7 pc's (with smb2 enabled which is default). The working directory must be on the remote pc and the file test.txt must be created (or copied from another folder) on the remote pc (not using the network drive, but on the pc itself).
    Here is my test code:
    package nl.test.main;
    import static java.nio.file.StandardWatchEventKinds.ENTRY_CREATE;
    import static java.nio.file.StandardWatchEventKinds.ENTRY_DELETE;
    import static java.nio.file.StandardWatchEventKinds.OVERFLOW;
    import java.io.File;
    import java.io.IOException;
    import java.nio.file.ClosedWatchServiceException;
    import java.nio.file.FileSystems;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.nio.file.WatchEvent;
    import java.nio.file.WatchKey;
    import java.nio.file.WatchService;
    public class WatchDir
      private final WatchService _watcher;
      private final String _dir;
      public WatchDir( String dir ) throws IOException
        _dir = dir;
        _watcher = FileSystems.getDefault().newWatchService();
        Paths.get( dir ).register( _watcher, ENTRY_CREATE, ENTRY_DELETE );
        System.out.println( "watch registered for dir: " + dir );
      public void run()
        try
          while ( true )
            WatchKey key = _watcher.take();
            for ( WatchEvent<?> event : key.pollEvents() )
              WatchEvent.Kind<?> kind = event.kind();
              if ( kind == OVERFLOW )
                continue;
              @SuppressWarnings( "unchecked" )
              WatchEvent<Path> ev = (WatchEvent<Path>)event;
              Path fileName = ev.context();
              System.out.println( "WatchDir event: " + kind.name() + ": " + fileName );
              if ( kind == ENTRY_CREATE )
                String realPath = _dir + fileName;
                System.out.println( "WatchDir: " + realPath + " exists == " + new File( realPath ).exists() );
            key.reset();
        catch ( ClosedWatchServiceException x )
          return;
        catch ( InterruptedException ex )
          return;
      public static void main( String[] args )
        Thread t = new Thread( new Runnable()
          @Override
          public void run()
            try
              while ( true )
                String filename = "subdir\\test.txt";
                boolean fileExists = new File( filename ).exists();
                System.err.println( "FileExistsThread: " + filename + " == " + fileExists );
                Thread.sleep( 300 );
            catch ( InterruptedException e )
              e.printStackTrace();
              return;
        t.start();
        try
          new WatchDir( "subdir\\" ).run();
        catch ( IOException e )
          e.printStackTrace();
    Any idea's?
    Thanks,
    Olaf

    If you donot have access to note 45172.1 as specified by Laurent Schneider.
    Snippet from note
    a. Mapped Drive : To use a mapped drive, the user that the service starts as
    must have setup a drive to match UTL_FILE_DIR and be logged onto the server
    when UTL_FILE is in use.
    b. Universal Naming Convention : UNC is preferable to Mapped Drives because
    it does not require anyone to be logged on and UTL_FILE_DIR should be set to
    a name in the form :
    \\\<machine name>\<share name>\<path>
    or
    "\\<machine name>\<share name>\<path>"

  • Topic : mount_smbfs: mount error: /Volumes/test: File exists

    Hi all,
    I am trying to write a script that mounts several samba drives and moves files around.
    Now, the command
    mount_smbfs //whatever@adrive/share /Volumes/test
    works perfectly, asking me for a password; however, if I put the password as specified in the man page for both mount and mount_smbfs, it says that the test directory exists, no matter if this is true or not.
    I tried to create it, to remove it, but nothing changes.
    What am I doing wrong?

    Are the examples you're showing the exact statements you are executing, or are you using environment variables to populate or any else that might permute the statements?
    If by chance you are executing these in a script with environment variables it might be helpful to copy the execution line and echo it to the terminal to verify it is resulting in exactly what you expect.
    Also, I noticed that mount_afp has the same syntax as mount_smbfs except that mount_afp includes 'afp:' before the two slashes. Might be worth a try to add 'smb:' or 'smbfs:'. The statement I use to mount my AFP shares is:
    mount_afp afp://username:password@host/share /Volumes/share
    Also, a handy way to get the password without hardcoding in your script is to use the 'security' command similar to the following:
    set USER=`id -un`
    setenv PASSWORD `security find-generic-password -g -a $USER |& grep password | cut -f2 -d\"`

  • Best way to share files across computers

    I just installed the newest OS X MTLION server. What's the best protocall to share files?

    "Didn't work" isn't a problem statement folks here can particularly help with, beyond offering our sympathies.  What is helpful toward getting you to your goals are the particular problems you're facing are your general requirements, and specific details of commands tried and error messages and diagnostics you've encountered.  For better or worse, sharing files is something that both OS X and OS X Server do well, and via a variety of protocols. 
    As an example of the sorts of details that can be useful here, the particular volume of data involved is helpful as "large" means something very different to different folks.  The amount of storage and how much it's churning — how often those photos are being added or searched, and how large the photos are, and how many photos are likely to be present in the environment over the years — determines the size of the RAID array(s) necessary initially and over time, as well as helping determine the likely network bandwidth necessary to shuffle the data around should you want or need cloud (off-site) storage for the data, etc.
    Based on what you've provided, the "antique" or "classic" solution would be a manually-maintained file server, probably running AFP given you have OS X systems, and either connected by 802.11n (preferably) 5 GHz or (better) gigabit Ethernet.   Larger volumes of data generally mean faster links are needed.  This approach is "antique" or "classic" in that you deal with individual files and directories and related baggage.  Manually.
    In a somewhat more modern approach, you'd have a photo storage database package — a content management system for photos — that deals with uploading and indexing and peeking at Exif and related data — and that deals with backups and related processing automatically.  I don't know if such a package exists, but I'd expect it does.
    The customized version of this photo storage  — this is a potentially much larger investment on your part, either to write or to have custom built for you, but resulting in a solution for your particular requirements — might involve acquiring development tools such as the FileMaker Pro package and rolling your own storage and retrieval system.  Basically, building your own custom photography database and data management, and using FileMaker or some other database for backups and related processing. 
    Better still, a package including billing and related administrivia, etc.  The tedious stuff.
    If you're just looking at copying files around for now, then you probably don't have a whole lot of them.  As you do get more photos, then you're going to be spending more time collating and managing the quantities of data and related baggage.  Sooner or later, you'll be looking to automate all of this stuff, and you'll then be looking to move into something that allows you to spend time taking and presumably selling photos, and less time dealing with "files" and "servers"...
    As another potential option for learning about some options, see if your Apple Store has some folks that deal with local businesses, and have a chat with them.
    Ok, enough of the blue-sky photography-database-management stuff.  
    As for copying files around — files containing, well, whatever — that works nicely on both OS X and OS X Server, and some details on exactly what happened when it "didn't work" would be the best approach forward. 
    There's a near-infinite number of reasons why computers can fail to perform the desired task, unfortunately.
    Permissions can certainly be a factor in file access and file-storage problems. 
    FWIW, servers are comparatively more effort to set up, particularly if you're using distributed authentication such as that provided by Open Directory (see Workgroup Manager (WGM) tool) and such.  As for resolving the file access and file sharing problems, some details from the server logs, the file settings and the protection settings tested, etc., will be helpful here in resolving whatever happened.
    In general and from experience here in the communities with folks that are experiencing their first server management, you need to get your IP network working, and particularly your local network DNS configured and working.  Weirdness with various services is a common result of network problems and particularly DNS problems.  If (when) the DNS configuration is skipped — as happens far too often — and you later realize it's necessary and start to get DNS working, that tends to get various services, well, confused.  Best to start out with working DNS when you're dealing with a server.  Here's a long-winded write-up on OS X Server DNS services, and which applies to 10.8 server once you click the Advanced settings stuff in the DNS setup in 10.8 Server.app tool. 
    Oh, and please don't use .local as your DNS domain.  That causes different-weird.
    Welcome to the Apple communities, and apologies on the wall of text.

  • Photoshop/Bridge CS4 problem with AFP shares

    Hello,
    I have recently purchased Photoshop CS4 and encountered the following problem: when opening images from a NAS share connected via AFP using File/Open command, Photoshop will correctly display the list of files but Open command in the File open dialog remains disabled after a file is selected from the list.However, I can open the same file by dragging and dropping it from the Finder to the Photoshop Dock icon or later using the Open recent menu command.
    Similar problem is visible in Bridge: it will not display the image thumbnails from any of the subfolders in the network share.
    I am using Leopard with the latest updates, I have a read/write permissions to the network share and Photoshop/Bridge are the only applications that have problems browsing/opening files from the network share. The NAS unit is a Synology DS-107+ with the latest official firmware.
    Futhermore, I have noticed that I can work around the problem by opening the same directory in Finder. After the image thumbnails are visible in Finder, both Photoshop and Bridge will correctly open all files in that directory but opening files from other directories still has the problem.
    Does anyone have any idea on what might be causing this strange problem?

    This is the boilerplate text I use in connection to saving to a network (please NOTE the part where it explains that normally, it does work, but that it is impossible to troubleshoot someone else's network remotely, and that's why it's not supported by Adobe):
    If you are opening files over a network or saving them to a network server, please cease and desist immediately in the event you are currently experiencing problems with one or more files. Working across a network is not supported.
    See: 
    http://www.adobe.com/support/techdocs/322391.html
      Copy the CLOSED file from your server to your local hard disk, work on it, save it again to your local hard disk, close it, and copy the closed file back to the server.
         Of course, the fact that Adobe does not support working across a network does not necessarily mean it won't work.   It should.
        Adobe's position is that there are too many variables in a network environment for them to guarantee that everything will work correctly in every network, especially given the fact that if something does not work properly, it's probably the network's fault, and Adobe has no way of troubleshooting your network.
      If you can't work locally, you are on your own, and if something happens, you're on your own. If you must work from a server, make sure your network administrator is a competent professional.
    When problems arise, a lot of valuable work can be lost.

  • Copy from AFP share to AFP share (via VPN-Connection) - stupid?

    Hi there
    We set up an OS X server in a remote facility and are connecting to it over a VPN connection (Netgear Firewall).
    Everything works fine, there's only one annoying issue: if I want to copy a file from a mounted AFP share (share1) to another mounted AFP share (share2) - both of them residing on the same server - it seems to me that the files are being copied first to my local client and then back to the server again - instead of being copied directly from and to the server...
    Is there anything I can do about this issue or am I wrong? Is this a so called "feature" of the Finder itself?
    Thanks for any suggestions and regards
    Roman

    Thanks for your thoughts about higher vs. lower latency networking - I totally agree. It might be a quite uncommon setup; as the server is being "housed" in a datacenter with quite tough restrictions: not only do they charge us for the power consumption, but also for the traffic being generated - which is 250 GB a month. They're providing an uplink with 10mbps (guaranteed), burstable to 100mbits.
    Anyway, we're interested in keeping traffic low - hard to do if we cannot let end users do "common" tasks like moving files from one folder to another (of course, its a sharepoint - but they don't care).
    What I'm looking for? Well, I think it will take hours to find out which part of the setup (AFP implementation of the server, AFP on the local machines, either of them on a particular version, the Finder in general...) actually might be responsible for this behavior. And maybe there's a "solution" (if you agree that this is actually a problem" buried somewhere
    Regards
    Roman

  • Finder crashing in AFP share

    Hello,
    We're having some really strange issues at work with an AFP share.
    Setup:
    Mac OS X 10.4.7 clients (including a G5, MacBook Pro, iMac G4)
    Mac OS X Server 10.4.7 sharing files via AFP
    How to replicate:
    User's login to the AFP share, navigate to a certain folder, and then finder "locks" (spinning beachball). All attempts to relaunch finder fail. The only things that fixes finder is restarting the machine. This does not fix getting to the folder.
    Every directory in this part of the AFP share have the same permissions. I have not tried to navigate to the directory on the server because we would have to get everyone to log off and stop working.
    Thanks for help in advance,
    Rob
      Mac OS X (10.4.7)  

    All of the users are connecting via ethernet. We typically have about 10-15 users connected to a Mac OS X server with unlimited clients. Everyone in the office connects to this machine, but this happens even when we do not
    Initially we were having trouble with a folder that had photoshop files (.psd), but now we're having trouble with the folder up from that (which is basically a project folder that then has several folders beneath it).
    I copied the files that one of our employees needed in Windows to another folder (created in Windows) above the directory we are having trouble with. She was able to access the folder and the files. Windows connections are through SMB (and all the windows machines that we have are able to navigate to these folders).
    For the clients, unforunately, force quit doesn't seem to handle finder correctly.
    Mac OS X (10.4.7)
    Mac OS X (10.4.7)

  • How do i share files with my macbook air?

    I am trying to share files on my iMac with my Macbook Air.  what are my basic steps for doing so.  They both exist on the same wifi network.

    OS X Yosemite: Share your files with other Mac users

  • Using webserver to share files...

    I am trying to share files and a lot of them. For ease of use I though using the web server would be the right way. The files are stored on a secondary raid striped drive. I created an alias folder and placed that within the documents folder of library/WebServer/documents. Now others can locate the alias folder but cannot see the content. Would this be expected?
    If so.. What is an alternate solution? I can afp the computer from my macbook but with pc's my knowledge is very limited so explaining over the phone on what they should be doing to access is not a great option. I am not tech savvy but persistent.

    You can't use an Alias to link to content on other volumes. Aliases are Mac-specific constructs, not understood by UNIX-based applications such as Apache.
    You can, though, use a symlink - the UNIX equivalent, but you'll need to use the terminal to do so.
    Given a directory called 'content' on a volume called 'external', the following command would create a symlink in /Library/WebServer/Documents:
    sudo ln -s /Volumes/external/content /Library/WebServer/Documents/
    Now you'll have a 'content' symlink in your web root directory and hitting http://your.server.net/content/ will link to the external drive.
    What is an alternate solution?
    AFP isn't an option for Windows users, so forget that.
    SMB would work for PCs, but only on a LAN level (i.e. for local users, not users over the internet).

  • Using FTP to share files with 3 Windows computers - Not Working Anymore

    My office is trying to share files with a number of computers, both Mac and PC. The files are housed on a Mac OS 10 version 10.6, and I've enabled both AFP and FTP sharing. The macs in the office connect just fine, but yesterday, after three weeks of working perfectly, the Windows machines stopped connecting to the Mac. They get a "The Connection with the server was reset" error. We don't use an FTP client - I just had the PCs connect to the Mac by typing ftp://address in their explorer window.
    I've tried restarting all computers, disabling and re-enabling FTP sharing, and I've triple checked permissions, etc. Is there anything else I should be investigating? I'm trying to look into our firewall here, but since our computers are rentals and another company controls our internet access I'm not sure what I can do there. (I tried setting up workgroups, but said company won't give me administrative access over the PCs or access to the firewall, and there's no IT dept to speak of)
    As I'm sure you can tell, I'm just a regular old office monkey who inherited the "IT" job with no IT experience, so I apologize if any part of this question is stupid.

    I know just about nothing about this, but common dianostic practices include looking at the logs.
    Either use Applications -> Utilities -> Console, which has a search function that might make this easier.
    Or go looking around /var/log (which you can use Unix 'grep' to do your searching ). Then again, NOT ALL logs are in /var/log, and Console knows where more logs are located.
    2 logs that might be a good starting point would be /var/log/messages and /var/log/secure

  • Importing from camera with iMovie onto computer with home on AFP share ...

    I am trying to import a movie from a Sony Handycam into iMovie '08. iMovie can see the camera. The problem is that I cannot choose where to save the movie. I am only offered the choice of one of the two disks in my machine but am not given a chance to choose the actual folder location. Furthermore, the only choices are not write accessible to me.
    I am guessing that iMovie doesn't want to import to my home/Movies because it is on an AFP share but why can't I choose the /Users/Shared folder (or any other location)?
    Does the user that imports video into iMovie have to be an admin user?
    The dialog that opens when I choose to import says "Save To:" but is not a proper (usual) file selection dialog. I only get two choices and they are internal disks not folders.
    I know that Apple loves to work from the premise that they know best how I should do what I want to do but in this case I am actually totally prevented from doing what I want to do. I could actually log in as the admin user, import the movie (I'm assuming that would work) and then copy the files to my account. Any other suggestions would be welcome. Is there a way to specify the path for the import dialog?
    (I am sitting on a gigabit ethernet network with a recent XServe and XServe RAID serving my home. I find it hard to believe that this couldn't handle a simple video import. It's not even HD.)

    I am only offered the choice of one of the two disks in my machine but am not given a chance to choose the actual folder location. Furthermore, the only choices are not write accessible to me.
    Other than the start-up drive user's account "Movies" folder, iMovie '08 only allows access to the "root" level of non-start-up drives which are the only areas it scans for "iMovie Events" folders during initialization. In addition, in order to access non-start-up drives, they must be formatted as "Mac Extended OS" drives.
    I am guessing that iMovie doesn't want to import to my home/Movies because it is on an AFP share but why can't I choose the /Users/Shared folder (or any other location)?
    See above.
    Does the user that imports video into iMovie have to be an admin user?
    No.
    The dialog that opens when I choose to import says "Save To:" but is not a proper (usual) file selection dialog. I only get two choices and they are internal disks not folders.
    See first answer.
    I know that Apple loves to work from the premise that they know best how I should do what I want to do but in this case I am actually totally prevented from doing what I want to do. I could actually log in as the admin user, import the movie (I'm assuming that would work) and then copy the files to my account. Any other suggestions would be welcome. Is there a way to specify the path for the import dialog?
    Finder level file operations performed external to iMovie '08 tend to corrupt pointers/reference paths unless they emulate what iMovie itself does in which case the initialization scan may be able to fix some problems.
    I am sitting on a gigabit ethernet network with a recent XServe and XServe RAID serving my home. I find it hard to believe that this couldn't handle a simple video import. It's not even HD.
    Not familiar with such use so I don't know if this would automatically limit your access to root level storage area.

  • Spotlight/Searching does not work for afp shares in Lion

    Hi
    I cannot search for files in Finder on my afp shares. The server and client are both running Lion 10.7. Anything I am missing? Should this work or not? I'm so used to Spotlight I would really hate it if this isn't supported for afp shares.
    Thanks NEI

    Acrobat catalog, PDX, files only work from local or network drives.
    From Acrobat's Help;
    "Moving collections and their indexes"
    "You can develop and test an indexed document collection on a local hard drive and then move the finished document collection to a network server or disk."

  • OS X 10.6.5 Server AFP share - can't change group from 'staff' ???

    Hi,
    I'm running a new 10.6.5 XServe within a corporate AD environment. Well, when I say 'running' I mean testing - I could never let this odd beast loose on anyone with the awful state it's in.
    Trying to set up the AFP shares, I simply wanted to assign one of our AD groups as the POSIX group for the share, just as I do on our existing Tiger server. 'simply' he says... oh I wish!
    Server Admin 'lets' me change the group, then puts it right back to 'staff' again as soon as I hit Save. Same result when trying to change the Owner too, but I'm not needing to change that.
    From Terminal, the usual permissions commands have no effect either. Try chgrp MyGroupName MyFolderName.
    Tried changing while logged in as either root or admin, no difference.
    So, all I want to do is change the group that's assigned to a share's POSIX permissions. Am I expecting too much from SL? Anyone else had this problem, and know the trick to solving it?
    Can't believe this is happening - something so basic and important. I've wasted countless hours already with numerous other SL issues. Wish I'd never set eyes on the thing but it's been forced down my throat - we needed a new XServe, which turned up with SL installed of course. I'd gladly do a clean install of plain Leopard over the top, but apparently that's asking for (even more) trouble.
    This POSIX nonsense is just the latest obstacle I need to get sorted.
    Thanks for any help,
    Paul.

    Hi,
    I'm running a new 10.6.5 XServe within a corporate AD environment. Well, when I say 'running' I mean testing - I could never let this odd beast loose on anyone with the awful state it's in.
    Trying to set up the AFP shares, I simply wanted to assign one of our AD groups as the POSIX group for the share, just as I do on our existing Tiger server. 'simply' he says... oh I wish!
    Server Admin 'lets' me change the group, then puts it right back to 'staff' again as soon as I hit Save. Same result when trying to change the Owner too, but I'm not needing to change that.
    From Terminal, the usual permissions commands have no effect either. Try chgrp MyGroupName MyFolderName.
    Tried changing while logged in as either root or admin, no difference.
    So, all I want to do is change the group that's assigned to a share's POSIX permissions. Am I expecting too much from SL? Anyone else had this problem, and know the trick to solving it?
    Can't believe this is happening - something so basic and important. I've wasted countless hours already with numerous other SL issues. Wish I'd never set eyes on the thing but it's been forced down my throat - we needed a new XServe, which turned up with SL installed of course. I'd gladly do a clean install of plain Leopard over the top, but apparently that's asking for (even more) trouble.
    This POSIX nonsense is just the latest obstacle I need to get sorted.
    Thanks for any help,
    Paul.

Maybe you are looking for

  • Post key value

    how to decide posting key for negative valuies and for positive values and who will decide this i have to assign minus sign to value for posting key say 21. how can i do that. is it like this ? if itab-BSCHL = '22'. concatenate '(-)' amount into itab

  • Mail not working after installing OX 10.10.1

    Have been dealing with symptoms of the update in mail all day long: -Moving messages to folders results in "cannot move" message.  -Attempts to quit the program do not work, must Force Quit. -Messages won't delete, or allow themselves to be moved. -M

  • IPhone 4s charge issues

    Hello, my iPhone 4s goes to Apple logo when I plug it in to charge, but it doesn't charge. What should I do? Replace the charger, and the battery?

  • SAP`s Training material for XI 3.0 Certification

    Hi All, I want to do the XI 3.0 certification. Can anyone please send me the material : TBIT40 (XI foundations), TBIT41 (Mapping Concepts), TBIT42 (Adapters Concepts), TBIT43 (Business Process Management Concepts), TBIT44 (Mapping, Adapters and BPM.

  • Helpdesk hours

    Today my Broadband went off for about 20 minutes just after midnight. This interupted my on-line access and also prevented access to the BT Vision On Demand programs Upon calling 0800 111 4567 I was suprised to be told the Helpdesk is now closed and