search for: aba

Displaying 20 results from an estimated 60 matches for "aba".

Did you mean: abba
2019 Jan 29
3
Samba and UFW
Here is the ufw.log after enabling logging medium and trying to connect to the windows net. Unfortunately the web Microsoft page is in German. I think it says window uses smb1 syntax. Jan 27 15:11:09 martin-RB042AV-ABA-a1410y kernel: [ 887.241685] [UFW BLOCK] IN=enp2s5 OUT= MAC=00:19:21:a2:11:5e:74:27:ea:ab:1e:e0:08:00 SRC=192.168.254.15 DST=192.168.254.39 LEN=90 TOS=0x00 PREC=0x00 TTL=128 ID=10646 PROTO=UDP SPT=137 DPT=52944 LEN=70 Jan 27 15:11:21 martin-RB042AV-ABA-a1410y kernel: [ 899.315443] [UFW BLOCK] I...
2019 Jan 28
1
Samba and UFW
...controller", "active # directory domain controller". # # Most people will want "standalone sever" or "member server". # Running as "active directory domain controller" will require first # running "samba-tool domain provision" to wipe databases and create a # new domain. server role = standalone server # If you are using encrypted passwords, Samba will need to know what # password database type you are using. passdb backend = tdbsam obey pam restrictions = yes # This boolean parameter controls whether Samba a...
2007 Aug 07
3
About grep
Hi,everyone. I have a problem when using the grep. for example: a <- c("aa","aba","abac") b<- c("ab","aba") I want to match the whole word,so grep("^aba$",a) it returns 2 but when I used it a more useful way: grep("^b[2]$",a), it doesn't work at all, it can't find it, returning integer(0). How can I chang the...
2010 Aug 04
6
applying strsplit to a whole column
I am sorry, I'd like to split my column ("names") such that all the beginning of a string ("X..") is gone and only the rest of the text is left. x<-data.frame(names=c("X..aba","X..abb","X..abc","X..abd")) x$names<-as.character(x$names) (x) str(x) Can't figure out how to apply strsplit in this situation - without using a loop. I hope it's possible to do it without a loop - is it? Thanks a lot! -- Dimitri Liakhovitski Nin...
2008 Jul 12
0
ABA's Brain Explorer
...ng on the buttons as they are displayed on the erroneously blitten viewport just clicks to the apps underneath on the other layers accessible via the typical ALT+TAB setup. There's all sorts of graphical issues with dragging the window around, even when not in wine virtual desktop mode the ABA Brain Explorer window has issues keeping 'clean' and free of parts of the bitmaps of the other windows. When not in virtual desktop mode, the 'viewport' is no where on either of my two screens. Maybe the two screens are influencing things? Here's how I am configuring them: x...
2012 Aug 14
0
SayUnixTime quandry
Hi Gang, Hopefully somebody out there has a "doh" for this one. My dialplan announces the date and time using SayUnixTime. When I run this: exten => 36225,1,Set(ABA=999999999) exten => 36225,n,Background(telbank/${ABA}/${CHANNEL(language)}/thetimeis) exten => 36225,n,sayunixtime(,,Abe 'digits/at' IMP) I get this CLI output -- Executing [36225 at default:1] Set("SIP/sipuser-00000001", "ABA=999999999") in new stack...
2004 Aug 30
3
cannot access files after update samba 3.0.5 -> 3.0.6 (Redhat 6.2)
Redhat 6.2 kernel 2.2.14-12 Samba 3.0.6 compiled with ./configure --prefix=/usr/local/samba --localstatedir=/var/log/samba --with-lockdir=/var/lock/samba --with-privatedir=/etc/rc-abas.d --with-configdir=/etc/rc-abas.d --enable-debug I can list directories and write files on a samba share but cannot read files. This happens with Windows XP client or smbclient. After downgrading to 3.0.5 samba works fine again. It seems to be a Redhat 6.2 problem. On a second computer with Red...
2016 Jun 04
0
factors with non-unique ("duplicated") levels have been deprecated since 2009 -- are *more* deprecated now -- and why you should be hesitant misusing suppressWarnings()
...s will be deprecated from R version 2.10.0 on ... indeed a while ago. As factors are not S4 objects, there is no really formal class definition and no inherent class validation, but even then in 2009, we had changed `levels<-` such that it raised a warning when the levels were not unique: > aba <- c("a","b","a"); x <- factor(aba, levels=aba) Warning message: In `levels<-`(`*tmp*`, value = if (nl == nL) as.character(labels) else paste0(labels, : duplicated levels in factors are deprecated > We've finally decided to make this an error in R-d...
2008 Mar 12
3
Converting a data frame with values into a matrix/
Dear Group, I have a data frame like the following: x <- c("Mike","A",0.01) x1 <- c("Carl","A",0.2) x2 <- c("Gene","C",0.3) x3 <- c("James","A",-0.3) x4 <- c("Dough","B",0) xx <- rbind(x,x1,x2,x3,x4) colnames(xx)<-c("Name","Class","NES") xx
2008 Jul 12
1
ABA's Brain Explorer and the OpenGL offset problem
I've seen reports on appdb of SketchUp having the same problems. Have these been resolved yet? I think this has been called the "OpenGL offset problem". http://appdb.winehq.org/objectManager.php?sClass=version&iId=6842&iTestingId=21368 > B) The area between the window pane and the edge of the OpenGL window > never updates, collects copies of other windows, is
2019 Jan 29
2
Samba and UFW
...er the network is mounted I still can browse it. Samba is running as a stand alone server on a Linux PC. OS is Mint 19.1. I have no problem accessing the Linux PC from it's console. That is the one I'm trying to connect to the windows network and another PC running Mint 18.1. martin-RB042AV-ABA-a1410y is the Linux computer's name. I have reset the netbios name to OFFICE which is the name of the Windows PC. Also rest workgroup to WORKGROUP. I do not see any reference to host name in smb.conf. Do I have to add it? What about sambapsswd should I add Linux user there? Windows feature...
2018 Mar 24
0
How to integrate a dynamic code within a R script?
Hi, I am working on a script which should includes a dynamic listing, i.e. # SCRIPT BEGINS # some R procedures here # DYNAMIC PART BEGINS d1$X5 <-f1("AAA") d1$X5 <-f1("AAa") d1$X5 <-f1("ABa") # etc... d1$X6 <-f2("AAA") d1$X6 <-f2("AAs") d1$X6 <-f2("ABs") # etc... # DYNAMIC PART ENDS # other procedures here # SCRIPT ENDS Basically I have an Excel page with a quite long listing of "AAA", "AAa", "ABa", "ccc...
2018 Oct 03
1
2038 year Problem
...entos.org> wrote: > > > From: Johnny Hughes <johnny at centos.org> > To: centos at centos.org > Message-ID: <fd4926e4-5430-7203-8f51-07d6ec4df2de at centos.org> > Subject: Re: [CentOS] 2038 year Problem > References: <8831B7AE-76C1-4CF1-815C-EF52D4C5DE10 at abas.de> > In-Reply-To: <8831B7AE-76C1-4CF1-815C-EF52D4C5DE10 at abas.de> > > On 10/02/2018 12:41 PM, Johann Fock wrote: > > Hallo > > Im using CentOS 7 > > Ist the 2038 year Problem solved in CentOS 7.5 64 bit Version > > > > Well, CentOS-7 will be EO...
2019 Jan 30
6
Samba and UFW
Rowland, The computer name 'martin-RB042AV-ABA-a1410y' was set by Linux Mint when it was installed. I'm not sure I can change it. I check it on the Mint forum. I'll turn off the smb... feature and see what happens. Yes the ports listed below are open and set to pass through the firewall. Should I unset the netbios name". Going...
2019 Jan 29
2
Samba and UFW
...1.19 um 16:39 schrieb Marty via samba: >> Here is the ufw.log after enabling logging medium and trying to connect to >> the windows net. Unfortunately the web Microsoft page is in German. I think >> it says window uses smb1 syntax. >> >> Jan 27 15:11:09 martin-RB042AV-ABA-a1410y kernel: [ 887.241685] [UFW BLOCK] >> IN=enp2s5 OUT= MAC=00:19:21:a2:11:5e:74:27:ea:ab:1e:e0:08:00 >> SRC=192.168.254.15 DST=192.168.254.39 LEN=90 TOS=0x00 PREC=0x00 TTL=128 >> ID=10646 PROTO=UDP SPT=137 DPT=52944 LEN=70 >> >> Jan 27 15:11:21 martin-RB042AV-AB...
2007 Jan 09
1
no linear model with many objects
Hi all, Is any way to estimate the parameters of a curve, not manualy, from many subsets of my dataset [[alternative HTML version deleted]]
1999 Nov 25
0
option -l of smbd ignored
...ed to the variable debugf. Then debugf is initialized with SMBLOGFLE (default value). "log file" in the configuration file works. Wolfgang Kretzschmar -- +--------------------------------------------------------------------+ | Wolfgang Kretzschmar email: Wolfgang.Kretzschmar@abas.de | | ABAS Software AG web : http://www.abas.de | | S?dendstr. 42 | | 76135 Karlsruhe | | Germany | +-------...
2018 Oct 02
11
2038 year Problem
Hallo Im using CentOS 7 Ist the 2038 year Problem solved in CentOS 7.5 64 bit Version Thanks Johann Fock Von meinem iPad gesendet
2006 Sep 14
2
More problems with samba 3.0.23c and NT4
...stations with SP6a. I have upgraded from samba2. 1. The ntconfig.pol from the netlogon-share does'nt work. I get a prf1.tmp in the User-Profile-Folder and the policy wouldn't mix to the registry. In the Event-Log I found an entry "RegLoadKey ist mit dem Fehler 87 f?r C:\WINNT\Profiles\aba\prfD.tmp gescheitert." EventId:1000 from Userenv. The same with an XP-computer works without problems. 2. I haven't the security-tag in the property-window of a file or directory on the samba-shares. The tab is there under winxp but not in NT4. Is there something broken?? Thanks, Andr...
2005 Jan 23
2
logcheck-database -- volatile?
...unced for packages that have need for frequent changes [see below]. In theory, we should not have to update logcheck rules in Sarge, because we know that it's packages, with the exception of security updates will remain constant. This does not change the fact that we may wish to update the database on sarge <: Any thoughts? -Todd ----- Forwarded message from Andreas Barth <aba at not.so.argh.org> ----- Old-Return-Path: <aba at not.so.argh.org> X-Original-To: debian-devel-announce at lists.debian.org From: Andreas Barth <aba at not.so.argh.org> To: debian-devel-annou...