Enable/disable ACLs for a volume

where is the option enable/disable ACLs for a volume in leopard server 10.5x?
I searched in Server Admin and there Volumes … but I cant find this option which is described in this forum ?!

Hi
By default Access Control Lists (ACLs) are enabled on Leopard Server (10.5). The situation was different on Tiger Server (10.4) as you had to enable ACLs for each mounted volume.
To disable ACLs on Leopard Server you have to use the command line:
sudo fsaclctl -p path -d disable
to disable and to enable:
sudo fsaclctl -p path -d enable
As with 10.4 you its a good idea to restart the server after disabling or enabling ACLs, otherwise ACLs won't take. Strictly speaking this should only be true of the Boot volume although in my view its worth doing it for any other mounted volume you are going to be using for sharing.
To display ACL status for all mounted volumes issue this command:
fsaclctl -a
for a specific volume its:
fsaclctl -p path
where path is the name of the volume - you can drag drop the desired volume into the terminal window to show its full path. For example you could have:
fsaclctl -p /
/ is terminal shorthand for the boot volume. Regardless of how you do it you should see something like this:
Access control lists are supported on /Volumes/Data HD
Tony

Similar Messages

  • Can't disable ACLs

    Out XServe/OS-X 10.5.2 appears now to be having the same problem as this previous thread:
    http://discussions.apple.com/thread.jspa?messageID=6922635
    In order to avoid various SMB problems, using fsaclctl I disabled ACLs on several volumes that are on an attached XRAID. As judged by report from fsaclctl that sticks, but upon rebooting the system ACLs are back enabled.
    Does anyone know what the heck this is about? Maybe ther are some bootup settings somewhere that enables ACLs? If I want to try to defeat that by adding a script to force ACLs off at bootup time, where should I do that?
    Thanks, Graham

    Still don't know why fsaclctl disabling ACLs doesn't stick across reboots (OS-X server 10.5.2), however, in case anyone else is desperate, here's what I did to re-disable ACLs on each bootup.
    1. Create a startup launchd item:
    /Library/LaunchDaemons/xxx.yyy.disable_acls.plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Label</key>
    <string>Disable ACLs</string>
    <key>ProgramArguments</key>
    <array>
    <string>/zzzStartupItemScripts/startup_disableacls.bash</string>
    </array>
    <key>KeepAlive</key>
    <false/>
    <key>RunAtLoad</key>
    <true/>
    </dict>
    </plist>
    2. Created script to invoke fsaclctl: startupdisableacls.bash
    #!/bin/bash
    # Delay to give chance for drives to mount
    sleep 60
    echo "Disable ACLs, round 1"
    fsaclctl -p /Volumes/RAID1 -d
    # sleep some more in case we were too fast
    sleep 180
    echo "Disable ACLs, round 2"
    fsaclctl -p /Volumes/RAID1 -d
    Notes:
    1. You may need to unwrap the DOCTYPE strings, depending on what this forum does to them.
    2. You can adjust where you place this script, and make the corresponding change to the plist file.
    3. Note the sleep delays in the script. Without these, launchd performs the script before the drives are mounted. According to docs, launchd does not stall while waiting (and if it did this probably wouldn't work).
    Hope that helps someone, or provokes someone else to tell me that there's a simpler way.
    Graham

  • ALTER TABLE privilege and CREATE/DROP/ENABLE/DISABLE constraint privilege

    Hi,
    I am looking for some detailed info regarding the below previleges
    ALTER TABLE, CREATE CONSTRAINT, DROP CONSTRAINT, ENABLE CONSTRAINT AND DISABLE CONSTRAINT PRiVILEGES.
    I have two schemas 'A' and 'B', I want to provide user 'A' with Alter table, create or drop constraint,Enable or Disable constraint on schema B.
    Please let me know how to make this work.
    Thank you

    I got the answer for my second question, I have an option to grant 'Alter ANY table' privilege to the user.Yes, but you should not do that.
    Regarding question one, Suppose I have two schemas A and B and I want Schema A to have alter table privilege on all tables of Schema B.
    Can I do this in one command No
    or I need to grant alter on each table saperately?Yes
    If I am chosing the second option for each table saperately then whenever a table is added in schema B we need to grant privilege on that table as well.Yes. But nothing strange there. Designing and creating objects includes the privileges on them.
    If user A is granted with alter table privilege on a table which user B owns then can user A drop/create/enable/disable constraints for that table?Yes, isn't that what all this about?
    Again, letting one user alter the objects of another user is generally not such a good idea. Hope you see this from our discussion.
    Alter table privilege includes adding and dropping columns. This is why I suggested writing a procedure that does exactly what you need. And then grant execute on that to A.
    The best thing of course would be NOT TO disable the constraints, they are probably there for a reason.
    I am currently handling an issue where one session doing this, deadlocks with another session doing only selects - From other tables, that is!
    Regards
    Peter

  • Correct Endpoint ACL for Azure Websites

    Hi Everyone,
    I'm currently in the middle of building out my company's DEV environment using Azure Websites and Azure Virtual Machines. When I enable Endpoint ACLs for SQL (1433) on my SQL VM, my website in Azure Websites is no longer able to access it and I can't find
    the correct IP to which I should grant access.
    I'm really hoping I can do this using Endpoint ACLs rather than needing to resort to Virtual Networks because this is a DEV environment and I want to spend as little as possible which means sticking with the Azure Websites Basic hosting plan rather than
    upgrading to Standard which is overkill.
    Also, SQL Azure is currently not a viable option because I need database level encryption which is currently unsupported.
    Thanks in advance for any insight you can provide.
    Ryan

    Azure public IP address are published and refreshed at regular intervals it can be found here: http://www.microsoft.com/en-us/download/details.aspx?id=41653
    . This information can be provided in the endpoint ACL list

  • Need an enable/disable Labview VI for SC-2062 relay board using PCI-6503 DAQ Card.

    I am using Labview 6i, and I need to write an enable/disable VI that will enable and disable 6 of the 8 relays at any time while keeping the whole vi running. Therefore one or more positions may be changed at a time, but positions that don't change cannot be interrupted when changing others (no port resets allowed). I was wanting to maybe send a 1 by 6 array of some sort out but I can't figure out how to use the array to communicate with the DAQ card, relay board and SC-2051 adaptor. There also needs to be error handling in and out. Thanks for your help. Any examples would be very helpful.

    Hello;
    The best way to go about that is to disable the data points correspondent to the channels you want to disable. Meaning that you can ignore the datapoints of the channels you want to disable on the fly. That is the only way to disable channels on the fly.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • What value to put in for a preference in the about:config forlder that would allow me to use the f12 key to enable/disable a firefox add-on.

    Im trying to set it up so hitting the F12 key will enable/disable Addblock Plus because their are some web sites I need it disabled completely on.
    The preference is already there in the about:config screen but the value is left blank for you to fill in if you want to use the feature.
    I just need to know what value would represent pressing the F12 Key

    '''F12''' is what you need as the string Value for '''extensions.adblockplus.enable_key'''

  • How to disable/enable the cells for editing column wise in JTable in java?

    Hi All,
    Can any one tell me how to disable the cells for editing by column wise in JTable?
    Here depending upon the radio button selected, I need 2 disable some columns for editing
    and enable some columns for editing?
    how can I do tat using JAVA?
    Any sample code is of great help to me.
    Thanks in Advance

    http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
    ~

  • Enable/disable small/ large caller picture! It was very attractive feature when my dear contacts was calling me, so sorry for myself to loos such a good preview

    There is not any question, but wondering why Apple does not consider an optional feature to enable/disable small/ large caller picture! It was very attractive feature when my dear contacts was calling me, so sorry for myself to loos such a good preview

    There is not any question, but wondering why Apple does not consider an optional feature to enable/disable small/ large caller picture! It was very attractive feature when my dear contacts was calling me, so sorry for myself to loos such a good preview

  • Jsf+javascript for form button enable/disable

    I have a page that has checkboxes and input boxes on it. I want the submit button disable when the page initially loads, and then upon making any chages to the form fields, enable the submit button. I have the javascript working, but the form is actually not going to my submit method in my backing bean. Here is my javascript:
    function enableSubmitButton(form, inputElement) {
        var formId = document.getElementById(inputElement.id).form.id;
        var submitButtonId = document[formId][formId+":submitButton"];
        submitButtonId.disabled = false;
        submitButtonId.setAttribute("class", "inputButton");
        submitButtonId.setAttribute("className", "inputButton"); // for IE which does not recognize "class"
    }Here is an example of a checkbox:
    <h:selectBooleanCheckbox id="chkChannelEmail"
         value="#{services.emailSubscribed}"
         rendered="#{services.renderEmail}"
         onclick="displayRequiredFields(this, 'chkChannelService); enableSubmitButton(this.form, this);">
    </h:selectBooleanCheckbox>and here is my command button
    <h:commandButton type="submit" value="Submit" id="submitButton" action="#{BackingBean.submit}" styleClass="inputButtonDisabled" disabled="true" />It seems to be updating the disabled value, because when my page loads up, i can alert out the disabled value, and it is true, and if I click on a checkbox, it alerts out that the disabled value is false, but submitting my page doesn't actually work.
    Thanks!!
    Edited by: jrthor2 on Oct 16, 2009 3:10 PM

    The commandbutton won't be invoked as long as the disabled attribute still evaluates to 'true' in the server side. So you need to solve this the other way. Let the disabled attribute for example depend on a request parameter or pass a hidden input element which notifies JSF that the disabled attribute should evaluate to 'false' and so on.
    The same story applies on the 'rendered' attribute by the way.

  • Anyway to selectivily enable/disable bluetooth function for selected apps like papago in iphone.

    Hi,
    Anyway to selectively enable/disable bluetooth function for selected apps like papago navigator in iphone.
    I want to maintain bluetooth connectivity to car headset for handsfree driving while papago navigator on ky iphone continuously guide me on the road using the  iphone speaker. So when someone called me on the phone, it will use the car headset. is there such as apps?
    Rgds,
    Kpk

    Hi,
    In pageflow definition, "Train Stop-->Skip" property controls the enable/disable state.
    If Skip value is true (it can be controlled with EL expression) than related link and button in train components are disabled.
    They are enabled other If Skip value is false (It is default).

  • Why can't we simply have an option to enable/disable Javascript on sites again in the settings for Firefox 27? Suddenly my Gmail attachments won't open. Gmail.

    Suddenly my Gmail attachments have stopped opening, and I receive the message: JavaScript must be enabled in order for you to use Gmail in standard view. However, it seems JavaScript is either disabled or not supported by your browser. To use standard view, enable JavaScript by changing your browser options, then try again.
    I found a Mozilla support thread where it was explained that Javascript has been turned off for a while in FF. OK. Then there was a complicated answer about how you could still turn it back on by typing in a config code into the address bar. What? Or, you could download an extension to do that for you. Why?
    Please-- if you really feel like users can't be trusted, and Javascript must be turned off, at least bring back the ability to enable/disable Javascript on a per site basis in options, without having to know code. It's Gmail.
    Thank you.

    There is nothing on that thread that says Javascript is turned off by default. to quote:
    "In Firefox 23, as part of an effort to simplify the Firefox options set and protect users from unintentially damaging their Firefox, the option to disable JavaScript was removed from the Firefox Options window.
    However, the option to disable JavaScript was not removed from Firefox entirely. You can still access it from about:config or by installing an add-on. "
    The UI checkbox to disable Javascript was removed, but the option still exists in about:config (which isn't code btw, it's just preferences), nor was Javascript turned off by default, in fact the opposite is true, it is enabled by default with the option to disable it made a little more difficult to find, as only advanced users need to disable Javascript.
    Please try to clear the cache and cookies for gmail, let's see if those are causing problems. [[Delete cookies to remove the information websites have stored on your computer]], [[How to clear the Firefox cache]]

  • Lync - Can I disable video for P2P but enable it for conferencing?

    Can I disable video for P2P but enable it for conferencing?
    I know this is an odd request but can anyone help me find any information that confirms if this is possible or not?

    Actually there is an extended policy introduced with one of the previous cumulative update.
    Having applied the latest CU on both server and the clients, IgnoreEnableP2PVideoPolicyInConf policy would enable the exact behaviour.
    Before running the cmdlet below for a client policy, please confirm that that AllowIPVideo is set to True and EnableP2PVideo is set to False for that user.
    set-csclientpolicy IgnoreEnableP2PVideoPolicyInConf -PolicyEntry @{add=New-CsClientPolicyEntry -Name IgnoreEnableP2PVideoPolicyInConf -Value 1}
    Hope that helps
    Perfect
    same bug in lync 2013 and It works for Lync 2013 too

  • IE9 Disable AutoComplete for Forms Registry Setting (where is it?)

    I have tried with no success to use GP to consistently force Disable AutoComplete for forms (User Configuration\Administrative
    Templates\Windows Components\Internet Explorer).
    Using GPResult,
    some workstations show "disabled" when the setting is actually "enabled" through GP. 
    I am now pursuing a registry edit to force this to my workstations
    consistently (key word; consistently). Does anyone know the correct registry key for IE9 on a Windows 7 Pro (64 bit OS)? I've tried about five so far and none of them work. 
    So far, I've tried:
    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\AutoComplete]
    "Append Completion"="no"
    HKCU\Software\Microsoft\Internet Explorer\Main\WindowsSearch\AutoCompleteGroups REG_DWORD "0"
    and a few more I forget... 
    I am supposing that a Microsoft support person will be the only one(s) in the know for this one but please help if you can! 
    Charlie Newman

    Hi,
    As we all know we can disable AutoComplete throung IE settings. While if you want to disable them through Registry, it would be better to use Regshot to caputer registry modifing after this setting changed in IE.
    I made a test in my test enviroment, there are some other volume and key modified, also contains:
    Eg:
    HKU\S-1-5-21-4145364215-115882434-1782034342-500\Software\Microsoft\Internet Explorer\Main\Use FormSuggest: "yes"
    Please make a capture in your system.
    Roger Lu
    TechNet Community Support

  • "Enable Access Control" for shared directory is grayed out

    For shared directories in WorkGroup Manager, the checkbox "Enable Access Control" is grayed out. I want to enable ACL on a directory I have moved from another volume. The "Enable disk quotas" is also grayed out.
    How do I turn on Enable ACL?
    Dennis

    ACLs are enabled at the volume level. In the Sharing panel of WGM, you need to click the "All" tab so that you see more than just your sharepoints. Select the disk volume upon which your directory is located and then the "Enable Access Control" option should become available to you.
    Note that enabling the ACLs doesn't apply them. Your directory will continue to use POSIX permissions until you specifically apply ACLs to it.
    Xserve G5   Mac OS X (10.4.5)  

  • Enable/disable fields in Workspace form

    Okay here is my scenario. I need to disable some fields on a form depending on which user logs onto workspace to open the same form.
    1. User1 logs onto workspace and opens leave request form, fields at the top of the form are enabled for the user to fill out, bottom fields which are for leave request administrator to fill out are disabled but visible.
    2. User1 fills out top portion of leave request form and completes form. Workflow sends form to leave request administrators "To do" list in Workspace.
    3. Administrator opens up submitted form in Workspace and sees User1's filled out data on the form and the bottom fields are now enabled for administrator to approve or dissaprove. Bottom fields only include two check boxes, two text fields and one date field.
    Now how is this done? I am sure their maybe scripting involved? if so what is it and at what events in the form? Is this whole process done in the form or through Admin UI or Workebench as well? Please help!!!!!!!!!

    Hi Rahat,
    You can use the same form and enable/disable some fields according to the user's role with only little scripting. Review the steps the below:
    1-First place a hidden field ("user_role") in your form
    2-Insert a script object into your form onder "Variables" in object hierarchy and write a script for enabling/disabling the fields (regarding the value of "user_role")
    3-On the initialize and change events of the "user_role" call your script object
    4-On your process design, put a SetValue service before User tasks. In the asssignment you should set the desired user_role to the form, so that the script is triggered in your form and the fields are enabled/desiabled
    Fro further needs on your form or process design you can contact us from: http://www.kgc.com.tr/company_Contact.html
    Oguz
    http://www.kgc.com.tr

Maybe you are looking for

  • App won't download. Says it is in the Norweigan store. I use USA store how do I change it?

    LDS songs will not download my updates.  I use USA apps store but the download apps message says I need to change from the Norweigan store to USA store.  It has updated previously without a problem.  How can I change from Norweigan to USA?

  • W 540 registration

    i have registered my machine a couple of times with lenovo solution sortware, pre-installed with the machine. but perhaps, it still shows that the product needs to be registered. kindly,resolve this.. CONSTRUCTION & PROJECT MANAGEMENT SPECIALIST

  • Poor image quality when played from dvd just burned

    I exported a FCP file from FCP using Compressor using several variations: uncompressed, compressed MPEG2 etc... brought the file into DVDSP and burned it to a DVD. when i play it from the dvd on my computer monitor it has these terrible lines and the

  • Safari 5.0.5 freezes on wake

    If I close my MBP, with Safari open, it freezes when I open it back up.  All other programs work, but slower. Took it to the Genius (sic) bar and they told me to install Clicktoflash to block flash.  Still froze. I've reset Safari and deleted the pre

  • What kind of music file to use when you download

    I just got my Video Ipod and i do not know what kind of music file i am using to download my music. i know thereis aac, mps, wave, and all different kinds. i do not know how to change which one i am using. i assume it already is set to aac???please h