What is the lpadmin group?

After a new harddrive installation last week, I migrated my account back onto the system from a Time Machine backup. The folks at the Apple shop had set the default user to the name I had been using before, but the TM migration wouldn't overwrite this with my settings and forced me to create a new user account. All fine so far, if a little irritating.
Today I went to use my printer for the first time, and realised that it wasn't installed. When i selected it, I was prompted to enter the User Name and Password for a member of the 'lpadmin' group. Although my preferred user account is an admin, it wouldn't accept those details. The user name and password for the 'other' account worked, but I can't track down where this lpadmin group exists, and how to add my preferred username to it.
Anyone know what's going on here?
thanks.

Lpadmin group is a system group used by the CUPS printing system that is integrated into OS X. For more detail you can Google "lpadmin" which will provide numerous informative links. If you open the Terminal application in your Utilities folder then enter the following:
man lpadmin
Press RETURN.
You will get the Unix documentation for the lpadmin command that you may find helpful. You can also access the CUPS system via your browser using http://localhost:631/.

Similar Messages

  • What is the Authorization group in Cash Journal View Maintenance (FBCJC0)

    Question 1: In Cash Journal View Maintenance (Tcode: FBCJC0), what is the Authorization group? 
    Question 2: How / Where can I define this Authorization group?
    As per the F1 Help  document in SAP :
    The authorization group enables you protect access to certain objects.
    In order to carry out a specific activity, the user must have authorization for the combination of the activity and the authorization group.

    Hi,
    Authorisation in Cash journal is meant for controlling of FBCJ transaction with an user ID. 
    For example, if you have a multiple cash book (Cash journal) or you are maintaining a cash book according to Business Area wise, Plant wise, etc.,
    In this case, you don't want to allow the other people to view / transact your cash book, then you can assign some unique identification in the authorisation group column against the each of your cash journal.
    These unique identification can be of any thing eg. 1001, 1002, 1ABC, ABC, etc.,  After this, the indentification has to be assigned in the respective user profiles in the below mentiond objects,
    F_BKPF_BED
    F_BKPF_BEK
    F_BKPF_BES
    F_BKPF_BLA
    F_FBCJ
    Hope it helps
    Saravanan.A

  • What is the failure group in ASM  and the meaning of ASM assigns each disk

    Hi
    Please help me in understanding
    what is the failure group in ASM and the meaning of "ASM assigns each disk to it's own failure group, by default"

    As you may have known ASM uses mirroring and striping of files. Mirroring is storing same compies/parts of files in different disks/controllers. When creating disk group which could consist of several disks, you have to assign disks at least to separate failure groups for normal redundancy , or three failure groups for High redundancy. This means that ASM will never assign mirrode copies/pieces of files to the same failure group. So, assigning disks to different failure groups you make sure mirrored copies are not on the same physical storage. Saying with other words, failure group gives your more abstract meaning based on which you can organize your physical disks contained in disk group.
    That is why for normal redundancy at least two failure groups are needed, because there are one mirrored copy of each extent(allocation unit, to be exact) and for high redundancy the requirement is at least 3 failure groups, because each allocation unit has 2 mirrored copies, which should be on different failure group, consequently.
    Hope, this explanation is helpful.

  • What is the default group id/ home /shell while adding new account with useradd without specifying these parameters?

    What is the default group id/ home /shell while adding new account with useradd without specifying these parameters?
    reagrds

    Hi,
    You can check the default values from the below file
    /usr/sadm/defadduser
    and from this command
    #useradd -D

  • What is the default group of a user created in OID

    Hi All,
    we integrated EBS with OAM11g(it integrated with OID 11g).
    Whenever we created user in EBS is reflecting to OID,But this user is not able to login into OAM.Whenever we assaign the newly created user to 'Administrator, group only able to login into OAM because of we specify 'Administrator' as administrator group.
    So now how to set the default group is Administrator for newly flowing users from EBS.
    Any idea really appreciated,
    Thanks in advance,

    stevenray1 wrote:
    Is the resolution of a photo created in Photo Booth under user control, or is there a single default (and if so, what is that)?
    640 x 480 (drug one to the desktop and checked it )
    Can the resolution (default or otherwise) be improved in iPhoto?
    No
    You can export it from iPhoto as a JPEG with a different resolution but can not change the resolution in iPhoto - and increasing the DPI does not increase the resolution of a photo - you can not add quality that is not there
    LN

  • "lpadmin" group

    what is the "lpadmin" group referred to during installation on a mac?

    Thanks, the problem is solved (for now) but in case others run into this I'll post some info. I spent four hours being tossed between  Apple and HP yesterday while these "partners" blamed each other. In the end it was a little of both. I have full administrator privs on my Mac but an apple operating glitch duirng the installation process prevented them from being recognized. I had to create a new admin account, delete my existing one, then recreate it. This is a growing problem and Apple needs to walk you through it (even though according to one Apple bad ass "HP needs to take accountability." But HP is not without its headaches either...didn't realize I would need a printer cord for a cordless (wifi) printer. Luckily I managed to hunt one down so I could finish installation. Silly issues resulted in hours of aggravation. 

  • I'm trying to get into game center to download some things. Enter user id/password then keep getting a "you are not part of this/the administrator group" then a cancel or retry command. What do I do? (I am using a friends wi-fi) What d

    I am trying to get into the Game Center and download some apps. I enter my user id/password the keep getting a "you are not part of the/this administrators group" message then a cancel/retry command. What do I do to become part of this/the administrators group? I am using a friend's wi-fi...Help!

    I am trying to get into the Game Center and download some apps. I enter my user id/password the keep getting a "you are not part of the/this administrators group" message then a cancel/retry command. What do I do to become part of this/the administrators group? I am using a friend's wi-fi...Help!

  • What is the best way of returning group-by sql results in Toplink?

    I have many-to-many relationship between Employee and Project; so,
    a Employee can have many Projects, and a Project can be owned by many Employees.
    I have three tables in the database:
    Employee(id int, name varchar(32)),
    Project(id int, name varchar(32)), and
    Employee_Project(employee_id int, project_id int), which is the join-table between Employee and Project.
    Now, I want to find out for each employee, how many projects does the employee has.
    The sql query that achieves what I want would look like this:
    select e.id, count(*) as numProjects
    from employee e, employee_project ep
    where e.id = ep.employee_id
    group by e.id
    Just for information, currently I am using a named ReadAllQuery and I write my own sql in
    the Workbench rather than using the ExpressionBuilder.
    Now, my two questions are :
    1. Since there is a "group by e.id" on the query, only e.id can appear in the select clause.
    This prevent me from returning the full Employee pojo using ReadAllQuery.
    I can change the query to a nested query like this
    select e.eid, e.name, emp.cnt as numProjects
    from employee e,
    (select e_inner.id, count(*) as cnt
    from employee e_inner, employee_project ep_inner
    where e_inner.id = ep_inner.employee_id
    group by e_inner.id) emp
    where e.id = emp.id
    but, I don't like the complication of having extra join because of the nested query. Is there a
    better way of doing something like this?
    2. The second question is what is the best way of returning the count(*) or the numProjects.
    What I did right now is that I have a ReadAllQuery that returns a List<Employee>; then for
    each returned Employee pojo, I call a method getNumProjects() to get the count(*) information.
    I had an extra column "numProjects" in the Employee table and in the Employee descriptor, and
    I set this attribute to be "ReadOnly" on the Workbench; (the value for this dummy "numProjects"
    column in the database is always 0). So far this works ok. However, since the numProjects is
    transient, I need to set the query to refreshIdentityMapResult() or otherwise the Employee object
    in the cache could contain stale numProjects information. What I worry is that refreshIdentityMapResult()
    will cause the query to always hit the database and beat the purpose of having a cache. Also, if
    there are multiple concurrent queries to the database, I worry that there will be a race condition
    of updating this transient "numProjects" attribute. What are the better way of returning this kind
    of transient information such as count(*)? Can I have the query to return something like a tuple
    containing the Employee pojo and an int for the count(*), rather than just a Employee pojo with the
    transient int inside the pojo? Please advise.
    I greatly appreciate any help.
    Thanks,
    Frans

    No I don't want to modify the set of attributes after TopLink returns it to me. But I don't
    quite understand why this matters?
    I understand that I can use ReportQuery to return all the Employee's attributes plus the int count(*)
    and then I can iterate through the list of ReportQueryResult to construct the Employee pojo myself.
    I was hesitant of doing this because I think there will be a performance cost of not being able to
    use lazy fetching. For example, in the case of large result sets and the client only needs a few of them,
    if we use the above aproach, we need to iterate through all of them and wastefully create all the Employee
    pojos. On the other hand, if we let Toplink directly return a list of Employee pojo, then we can tell
    Toplink to use ScrollableCursor and to fetch only the first several rows. Please advise.
    Thanks.

  • OIM: What is the purpose of "Update" while editing group memberships

    Hi,
    This is when you lookup a user's Resource Profile and go to "Edit" link. The process form shows up along with a drop down to edit the group memberships. When we select one of the choices such as "Groups" another window pops up where we could add more entires into the child form. In this form there is an "Update" column with a radio button besides a "Remove" column. What is the purpose of this "Update" column? We can add or delete child entries but what does update do? Is there a way to remove this selection altogether?
    Thanks in advance

    Update I can see used for a cases where you have multiple columns on a child table entry and want to change one of them. Strictly speaking, you can update a single column child table rather than delete and insert also. Access policies always do insert and delete actions, but you will want to implement an update task as well if you expect anyone to be editing child tables on resources directly.

  • Adding VLAN to Po-Group and OSPF routing what is the correct way?

    Hi Community,
    I recently had an issue that brought down the links between a couple of switches...luckily this was done after hours and I did not save the config so was able to revert back.
    The basic scope of my project is:
    We are running out of IP's on the 192.168.1.0/24 sunbnet so wanted to create a seperate VLAN/Subnet  for physical workstations.
    He is what I orginally did;
    1) On our core switch; (Switch1) 
         Create the VLAN,
         VLAN interface,
         DHCP pool,
         excluded address'
    2) On second  switch (Switch 2)
         Add VLAN name, no interface
    3) I then updated the PO-group on Switch1 with new VLAN  (this brought down the link before I was able to finish my config)
        Therefore I was not able to complete the following:
              add vlan to spanning-tree or updated OSPF routing
    Here is what I assume to be the correct order?
    1) On Core Switch (Switch 1)
         Create VLAN
         VLAN interface
         DHCP pool
         excluded address'
         add vlan to spanning-tree
         add vlan (passive interface) and sunbet to OSPF routing
    2) On Switch 2
         Add vlan name/interfaces with no ip
    3) Update PO groups after the above has been configured
         Add new VLAN to Po-Group on Switch 2
         Add new VLAN to Po-Group on Switch 1
    4) Last steps
         Updated specific access ports with new VLAN and test
         upon completion of testing, update all other access ports connected ot workstations with new VLAN
    Questions:
    Did my links go down because I added new VLAN to Po-group BEFORE  updating spanning-tree and OSPF routing?
    Can anyone verify the order as outlined in the section "Here is what I assume to be the correct order"

    So the order in which to apply TASKS is correct?
    also just to clarify the following TASK  based on your comments.
    Step 4- Add new VLANs to OSPF as passive interface
    On Switch 1 (core)
    We have this line of code
    router ospf 100
    router-id 192.168.1.10
    log-adjacency-changes
    passive-interface Vlan10
    passive-interface Vlan30
    passive-interface Vlan50
    passive-interface Vlan500
    network 192.168.0.2 0.0.0.0 area 0
    network 192.168.1.10 0.0.0.0 area 0
    network 192.168.30.254 0.0.0.0 area 0
    network 192.168.33.254 0.0.0.0 area 0
    network 192.168.51.254 0.0.0.0 area 0
    network 192.168.99.5 0.0.0.0 area 0
    network 192.168.200.254 0.0.0.0 area 0
    TASK: OSPF - Add new VLANs(40 & 41) to OSPF as Passive Interface
    ******* Begin Here  *********
    config t
    router ospf 100
    passive-interface vlan40
    passive-interface vlan41
    !WE SHOULD ADD THIS LINE OF CODE
    network 192.168.40.254 0.0.0.0 area 0
    network 192.168.41.254 0.0.0.0 area 0
    ******* End Here  *********
    RESULT:
    router ospf 100
    router-id 192.168.1.10
    log-adjacency-changes
    passive-interface Vlan10
    passive-interface Vlan30
    passive-interface Vlan40
    passive-interface Vlan41
    passive-interface Vlan50
    passive-interface Vlan500
    network 192.168.0.2 0.0.0.0 area 0
    network 192.168.1.10 0.0.0.0 area 0
    network 192.168.30.254 0.0.0.0 area 0
    network 192.168.33.254 0.0.0.0 area 0
    network 192.168.40.254 0.0.0.0 area 0
    network 192.168.41.254 0.0.0.0 area 0
    network 192.168.51.254 0.0.0.0 area 0
    network 192.168.99.5 0.0.0.0 area 0
    network 192.168.200.254 0.0.0.0 area 0
    Better??
    Again thanks...your feedback have been a tremendous help!

  • What are the key fields used to group double orders in t-code SDD1?

    What are the key fields used to group double orders in t-code SDD1?
    Cheers,
    VT

    Hi,
    You can group the duplicate sales documents with the help of the following fields,
    Sold-To-Party,Document type,date and sales area details.
    Regards,
    Gopal.

  • What is the advantages of using Flexconnect groups

    what is the advantages of using Flexconnect groups in WLC?
    Reg,
    Ezra.

    Pls refer this document for more detail about these features
    http://www.cisco.com/c/en/us/td/docs/solutions/Enterprise/Mobility/emob73dg/emob73/ch7_HREA.html#wp1091114
    FlexConnect is one mode an AP can operate, typically deployed in Branch setup where you do not have a controller at branch site. Those AP can register to a controller at your HQ or main site. So traffic will terminate at your branch switch instead of tunnel back to HQ-WLC.
    If you want roaming within your branch FlexConnect AP then you have to put those AP into a FlexConnect Group. Then only key information shared among those AP to facilitate fast roaming.
    Pls do not forget to rate our responses if you find them useful.
    HTH
    Rasika

  • What's the meaning of "SID to Group returns null"

    hi, I configure a ATN in WLS, and the ATN log shows:
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000>
    <returnConnection conn:LDAPConnection {ldap://localhost:389 ldapVersion:3
    bindDN:"CN=weblogic,CN=Users,DC=mydavid,DC=org"}>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <LDAP Atn
    Authenticated User weblogic>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000>
    <oneShotGroupMembershipLookup called for weblogic>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000>
    <activeDirectoryLookupTokenGroups called for weblogic>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000>
    <getConnection return conn:LDAPConnection {ldap://localhost:389
    ldapVersion:3 bindDN:"CN=weblogic,CN=Users,DC=mydavid,DC=org"}>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000>
    <getDNForUser search("cn=Users,dc=mydavid,dc=org",
    "(&(cn=weblogic)(objectclass=user))", base DN & below)>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <DN for
    user weblogic: CN=weblogic,CN=Users,DC=mydavid,DC=org>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <No
    groupname found for SID \01\02\00\00\00\00\00\05\20\00\00\00\21\02\00\00>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <SID to
    Group returns null>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <No
    groupname found for SID \01\02\00\00\00\00\00\05\20\00\00\00\20\02\00\00>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <SID to
    Group returns null>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <Group
    mapping found is Domain Users>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <SID to
    Group returns Domain Users>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000>
    <returnConnection conn:LDAPConnection {ldap://localhost:389 ldapVersion:3
    bindDN:"CN=weblogic,CN=Users,DC=mydavid,DC=org"}>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000>
    <oneShotGroupMembershipLookup returns with 1 groups>
    <2005-10-2 ????01??28??05?? CST> <Debug> <SecurityDebug> <000000> <login
    succeeded for username weblogic>
    what's the meaning of "SID to Group returns null"?
    \01\02\00\00\00\00\00\05\20\00\00\00\21\02\00\00 resprent for what?
    Any one could tell me?
    thanks.
    david.turing

    Hi
    In AR, you will give cash discount to customer and not the other way round as you mentioned.
    For eg if AR value is 100 and customer pays you 90, there is a difference of 10. Assume you have cash discount % of say 6%, you expect the customer to pay 94 (100- 6% of 100) and not 90. There is still a gap of 4. This can be added to cash discount account if you enter 4 in this field. Hence the A/c entry will be:
    Dr Bank 90
    Dr cash discount (expense/loss) 10
    Cr Customer 100
    However this field is interlinked with some other fields like "Cash discount per line item", etc
    Jayaram

  • I have a Win7Pro SP1 PC locked down with a Group Policy as it is a public facing PC. PDF fillable forms cannot be completed when logged on as the restricted user. The forms work as a normal user. What are the user requirements/permissions needed to fill f

    I have a Win7Pro SP1 PC locked down with a Group Policy as it is a public facing PC. PDF fillable forms cannot be completed when logged on as the restricted user. The forms work as a normal user. What are the user requirements/permissions needed to fill forms?

    Well, try this (I was able to fix my with these steps):
    Go Utilities > Disk Utility
    Select your Startup Disk, e.g. Macintosh HD
    Then, under the First Aid Tab, click Verify Disk Permissions.
    If there are errors, then click repair Disk Permissions.
    After it is done, restart the computer and see if your problem is resolved.
    I hope this help.
    Zeke
    www.ZekeYuen.com/blog/

  • What is the meaning of managed groups of employees in OM?

    Hi experts fellas,
    What is the meaning of managed groups of employees in OM?
    Thanks,
    JEss..

    Hey Jess
    Let me try this one.
    1. In general terms, group of employees of a department/division managed by one person (HOD).
    2. In technical terms, the evaluation path which results in list of Employees who are Managed by a Position holding A012 relationship with Organizational Unit of the Person in question.
    Both explaination are in regards to OM.
    Regards
    Yash

Maybe you are looking for