similar to: Still Having Problems With Password Authentication for 1.9.18p7

Displaying 20 results from an estimated 3000 matches similar to: "Still Having Problems With Password Authentication for 1.9.18p7"

1998 Apr 10
5
Problems with smbpasswd
I've compiled the latest version of samba (1.9.18p4) and set up password encryption (per instructions in the ENCRYPTIONS.txt file). Setting root's smbpasswd worked with no problems. I set another user (me) with an smbpasswd. Tried "smbclient -L '\\hostname\wwinzer'". The output is the following: 68 wwinzer@Sun-E3000:~ ==> smbclient '\\champusa.com\wwinzer'
2023 Apr 04
1
Simple Stacking of Two Columns
Just to repeat: you have NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly")) and you want NamesLong<-data.frame(Names=c("Tom","Dick","Larry","Curly")) There must be something I am missing, because NamesLong <- data.frame(Names = c(NamesWide$Name1, NamesWide$Name2)) appears to
2006 Oct 09
1
patch: mailboxcasecmp()
Here is a patch which adds mailboxcmp() and mailboxcasecmp() functions, similar to mailbox_equals(). Names were chosen to match strcmp() and strcasecmp(). I needed this for Johaness Berg's dspam plugin. It watches a folder "SPAM" and forcing this to be uppercase is unacceptable for me. (I also had to modify the plugin to use the new routine.) It's against dovecot-1.0.beta8
2023 Apr 03
1
Simple Stacking of Two Columns
Hi, You were on the right track using stack(), but you just pass the entire data frame as a single object, not the separate columns: > stack(NamesWide) ? values ? ind 1 ? ?Tom Name1 2 ? Dick Name1 3 ?Larry Name2 4 ?Curly Name2 Note that stack also returns the index (second column of 'ind' values), which tells you which column in the source data frame the stacked values originated
2023 Apr 04
1
Simple Stacking of Two Columns
I may be missing something but using the plain old c() combine function seems to work fine: df <- data.frame(left = 1:5, right = 6:10) df.combined <- data.frame(comb = c(df$left, df$right)) df left right 1 1 6 2 2 7 3 3 8 4 4 9 5 5 10 df.combined comb 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 -----Original
2017 Jun 04
0
Warning from reshape2 when melting a data frame with uneven number of columns.
Is this the solution? > d1<- as.data.frame(lapply(data,as.character),stringsAsFactors=FALSE) > str(d1) 'data.frame': 3 obs. of 5 variables: $ V1: chr "Name1" "Name2" "Name3" $ V2: chr "nam1" "name_12" "name-1" $ V3: chr "nam2" "nam_34" "name-2" $ V4: chr "nam3"
2023 Apr 03
4
Simple Stacking of Two Columns
Hi R-Helpers, Sorry to bother you, but I have a simple task that I can't figure out how to do. For example, I have some names in two columns NamesWide<-data.frame(Name1=c("Tom","Dick"),Name2=c("Larry","Curly")) and I simply want to get a single column
2020 Jul 23
0
Off Topic bash question
On 23/07/2020 15:46, Jerry Geis wrote: Hi Jerry, See below, inline, for some comments. > I have a simple script: > #!/bin/bash > # > index=0 > total=0 > names=() > ip=() > while read -r LINE > do > NODENAME=` echo $LINE | cut -f 1 -d ','` NODENAME=$(cut -d, -f1 <<< $LINE) Notes: use $( instead of backticks. There's no need to quote the
2020 Jul 23
5
Off Topic bash question
I have a simple script: #!/bin/bash # index=0 total=0 names=() ip=() while read -r LINE do NODENAME=` echo $LINE | cut -f 1 -d ','` IP=` echo $LINE | cut -f 2 -d ','` names[index]="$NODENAME" ip[index]="$IP" index=`expr index+1` total=`expr total+1` done <<< $(cat list.txt) simple file: more list.txt name1,ip1 name2,ip2 name3,ip3 output when
2009 Jul 31
1
function problem
I have a series of columns that need to be evaluated in various tables. I need to apply a function in the following manner somers2(name1,name2). name1 is a vector of x inputs for the function which correspond to a vector of y inputs in name2. y<-rep(c(3,4,5,8),6) z<-rep(c(23,24,25,26,27,28),4) name1<-sprintf("Pred_pres_%s_indpdt[,%s,,]",x,y)
2001 May 23
1
Passing a string variable to Surv
Hi, I am trying to write a function to automate multiple graph generation. My data looks like: Table of numeric values with the following headers: timeM1 statusM1 xM1 timeM2 statusM2 xM2 timeM3 statusM3 xM3 1 2 3 4 5 6 Where M1,M2, M3 hve no similarity except they have a max string length of 7. Examples are mcw0045, adl0003, lei0101. Now, what I want to do is Function(M1, M2,
2014 Jun 13
1
Problem copying hard-linked symlinks
This has been niggling me for a while, but am only now getting around to reporting it. I have reproduced the problem with rsync 3.1.0 and nothing in the news file for 3.1.1pre2 looks hopeful... In some filing systems it is possible to have symlinks which are themselves hard linked, i.e. have a link count greater than 1. For example, $ ls -ali /tmp/rsync-in/ total 40 4063036241 drwx------ 2
2003 Feb 21
0
Samba Domain Support Problems
I'm out of ideas here. I'm trying to set up a computer network using samba on Linux as the primary server and a WinXP machine as the client. I'm just beginning with XP, but I've been using Linux and Samba (for Win95/98) for many years now. So, I've set up samba machine "griffon" to support domains... ; Domain Stuff domain master = yes domain logons = yes logon
2017 Jul 16
0
Arranging column data to create plots
On Sat, 15 Jul 2017, Michael Reed via R-help wrote: > Dear All, > > I need some help arranging data that was imported. It would be helpful if you were to use dput to give us the sample data since you say you have already imported it. > The imported data frame looks something like this (the actual file is > huge, so this is example data) > > DF: > IDKey X1 Y1 X2 Y2
2010 May 26
1
Xen guest does not autostart
I have a virtual machine stack which was purely Centos 5.4 the last time I rebooted and experienced this problem: one of the guests does not start automatically after reboot. [root at farm1 xen]# pwd /etc/xen [root at farm1 xen]# ls -l auto total 0 lrwxrwxrwx 1 root root 8 Dec 11 17:25 name1 -> ../name1 lrwxrwxrwx 1 root root 8 May 5 21:10 name2 -> ../name2 lrwxrwxrwx 1 root root 8 Nov
2009 Sep 04
2
transforming a badly organized data base into a list of data frames
Dear R-ers! I have a badly organized data base in Excel. Once I read it into R it looks like this (all variables become factors because of many spaces and other characters in Excel):
2005 Feb 23
1
to print dataframe
Dear all, Is it possible to print a dataframe without the row numbers? For example if I have a dataframe like that: >df <- data.frame(name1=sample(LETTERS,10),name2=sample(c(0,1),10,replace=TRUE)) after printing name1 name2 1 O 1 2 H 0 3 R 0 4 T 0 5 V 1 6 E 0 7 W 0 8 P 1 9 G 0 10 J 1
2008 Oct 22
0
Bug when importing datas with tcltk window (PR#13191)
Full_Name: PREUSS Bastien Version: R version 2.6.2 (2008-02-08) OS: mingw32 Submission from: (NULL) (193.51.249.166) Hello, I wrote a small function using tcltk to import my datasets. When I use it, both the tcltk and the R windows closed themselves. I don't understand why. What is surprising is that it doesn?t happen each time. Most of the time I can't finish the importation of my 3
2000 Apr 07
1
Newbie: Data reading problem
Hello everybody, I'm a new R user and I've got some difficulties to find the right way to read data files. My problem is the following: I have dayly records of different devices (they all have their own name) during a time period (let's say one year). Each device records 6 fields. I would like to consider that one "fellow" is the recording of one to six fields for one
2000 Oct 16
2
renaming an object
Say I have a file called exp.batch which contains 2 cols The first col contains names of R objects the user would like to use. The second col contains the file names which will be read in using read.table i.e. exp.batch may look like this..... name1 complex/filename/path1.txt name2 complex/filename/path2.txt name3 complex/filename/path3.txt name4 complex/filename/path4.txt I want to have a