Displaying 20 results from an estimated 64 matches for "etcetera".
2009 Jul 09
3
Add instantly active local user accounts *with* password using useradd -p option ?
Hi,
I need to setup a load of user accounts on a series of machines, for
testing purposes. I'm using a script to do this, but the only problem I
have so far: I have to activate them all manually by doing passwd user1,
passwd user2, passwd user3, etcetera. The useradd man page mentions a -p
option to define a password, but I can't seem to get this to work.
Here's what I'd like to be able to do:
# useradd -c "Gaston Lagaffe" -p abc123 -m glagaffe
And put that line in a script, so the account is *instantly* activated.
I trie...
2008 Sep 01
1
Suspected Bug with " bin/linux/ubuntu dapper/" installation
...inux/ubuntu dapper/"
installation binaries, I show an extract from my Ubuntu(dapper)
terminal console below----
# Attempted unsuccessful installation copy from terminal--
root at ubup:/etc/apt# sudo apt-get update
root at ubup:/etc/apt# sudo apt-get install r-base
..........downloaded text etcetera........................
.......... downloaded text etcetera....................
"
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have...
2011 Apr 22
3
sieve & plus addressing
...ivered-To: me+dovecot at domain.com when I receive it. The "To"
is to dovecot. I cannot figure out a way to get sieve to filter on the
"Delivered-To" portion rather than the "To" portion using plus
addressing. There are several other names; i.e, john, joe, bill, nancy,
etcetera that would have the plus suffix of (in this scenario anyway)
dovecot. Filtering on each individual address would be a real PIA. I
believe it is not supported though.
EXAMPLE:
This works fine when filtering on the "To" attribute:
Assuming email address: me+dovecot at domain.com
## Plus...
2005 Aug 23
2
OH323 with Asterisk@home - seems incomplete
...whether this
was "normal" - doesn't seem like it is to me.
Naturally, I'm apprehensive that editing the .conf files manually may be
overwritten by AMP, but even if not, it would seem like it should've been
the norm to have "added" an entry like oh323 to SIP, IAX2 etcetera types of
trunks. Also, extension types (which work from a drop-down list) should have
been modified.
I would appreciate if someone familiar with the application could inform
whether this is "normal" before I attempt to add extensions and trunks
manually.
-------------- next part ----...
2003 Feb 17
1
R environment advice?
...lt;- odbcConnect(yada, yada, yada)
surveyresults <- (channel, select * from sometable)
multiresults <- (channel, select * from othertable)
multiresults.columnname <- multiresults[,1] # or column 2 or 3 or 4 or
so on...
multiresults.columname.table <- table(multiresults.columnname)
etcetera, etcetera.
I would like to create a single file that I could share that would load
this environment up for a new R user for this dataset. If any of you
wouldn't mind taking the time explaining how you would go about doing
something like this, I would appreciate it.
Also, does anyone know if...
2008 Jan 14
1
a way to interrupt a stuck R session on OSX
Discovered by accident:
If your R session has become unresponsive to escape presses etcetera,
you can try this.
Open a terminal window, run the command
ps -ax | grep R.app
Note the process ID number in the first column. Say it's 1234.
Then run
kill -4 1234
The key is that the signal you are sending to R.app is "4".
The Console will now ask you how you want to exit...
2009 Nov 30
1
error when installing Rcmdr / tcltk on a Apple laptop
...cltk/libs/i386/tcltk.so':
dlopen(/Library/Frameworks/R.framework/Resources/library/tcltk/libs/
i386/tcltk.so, 10): Library not loaded: /usr/local/lib/libtcl8.5.dylib
Referenced from: /Library/Frameworks/R.framework/Resources/library/
tcltk/libs/i386/tcltk.so
Reason: image not found
etcetera
Can anyone give me a clue?
Thanks,
Karin Oudshoorn
2004 Dec 27
0
[chan_capi] can't get it compiled
...: warning: implicit declaration of function `capi20_get_profile'
chan_capi.c:2793: warning: passing arg 4 of `ast_channel_register'
from incompatible pointer type
chan_capi.c: In function `unload_module':
chan_capi.c:2811: warning: implicit declaration of function `capi20_release'
etcetera, etcetera
I hope someone have a real working solution :)
Best regards,
Peter
2014 Jul 03
1
stripping extension from domain name
...domain. Is there any way to use
just the domain name sans its extension.
EXAMPLE:
example.com ==> example
Also, I have a lot of logging going on in my dovecot log file. I want to
limit it to just the barest amount, such as indicting what mail box mail was
delivered to. Authentication errors, etcetera should only be shown if an
error occurs. Is this possible?
Thanks!
--
Jerry
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 473 bytes
Desc: not available
URL: <http://dovecot.org/pipermail/dovecot/attachme...
2010 Jun 01
1
mvbutils and trackObjs
Hello Colleagues,
I've recently become a fan of Mark Bravington's mvbutils package for organizing analysis projects in a tree.
Using cd(), Save(), fixr(), mlazy() etcetera solves nicely some of the nuisances that have worried or annoyed me and sometimes caused
big problems over the years. Well thought out.
Now one feature that would be fabulous would be automatic time-stamping of objects.
The trackObjs package from provides this, among other services.
The questio...
2013 Feb 14
1
Puppet Enterprise Live Management
...e set up is doing fine as well, it seems the Live
Management part is not. When I click on the Live Management tab it only
shows a ''loading'' bar, and nothing happens after, even when I wait for over
an hour...
The tarball for Puppet ENterprise has configurations for mcollective
etcetera built in, so the puppet runs on teh puppetmaster have already
configured the stuff. Assumingly correct...
Is there a configuration part that I''m missing? Is it a browser problem?
Has anyone encountered the same problem using the latest PE downloads?
I''ve been digging through p...
2008 Jan 08
1
storing matrices in a list or vector and preserve dimensions
...rectly inserting it from the beginning
# (e.g., code to be used in a for-loop)
my_list <- append(my_list,as.matrix(my_matrix_object1));
my_list <- append(my_list,as.matrix(my_matrix_object2));
However, this results in the following list structure...
[[1]]
[1] 1
[[2]]
[1] 1
[[3]]
[1] 1
... etcetera,
whereas I just want to preserve the matrix structure in my list:
my_matrix_object1;
[,1] [,2] [,3]
[1,] 1 1 1
[2,] 1 1 1
[3,] 1 1 1
,
[,1] [,2] [,3]
[1,] 0 0 0
[2,] 0 0 0
[3,] 0 0 0
I guess I need a more sophisticated function th...
2007 May 15
3
Introduction
...me more CentOS-specific docs. I have
a list of 40 or so items that I will have to take care of in the
following days or weeks, maybe months: "minimal install?", "yum?",
"configure wireless rt2500, rt61, ipw3945?", "find extra repos for
multimedia stuff?", etcetera. I just went to take a peek at IRC, and
"Arrfab" told me the main communication channel for CentOS was this
mailing list.
Cheers from France,
Niki Kovacs
--
Dyslexics have more fnu.
2008 Nov 25
2
adduser vs. useradd
...ou don't have to memorize all the 'useradd'
switches, CentOS' 'adduser' is a mere symbolic link to 'useradd'.
But when I add a new user (# adduser newuser), I don't use any switches,
say to specify the shell, the home directory, the password expiration
delay, etcetera. I understand that it is Red Hat (CentOS) tradition to
create a separate group for each user. For example, user kikinovak also
belongs to a group kikinovak. And when I create a new user 'newuser',
the 'newuser' group also got somehow created. Plus, the new user also
seems to hav...
2009 Nov 30
1
Change system-wide default configuration for FF and OO with /etc/skel
...what
it looks like: http://www.microlinux.fr/captures.html).
For every app I install, I try to configure a sensible default
configuration system-wide for all users. For example, once I found a
nice configuration for XMMS (default skin, loads of plugins, orange On
Screen Display in a nice font, etcetera), I put my whole ~/.xmms in
/etc/skel, so that every new user on the system will have the same
default configuration. I have a script which does that for most of the
applications I install for users. Even my GNOME desktop is heavily
tweaked, and similarly, there's a default /etc/skel/.gconf...
2006 Jul 12
2
Cannot uninstall wine; failed dependencies
I recently installed SuSE 10.1 for the first time (I'm completely new
to Linux).
Wine was installed with it, but i'm not sure what version, or what
directory it was installed to.
To be safe I thought it'd be best for me to uninstall wine completely,
and reinstall the latest version.
I went to what I think is the correct directory (/usr/lib/) and did
'make uninstall wine' and
2007 Jun 14
1
Wilcoxon test on data matrix
...a: newX[, i] and data.matrix.1
W = 7585, p-value = 1
alternative hypothesis: true location shift is less than 0
$`2`
Wilcoxon rank sum test with continuity correction
data: newX[, i] and data.matrix.1
W = 6700, p-value = 0.9983
alternative hypothesis: true location shift is less than 0
Etcetera for each row of the data matrix.
I can get the p value for one row (gene) using:
rawp.1 <- rawp$'1'$p.value
But how can I get these p-values in one list? I have tried:
rawp <- NULL
for (i in 1:42) {
a <- paste("'", i, "'", sep="")
rawp <...
2008 Oct 02
4
"Xiph needs someone to help with assembly for MSVC!"
Hello,
I write to you for the announcement in this blog:
http://blog.hartwork.org/?p=86.
I am interested in the open-source solution proposed in this article
(the preprocessor-macros solution).
Have you solved the problem?
Does the offer still stands?
Kind Regards,
Fernando Pelliccioni.
Buenos Aires, Argentina
2010 Nov 04
1
Best Fit line trouble with rsruby
...as the .c function
didn't seem to store things as an array, I thought that might work, it
didn't, as it does store data as an array).
So basically I'm stuck. Not sure if anyone has any experience with rsruby,
but any help would be appreciated. I'm pretty sure the fit =
graphData.lm(etcetera) line is where the trouble is, but not sure how to
handle it.
--
View this message in context: http://r.789695.n4.nabble.com/Best-Fit-line-trouble-with-rsruby-tp3026437p3026437.html
Sent from the R help mailing list archive at Nabble.com.
2010 Mar 19
2
Using DTrace in 32-bit to handle 64-bit parameters [72631230]
Hi all,
OK, so this at first looked like a clear cut "Don''t do it, or at worst
handle the results" issue my customer has come to me with, but the more
we discuss it, the more it looks like we should have better ways of
dealing with this issue.
> We have user defined dtrace probe points in the application which use
> as parameter 64 bit values:
>
> provider adv {