similar to: [newbie] couple of quick questions

Displaying 20 results from an estimated 3000 matches similar to: "[newbie] couple of quick questions"

2004 Aug 06
0
[newbie] couple of quick questions
Thanks - for the info - compiling ices now Dave <p><p><p>> -----Original Message----- > From: Geoff Shang [mailto:gshang@uq.net.au] > Sent: 23 December 2002 17:02 > To: 'icecast@xiph.org' > Subject: Re: [icecast] [newbie] couple of quick questions > > > On Mon, 23 Dec 2002, Campbell, David wrote: > > > 1: Do I need 'shout' to
2004 Aug 06
1
Ices won't read config file?
Hope this list is for ices support too :) When I try and start ices with a simple config file it barfs and isn't happy [root@deskpro bin]# ./ices -c /usr/local/icecast/etc/ices.conf Cannot use config file (no XML support). Ices Exiting... But if I pass basically all the same paraemters via the command line it's fine streams PERFECTLY! [root@deskpro bin]# ./ices -P passwd -F
2004 Aug 06
1
Ices won't read config file?
I'm on redhat and libxml2 is installed: [root@deskpro davidcam]# rpm -Uvh libxml2-2.4.23-1.i386.rpm warning: libxml2-2.4.23-1.i386.rpm: V3 DSA signature: NOKEY, key ID db42a60e Preparing... ########################################### [100%] package libxml2-2.4.23-1 is already installed I complied ices/icecast fromm src - do I need any addtitional flags in ./configure?
2004 Aug 06
0
Ices won't read config file?
Yup I have the devel package installed too. [root@linux1 davidcam]# rpm -Uvh libxml-devel-1.8.17-1.i386.rpm warning: libxml-devel-1.8.17-1.i386.rpm: V3 DSA signature: NOKEY, key ID de95bc1f Preparing... ########################################### [100%] package libxml-devel-1.8.17-1 is already installed Thanks Dave <p>-----Original Message----- From: Geoff Shang
2004 Aug 06
0
Ices won't read config file?
> Do you also have the devel package? yes I do Dave -----Original Message----- From: Geoff Shang To: ''icecast@xiph.org' ' Sent: 12/26/02 6:58 AM Subject: RE: [icecast] Ices won't read config file? On Wed, 25 Dec 2002, Campbell, David wrote: > I'm on redhat and libxml2 is installed: > > [root@deskpro davidcam]# rpm -Uvh libxml2-2.4.23-1.i386.rpm >
2004 Aug 06
0
ogg vorbis codec for windows media player?
> Get them to use winamp How amusing - you really are a funny guy, no really you are - honestly DC > -----Original Message----- > From: Jim Bailey [mailto:jim@freesolutions.net] > Sent: 16 January 2003 15:23 > To: icecast@xiph.org > Subject: Re: [icecast] ogg vorbis codec for windows media player? > > > On Thu, Jan 16, 2003 at 12:58:14PM +0100, Akos Maroy wrote:
2004 Aug 06
5
Freedomaudio player
Hi folks Got Icecast2 running on Redhat8 with IceS2 as a source, streaming some OGG files. All works nicely (not _especially_ reliable :) but it seems to lock up the Freedomaudio java player between tracks. Everytime a new file begins, the player stops and says 'Loading'. I'm wondering if it's somehthing to do with metadata - is there a way of disabling metadata from IceS2? (i.e.
2004 Aug 06
0
Freedomaudio player
On 2002.11.11 10:16 Leo Currie wrote: > Hi folks > > Got Icecast2 running on Redhat8 with IceS2 as a source, streaming some OGG > files. All works nicely (not _especially_ reliable :) but it seems to lock > up the Freedomaudio java player between tracks. Is it just the java player that seems to be unreliable. There is a couple of outstanding bugs in ices for network socket error
2004 Aug 06
0
Freedomaudio player
On Mon, 11 Nov 2002, Leo Currie wrote: > Got Icecast2 running on Redhat8 with IceS2 as a source, streaming some OGG > files. All works nicely (not _especially_ reliable :) Do you have any reliability issues other than what you've mentioned? for the most part, I've found ices and icecast to be pretty stable. > but it seems to lock > up the Freedomaudio java player between
2003 Jul 19
1
SOS
Good evening every body, I am a new one of this mail list. In my project I have faced a problem. That is when I copied my files from windows2000srv to redhat8 Linux or from redhat8 to windows2000srv by samba(the quantity of file is 26200 and the size is about 750MB) I found that about 10 files lost. The quantity of lost file is changed every time. Would you like to help me? Is this a problem of
2004 Nov 10
1
Program for encrypt passwords
Hello! At the University of Granada (Spain) we use a Samba Server for aprox. 1000 users and runs ok. But (there's always a but) we need to know how encript password for the smbpasswd file. I know that we can use the smbpasswd program but we need get the encrypted password in the stdout. Has someone a program than does this?? TIA.
2007 Sep 27
1
A matrix multiplication
Dear all, I'm having trouble using the 'apply' function to multiply some arrays. Let A be a 500x2 array and B a 500x3 array. I need a vector C which has 6 columns being the first three the result of A[,1] * B and the second three the result of A[,2] * B. What is the most efficient way to express that? I'm trying to use 'apply' with no success... Thanks for your
2008 Sep 30
1
ordering problem
Hi there! I need some assistance here with vector orderings. I have a set of q vectors of length p, grouped by rows in a matrix A, q?p, that I need to order lexicographically (http://en.wikipedia.org/wiki/Lexicographical_order). I also have another matrix B, p?r, and a vector c, that should be ordered according to the order of A. So far, I was doing ordering <-
2007 Apr 06
4
Computing the rank of a matrix.
Hi! Maybe this is a silly question, but I need the column rank (http://en.wikipedia.org/wiki/Rank_matrix) of a matrix and R function 'rank()' only gives me the ordering of the elements of my matrix. How can I compute the column rank of a matrix? Is there not an R equivalent to Matlab's 'rank()'? I've been browsing for a time now and I can't find anything, so any
2008 Aug 15
2
Combination with repetition
Hi there! I can't find any information about creating combinations with repetitions in R. The function combn() does create combinations, but _without_ repetitions. Here is what I need to do: svIter <- 1000 xx <- matrix(rnorm(m*n), c(m, n)) sequence <- seq(range(xx)[1], range(xx)[2], length.out = svIter^(1/q)) expand.grid(secuence, secuence, .../q times/..., secuence) That is,
2007 Sep 07
2
Matlab's lsqnonlin
Hi! I'm translating some code from Matlab to R and I found a problem. I need to translate Matlab's function 'lsqnonlin' (http://www-ccs.ucsd.edu/matlab/toolbox/optim/lsqnonlin.html) into R, and at the beginning I thought it would be the same as R's 'optim'. But then I looked at the definition of 'lsqnonlin' and I don't quite see how to make
2000 Jun 13
2
Openssh-2.1.1p1 and solaris 7/8
Hello, I just installed the above openssh onto a Sun Solaris 7 and Solaris 8 system. No problem with that. However, I now seem to get some rubbish processed when I login with slogin. An example: Last login: Tue Jun 13 12:31:27 2000 from jhorne.csd.plymo:tJ` ^[[?1;2c Telnet logs in okay, but just shows 'Last login...jhorne.csd.plymo'. This seems to get passed to the shell, which it of
2008 Aug 28
3
Plots spanning columns
Hi! I want to plot three graphs (residuals, ACF and PACF of a model). Ideally I would use a c(2,2) disposition where the residuals plot would start at position 1,1 and span to position 1,2. Then I would plot the ACF in position 2,1 and the PACF in position 2,2. Maybe is clearer like this: -------------------------- | | | residuals | |
2007 Sep 11
5
Percentiles in R
Hi there! Still struggling to translate Matlab code into R's tsDyn package. Here is my question: Is there in R an equivalent function to Matlab's prctile()? To the moment I thought it was quantile(), but I just realized I was wrong. The definition of the Matlab function: prctile Percentiles of a sample SyntaxY = prctile(X,p) Description Y = prctile(X,p) calculates a value that is
2016 May 03
4
Trying to build bootable iso but very confused by syslinux documentation
I was trying to follow this tutorial https://help.ubuntu.com/community/LiveCDCustomizationFromScratch. i got confused with the part about Create an isolinux.cfg file. The show stopper for me was the mkisofs because the closest command I had available was xorrisofs and I think a switch was different.