similar to: WINE

Displaying 20 results from an estimated 1000 matches similar to: "WINE"

2014 May 31
1
CentOS 6 KVM networking: What am I missing???
OK, I have a strange problem. It is probably something simple/stupid, but I cannot figure it out. I have a nice new PowerEdge T20 that I installed CentOS 6 (6.5) on with Virtualization (KVM). I then installed Ubuntu 14.04 in a virtual machine, with a bridged network: ------ begin ub140464.xml------------------ <domain type='kvm' id='2'>
2010 Jul 15
1
Proper use of grep
I just need to confirm something with pattern matching folks. I have a factor with the following levels in a very large data set: > levels(all$Classical.Statistic) [1] "" "AB;ABD" "CollapsedSteps" "CR_P" "CR_Prop;CR_P;AB" [6] "NMK"
2006 May 09
3
remove Punctuation characters
Hi, I want to remove all punctuation characters in a string. I was trying it use a regular expressions but it doesn't work. Here is a sample os what i want: str <- 'ABD - remove de punct, and dot characters.' str <- gsub('[:punct:]','',str) str "'ABD remove de punct and dot characters" is there any function that do this kind of thing? Thanks to
2011 Oct 18
4
[LLVMdev] llvm_cross_compile
Hi I want to cross-compile llvm  for  arm board , running llvm on  Ububtu Server 11.04  x86_64  thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20111017/178ae8fe/attachment.html>
2008 Feb 27
13
Mailing list <-> forum gateway
Hi all, First off - this is not flame bait or a troll. It's a genuine question. Since the forum gateway was introduced, it is my opinion that this list is getting flooded with newbie questions. Check the "I just installed Ubuntu" thread for a typical example. I wish to silently remove all wine-forum posts and their replies from my inbox. I plan to filter based on From:
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
2005 Jul 15
1
No more able to change ACL From Windows ??
I don't know what I've changed, but I'm no more able to change the rights from windows. It already worked for a couple of week... Is something wrong with my smb.conf ? [global] unix charset = LOCALE workgroup = NT1 realm = NT1.LOCAL server string = Linux Datei Server security = ADS #winbind use default domain = yes #username map = /etc/samba/smbusers acl compatibility = win2k nt acl
2005 Nov 09
2
Sort a dataframe
Dear All, How can I sort a data frame (using one of the column)? Thanks for your support. Regards. Abd. Rahman Kassim (PhD) Head Forest Ecology Branch Forest Management & Ecology Program Forestry and Conservation Division Forest Research Institute Malaysia Kepong 52109 Selangor, Malaysia ***************************************** Checked by TrendMicro Interscan Messaging Security. For any
2005 Nov 10
2
polynomials transformation
Dear All, Need some help in polynomials transformation to get the coefficients. I have tried "poly.transform" as applied in S-plus but it does not work. Thanks in advanced for any helps. Regards. Abd. Rahman Kassim (PhD) Head Forest Ecology Branch Forest Management & Ecology Program Forestry and Conservation Division Forest Research Institute Malaysia Kepong 52109 Selangor,
2011 Sep 14
4
Reading large, non-tabular files
Dear R-help, I have a very large ascii data file, of which I only want to read in selected lines (e.g. on fourth of the lines); determining which lines depends on the lines content. So far, I have found two approaches for doing this in R; 1) Read the file line by line using a repeat-loop and save the result in a temporary file or a variable, and 2) Read the entire file and filter/reshape it using
2018 May 08
3
Samba4 on Ubuntu 18.04
I was trying to get Samba4 [as a DC] setup on Ubuntu 18.04 However, I'm having quite a lot of difficulty. Has anyone successfully setup a samba4/adc on Ububtu 18.04 - and if so, have a quick walk-through. It would save me a lot of time, I expect. [Yeah, I know 18.04 has been out all of a week, but someone has to go first!] TIA -Greg
2006 Jan 19
2
Legend Outside Plot Dimension
Dear All, I'm trying to attach a legend outside the plot (Inside plot OK), but failed. Any help is very much appreciated. Thanks. Abd. Rahman Kassim, PhD Forest Management & Ecology Program Forestry & Conservation Division Forest Research Institute Malaysia Kepong 52109 Selangor MALAYSIA ***************************************** Checked by TrendMicro Interscan Messaging Security.
2013 Apr 15
2
Moving mail servers, moving mailboxes
So, I've done some searching - but search terms are hard to come by, that work, for this query. In short, migrating a RHEL 5.9 server running the back-ported Dovecot 1.0.7 To: Ububtu 12.04 with 2.0.19, I believe. [I'm not against compiling a more recent version if there's some real advantage to doing so. But I'd certainly prefer to stay with the packaged version.] Most users are
2005 Mar 02
1
AW: Samba - NT ACL implemented by Unix Posix ACL via Samb a
I'm not an expert on that, but did you tried the following settings on smb.conf for your share : admin users = NTDOMAIN+Administrator valid users = ..... I think this is necessary to use ACL with samba and ntdomain... -----Urspr?ngliche Nachricht----- Von: Gerald (Jerry) Carter [mailto:jerry@samba.org] Gesendet: Montag, 28. Februar 2005 16:43 An: Juer Lee Cc: samba@lists.samba.org Betreff:
2006 Apr 06
3
Wine and AMD 64 in Suse 9.3
Hi. I have to use a comercial Windows software in my work, called Cosilab. Last two months I was using Debian and wine 0.9.1 and everything went perfect. The Program works fine under wine and I haven't got any problems. Now I've updated my computer to an AMD64 with 2Ghz Processor and I do not know if the problem with wine is caused by the 64 bits processor or why... I try to run the
2012 May 30
2
Sorting a data set
I am a novice user of R and am stumbling on how to order a dataset produced during my session. I have a 1863 row X 14 column dataset that I want to put out to a file. I want the output sorted by the first column and then by the second column both in ascending order. The first column is character and the second is numeric (I hope). I used an "as.numeric" function to assign that
2008 Mar 19
5
Wine
i'm working in a government. It's SD.NET. Nobody would know about it Code: linux-c5xy:~ # wine --version wine-0.9.57
2003 Jul 17
3
how to divide a string into characters? - for comparing strings that is
Hi I am searching for a way to do something like "ABC" -> c("A","B","C"). How can this be accomplished? I tried cut() and split(), but they do something else, it seems. The purpose for doing this is to find the number of common (and uncommon) characters, i.e. ultimately I want something like this: > foo("ABD","ADE") c(2,1) # 2
2013 Apr 03
3
Deviance in Zero inflated models
Dear list, I am running some zero inflated models and would like to know what the deviance of the models. Unlike running a normal GLM where the deviance is displayed in the summary all that is displayed in a summary of the zero inflated model is the log likelihood. I hope this isn't a read the manual question, and if it is I apologize for wasting your time, but if you could still send me a
2020 Feb 27
5
User names not replicating to secondary DC
I have 2 Ububtu DCs. One acting as a secondary/failover. At one point the users were replicated from primary to secondary. But now they are not replicating. The output from samba-tool drs showrepl is attached. What else may I provide to aid diagnostics? I know Samba does not replicate sysvol 'yet', so rsync is needed, but that does not seem to contain the users. Thank you,