similar to: How to configure/install ISDN Card

Displaying 20 results from an estimated 1000 matches similar to: "How to configure/install ISDN Card"

2005 Jul 28
1
WINBIND
hello, I have a Linux Client (debian sarge) which shares a folder via Samba (3.0.14a). A remote client who wants to mount that share needs to authenticate himself. Like in: mount -t smbfs -o username=user1,password=secret My Samba now have to check the auth against a Active directory. Now my question: Do I need winbind on my client? Because, winbind only maps sid to uid and uid to sid. In case
2005 Sep 28
1
PowerWalker ups/usv config file
Hello List, i have a "PowerWalker VI 400, VI 600, VI 800" ups, which i bought on ebay since it said it supports Linux. Well, it came with a closed source binary written in Java. :( Has anyone a config file which will fit to my PowerWalker ups/usv? The genericups driver doesnt seem to work. Thanks, Mario -- GMX DSL = Maximale Leistung zum minimalen Preis! 2000 MB nur 2,99, Flatrate
2005 Sep 12
1
AW: Debian Sarge, Kernel 2.6.13 and AVM Fritz!PCI v2.0 card
Hi Jon, perfect instructions, thank you very much. I used them and after some tests they worked. Here is what I did. Maybe someone could use it completely: ------------------------------------------------------------ Install helpers: apt-get install kernel-package ncurses-dev fakeroot wget bzip2 Go to usr directory: cd /usr/src wget
2005 Jul 19
3
Predict
When I callculate a linear model, then I can compute via confint the confidencial intervals. the interval level can be chosen. as result, I get the parameter of the model according to the interval level. On the other hand, I can compute the prediction-values for my model as well with predict(object, type=c("response") etc.). Here I have also the possibility to chose a level for the
2005 May 21
0
studentized CIs for a correlation using package boot
Dear useRs I need to compute studentized confidence intervals for a correlation, using the boot library. For this CIs we need to compute a variance estimate of the statistic (here correlation coeff) from each boostrap sample. There are 2 important points, I think: (1) We need to do a fisher transformation (atanh(x)) to correct for non-normality, this can be done easily be specifying h, hinv, and
2005 May 25
2
Weird function call problem
Hi, I'm encountering a very odd problem with calls to anova.mlm() from within a function. Consider the following code (data.n is a matrix of numeric values): mlmfit <- lm(data.n ~ 1) mlmfit0 <- lm(data.n ~ 0) print(mlmfit) anova(mlmfit,mlmfit0,test="Spherical") If I run it just like this from the console, it works just fine. If, however, I call it from within a function,
2005 Jul 06
1
SIP/2.0 403 Forbidden
Hi all, I have been worriyng and googling a lot but I can't find my mistake. I am trying to regiter an X-Lite Softphone to Asterisk, but I am getting a SIP/2.0 403 Forbidden response: SEND TIME: 10157385 SEND >> 10.100.249.12:5060 REGISTER sip:10.100.249.12 SIP/2.0 Via: SIP/2.0/UDP 10.100.249.86:5060;rport;branch=z9hG4bKFAC1B6F2B5414EE9855696A09A83FB22 From: Tester
2004 Mar 29
1
StepAIC
Dear list, here is an example of stepAIC that I do not understand. The data is n=42, Lage is the only factor and there are four other variables treated as continuous. First you see the stepAIC-forward solution (fs7). The strange thing here is that apparently not all interactions are tried for inclusion, but only WQ:Lage. In particular, I think that WFL:Lage should be tried in the last two
2005 Jun 15
1
Anohter anova.mlm problem
Hi, yet another anova.mlm problem - it doesn't seem to end. This time, I have a setup with a few within-subject factors and a between-subject factor (SGROUP). Consider the most simple case with only one within-factor (apo): > mlmfit0 <- lm(data.n ~ 0 + SGROUP) > mlmfit1 <- lm(data.n ~ 1 + SGROUP) > anova(mlmfit1,mlmfit0,test="Spherical",M=~hemi,X=~1) Analysis of
2007 Mar 20
2
Strange Results For Term Frequencies
I would like to thank all the people who have contributed to this very fine project. Great work! I''ve encountered some strange results while examining the term frequency of one of my indexed documents. The indexed terms seem to vary for the very same document depending on the presence or absence of completely unrelated operations in the code, so the resulting term frequency changes, too.
2005 Jun 21
2
nls(): Levenberg-Marquardt, Gauss-Newton, plinear - PI curve fitting
Hello, i have a problem with the function nls(). This are my data in "k": V1 V2 [1,] 0 0.367 [2,] 85 0.296 [3,] 122 0.260 [4,] 192 0.244 [5,] 275 0.175 [6,] 421 0.140 [7,] 603 0.093 [8,] 831 0.068 [9,] 1140 0.043 With the nls()-function i want to fit following formula whereas a,b, and c are variables: y~1/(a*x^2+b*x+c) With the standardalgorithm
2006 Jan 19
1
partials and instance variables for file_column
Hi, Sebastian Kanthak of the file_column-Plugin wrote once: "is the photo object inside a local variable or an instance variable (e.g. photo or @photo)? url_for_file_column only works with instance variables, like all other active record form helpers. Could this be the problem?" So I''m using file_column in a partial, e.g. <%= render (:partial => "product",
2005 Jul 13
0
routing problems with two SDSL-connections
Hello List, in our office we have two independant SDSL-connections. One of them is a flatrate, the other is a dedicated line to our webfarm. The goal is to route all the traffic to the webfarm through the dedicated line and all other traffic through the flatrate. The maschine has three nics: eth0: internal network eth1: webfarm eth2: flatrate Each connection uses its own router. It is possible
2017 Dec 14
3
Rewrite Outgoing Number
Hello, I am new on asterisk and do some tests on freepbx. I have 2 SIP provider: Provider1: In-/Out- Flatrate, only 1 Number Provider2: Incoming Flatrate, Outgoing Cost depend on destination, 3 numbers On Asterisk site i have 3 phones (branch ??, don't know how its called in asterisk) Is it possible to do something like: Phone 1: Incoming Call: Number1/Provider1 Outgoing Call:
2004 Feb 23
0
Package "ref" implements references and referenceable data.frames for the S-language
Repeatedly people have asked how to pass arguments by reference in R. Now package "ref" is on CRAN, which provides two referencing methods: Functions ref(), deref() and friends conveniently allow to pass parameters "by reference" instead of "by value". This can be useful in memory critical applications but requires a more careful programming style to track the
2004 Feb 23
0
Package "ref" implements references and referenceable data.frames for the S-language
Repeatedly people have asked how to pass arguments by reference in R. Now package "ref" is on CRAN, which provides two referencing methods: Functions ref(), deref() and friends conveniently allow to pass parameters "by reference" instead of "by value". This can be useful in memory critical applications but requires a more careful programming style to track the
2004 Feb 09
0
I thank you for the spam i got returned
Hello, first i want to express very much hate to all of you, and i hope you die soon. that is because of all the spam i get into my mailbox since i wrote you. therefore, i like you to apologise, and hang yourself right away, or be hanged. greets, me -- GMX ProMail (250 MB Mailbox, 50 FreeSMS, Virenschutz, 2,99 EUR/Monat...) jetzt 3 Monate GRATIS + 3x DER SPIEGEL +++
2009 Aug 07
2
bug? rsync counts inaccesible file as being transferred
hello, with --stats, shouldn`t we differ between "number of files transferred" and "number of files failed" ? the problem is, that i have files which ALWAYS fail on transfer, and to check for "number of files failed"<=2 would be the best way for me to check if the overall transfer was ok. if i magaged to create a patch to adress this, would such patch be
2009 Dec 30
1
Fwd: Negbin Error Warnings
Dear Clara, Thanks for the reply. I am forwarding your message to the list, ok. When I wrote was a way of get further information to help the helpers. happy holidays, milton ---------- Forwarded message ---------- From: Clara Brück <clara_brueck@web.de> Date: 2009/12/30 Subject: Re: [R] Negbin Error Warnings To: milton ruser <milton.ruser@gmail.com> Dear Milton, Thanks for
2009 Sep 24
0
High CPU usage
Hi Jean-Marc, I tried to add VERY_SMALL at the input of the encoder, but that did not change much. Here's a list of source code locations where denormals appear for the first time as calculation results. This list is based on a 4 minutes recording of ambient sound that is passed to speexenc 1.2rc1 with the command line --narrowband --denoise --agc --abr 15000