At a loss need some help simple share permission problem

OSX Server 10.4.8 stand alone none AD (none ACL)
All current updates applied.
Since reinstalling the server software to current version (complete format reinstall) the existing raid volume is refusing to allow a simple shared folder with inherit permission to allow the assigned group to have r/w access when a user creates a folder in the volume.
So volume shared set owner r/w usergrp r/w
user creates a folder permissions become owner r/w grp (usergrp) r
So I mount a firewire drive to the server and set the same permissions as above to a folder on that volume and hey presto when a user saves a new folder in inherits the permission as owner r/w and group (usergrp) r/w
So any ideas what is stopping this raid volume allowing the same permissions to work I am at a loss (it worked before reinstall and update to current version)
Help!

OSX Server 10.4.8 stand alone none AD (none ACL)
All current updates applied.
Since reinstalling the server software to current version (complete format reinstall) the existing raid volume is refusing to allow a simple shared folder with inherit permission to allow the assigned group to have r/w access when a user creates a folder in the volume.
So volume shared set owner r/w usergrp r/w
user creates a folder permissions become owner r/w grp (usergrp) r
So I mount a firewire drive to the server and set the same permissions as above to a folder on that volume and hey presto when a user saves a new folder in inherits the permission as owner r/w and group (usergrp) r/w
So any ideas what is stopping this raid volume allowing the same permissions to work I am at a loss (it worked before reinstall and update to current version)
Help!

Similar Messages

  • HT201210 at the end of iOS6 download,my ipod touch says 'update failed'.i need some help to resolve this problem. thanks

    at the end of iOS6 download,my ipod touch says 'update failed'.i need some help to resolve this problem. thanks

    Try:
    - Reset the iPod. Nothing will be lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Next connect to iTunes and update via iTunes. Others have had the same problem.

  • I need some help solving an interesting problem

    On a weekly basis, I need to understand how many invoices are in the system. I've made a couple of attempts at this and none of them have generated what I'm after. Every week we get invoices in. Some invoices carry over into other weeks, some invoices age
    out of the system.
    I've put together a table of unique weeks. There is NO tie between individual weeks and invoices other than some dates in the invoice table. I have access to three:
    created - date invoice loaded into system
    paid_date - date invoice was paid.
    due_date - date the invoice is due.
    The business rules are
    Group all available invoices per week. An invoice is no longer available if it has been paid or if it has gone past its due date without being paid. Below are some sample records. I need help writing the where clause that gets rid of unavailable invoices.
    CREATE TABLE #weeks(
    weeks_id INT IDENTITY(1,1),
    week_of_year_begin_date DATE,
    week_of_year_end_date DATE,
    CONSTRAINT [PK_weeks_id] PRIMARY KEY CLUSTERED ([weeks_id] ASC)
    INSERT INTO #weeks(week_of_year_begin_date, week_of_year_end_date)
    SELECT '2014-02-02','2014-02-08'
    UNION ALL
    SELECT '2014-02-09','2014-02-15'
    UNION ALL
    SELECT '2014-02-16','2014-02-22'
    UNION ALL
    SELECT '2014-02-23','2014-03-01'
    CREATE TABLE #invoices(
    invoice_id INT IDENTITY(1,1),
    created DATE,
    paid_date DATE,
    due_date DATE
    CONSTRAINT [PK_invoice_id] PRIMARY KEY CLUSTERED ([invoice_id] ASC)
    INSERT INTO #invoices(created,due_date,paid_date)
    SELECT '2014-2-01','2014-02-20','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-10', NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-16'
    UNION ALL
    SELECT '2014-2-01','2014-03-03',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-15',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-28','2014-02-12'
    UNION ALL
    SELECT '2014-2-01','2014-03-07','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-21','2014-02-14'
    UNION ALL
    SELECT '2014-2-01','2014-03-14','2014-02-11'
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-17'
    SELECT
    w.weeks_id,
    w.week_of_year_end_date,
    i.due_date,
    i.paid_date
    FROM #weeks w
    CROSS JOIN #invoices i
    DROP TABLE #invoices
    DROP TABLE #weeks

    Using your data, how about:
    CREATE TABLE #weeks(
    weeks_id INT IDENTITY(1,1),
    week_of_year_begin_date DATE,
    week_of_year_end_date DATE,
    CONSTRAINT [PK_weeks_id] PRIMARY KEY CLUSTERED ([weeks_id] ASC)
    INSERT INTO #weeks(week_of_year_begin_date, week_of_year_end_date)
    SELECT '2014-02-02','2014-02-08'
    UNION ALL
    SELECT '2014-02-09','2014-02-15'
    UNION ALL
    SELECT '2014-02-16','2014-02-22'
    UNION ALL
    SELECT '2014-02-23','2014-03-01'
    CREATE TABLE #invoices(
    invoice_id INT IDENTITY(1,1),
    created DATE,
    paid_date DATE,
    due_date DATE
    CONSTRAINT [PK_invoice_id] PRIMARY KEY CLUSTERED ([invoice_id] ASC)
    INSERT INTO #invoices(created,due_date,paid_date)
    SELECT '2014-2-01','2014-02-20','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-10', NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-16'
    UNION ALL
    SELECT '2014-2-01','2014-03-03',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-15',NULL
    UNION ALL
    SELECT '2014-2-01','2014-02-28','2014-02-12'
    UNION ALL
    SELECT '2014-2-01','2014-03-07','2014-02-19'
    UNION ALL
    SELECT '2014-2-01','2014-02-21','2014-02-14'
    UNION ALL
    SELECT '2014-2-01','2014-03-14','2014-02-11'
    UNION ALL
    SELECT '2014-2-01','2014-02-17','2014-02-17'
    ;with cte as (SELECT
    w.weeks_id,
    w.week_of_year_end_date,
    i.due_date,
    i.paid_date,
    CASE WHEN i.paid_date IS NOT NULL then 0
    WHEN i.paid_date IS NULL and i.due_date <= w.week_of_year_begin_date THEN 0
    ELSE 1 END as Available
    FROM #weeks w
    INNER JOIN #invoices i ON i.created <= w.week_of_year_end_date)
    SELECT * from cte WHERE Available = 1;
    DROP TABLE #invoices
    DROP TABLE #weeks
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Hello, im new to mac and I need some help with a java problem.

    Hello, im new to mac. I just need someone who can help with a problem ive come across when playing online games that run java. The game is arcanists. its on the funorb website. really fun game and i love it, but i cant play it without my screen keep scrolling or my character not responding at all. please get back at me ASAP. thx apple friends!

    FF has an extention that can be used to increase the conection speed. Its called Tweak Network 1.1 I see a difference on my iMac G5. Its not huge but it may be a big difference on yours.
    http://www.bitstorm.org/extensions/tweak/

  • Need Some Help? Icon view Problems

    Just recently my finder has been acting up. While in finder and viewing in Icon layout, Leopard has been taking a while to load icon folders & images. It's only about 5 sec, but much slower than before. The problem only occur in Icon veiw. All other views load folders and images quickly (List, Coverflow, ect.) Has anybody encountered this problem and knows how to solve it?

    Welcome to Discussions.
    Have you installed something recently that could be the cause?
    It's been reported that setting the Mouse double-click speed to maximum in System Preferences - Keyboard & Mouse helps (as odd as it sounds): http://forums.macrumors.com/showthread.php?p=5284495#post5284495
    Perhaps it will help to reset the PRAM/NVRAM: http://support.apple.com/kb/HT1379.
    /p

  • Need some help - here is the problem with I import.

    I am importing a flv file. The flv file runs fine outside of Premiere. When I import it, the audio imports fine. The video however imports and displays when run at SUPER slow mode.
    For example, when I run the imported movie, and let say all I am doing (my movie) is counting from 1 to 10 (via audio) and moving my mouse cursor slowly from the bottom of the screen to the top (visually), My mouse cursor will still be rising from the lower 1/4 of the screen while I hit 10 (audio wise) in number.
    If that example is too confusing to understand, sorry... The video is just not matching the audio in speed and is sizeable different.
    Anyone know what is going on here?

    > Any ideas on what I might be doing wrong at the import level?
    I'm not sure you're doing anything wrong. I had the exact same issue with Camtasia files that I was using for some tutorials.
    Is there any way to get the source file before it was converted to .flv?
    Do you have the entire Creative Suite? If so, set up a dynamic link to an AE comp that contains the .flv file. IIRC, that worked for me before I decided to edit the tutorials in AE anyway. The only potential issue I see is that the processing overhead for a 2-hour dynamically-linked comp may exceed what your system (or Pr) can handle.

  • New user, need some help with an audio problem

    Hey, I'm a total newbie to logic express and there is something I can't quite figure out, and if someone could just walk me through it I would be very greatful.
    I'm using an M-Audio fast track USB recording interface to record my guitar on to the computer, and I have pretty much no idea how to record or hear my guitar.

    Look at the Oracle analytic functions ... specifically LAG and LEAD.
    You will find the docs at http://tahiti.oracle.com
    For demos go to Morgan's Library at www.psoug.org and look up ANALYTIC FUNCTIONS.

  • Have been trying to get a simple rollover tooltip going but haven't had any success...need some help

    Have been trying to get a simple rollover tooltip going but haven't had any success...need some help please

    start watching at 11min
    http://www.youtube.com/watch?v=6_FJYN36_94
    hope this helps

  • Need some help in ARCHITECTURE level for upgrading SAP BW 3.5 to SAP BI 7.0

    HI all,
    I am a consultant in a small company, i am curently handling upgradation project i need some help in ARCHITECTURING this complete project, please share me your knowledge, like process flows what information i need to get from clients before starting the project, what is pre upgradation checks, post upgradation cheks  ...............
    Thanks in advance.............

    Hi,
    You need to confirm the downtime during the upgrade activity.
    Check for Space and resource allocation.
    http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8d1a0a3a-0b01-0010-eb82-99c4584c6db3
    https://wiki.sdn.sap.com/wiki/display/BI/UpgradefromBW3.XtoBI7.0+%28SP13%29
    https://wiki.sdn.sap.com/wiki/display/BI/Migrationof3.xobjectstoBI7.0
    You need to make sure some OSS notes should be applied, check the below link for the same:
    https://wiki.sdn.sap.com/wiki/display/BI/UpgradetoNetWeaverBI7.0%28SAPNotes+%29
    http://wiki.sdn.sap.com/wiki/display/BI/BIUpgradation-HelpfulOSSnotesfromEDWperspective
    Hope this helps...
    Rgs,
    Ravikanth.

  • Need some help with a remove function

    Design and code a program that will maintain a list of product names. Use a String type to represent the product name and an array of strings to implement the list. Your program must implement the following methods:
    Add a product to the list
    Remove a product from the list
    Display then entire list
    Find out if a particular product is on the list.
    You need to create a command command loop with a menu() function. The program must continue asking for input until the user stops.
    This is the assignment and this is what I have so far. I need some help writing the remove function.
    Thanks
    * Title: SimpleSearchableList.java
    * Description: this example will show a reasonably efficient and
    * simple algorithm for rearranging the value in an array
    * in ascending order.
    public class SimpleSearchableList {
         private static String[] List = new String[25]; //These variables (field variables)
         private static int Size; //are common to the entire class, but unavailable
         //except to the methods of the class...
         public static void main(String[] args)
              String Cmd;
              for(;;) {
                   Menu();
                   System.out.print("Command: ");
                   Cmd = SimpleIO.inputString();
                   if(Cmd.equals("Quit"))
                        break;
                   else if(Cmd.equals("Fill"))
                        FillList();
                   else if(Cmd.equals("Search"))
                        SearchList();
                   else if(Cmd.equals("Show"))
                        ShowList();
                   else if(Cmd.equals("Remove"))
                        Remove();
         //Tells you what you can do...
         public static void Menu()
              System.out.println("Choices..................................");
              System.out.println("\tFill to Enter Product");
              System.out.println("\tShow to Show Products");
              System.out.println("\tSearch to Search for Product");
              System.out.println("\tRemove a Product");
              System.out.println("\tQuit");
              System.out.println(".........................................");
         //This method will allow the user to fill an array with values...
         public static void FillList()
              int Count;
              System.out.println("Type Stop to Stop");
              for(Count = 0 ; Count < List.length ; Count++)
                   System.out.print("Enter Product: ");
                   List[Count] = SimpleIO.inputString();
                   if(List[Count].equals("Stop"))
                        break;
              Size = Count;
         //This method will rearrange the values in the array so that
         // go from smallest to largest (ascending) order...
         public static void SearchList()
              String KeyValue;
              boolean NotFoundFlag;
              int Z;
              System.out.println("Enter Product Names Below, Stop To Quit");
              while(true)
                   System.out.print("Enter: ");
                   KeyValue = SimpleIO.inputString();
                   if(KeyValue.equals("Stop")) //Note the use of a method for testing
                        break; // for equality...
                   NotFoundFlag = true; //We'll assume the negative
                   for(Z = 0 ; Z < Size ; Z++)
                        if(List[Z].equals(KeyValue)) {
                             NotFoundFlag = false; //If we fine the name, we'll reset the flag
              System.out.println(List[Z] + " was found");
                   if(NotFoundFlag)
                        System.out.println(KeyValue + " was not found");     
         //This method will display the contents of the array...
         public static void ShowList()
              int Z;
              for(Z = 0 ; Z < Size ; Z++)
                   System.out.println("Product " + (Z+1) + " = " + List[Z]);
         public static void Remove()
    }

    I need help removing a product from the arrayYes. So what's your problem?
    "Doctor, I need help."
    "What's wrong?"
    "I need help!"
    Great.
    By the way, you can't remove anything from an array. You'll have to copy the remaining stuff into a new one, or maybe maintain a list of "empty" slots. Or null the slots and handle that. The first way will be the easiest though.

  • We have a set of oracle clients running on T5220 zones that need some help

    Greetings all -
    We have a set of oracle clients running on T5220 zones that need some help.
    If, for example, I execute the query "select (all) from dba_objects", trace output reports 90% of the elapsed time spent under "SQLNet message from client".
    Here are OS details for the clients: Solaris 10 5/08 s10s_u5wos_10 SPARC
    Running "uname -a" from the client gives:
    (SunOS bmc-ste-app 5.10 Generic_127127-11 sun4v sparc SUNW,SPARC-Enterprise-T5220)
    Here are OS details for the dataserver: Enterprise Linux Enterprise Linux Server release 5.2
    Running "uname -a" from the dataserver gives:
    (2.6.18-92.1.6.0.2.el5 #1 SMP Thu Jun 26 17:44:55 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux)
    The RDBMS is 10.2.0.4
    Again, please note, there is no application in the picture here. We are just running a simple catalog query (select * from dba_objects) from sqlplus. Why the wait on something like this? The wait also occurs when a different query is used (select (all) from SYS.COL$ where rownum < 50000). And it doesn't matter if I used the full client or the instant client. I still get the same high-wait.
    We had thought - maybe this is a network thing - so we put a test client on the same subnet as the dataserver. This helped - but not enough. The wait is still way too high even with firewalls taken out of the equation.
    We've also looked at arraysize, SDU, kernel settings. And we've spent time going over tkprof, truss and sqlnet-tracing.
    Has anyone ever had to solve this HIGH WAIT ON CLIENT issue? Is there a work around or some tweak I'm missing.
    Is anyone configured like we are (linux dataserver, solaris clients)? If so - did you see anything like this?
    tia -
    Jim
    Edited by: jim1768 on Mar 31, 2010 1:47 PM
    Edited by: jim1768 on Mar 31, 2010 2:12 PM
    Edited by: jim1768 on Mar 31, 2010 2:13 PM

    Hello,
    We have the exact same issue. Did you ever solve this issue? We have a t5220 and have just upgraded our 11.5.10.2 11i system on it from 9.2.0.8 32-bit sparc to 11.2.0.1 64-bit sparc. Things should be faster but arent, and our consultant has tracked it down to high wait times when the apps tier using forms connects to the database tier on the same box. So even though the t5220 is both server and client, there is something about the client sql connection.through TNS that his having trouble. Thanks for any information. We've also created an S/R with Oracle.
    Note: I am well aware of the other issues with the CMT server series but this particular issue seems independent of the regular / known issues and remains a mystery to us. Other known issues with the CMT servers for SPARC:
    Metalink Note 781763.1 (Migration from fast single threaded CPU machine to CMT UltraSPARC T1 & T2)
    http://blogs.sun.com/glennf/resource/Optimizing_Oracle_CMT_v1.pdf
    http://blogs.sun.com/glennf/tags/throughput
    http://blogs.sun.com/glennf/entry/getting_past_go_with_sparc
    http://www.oracle.com/apps_benchmark/doc/E-Bus-11i-PAY_ORA_SUN-T5220.pdf (this paper has some oracle init settings at the end. The kernel settings have been included in the OS upgrade)
    http://blogs.sun.com/mandalika/entry/siebel_on_sun_cmt_hardware

  • Trying to make a photo contest need some help

    Trying to make a photo contest need some help. I am running a
    fish photo contest on my website and was wondering if any of you
    could give me some advice on some good extensions to help me do
    this easier. Basically I want a page where people upload a file and
    then it automatically resizes the image and puts it on a page,
    where people can vote on the pictures.

    Hi Pilot,
    Column B contains the sale amounts.
    Column C will contain the tax amounts.
    I'm assuming a header row, and the first line of data to be row 2.
    In C2, enter: =B*20%
    Click Accept, then use the mouse to drag the small round handle at the lower right of the selected cell (C2) to fill the formula into the rest of the cells in column C.
    This simple version of the formula will put zeros in all column C cells where no amount has been entered in the corresponding cell in column B. The revised formula below takes care of that.
    C2: =IF(B,B*20%,"")
    I'd strongly suggest that 'rookies', as you describe yourself, download and read both the Numbers User Guide and the Functions and Formulas User Guide. Both are available from the Help menu in Numbers. If you use Pages and Keynote, you should use the Help menu in those applications to download their User Guides as well. The guides are searchable pdf files, well written, easy to read, and useful to rookies and old hands as well.
    Regards,
    Barry

  • Need some help with: implement email notification on note board within a page layout (javascript)

    Dear all,
    I have a quite specific issue in which I'm in need of some guidance and help!
    Within our SharePoint I have created a custom page layout. This is a simple page to post some content (news) and a standard Note Board is implemented.
    Every time a news item is placed, this is done by our communication departement, this page with standard layout is placed as a page in a page library. When there are no comments on that particular item/subject I found a solution to replace the standard SharePoint_no_posts-text
    by placing a contenteditor web part in the Page Layout with a reference to a textfile with some javascript in it. This works perfectely.
    The only thing left is that I want to automatically send an email to the contact (which is defined when making the news item) everytime someone posts a new comment. Here is where I need some help!
    We don't really use mysites so I was wondering if someone could tell how I could do this by for example some code (javascript) which I can implement in the Page Layout.
    Can anyone help me?
    Thanks in advance,
    Gr Matt

    Try below code:
    function sendMail() {
    var link = 'mailto:?subject=insert subject line&body=';
    var curntLoc=window.location.href;
    link +=escape(curntLoc);
    window.location.href = link;
    // window.location.href = link;
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/9cfe7884-fc9e-4c7c-a44c-f740d2edcafc/sending-email-using-javascript-in-sharepoint-2010
    Also check below:
    http://spjsblog.com/2010/06/16/send-email-with-javascript-with-the-help-of-a-workflow-in-a-dedicated-send-email-list/

  • Need some help with Calendar on my iPhone.

    Ok folks. Need some help and it may be basic, but I'm struggling with it.
    My wife and I both have iphone 5's. Both phones share one iCloud Id and one Apple ID.
    So, how do we share information across the apple calendar app?
    If I add something to my cal. It does not go to her. How can we get them to sync?
    Please help!!!
    Thank You!!

    Two things to check by putting the two iOS devices side-by-side.  First, check in Settings > iCloud to assure that you are indeed both using the same iCloud login.  Also, check that calendar is toggled on.
    Then, check Settings > "Mail, Contacts, and Calendars".  Scroll down to the calendars section and assure that your iCloud calendar is set as the "Default Calendar".
    Then, check that Settings > "Mail, Contacts, and Calendars" > "Fetch new data" is set to something suitable.  Note that "Push" will be best for iCloud.
    Lastly, open Calendars app, touch "Calendars" at the bottom, and assure that iCloud calendar is checked so it is visible.
    Then give you calendars a try again making sure that you are posting calendar events in the iCloud calendar.
    Hope this helps.

  • Need some help with Mail settings

    I need some help on what mail settings to use. Basically I want my Mac's Mail.app synced with my iPhone's mail.app and everything on the gmail server to be archived and have it so that i do not need to download all the archived emails that are on gmail to either mail.app, if anyone could help it would be appreciated.

    You are not alone. I can't get mail to work with our exchange server no matter what I do. I set Entourage up in less than 2 minutes by entering some simple information. I am using the latest versions of Leopard and Mail and it just refuses to connect.
    For instance, in Entourage I entered my user name, password and the exchange server name and that was it. Got my mail and it works great. Mail wants to know the SMTP server name? What SMTP server? No matter what information I put in that field it gives me an error saying it can'tr connect to the SMTP server. That is because it is an exchange server not an SMTP server I guess. Also, even when I enter the exact same information as I did with Entourage, mail refuses to connect with it saying to "check the connection". The connection works fine, as Entourage is having no problems sending or receiving mail. With Entourage there is a LDAP setting but no where in Mail can you enter what the LDAP server is. At least is doesn't use that terminology anywhere.
    What do you have to do to get Mail to work with an exchange server?

Maybe you are looking for