similar to: Windows 2003 Server and Active Directory

Displaying 20 results from an estimated 3000 matches similar to: "Windows 2003 Server and Active Directory"

2004 Sep 24
4
ssh security
Derek Ragona wrote: >> I tried to implement a similar scheme in my hosts.allow on a FreeBSD >> 5.2.1 server. But when I try to test it from an IP outside my LAN, it >> still allows ssh logins. I even put in a line in hosts.allow to >> explicitly deny the IP I was ssh'ing from, but it still let me in. >> The behavior gives the appearance that TCP wrappers
1998 Aug 23
12
passwords
could someone please give me the lowdown on samba and passwords? i keep trying to connect to any share name on either of my unix boxes, either from each other or from a win95 machine... every time i can't get anything due to passwords... does samba have it's own password file? from trial-and-error it seems that it doesn't read out your /etc/passwd file for user's home dirs...
2001 Oct 22
7
Add User Script
I am trying to read in a list of users from a file and automatically create users from that. Here is what I thought would work: #!/bin/sh cat /mnt/PDC1-UsrSync/user.diff | while read Foo; do useradd $Foo; done Contents of the user.diff file: dccut dclam dcprep dcshp But here is what I get when I run the script: > sh test.sh useradd: invalid user name `dccut ' useradd: invalid user
2003 May 14
2
su-ing error with FreeBSD 5.0
On a couple servers I have one running 5.0 Release, another running 5.0 Stable I have a problem with su. If I login to the server using a regular account, then su - to root, then I try to su - to any other account, other than the one I originally logged in as the su works but with this error: su: No controlling tty (open /dev/tty: Permission denied) su: warning: won't have full job
2007 Jun 25
1
LanguageR pvals.fnc error message
Hi. I get an error message about not converging when I try and use the pvals.fnc from the languageR library. The LMER analysis worked fine (See below). I am not an expert so I don't understand why the LMER worked but not the pvals.fnc Any help gratefully received. - Mike AIC BIC logLik MLdeviance REMLdeviance -7324 -7254 3673 -7451 -7346 Random effects: Groups
1998 May 15
9
password problems
We installed Samba server on a Alphaserver 4000 and we are connecting with a Win NT client Our server name is "ALPHASERVER4000" our client name is "PC3" we arrived to test 10 and problem is still alive. We can see with the NT browser "ALPHASERVER4000" but if we double click on it a password is requested. We tried with Regedit with all this options. Run regedt32.exe
2011 Jun 29
1
Numerical integration
Hello! I know that probably my question is rather simple but I' m a very beginner R-user. I have to numerically integrate the product of two function A(x) and B(x). The integretion limits are [X*; +inf] Function A(x) is a pdf function while B(x)=e*x is a linear function whose value is equal to 0 when the x < X* Moreover I have to iterate this process for different value of X* and for
2004 Sep 19
2
sshd security
I had the same problem so i setup up hosts.allow to only allow access from certain ips i require This has the affect of killing the connection from any other ip befor gettign to any login prompt example below sshd : localhost : allow sshd : 192.168.2. : allow sshd : 82.41.115.213 :allow sshd : 216.123.248.219 : allow <-- public ip i wish to allow of course i have changed it sshd : all :
2013 Jan 22
2
Creating a Data Frame from an XML
Hello, I'm attempting to read information from an XML into a data frame in R using the "XML" package. I am unable to get the data into a data frame as I would like. I have some sample code below. *XML Code:* Header... Data I want in a data frame: <data> <row BRAND="GMC" NUM="1" YEAR="1999" VALUE="10000" /> <row
2012 Jun 01
3
Add rank column to data frame as in SQL...
Hopefully this is an easy problem... I'm trying to add a partitioned rank column to a data frame where the rank is calculated separately across a partition by categories, the way you could easily do in SQL. I found this solution in the archives that looked like it might work: http://tolstoy.newcastle.edu.au/R/e11/help/10/09/8675.html The example has a data frame with several car companies,
2007 Apr 21
4
Ford Tech Serv app does not work
This just an FYI. Yesterday I updated to top of trunk wine and rebuilt and installed. I have a Ford Service CD (for 1999 models) and wine on the exe does not work (on an old Windows ME laptop it all works). The startup.exe sort of seems to work AFAICT, but when it's done and the app exe started the app exe ( installed on disk) cannot seem to find the cd (the app needs the CD, the install
2017 Dec 17
4
Auto Data in the ISLR Package
myAuto <- Auto[ grep("ford|toyota",Auto$name),] On Sat, Dec 16, 2017 at 10:28 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > I did not care to load the packages -- small reproducible examples are > preferable, as the posting guide suggests. > > But, if I have understood correctly: > > See, e.g. ?subset > > Alternatively, you can read up on
2010 Sep 16
3
get top n rows group by a column from a dataframe
Hi, is there an R function like sql's TOP key word? I have a dataframe that has 3 columns: company, person, salary How do I get top 5 highest paid person for each company, and if I have fewer than 5 people for a company, just return all of them? Thanks, Richard [[alternative HTML version deleted]]
2007 Feb 23
5
Advice for Internet facing Mailserver
Hello and good day, i have setup a Server which is directly connected to the Internet, without NAT-Router or other Firewall Appliance. I am using FreeBSD 6.2. I have pf enabled to only allow traffic on specified Ports. I am using Apache-13 + Postfix + Dovecot & mysql for my Mail-system. There is only one /home/User, which authenticates via a Key with Pass- phrase to sshd. The
2017 Dec 17
1
Auto Data in the ISLR Package
myAuto <- Auto[ grep("ford|toyota",Auto$name),] myAuto$Make <- NA myAuto$Make[grep("ford",myAuto$name)] <- "Ford" myAuto$Make[grep("toyota",myAuto$name)] <- "Toyota" Regards, Eric On Sun, Dec 17, 2017 at 11:58 AM, AbouEl-Makarim Aboueissa < abouelmakarim1962 at gmail.com> wrote: > Dear Eric: > > Thank you very much.
2017 Dec 17
0
Auto Data in the ISLR Package
Dear Eric: Thank you very much. It works nicely. *Just one more thing;* how to create a new variable (say, *Make*) with *Make = Ford* for the ford brand and *Make = T**oyota* for the toyota brand. Once again thank you all. abou ______________________ *AbouEl-Makarim Aboueissa, PhD* *Professor of Statistics* *Department of Mathematics and Statistics* *University of Southern Maine* On
2007 May 03
7
How to create a drop-down list with Markaby?
Hi I couldn''t figure out, how to create a drop-down list with Markaby. How would I create something like this: <select name="character"> <option value="marvin">Marvin the paranoid Android</option> <option value="arthur">Arthur Dent</option> <option value="zaphod">Zaphod
2004 Apr 02
4
avaya and linux
Does anyone know if avaya voip product is running linux under the hood? Thanks, /glen -- Glen Ford gford@idiom.com
2017 May 30
1
URGENT: Update issues from 3.6.6 to 3.10.2 Accessing files via samba come up with permission denied
Hi, Over the weekend we updated a two server glusterfs 3.6.6 install to 3.10.2 We also updated samba and samba-vfs to the latest in CentOS. I enabled several of the newer caching features from gluster 3.9 for small file performance and samba, and we now seem to have some issues with accessing files from glusterfs. When users try to access some files, they get a Permission denied message. This
2006 Feb 10
10
Seeing the IP addresses of domUs from dom0
Using a default xen3.0.1 setup for dom0(rhel4 distro) and domUs (gentoo, rhel4, centos4.2 distros, ttylinux) with the domUs all having dhcp turned on, is there an easy way to tell from within the dom0 what ip addresses were assigned to the domUs after bootup? Toby Ford USi _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com