similar to: Help with (hopefully) simple configuration problem

Displaying 20 results from an estimated 300 matches similar to: "Help with (hopefully) simple configuration problem"

2020 Jun 22
2
How to create a user WIHTOUT beeing prompted for the password
Hi, Everything is in the title, How to create a user WIHTOUT beeing prompted for the password ? Did not find a method via command line . Any option is welcome ! Thanks -- This email has been checked for viruses by Avast antivirus software. https://www.avast.com/antivirus
2020 Jun 22
2
How to create a user WIHTOUT beeing prompted for the password
Hi , Just AD in fact :-) More chances ? Lionel sent from my Iphone, sorry for typo > Le 22 juin 2020 ? 11:17, Rowland penny via samba <samba at lists.samba.org> a ?crit : > > ?On 22/06/2020 09:27, Lionel Monchecourt via samba wrote: >> Hi, >> >> Everything is in the title, How to create a user WIHTOUT beeing prompted for >> the password ? > > No
2017 Sep 29
0
Converting SAS Code
You might get better answers if you 1 - break this down into separate issues 2 - tell us what you want to achieve in words rather than SAS, we all read English but few of us speak SAS 3 - post in plain text not HTML as HTML mangles your post On 29/09/2017 13:47, Andrew Harmon wrote: > Hello all, > > My statistical analysis training up until this point has been entirely done > in
2002 Feb 19
2
a good way of life
Thank you all for your answers. One told me that in order to allow the students to upload/download from their home directories, FTP or something like that is a simple and easy choice. As domain logon and roaming profil is not needed and FTP can be logged, I'll use this. Another question for our brillants candidates : How to batch the creation of a Samba account ? I mean, everytime you
2017 Sep 29
5
Converting SAS Code
Hello all, My statistical analysis training up until this point has been entirely done in SAS. The code I frequently used was: *Yield Champagin; data yield; set stress; if field='YV' then delete; if field='HB' then delete; if barcode='16187DD4015' then delete; if barcode='16187DD6002' then delete; if barcode='16187DD2007' then delete; if
2017 Sep 29
0
Converting SAS Code
For the initial data step, assuming a data frame named stress already exists, and using base R, you can start with something like this: barcodes.to.delete <- c('16187DD4015', '16187DD6002', {complete the comma-delimited vector of barcodes you don't want} ) yield <- subset(stress, !(barcode %in% barcodes.to.delete) ) yield <- subset(yield , !(field %in%
2009 Jan 03
1
convert non-standard mbox to maildir
Hi, Let me start with wishing you all the best for this new year, and I hope we'll see a lot of new features and not so much new bugs ;-) I'm trying to convert a number of PSTs to maildir. Just plain drag&drop in Outlook doesn't work (gives a very cryptic error message in a certain folder, but that folder is perfectly all right), and using the import option also barfs when
2005 Jun 06
1
[winbind] wbinfo -a fails
Hi list, I have got a problem with winbind. With wbinfo -g I can see every groups of my AD, wbinfo -u shows me every user wihtout problems. But when I try to verify a username%password with the wbinfo -a command, it fails and says: plaintext password authentication failed error code was NT_STATUS_NO_SUCH_USER (0xc0000064) error message was: No such user Could not authenticate user
2006 May 24
3
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hello, Ashwin. You wrote Wednesday, May 24, 2006, 11:25:11 AM: AC> "Pass::getClassPassInfo<PassClass>() "Pass class not AC> registered!"" failed: file AC> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", line 76 AC> Aborted Same for me. AC> Wihtout the -march specified (using native x86 assembly) it does AC> convert it into
2006 May 24
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > Hello, Ashwin. > > You wrote Wednesday, May 24, 2006, 11:25:11 AM: > > AC> "Pass::getClassPassInfo<PassClass>() "Pass class not > AC> registered!"" failed: file > AC> "/cygdrive/c/llvm/llvm/include/llvm/PassAnalysisSupport.h", > line 76 > AC> Aborted > Same
2014 May 23
1
Samba / Office 2007/2010
Hi all, currently we have troubles with the constellation of Office 2007 / 2010 and samba 3.6.6 on Debian 7.5. I can open a Excel file only one time without a write protection. The File is protected on the second try. I can move and copy the file wihtout any Problems. If I move such a Excel File I can open it again for only one time without a write Protection. I already reseted and checked
2006 May 25
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
The patch is now in. Sorry about the delay! Evan On May 25, 2006, at 10:20 AM, Ashwin Chandra wrote: > Hi Anton, > Is the patch going to be uploaded to the CVS source? > > Ashwin > > > On 5/24/06, Evan Cheng <evan.cheng at apple.com> wrote: > > On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > > > Hello, Ashwin. > > > > You wrote
2017 Sep 29
0
Converting SAS Code
I will offer an opinion, with which others may fairly take issue. If you are coming from SAS and wish to learn R, you should forget about SAS entirely; it is ancient and convoluted. But more to the point, as others have already suggested, you will only confuse and hamstring yourself trying to convert the programming paradigms of one language into another. Better to consider the **tasks** you wish
2006 May 25
3
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi Anton, Is the patch going to be uploaded to the CVS source? Ashwin On 5/24/06, Evan Cheng <evan.cheng at apple.com> wrote: > > > On May 24, 2006, at 5:03 AM, Anton Korobeynikov wrote: > > > Hello, Ashwin. > > > > You wrote Wednesday, May 24, 2006, 11:25:11 AM: > > > > AC> "Pass::getClassPassInfo<PassClass>() "Pass class
2019 Jan 11
4
Solr -> Xapian ?
The below patch resolves the compilation error $ DIFF -P COMPAT.H COMPAT.H.JOAN *** compat.h 2019-01-11 20:21:00.726625427 +0100 --- compat.h.joan 2019-01-11 20:14:41.729109919 +0100 *************** struct iovec; *** 202,207 **** --- 202,211 ---- ssize_t i_my_writev(int fd, const struct iovec *iov, int iov_len); #endif + #ifdef __cplusplus + extern "C" { + #endif + #if
2017 Sep 29
4
Converting SAS Code
Regarding point 3, as a moderator I have been helping Andrew get this post out to the list over the past week. His previous attempts were encoded in some way that the listserv rejected. He sent me the post via his gmail account and viewing the source I saw it had at least both plain test and HTML an I said it was worth a try to post it. Certainly on my mail client his post displays acceptably
2017 Sep 29
2
Converting SAS Code
I wish to second this approach to learning R. I tried for several years to translate other stat programs or provide parallel analyses with R. This dabbling-in-R approach did not work . When a transferred to a research unit that could ill afford commercial software, I devoted my entire time to doing everything in R. This was a difficult learning process, but I eventually became proficient
2006 Mar 22
0
multiple virtual hosts within sigle rails installation
Hello, I''m proting an in-house application to ruby and RoR. The application was in development & production for over 3 years. It''s about 50K LOC in php and python (using twisted.python library). Porting from php to RoR is like a breath of fresh air, and i have been able to ''fake'' most of the twisted.python features I use with ruby. But I''m
2006 May 24
0
[LLVMdev] Error with llc after using llvm-g++ WIN32
Hi All, I'm having an issue with llc. I just updated cvs with latest llvm and llvm-gcc frontend code and compiled and made the binaries. I took a small sample C++ file and compiled it into bytecode with "llvm-g++ -c sample.cpp". Then after using "llc -march=C sample.cpp.bc", I get the following error: llc -march=c KEYFNT.CPP.bc -f assertion
2006 Jan 29
1
ssh.1(may be after 20060106) and .pub files
Quote: ================================================== .... ~/.ssh/identity.pub ~/.ssh/id_dsa.pub ~/.ssh/id_rsa.pub Contains the public key for authentication. These files are not sensitive and can (but need not) be readable by anyone. They are never used automatically and are not necessary: they are only provided for