similar to: user-rights

Displaying 20 results from an estimated 100000 matches similar to: "user-rights"

2012 Jul 25
1
[LLVMdev] [RFC] YAML I/O
I've been working on reading and writing yaml encoded documents for the lld project. Michael Spencer added the YAMLParser.h functionality to llvm/Support to help in parsing yaml documents. That parser greatly helps at the syntax level, but you still need to hand write a lot of semantic checking and then convert the various node types in to something usable. I've developed a layer on
2006 Nov 21
14
Starting from scratch
I have the following models: === class Person < ActiveRecord::Base has_many :person_organisations, :dependent => true has_many :organisations, :through => :person_organisations has_many :person_categories, :dependent => true has_many :categories, :through => :person_categories end class Category < ActiveRecord::Base has_many :person_categories, :dependent => true
2003 Mar 16
2
local user admin rights on samba pdc
Raj, > I have noticed that it is causing a problem for some other software > also. I know that i need to grant local admin rights for that user > but what is the best method on doing this? > If I try to access softare by logging in as root on the win2k boxon > the pdc domain it still prevents me from installing a palm pilot or > running some particular software. > All of the
2001 Oct 25
1
Advanced user rights on a samba PDC
Hello, Sorry for the crosspost on both lists. I've just finished to install a Linux RedHat 2.4.2 / Samba 2.2.1a server, which acts as a PDC server for about 30 windows 9X/NT/2000 clients. It works ok, but 2 problems remain, which I suspect to be bounded : 1) I can't start the user manager for domains on a Win NT4 workstation SP5 box, i have the following error message (translated form
2011 Aug 03
1
Need help with xyplot
Consider I have the following data: AgeRange AgeOfPerson PersonNo FriendsAtYear0 FriendsAtYear1 FriendsAtYear2 FriendsAtYear3 FriendsAtYear4 FriendsAtYear5 10 - 12 11 1 0 1 2 2 3 3 10 - 12 12 2 0 1 2 2 3 3 15 - 18 13 3 1 2 3 4 6 7 15 - 18 14 4 1 3 4 5 7 7 30 - 40 33 5 3 5 5 6 8 9 30 - 40 36 6 4 4 4 4 4 4 I want to plot the number of friends against number of years, as to show how friendships
2006 Feb 10
1
RE: Samba - cups rights problem
Hi, wel, i didn't solve it, i just let my users print multiple times and if they want lots of prints, i print it for them. What you can do, ( i didn't ) is add the Domain users to the printer operators But if 1 users change the printer settings it goes to all users. > I also have people unable to delete each other's jobs while they are >allowed in CUPS. this is correct
2005 Oct 27
1
Giving my users the right to manage their print jobs (cf. CreatorOwner msg)
Hi, I already send the list an email about users not able to manage their print job (pausing, resuming and cancelling). Below is typical error I get in my logs : [2005/10/27 12:24:31, 0] printing/print_cups.c:cups_job_delete(339) Unable to cancel job 27827 - client-error-not-authorized I quote Jerry from a previous mail exchange : "The current print security checks for removing jobs
2005 Oct 11
2
remove rights on c:\Documents and Settings
Hi, on samba all our users are just member of 'domain user' group. This way gives them limted rights on local workstation, but they still have full rights on c:\Documents and Settings. Is there a way to just give them read right on that folder ? Thanks
2001 Oct 01
4
User Access
Dear All I've been thinking about this one for some time. Is it possible to allow a number of Windows clients - on Win 98 - to have access to the same directory on a Samba server ? The purpose of this would be for two or more people to have access to the same document at the same time so that they could edit it. Doesn't sound all that sensible to me but a few people have asked me
2006 Apr 14
1
ActiveRecord and multiple associations
Hello, I have a Company that has_and_belongs_to_many Persons. A Person has_many Emails. I want to display each Person''s Email for each Company, so I try this: companies = Company.find(:all) for company in companies persons = company.persons for person in persons puts person.email end end Unfortunately, this doesn''t work correctly. Let''s say the id of
2004 Jul 06
3
Moving Profiles
Hi everyone, I'm about to install a Samba PDC in a network that previously was working as a workgroup. All the users have been logging into their local machines as "administrator" and all with the same password. What I would really like to do is to move their profiles with them, but as they are all using the same username and the like I can see this is going to cause problems. So
2005 Jan 27
2
Samba not recognizing secondary groups
Hi all. I'm having a strange issue with a server running Samba 3.0.2a. The server has a single share, and under that are subfolders that contain documents. Each subfolder is owned by a different folder-specific group, and users belong to the groups that own the folders to which they need access. But suddenly one user can't access any folders. Windows (the client) suggests that she
2008 Sep 24
1
Share name and file rights
A question about share names: When we open a samba share, I want the symbol on my desktop to have the name "johndoe@sambaserver1", not just "johndoe". This is because we have a number of different "sambaservers" that johndoe can log on to, and it will be a mess on his desktop if he uses several connections at the same time. i cannot find this feature in the
2004 May 12
1
Windows Read Only attribute, and Microsoft Excel.
I have recently started migrating a Win2k fileserver to a Samba 3.0.2a server. Running in full ADS mode, with winbind enabled for authentication against our Win2k PDC. I am also running as much of the ACL support as I can. The problem I am encountering involves excel documents. The documents are migrated from the Win2k server, to the Samba server, and are retaining all of the ACL's during
2015 Oct 19
1
access denied for ms office documents on samba 4.1.17 ubuntu 12.04
I’ve posted earlier a question related to the problem regarding MS Office Documents that are saved in share folders on samba 4.1.17. Samba 4 is installed and configured as AC DC on Ubuntu 12.04 server. All share folders are accessible to the respective users with respective rights. The problem is, some Office Documents at times will not be accessible even to file creators, owners. This happens at
2009 Jun 11
2
Problem with new version of GlusterFS-2.0.1 while copying.
Hi, I am having some problem with new version of GlusterFS-2.0.1 while copying using "apache" user. sudo -u apache cp -pvf zip/* test/ getting the message cp: getting attribute `trusted.glusterfs.afr.data-pending' of `zip/speccok1ma131231824637.zip': Operation not permitted `zip/speccok1ma131231824776.zip' -> `test/speccok1ma131231824776.zip' No problem while
2005 Dec 29
4
Many-to-Many: Where to add the children?
I have two classes Person and Job defined as follows: class Person < ActiveRecord::Base :has_and_belongs_to_many jobs def add_job(job_name) job = Job.find_by_name(job_name) # See if this job exists if job.nil? # If this job doesn''t exist job = Job.new # Create a new job job.name = job_name #
2012 Nov 16
2
[LLVMdev] RFC: I'm interested in filling the code-owner role for the following...
2012/11/16 Chris Lattner <clattner at apple.com>: > On Nov 14, 2012, at 7:08 PM, Chandler Carruth <chandlerc at google.com> wrote: >> Config >> ADT >> Support[1] >> CMake >> "library layering"[2] >> >> Inlining (including cost and other related passes) >> SROA / mem2reg (and other related passes) > > Makes sense to me!
2006 Aug 03
3
How to override append method for related attribute?
I have a model that looks something like this: class Person < ActiveRecord::Base has_many :tasks [...] end I''d like to override/overload the append (<<) method for the tasks relational attribute such that I can perform some error checking in the context of a Person.tasks << task operation. Is there any way to do this? I wish I could do this in the context of
2004 Dec 17
0
Can not Rights to users
Hi, I've configured samba with ldap support and all is going well with normal users. I wanted to know how to give special right/privileges to users using any windows tool. I tried to use w2k's support tool (Active Directory Users and Computers) and nt's srvtools(usermgr) but none of these worked. win2k says "can not connect to pre-windows 2000 domain" nt connects and