Displaying 20 results from an estimated 9000 matches similar to: "assigning group permission on clients in a domain"
2002 Oct 15
2
workaround assigning domain group permissions on PDC clients
This is far from being elegant but it works...
Target: assigning domain wide group permissions on members (client) of
a Samba PDC.
Steps:
1a edit the file pointed by
username map
add
existing_Unix_group1 = "Domain Users"
2a log on a client with administrative privileges
assign to a dir/disk permission to the "Domain Users" being carefull to
select
2017 Feb 13
0
timeout after inactivity on mount.cifs
Hi,
I'm trying to backup a directory on a Windows 2008 (fully updated)
I'm running Debian testing.
(kernel version: 4.9.6-3, mount.cifs version: 6.6)
I'm basically mounting a share with mount -t cifs and tar the content of
a directory.
I didn't have problems with old debian (probably sqeeze).
Now I occasionally get in dmesg:
cifs vfs: error -32 sending data on socket to
2007 Apr 19
1
Is it possible to add %u for local user to ControlPath's argument in the portable version of OpenSSH?
Hi!
>From man 5 ssh_config
> ControlPath
> Specify the path to the control socket used for connection sharing as described in the
> ControlMaster section above or the string ``none'' to disable connection sharing. In
> the path, `%l' will be substituted by the local host name, `%h' will be substituted by
>
2006 Jul 28
2
can i setup a dns name server in my localmachine?
can i setup a dns name server in my localmachine?
thanks for any help!
2008 Aug 31
9
assigning collection values and exceptions
hi everyone,
I''ve this code in my Report model:
has_many :report_reasons, :validate => true
has_many :reasons, :through => :report_reasons #, :uniq => true
# :accessible => true
def reason_attributes=(reason_attributes)
reasons.clear
reason_attributes.uniq.each do |reason|
reasons << Reason.find_or_create_by_content(reason)
end
end
2002 Aug 06
1
winbind trouble...
Hi again,
thanx Jeremy, the pam-devel package was missing to compile pam_winbind... it was tooo obvious :-(
After my 5th day trying to get samba to talk to my W2k-Server, I still have problems!
I just want samba to do authentication with the w2k-server's help and without unix-useraccounts.
So far, winbind is up and running, and fter have the user switched to Administrator with wbinfo
2006 Oct 31
1
+Ura +md3200 nao encaminha ligacao
Salve Salve Galera.
Tenho a seguinte situacao:
Uma placa MD3200 ligada em uma linha telefonica comum(PTSN) e
funcionando "belezinha"...
Tenho configurado um URA, onde ele atende a ligacao que chegou no
canal e solicita o numero do ramal de destino da liga??o:
Acontece que ao discar o ramal de destino, ele nao encaminha a
ligacao, ficando mudo e posteriormente caindo a liga?ao.
Fiz
2003 Oct 03
1
Create machine account samba 3 - can I delete machine in /etc/passwd ( I use ldap backend ) ?
Hi,
The idea is to avoid to have machines accounts in /etc/passwd
and store all on the ldap.
I must have a machine account in /etc/passwd ( normal way ) to
create the account with pdbedit -a -m machine_account.
In fact once it is created , I can delete the account in the
localmachine and machine can connect without any problems. ( the account
stay only in the ldap ). I 've done it.
2010 May 21
1
rsync failure quoting incorrect directory
Readers,
Command terminal output:
$ rsync -rv * -e ssh user at pathtoremotemachine
sending incremental file list
rsync: mkdir "/localmachine/path/to/home/user at pathtoremotemachine"
failed: No such file or directory (2)
rsync error: error in file IO (code 11) at main.c(576) [receiver=3.0.4]
rsync: connection unexpectedly closed (9 bytes received so far) [sender]
rsync error: error in
2009 Nov 12
0
Problem with has_many :through, :uniq => true with polymorph
Didn''t have quite enough space to describe it there...basically i''m
having a problem with the :uniq option in my tags.
I''m using acts_as_taggable_on_steroid which adds these associations to
my Resource class:
Resource
has_many :taggings, :as => :taggable, :dependent => :destroy, :include
=> :tag
has_many :tags, :through => :taggings, :uniq => true
2007 Nov 21
2
uniq -c
Is there an R analog of the Unix command uniq -c:
http://en.wikipedia.org/wiki/Uniq
Given an array x, uniq -c replaces each contiguous subsequence of
identical numbers with a tuple (count, number). E.g.
$ cat > usample
10
10
9
8
8
7
7
7
6
3
1
1
1
0
$ uniq -c usample
2 10
1 9
2 8
3 7
1 6
1 3
3 1
1 0
Cheers,
Alexy
2017 Feb 15
2
Randomly losing network share file communication
Hi,
Some users are experiencing problems working with files in Windows and Samba
shares within engineering applications. The sequence is as follows:
A user opens a file, e.g. a drawing, inside an application. The user works
fine for a while, but suddenly it cannot edit the file anymore. The only way
to continue working is closing and opening the file again, like if the
session had expired and a
2006 Feb 07
1
habtm :uniq causing duplicate inserts? How to update Rails?
Hello *Gem* experts,
Sorry for asking multiple questions in one post but they are both related to one problem.
So far I have the following code:
class Member < ActiveRecord::Base
has_and_belongs_to_many :blogs, :uniq=>true
.....
end
class Blog < ActiveRecord::Base
has_and_belongs_to_many :members, :uniq=>true
...
end
The issue is that
2014 Jul 19
1
patch about mingwbuild 4.9.1
recently I used gcc 4.9.1 (http://sourceforge.net/projects/mingw-w64/files/Toolchains targetting Win64/Personal Builds/mingw-builds/)on windows to build R,but failed when link R.dll ,it report linker status 5.
after some digging, I found when use gcc 4.9.1 64 bit on windows there are lots of .refptr.*(* is r function name) in R.def, which lead build fail.so I add a simple path to
2010 Feb 02
1
ggplot/time series with indicators question
Hello, I am trying to plot time-series data with certain weeks highlighted using symbols.
require(ggplot2)
#plotting time series data
timescale <- seq(as.Date("01/01/09","%m/%d/%y"), length.out=12, by=7)
data.all <- data.frame(
id = c(rep('111',12),rep('222',12),rep('333',12)),
week=c(timescale,timescale,timescale),
2007 Oct 18
0
Getting the through items from a has_many :through :uniq relationship
Getting the through items from a has_many :through :uniq relationship
In a nutshell, I have been using the has_many :through :uniq
relationship, and I want a DRY way to list the join model objects.
Currently, my objects include taxon objects, toxin objects,
data_object objects, and taxon_toxin_citation objects ("citation" is
another word for data_object). A taxon has many data objects,
2005 Apr 26
1
ldap uid with static gid problem
hi,
i'd like to use dovecot to authenticate from ldap. in ldap each user has
it's uniq uid and gid. unfortunately with postfix we can't use uniq
uid/gid since in this case we have ot create all user's home in advance.
so we decided to use uniq uid and a common gid in postfix since in
this case postfix can create new users maildir and deliver new mails. so
i'd like to
2006 Apr 28
1
1-dim maximizing of windows
Salve,
this is just to probe whether other fans of an unimplemented feature
exist or what priority/difficulty compiz coders would assign to it.
I constantly used ?maximize vertically? (and also ?maximize
horizontally?) in Metacity when there wasn't enough space to see a
portion of text in a terminal or another window. Assigned to
<Super_R>Up/<Super_R>Right it was a powerful pair
2003 Feb 03
1
[chip] OMAP5910 does vorbis ogg run with it?
Salve,
does sombody can say me if vorbis ogg run on this TI-chip?
OMAP5910 Integrates a TMS320C55x™ DSP core with an ARM925 on a Single Chip
Sampling today, the OMAP5910 processor integrates a TMS320C55x DSP core with
a TI-enhanced ARM925 on a single chip for the optimal combination of high
performance with low power consumption. This unique architecture offers an
attractive solution to
2004 Dec 27
2
bidirectional synchronization of dovecot-managed maildirs
Hello and happy holidays,
I've been thinking about high performance bidirectional synchronizing
the mail on my laptop (which is frequently disconnected) and my
workstation at work (which is always on and receives all inbound
mail). Both run dovecot on top of maildir.
I've been playing with offlineimap, unison (which I already use for
all my non-mail files), as well as the gnus agent (in