Displaying 20 results from an estimated 3000 matches similar to: "How to check Release/Version of Currently installed Dovecot"
2006 Sep 25
2
Errors while doing make on Solaris 9 for dovecot-1.0.rc7
Hi,
I have Solaris 9 and I am getting the following errors for dovecot-1.0.rc7 after running
1.configure - No errors see output as attached
2. /usr/ccs/bin/make -- partial output below, complete attached
Thanks,
Lalit
.....
DEPDIR=.deps depmode=none /bin/bash ../../depcomp \
gcc -DHAVE_CONFIG_H -I. -I. -I../.. -std=gnu99 -g -O2 -Wall -W -Wmissing-prototypes -Wmissing-declarations
2012 Dec 24
3
Not able to install puppet enterprise onn agent node using install command.
Hi,
I have created an agent node from a master node using below command.
puppet node_aws create --image ami-cc5af9a5 --keyname icos-client --type
ti.micro
Now as i am trying to install puppet on it using below command
puppet node install \
--install-script=puppet-
enterprise \
--installer-payload=/usr/local/puppet/puppet-2.7.0.tar.gz \
--installer-answers=/usr/local/puppet/agent.txt \
2009 May 09
2
XPS1530 Draft Comments Please
Good morning,
Would anyone with CentOS Wiki experience consider giving feedback on the state of my draft article at?
http://wiki.centos.org/HowTos/Laptops/Dell/XPS_M1530
I will be adding info ref Nvidia graphics card driver, hard drive Load Cycle and hope to have the article completed later today or tomorrow assuming I've not messed something up :-). For now off to boldly go where I've
2009 May 05
1
XPS M1530
Good afternoon,
I'd like to write a Wiki article for the Dell XPS M1530 laptop which will include additional mods eg installation of Nvidia driver, WiFi firmware, laptop hard disk Load Cycle control etc. Can someone get me started?
Username: LalitDhiri
Thanks
--
Lalit Dhiri
Linux the root to no GPFs
_________________________________________________________________
View your Twitter and
2009 May 28
1
XPS M1530 Draft to Complete?
Good morning all,
I have been slowly tweaking the wiki document ref my XPS M1530 and think it's at a stage where I can remove the Draft status. However, before I do this I'd like opinions just in case I have missed something. Anyone care to add anything?
On a seprate note I have been unable to get Bluetooth working under Linux so I will try and get more info as I can. At present I just
2013 Jan 04
4
How to clone alfresco on puppet agents?
Hi,
I have alfresco installed on my puppet master & try to clone it using
puppet console to puppet agent nodes but under ''live management'' link, i
can not see any of package/group/user/host resources named similar to
alfresco even though i can see postgres package resource but no
java/alfresco/tomcat resource?
Can anyone let me know how to clone the same?
Regards.
--
2011 Oct 18
1
Function to "lump" factors together?
Sorry about the odd terminology, but I suspect that my intent might be
completely missed had I used "aggregate" or "classify" (each of which
appears to have some rather special meanings in statistical analysis and
modeling).
I have some data about software builds; one of the characteristics of
each is the name of the branch.
A colleague has generated some fairly interesting
2011 Jan 10
2
Calculating Portfolio Standard deviation
Dear R helpers
I have following data
stocks <- c("ABC", "DEF", "GHI", "JKL")
prices_df <- data.frame(ABC = c(17,24,15,22,16,22,17,22,15,19),
DEF = c(22,28,20,20,28,26,29,18,24,21),
GHI = c(32,27,32,36,37,37,34,23,25,32),
2025 Feb 05
4
Looking for simple line-splitting code
If I have this object:
x <- c("abc\ndef", "", "ghi")
and I write it to a file using `writeLines(x, "test.txt")`, my text
editor sees a 5 line file:
1: abc
2: def
3:
4: ghi
5:
which is what I'd expect: the last line in the editor is empty. If I
use `readLines("test.txt")` on that file, I get the vector
2006 Oct 27
3
Suppress blanks/spaces in character
Hi all
I'm have a character vector and would like to suppress the blanks if there are more than one after the other.
Example:
Character value is: "abc def ghi"
The result should be: "abc def ghi"
I know that it's possible to delete the leading blanks with the command "trim". But how can I delete blanks within a character?
Thank you very much in
2006 Mar 02
0
Help needed on wine
Hi,
We have installed WINE (SFWwine) using package on Solaris 10 i386
platform. While executing the wine it is showing the below errors:
It will be very helpful if you can provide some help on the same ASAP.
Thanks and Regards
-Lalit Aggarwal
root@sunisv-testbox:/export/home/lalit >wine --version
wine: creating configuration directory '//.wine'...
2025 Feb 05
2
Looking for simple line-splitting code
Thanks to Rui, Peter and Tanvir! Peter's seems to be the fastest of the
3 suggestions so far on the little test case, but on the real data
(where x contains several thousand lines), Rui's seems best.
Duncan
On 2025-02-05 9:13 a.m., peter dalgaard wrote:
> This also seems to work:
>
>> strsplit(paste(x,collapse="\n"),"\n")[[1]]
> [1] "abc"
2014 Sep 22
8
[Bug 2280] New: openssh-6.6p1 compression throwing Segmentation fault
https://bugzilla.mindrot.org/show_bug.cgi?id=2280
Bug ID: 2280
Summary: openssh-6.6p1 compression throwing Segmentation fault
Product: Portable OpenSSH
Version: 6.6p1
Hardware: Other
OS: Linux
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh
Assignee:
2005 May 30
4
Very simple traffic shaping script for H.323
Hello -
What I want to do seems very simple - I want to make sure any H.323
traffic gets processed before anything else entering or leaving this
network. The network has a videoconferencing device on the LAN at
192.168.16.4. A Linux firewall NATs an external IP Address to this
internal address and I have appropriate SNAT and DNAT rules that work.
The NAT and connection tracking rules all work
2010 Jul 14
1
Arrange values on a timeline
I have a set of labels arranged along a timeframe in a. Each label has
a timestamp and marks a state until the next label. The dataframe a
contains 5 such timestamps and 5 associated labels. This means, on a
continious scale between 1-100, there are 5 markers. E.g. 'abc' marks
the timestampls between 10 and 19, 'def' marks the timestamps between
20 and 32, and so on.
a <-
2025 Feb 05
1
Looking for simple line-splitting code
On Wed, 5 Feb 2025 08:44:12 -0500
Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
> If I have this object:
>
> x <- c("abc\ndef", "", "ghi")
>
> and I write it to a file using `writeLines(x, "test.txt")`, my text
> editor sees a 5 line file:
>
> 1: abc
> 2: def
> 3:
> 4: ghi
> 5:
>
2020 Jan 27
3
Custom Alloca implementation
---Adding llvm-dev list to CC---
Hi Alberto,
Thanks for your prompt reply. Actually, I need this information(about total
allocation size and object structure) on runtime, so that is why I was
planning to encode this info and store it in the memory itself.
Regards,
Udit
On Mon, Jan 27, 2020 at 7:05 PM Alberto Barbaro <barbaro.alberto at gmail.com>
wrote:
> Hello Udit,
> I'm not
2025 Feb 05
1
Looking for simple line-splitting code
A 3rd option could be
scan(text=x, what="", blank.lines.skip=FALSE)
(all because readLines() doesn't obey the text=x convention, perhaps it should? I'm unsure whether the textConnection is left open in Rui's method.)
-pd
> On 5 Feb 2025, at 15:35 , Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
>
> Thanks to Rui, Peter and Tanvir! Peter's seems
2012 Aug 27
4
?nchar ?strsplit
Hi, my data frame is
x<-data.frame(ID=c("abc/def","abc/def/ghi","abc","mno/pqr/st/ab"))
I want to split my column ID using "/" as the place to split. How can I do that without telling the code how many sub-columns. I could use nchar(gsub("[^/]","",x$ID)) to get how many "/" are in each row of the column, but could
2025 Feb 05
1
Looking for simple line-splitting code
This also seems to work:
> strsplit(paste(x,collapse="\n"),"\n")[[1]]
[1] "abc" "def" "" "ghi"
> On 5 Feb 2025, at 14:44 , Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
>
> If I have this object:
>
> x <- c("abc\ndef", "", "ghi")
>
> and I write it to a file