similar to: kerberos/samba errors?

Displaying 20 results from an estimated 400 matches similar to: "kerberos/samba errors?"

2013 Nov 04
2
[LLVMdev] compile error when using overloaded = operator of DenseMap
Hi, I am trying to implement Available Expressions data flow analysis. I created the following class (I am giving here code snippet.): namespace { typedef DenseMap<Expression, uint32_t> DMTy; //Expression is a class I defined. struct DataFlowValue { DMTy ExprMap; llvm::BitVector* DFV; // Functions operating on the data // bool operator==(const DataFlowValue V) const;
2012 Oct 31
5
extracting information from txt file
Hello, Here is a link to some data: http://www.epa.gov/emap/html/data/surfwatr/data/mastreams/9396/wchem/chmval.txt I am trying to read this in, and want to use: chmval <- read.table("http://www.epa.gov/emap/html/data/surfwatr/data/mastreams/9396/wchem/chmval.txt", sep=",", skip= 84, header=T) the # 84, for 84 lines skipped needs to be derived from the 5th line of the
2012 Oct 31
3
grep txt file names from html
Sorry, I know I should read a little 1st about this, but I am actually just helping somebody really quick and need help too. I want to grep all of the names of the .txt files mentioned on this html web page: http://www.epa.gov/emap/remap/html/three/data/index.html Thanks ahead of time. -- View this message in context:
2008 Apr 13
1
SPSS to R Data file conversion
I wrote a little routine to convert multiple spss data files (as data frames) to R data files. The code is as follows: # list=dir(pattern=".sav") library(foreign) for (i in 1:length(list)){ # The saved data frame will be dat dat=read.spss(list[i],to.data.frame=TRUE) name=substring(list[i],1,nchar(list[i])-4) rname=paste("../R/",name,".rda",sep="") # This
2013 Nov 04
0
[LLVMdev] compile error when using overloaded = operator of DenseMap
On Mon, Nov 4, 2013 at 10:35 AM, Rekha R <rekharamapai at nitc.ac.in> wrote: > Hi, > > I am trying to implement Available Expressions data flow analysis. I created > the following class (I am giving here code snippet.): > > namespace { > typedef DenseMap<Expression, uint32_t> DMTy; //Expression is a class I > defined. > struct DataFlowValue { >
2009 May 08
2
Malformed HTML
I''m using Mechanize to parse an extraordinarily malformed html page. After submitting a form like so: page = mech.submit(dform) The result I get back is truncated. I suspect that it''s because the source HTML looks like this: <html> <head> yadda yadda</head> <p>some text</p> <html> <table yadda yadda> My
2019 May 31
4
odd msg at top of upsc output
Greetings all; gene at coyote:~$ upsc myups Init SSL without certificate database battery.charge: 100 battery.charge.low: 30 [yadda yadda] Is there a certificate package I should install? Cheers, Gene Heskett -- "There are four boxes to be used in defense of liberty: soap, ballot, jury, and ammo. Please use in that order." -Ed Howdershelt (Author) Genes Web page
2005 May 23
1
TCP timestamp vulnerability
On May 19, 2005, at 5:53 AM, Christian Brueffer wrote: > Hi, > > fixes for the vulnerability described in http://www.kb.cert.org/ > vuls/id/637934 > were checked in to CURRENT and RELENG_5 by ps in April. > > http://www.freebsd.org/cgi/cvsweb.cgi/src/sys/netinet/tcp_input.c > > Revisions 1.270 and 1.252.2.16 > > He didn't commit it to RELENG_5_4 for some
2004 Jun 04
2
Cisco 7960 XML/Configs
I ordered 10 7960's with SIP today (YAY!), I should have them on Monday! So, to be better prepared come Monday morning, I was wondering if anyone knew of any * compatible screen configs for things such as browsing VM, etc, yadda, yadda. I checked out the wiki about ADSI but from what I see, that's not really applicable in a SIP setup? I'm guessing it's going to be a more XML
2001 Dec 12
1
file permissions - the best way?
I'm interested in the *best* way to set particular permissions on the machine I am rsync'ing content to. These are the specifics of our setup: 1 client pushes to remote 2 remote machine = AIX running rsync daemon as chroot 3 client machine = NT running CYGWIN 4 directory tree on client has many files/directories with many differnt permissions/owners etc. 5 We wish ALL the
2010 Nov 08
2
A little help with Wine installation
Okay so I'm a newbie to Ubuntu and I just got a new system with Ubuntu on it. Now my mother's computer runs Ubuntu as well, and I used hers to get some experience with Ubuntu seeing as how my system has no Internet access and I can't get help on it and yadda yadda I'll get to the point. I installed Wine on this system (my mother's) and now am trying to get it on mine. I
2018 Mar 22
1
why is dovecot "Allowing any password"
On 03/22/2018 09:34 AM, Aki Tuomi wrote: >>> I have no idea why you would have nopassword=y set in the first >>> place, so it seems the simplest way to eliminate this problem is to >>> take that out and have a secure environment for sending mail. >> >> Yes, however, for SOGo with Native Outlook compatibility or SAML >> logon, the config is required.
2013 Feb 27
1
tsig verify failure
Hi! My Samba 4 system seems to be running reasonably well, but... I am getting the following error: TSIG error with servier: tsig verify failure Faied nsupdate: 2 yadda, yadda. This is from the command *samba_dnsupdate --verbose --all-names *All I can find on the web is time synchronization problems. Any ideas? I can send a full transcript if it would help.. Thanks! -jimc
2004 Sep 10
1
Winamp3 Player Plugin error
The Winamp3 hit the streets yesterday, so i gave the FLAC Winamp3 plugin a shot (dragged cnv_flacpcm.wac to the Wacs/ directory, yadda yadda) and received the following error message when starting Winamp3: --- Studio.exe - Entry point Not Found The procedure entry point_chkesp could not be located in the dynamic link library MSVCRTD.dll. -- It's unable to play .flac files, but still plays
2006 Mar 03
1
roobie noobie migration question
I''m just at the "reading various rails tutorials" stage. One thing that has puzzled me a couple of times so far is the fact that the creation of the database is not part of the "migration". The steps as I''ve seen them are always: 1) $ rails myapplication 2) $ mysqladmin yadda yadda to create a table 3) $ script/generate migration myWickedTable 4) put rows
2019 May 31
1
odd msg at top of upsc output
On Friday 31 May 2019 01:29:51 am Manuel Wolfshant wrote: > On 5/31/19 6:54 AM, Gene Heskett wrote: > > Greetings all; > > > > gene at coyote:~$ upsc myups > > Init SSL without certificate database > > battery.charge: 100 > > battery.charge.low: 30 > > [yadda yadda] > > > > Is there a certificate package I should install? > > >
2005 Sep 22
2
Failed Network
I''m at my wits end maybe someone out there can help me. Machine Shuttle AN51R Motherboard 1GB ram AMD-64 3000+ (2GHz) 20GB HD (western digital) with 1GB for minimal install, 500MB for swap, and the rest I had planned to use for LVM volumes for VMs. I''ve been running ubuntu 5.04 (hoary) happy as a clam for a while now no problems. Now I''ve started investigating Xen
2019 May 31
2
odd msg at top of upsc output
On May 31, 2019, at 1:29 AM, Manuel Wolfshant wrote: > > On 5/31/19 6:54 AM, Gene Heskett wrote: >> Greetings all; >> >> gene at coyote:~$ upsc myups >> Init SSL without certificate database >> battery.charge: 100 >> battery.charge.low: 30 >> [yadda yadda] >> >> Is there a certificate package I should install? >> >>
2004 Jul 27
1
Samba 3.0.5 cannot mount Windows 2003 shares
I'm having a real hair-raising problem here and I thought maybe someone could help. At least I hope so. My workstation was running 3.0.2a, upgraded to 3.0.5. After upgrading to 3.0.5, I can no longer mount shares on my 2003 server. This started happening on an upgrade to 3.0.4 as well, I might add. Permissions-wise: I own the directory mounts on the local Linux workstation,
2009 Nov 19
2
stupid Centos-DS questions
OK, I'm mostly through everything up to and including Chapter 5 in http://www.redhat.com/docs/manuals/dir-server/8.1/install/Installation_Guide-Advanced_Configuration-Making-DS.html And looking through the ToC for the rest, I do not see that my questions will be answered by this doc. So please feel free to point me to other docs. This manual seems to assuming I already know what it is I