Quick question - which group owns this file? -rw-r--r--@ 1 admin -  Daemon?

As per subject line. if i type "id 1" in terminal the uid is daemon - meaning admin is the group - is this correct? If it is - why is one part of the result a uid and one a name? Why the @?
-rw-r--r--@ 1 admin 1656
(It's a script by the way)

It's hard to say since it looks like the line was typed in (as opposed to copied and pasted), and the line doesn't appear to be complete (I'm assuming it's the output of 'ls -l').
But actually, going by position, the "1" is the number of links - and since your system has a user with 'uid=1' configured ('daemon'), then ls -l should list the name rather than the number, so the "1" probably is the number of links rather than the "owner".
Then that would make the file's owner "admin" (which is very odd - try 'id admin'), and the group an undefined numerical value, representing the 'gid=1656'. Or else it's the size and a column is missing from the post.
The "@" means the file has extended attributes (see the 'man" page for 'ls'). You can also try 'ls -l@ filename' or 'xattr -l filename'

Similar Messages

  • Quick question - how to use flat files OWB 10gR2

    Sorry, really dumb question here. I'm using the OWB client on my windows machine, but the database is on a separate UNIX box.
    The data file I'm trying to access is in
    /usr/local/test
    and the DBA's have created a directory object ("TEST") inside the database with read privs on that /usr/local/test directory.
    Given all that, exactly what do I need to do to:
    a) create the file location in OWB
    b) "see" the flat file in it
    When I try to set the directory up, it seems like the client is looking at my local drive instead of connecting to the Unix box?
    Thx,
    Scott

    Indeed... if you use the Import metadata wizard, it will look for the flat files on your local machine, but this is only for you to define the layout of this file... when you actually read this file (in a process flow for example) the flat file must be on the server where your OWB repository is installed... notice that this is not necessarily the same server where your database is running.

  • Quick question, getting the filename of file just loaded by a loader

    How do i detect the file that a loader has just completed?
    I wish to load a series of small files, and am using the loader functions
        url = "image"+index+".png";
        var request:URLRequest = new URLRequest(url);
        loader.load(request);
       loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadCompleteHandler);
    and then an event handler
        private functionloadCompleteHandler(event:Event):void
              //do stuff
    however, i am firing of a number of these load requests, and do not want to assume they will be complete in the order they were triggered, so I want a way of detecting which load has just been completed, can this be deduced from the even (url field was blank).
    I had an attempt with a custom event handler, but am unsure how to make it trigger on load completion.
    thanks Ben

    hmm, I am trying to get that from the on completion event, as I do not know the order in which events will complete.
    The debugger says the url associated with the event (both target and curretTarget) is NULL and the LoaderUrl points to the main app swf object.
    I simply want to be able to interigate the loadCompleted event, to determine which load completed.
    thanks ben

  • Quick Question: "Transfer Information to this Mac"

    Hello.
    I just purchased today the 15inch MacBook Pro (NOT the new Retina Display).
    As part of the setup, it asks if I want to "Transfer Information to this Mac" - which I would like to do from my old Black MacBook.
    My question is this:
    If I click the transfer, does it transfer EVERYTHING, or do I get to manually select what gets transfered over (such as some music and documents, but not all).
    Thank you for your time and help!

    you can give this look:
    http://support.apple.com/kb/HT1291
    you should upgrade to 10.6.8
    faster more stable:
    http://support.apple.com/kb/HT4413http://support.apple.com/kb/HT4413
    It should xfer all, but te older stuff.

  • Quick question which I'm sure has already been answer..

    So unlike a lot of people I'm not completely upset with the release of the new iPhone, technology changes all the time and there really isn't anything that you can do. That is unless you have extremely deep pockets.
    Anyway, with the release of the iPhone 3.0 software will 3G customers receive the same beneficial upgrades to the camera (IE: will we be able to record video)? Simple question and although quality wouldn't be the same the current hardware should be more then capable of handling this feat.
    In the event that this is a feature that we don't obtain, then its not the end of the world.

    One of the main reasons I'd like to see the video recording capabilities for the 3G is to remember the night before. Sometimes, pictures just don't do a good enough job; either the pictures are blurred or complete dark. Now I'm not saying that the video would be much better but its worth a shot.
    Also, keep in mind for those who found the ability to record video found it and made use of it on their 3G not their 3GS.

  • Quick question about GROUP BY

    Hello guys,
    I was wondering if anybody can shed the light on this? It's not very important. I'm just being curious here.
    Imagine I have the following table:
    CREATE TABLE my_table
      n NUMBER(15)
    INSERT INTO my_table SELECT level FROM dual CONNECT BY LEVEL <= 10;I know I can do this
    SELECT 'MY_TABLE',
           (SELECT COUNT(*) FROM my_table)
      FROM dual;To get the name of the table and how many records the table has. Because DUAL table has only one record it will return the correct result.
    But I don't understand why the following query returns the correct result:
    SELECT 'MY_TABLE',
           (SELECT COUNT(*) FROM my_table)
      FROM my_table
    GROUP BY NULL;If I remove the GROUP BY clause, I will have 10 records because my original table has 10 records. But how is it possible to GROUP BY NULL? Actually, you can group by on anything (1, 'HELLO'...) and it will return the correct result.
    So, can anyone tell me how does this make sense??
    Thanks in advance,

    Hi,
    user13117585 wrote:
    Hello guys,
    I was wondering if anybody can shed the light on this? It's not very important. I'm just being curious here.
    Imagine I have the following table:
    CREATE TABLE my_table
    n NUMBER(15)
    INSERT INTO my_table SELECT level FROM dual CONNECT BY LEVEL <= 10;I know I can do this
    SELECT 'MY_TABLE',
    (SELECT COUNT(*) FROM my_table)
    FROM dual;To get the name of the table and how many records the table has. Because DUAL table has only one record it will return the correct result.The fact that dual has only one row explains why the result set has one row. How many columns and what is in those columns doesn't depend on dual in any way.
    But I don't understand why the following query returns the correct result:
    SELECT 'MY_TABLE',
    (SELECT COUNT(*) FROM my_table)
    FROM my_table
    GROUP BY NULL;If I remove the GROUP BY clause, I will have 10 records because my original table has 10 records. But how is it possible to GROUP BY NULL? Actually, you can group by on anything (1, 'HELLO'...) and it will return the correct result.
    So, can anyone tell me how does this make sense??Right. "GROUP BY x" means the output will have 1 row for each distinct value of x. (NULL is treated like a value in this case.) So how many distinct values of NULL are there, or how many distinct values of 1, or 'HELLO', or any constant? There's only 1 value, constants, as the name implies, never change values. So if you GROUP BY any constant, the result set will have exactly one row.
    Thanks in advance,

  • Quick Question on Searching for Project Files

    I was wondering if anyone knew of the best way to find FCP project files.
    I have many computers at work that are all networked together, as well as a few LaCies, and I'm thinking I may have some wayward FCP projects floating around somewhere. I also work with youth, as assistant editors, who have a tendency to sometimes move things around. As you can see below I have 10.3.9, so when I do a 'find' I can't specify FCP projects because they have no extension (?). Anyone have any tips?
    Thanks.

    Hi Ariel
    I'm completely baffled.I'm using FCP5. I can only assume that my "Find method" does not work with version FCP4.5HD and 10.3.9.
    I've double checked my Project Files, and the files in my AutoSave Vault. None have the extension .fcp
    But when I use Find: Name>Contains> .fcp they all show up (hundreds of them from 6 projects done over the past few weeks). Wish I could send you a screen snap.
    Regards. Robert
    P.S. Sorry I couldn't get back to you earlier - I had to go out most of the day.

  • Quick Question - Can I add this AMD Phenom X4 9950 to my motherboard

    Hi
    Can I add this processor ( http://www.ebuyer.com/product/150466 ) to my new rig below ?
    Oh and what cooling fan should I get ( http://www.ebuyer.com/store/Components/cat/Cooling-Fans ) incase I want to overclock ?
    Thanks

    Quote from: Henry on 14-December-08, 10:32:29
    Have a look for yourself, no Phenom/quads listed >> K9N Neo V3 CPUs <<
     Edit: Best you can do is 89W X2 6000+
    Ok cool - I take it this is ok then: http://www.ebuyer.com/product/149211  ??
    Still stuck on what cooler to get for it ( http://www.ebuyer.com/store/Components/cat/Cooling-Fans ) for overclocking ?
    [I'm saving up for i7 but needed a wee boost in the mean time]

  • Photo editing question - which app does this?

    I'm not sure if this is the right place to ask; if not, please forgive my faux pas.
    I'm looking for an inexpensive photo-editing app ( < $25) that will let me take an image and distort it in such a manner that it appears to have 3d perspective.  That is, I'd like to shorten the height of the left vertical edge but not the right edge, making it appear that one is looking into the distance.  I have a few common apps like Graphic Converter and Pixelmator but if they have this function, it's pretty well hidden.
    Suggestions anyone?

    You can download the free trial of Pixelmator for MacOS:
    http://www.pixelmator.com/try/
    and for 30 days distort and apply perspective:
    Or buy it at the app store for 14.99.
    MtD
    Message was edited by: Meg The Dog

  • CDP quick question

    Hi quick question, 
    Scenario looks like this: 
    ASR1k --- ASR9k -- ASR9k --- ASR1k 
    The connection between ASR1ks are l2transport on the ASR9k side. Therefore we see the ASR1k as a CDP neighbor from the other ASR1k. This is fine, but my question is why we also see the ASR9k as a CDP neighbor from the ASR1k via the same port. I thought CDP should either be tunnelled or not. 
    So, CDP on the ASR1ks show both the other ASR1k (which is fine), but it also show the directly connected ASR9k via the same interface. Is this normal? 
    Thanks, 
    Federico.

    Adam, thanks for taking care of this and you are correct.
    We made a change, based on popular demand to peel out certain control traffic out of the untagged EFP in the existence of MST/CDP configuration.
    If the service is not configured locally on the l2tranporting interface then those packets are subject to the EFP transport.
    cheers!
    xander

  • Which sense have the file lkORACLESID in $ORACLE_HOME/dbs?

    Hallo,
    installing a new instance will create a file like lkORACLESID in $ORACLE_HOME (example lkORCL).
    which sense have this file?
    can it put to another place? and when how?
    thanks in advance.
    Reinhard

    It is a lock file.
    When a database starts, one of the background processes locks the file (creating it first if necessary). An attempt to start up the database again will fail because the old background process holds the lock, preventing the new background process from getting it.
    and why you need to move it ... its 1Kb

  • Report of Groups owned along with group memberships for each group, all in a single .csv file

    Hello all,
    What I'm trying to do is generate a report of all groups owned by a specific user, along with the group memberships, and output it all to a single .csv file. In the .csv file, I would like to have the group names as the column headers, and underneath
    the group name, list all the members of the group down through the column. So for example, if User1 owns 3 groups, the output would look like:
    What I'm having trouble with is outputting the objects to the .csv using New-Object psobject, and I'm starting to wonder if there is an easier way to do this and my brain is just fried.
    Any ideas?

    OK so I can try and give some code here, but I'm asking more of a concept question about how PowerShell builds objects so I'm not sure it will help....
    $User = "User1"
    get-adgroup -filter {managedby -eq $user} -pr member | %{
    $_.name
    $_.member
    OK so this is a simple script that outputs a group name followed by the membership, all in a single column. What I would like is for the group names to each be the header of a column, and have the membership listed underneath. For example:
    Is this possible in PowerShell?

  • Quick Question: Setting Render File Location

    Hi all,
    Quick question. I'm guessing with all the disappointment, the answer will be no, but I fully realize that I could have overlooked something so its worth asking!
    In FCP7 (familiar phrase huh?) you could explicitly set a location for render files. I understand that you can save FCPX Events on different drives, as well as your projects, however it appears as if the Render Files are getting saved with a folder which also contains your .fcp project file.
    I ask because I like having my project file on my internal so my Time Machine will pick it up when I have it hooked up, but all of those render files take up loads of space and I'd like that on my external media drive instead.
    Is there:
    a.) A way to tell FCPX to store Render Files in a different location
    OR
    b.) A way to move the Render Files to a different location without screwing up FCPX's ability to recognize the project and load it properly.
    If so, great! If not, I'll send it along as a suggestion among with some others. Other than those overlooked technical aspects, I'm kind of digging the UI of FCPX and background rendering is saving me so much time its not even funny.

    Hi Jorgen
    I spent a bit of time on this today without any success.
    In our studio, it's only me that edits... but I use a laptop and a macpro when things get serious. I have a RAID array tyed to the Macpro, and I access it with my laptop via gigabit ethernet.
    I created aliases, and when I opened FCPX, nothing appeared. I also was not able to change the name of events I created, and while it would write the project name and events to the new aliased directories... when I reopened FCPX the events and projects were missing.
    I then tried symbolic links via the terminal. No luck. I then checked ownership permissions, and made sure the permissions were ignored for the drive and everything was world readable and writable. No luck.
    Have you had a chance to experiment with this yet?
    Thanks

  • How i can to create a vi, which read from configuration file and i could modify this indicator and save the config data??

    Hi guys,
    I have in my application a subvi which i use to save the configuration of application. I create one file with the last saved configuration, and i would like to open this values and that i could to modify this indicator value, but i cant since to modify i need 'numeric control' and to read the data from file i need 'numeric indicator '...
    I thought, use a numeric control and use the values from file to the default values, but i didnt get to find the property node to adjust it. is it possible? or any different way to get it....??
    Also, i attached the capture file.. i would like the program DOESNT SHOW the question of
    replace the file!!. i would like directly replace the file when i push save.
    Thanks, i attached the vi.
    Attachments:
    options.vi ‏43 KB
    config.cnf ‏1 KB
    capture.GIF ‏43 KB

    Hi Dennis,
    Your 'write to sreadshhet mod' suprime the dialog of replace file or not!, i want when i push save, it show the dialog input name of file and show the default sim000 but when i push this sim000 and this file already exist, then show the dialog to replace or not, if i replace Ok not problem, but when i push cancel replace it shows error eof!!!.
    Your file, only remove this dialog and only replace the file directly.
    i put the capture, when i choose the file to save and the program say to me this file exist and it give me the option of replace or not,i want when i push cancel replace it continues running without get error.
    is it possible?.
    Thanks.
    Regards, Fonsi.
    Attachments:
    capture.GIF ‏71 KB
    example.vi ‏40 KB

  • Snow Leopard Finder's Get Info fails to show Owner and Group for some files or folders which reside on a Shared Volume, hosted by G5 Server w/ OS 10.4 - why?

    Frustrations with file permissions abound, as certain co workers are unable to manually determine their level of permission or who to ask to make changes to files and folders belonging to others. Users of Snow Leopard desktop OS get unhelpful feedback via Finder's Get Info, seeing only the permissions listed for "Everyone" and a statement that "You have custom access".  The custom message exists, presumably, because ACL's are employed on the shared volume in an attempt to give managerial control over these volumes to specific users, even if all users can create files and folders on those volumes.
    Shared volumes are partitions of an external RAID which are set up as sharepoints on a G5 tower running Server 10.4.  Other persons in the office, using machines that are running desktop OS 10.5, can correctly see the assigned Owner and Group permissions (although the "custom access" still shows).  This at least lets the 10.5 user know who created a given file or folder, so that they can resolve permissions-restricted issues if they come up (i.e. User A wants to delete file X, but as it was created by User B, A must contact B and have them delete it.  In 10.6 it appears that A cannot determine who B is).
    I know that ACL's are functioning (enabled on the drive) since we have been making use of ACL-granted write privileges for quite a while (and the custom access seems to be evidence too).
    An error I encountered, pertaining to this, is that I used a 10.6 machine to create a working folder, then generated and saved several files in this location.  Expected permissions thus would be Owner = me (i.e. the user I was logged in as), R/W, Group = staff, R only, Everyone = R only.  However, immediately the permissions shown in Finder / Get Info consisted only of Everyone = R only, with no entry for Owner or Group.  Moreover, clicking + to add either an Owner or a Group resulted in error message that I had entered an invalid user or group, even though I typed in correct info (such as trying to add "staff" as a group).

    Frustrations with file permissions abound, as certain co workers are unable to manually determine their level of permission or who to ask to make changes to files and folders belonging to others. Users of Snow Leopard desktop OS get unhelpful feedback via Finder's Get Info, seeing only the permissions listed for "Everyone" and a statement that "You have custom access".  The custom message exists, presumably, because ACL's are employed on the shared volume in an attempt to give managerial control over these volumes to specific users, even if all users can create files and folders on those volumes.
    Shared volumes are partitions of an external RAID which are set up as sharepoints on a G5 tower running Server 10.4.  Other persons in the office, using machines that are running desktop OS 10.5, can correctly see the assigned Owner and Group permissions (although the "custom access" still shows).  This at least lets the 10.5 user know who created a given file or folder, so that they can resolve permissions-restricted issues if they come up (i.e. User A wants to delete file X, but as it was created by User B, A must contact B and have them delete it.  In 10.6 it appears that A cannot determine who B is).
    I know that ACL's are functioning (enabled on the drive) since we have been making use of ACL-granted write privileges for quite a while (and the custom access seems to be evidence too).
    An error I encountered, pertaining to this, is that I used a 10.6 machine to create a working folder, then generated and saved several files in this location.  Expected permissions thus would be Owner = me (i.e. the user I was logged in as), R/W, Group = staff, R only, Everyone = R only.  However, immediately the permissions shown in Finder / Get Info consisted only of Everyone = R only, with no entry for Owner or Group.  Moreover, clicking + to add either an Owner or a Group resulted in error message that I had entered an invalid user or group, even though I typed in correct info (such as trying to add "staff" as a group).

Maybe you are looking for

  • Advantages of using ASM

    Can someone tell me some reason for using ASM when using hardware stripe & mirror besides that files are created and managed automatically?

  • Inventory Cube Loading - Questions....

    This is the process I intend to follow to load InfoCube 0IC_C03 and the questions therein. I have the "how to handle inventory scenarios" document, so please don't suggest I read that. 1A) Delete Set-up tables for application 03 1B) Lock Users 1C) Fl

  • If I drag and drop ripped songs out of itunes why do I get two files appearing

    hi wondering why I see two files (that appear identical in name) appear when I drag and drop previously ripped songs out of my itunes library. For example I've noticed this when I drag and drop songs on to the desktop and then I drag them from there

  • Neues Plug in für Windows Camera Raw 2.3

    Ich suche verzweifelt auf der Adobe Homepage für meine Canon EOS 20D das neue Camera RAW. Wer kann mir weiterhelfen? Ich würde mich über Hilfe sehr freuen. Mit freundlichen Grüßen Marianne Schlüter

  • Not getting messages due to ICS upgrade!!!!!!!!Help!!!!!

    I hate the ICS "downgrade!"  I cannot get my messages to open.  My phone buzzes when I get a message but when i click on it, it just says please wait......indefinately!  And when i try to open pics sent to me on my go sms pro app. it wont open them i