similar to: python-dbus

Displaying 20 results from an estimated 600 matches similar to: "python-dbus"

2009 Nov 08
1
errors on multimedia guidance for x86_64
I have a fresh install of 5.4 x86_64 from a dvd .iso. All has worked well for several days, including kvm and WinXP running in a vm. Decided it was time to get the multimedia stuff up and running so I could listen to music CDs and watch DVD movies while working. I followed the guidance on the "Tips and Tricks" page for multimedia. Had no problem with the "priorities" or the
2011 Mar 15
4
install specific version using yum
Hello list! I have been instructed to install very specific version numbers of httpd and php on the company web servers. Here's what I've tried so far [root at ec2-50-17-114-126 ~]# yum install php-5.2.17-1.w5.i386 Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: yum.singlehop.com * base: mirror.rackspace.com * epel: nas1.itc.virginia.edu * extras:
2013 Nov 02
1
6.4 : How to enable epel and the rpmfusions??
I've installed 6.4 on an old T30 ThinkPad, and I'm in the midst of setting it up. I can't seem to get an rpm of Pan for it, nor even to do yum update. Mousing around fedoraproject eventually got me to http:// rpmfusion.org/Configuration/ and from there to downloads for the free, nonfree, and epel packages (along with a caveat that tells you -- *after* you've gotten rpmfusion
2008 May 18
1
plot a function with a vector as argument
I tried to define a function using another function I defined before, and the previous function has a vector as an argument, when I tried to get the graph of the new function, there was something going wrong. Here is a simple example to explain how it happend: fr1 <- function(x,y){ x^2+x*y+1 } fr2 <- function(x){ fr1(x,3) } plot(fr2) In this case, it worked just fine. But when I
2006 Mar 13
2
S-Plus Essentials April 24th-27th 2006
S-PLUS ESSENTIALS 24-27th April 2006 Venue : Insightful UK Office, Network House, Basing View, Basingstoke, Hants RG21 4HG We are pleased to be taking registrations for the next scheduled S-PLUS Essentials course being held in Basingstoke 24-27th April 2006. If you are unfamiliar with S-PLUS or have been meaning to upgrade your S-PLUS skills, this is the course for you. This course will be
2011 Jul 26
1
yum segfault - rpmforge problem?
[root at host ~]# yum clean all Loaded plugins: fastestmirror, protectbase Cleaning up Everything Cleaning up list of fastest mirrors [root at ost ~]# yum search libcli Loaded plugins: fastestmirror, protectbase Determining fastest mirrors * base: centos-distro.cavecreek.net * elrepo: elrepo.imt-systems.com * extras: ftp.ussg.iu.edu * rpmforge: apt.sw.be * updates: mirror.nandomedia.com base
2008 Apr 05
2
How to improve the "OPTIM" results
Dear R users, I used to "OPTIM" to minimize the obj. function below. Even though I used the true parameter values as initial values, the results are not very good. How could I improve my results? Any suggestion will be greatly appreciated. Regards, Kathryn Lord #------------------------------------------------------------------------------------------ x = c(0.35938587,
2008 Apr 05
2
How to improve the "OPTIM" results
Dear R users, I used to "OPTIM" to minimize the obj. function below. Even though I used the true parameter values as initial values, the results are not very good. How could I improve my results? Any suggestion will be greatly appreciated. Regards, Kathryn Lord #------------------------------------------------------------------------------------------ x = c(0.35938587,
2008 Mar 09
1
Anyone installed the amazon downloader on 5.1?
Just tried to install the Amazon-downloader on Centos 5.1 (the Fedora 8 version, which seems the closest match of any they offer). Of course it gets a bazillion unfulfilled dependencies. so I tried "yum localinstall ./a*m" and it trundles along for a while finding several of the packages available then spews out this: Error: Missing Dependency: libboost_date_time.so.3 is needed by
2012 Apr 29
1
Error in if (nuhat < 2) stop("The degrees of freedom must be greater than or equal to 2") : missing value where TRUE/FALSE needed
Hi, i am trying to run an ANCOVA and a bootstrapped ANCOVA analysis on a specific data set. I am using the ancova and ancboot functions as in the following code: setwd("C:/Users/User/Desktop/Rdatabilingualstudy2012") bilingualismdata<-read.spss("bilingualdataforconferences2012.sav", use.value.labels = TRUE, to.data.frame = TRUE)
2007 Dec 04
1
5.1 - kernel-2.6.18-53.el5.centos.plus.i686.rpm: [Errno -1] Package does not match intended download
Thank you for the great CentOS. When trying to update from 5.0 to 5.1, I get an error regarding the centos.plus kernel and headers, "[Errno -1] Package does not match intended download". What'd I do? The end of the yum update results below: Transaction Summary ============================================================================= Install 11 Package(s) Update
2011 Dec 20
1
constrOptim and problem with derivative
Dear List, I am using constrOptim to solve the following fr1 <- function(x) { b0 <- x[1] b1 <- x[2] ((1/(1+exp(-b0+b1))+(1/(1+exp(-b0)))+(1/(1+exp(-b0-b1)))))/3 } As you can see, my objective function is ((1/(1+exp(-b0+b1))+(1/(1+exp(-b0)))+(1/(1+exp(-b0-b1)))))/3 and I would like to solve for both b0 and b1. If I were to use optim then I would derive the gradient of the
2014 Mar 11
2
Upgrading openssh to 6.5 on centOS 5 machine
Hello Everyone, I am a newbie. I am supposed to upgrade openssh on a centOS machine. Following are the current versions of openssh and centOS. /tmp# /usr/sbin/sshd -V OpenSSH_4.3p2, OpenSSL 0.9.8e-fips-rhel5 01 Jul 2008 /tmp# rpm -q centos-release centos-release-5-2.el5.centos I have already tried the following link. http://fr2.rpmfind.net/linux/rpm2html/search.php?query=openssh I am unable
2012 Sep 28
3
Better way of Grouping?
Hello R users, This is more of a convenience question that I hope others might find useful if there is a better answer. I work with large datasets that requires multiple parsing stages for different analysis. For example, compare group 3 vs. group 4. A more complicated comparison would be time B in group 3 of group L with B in group 4 of group L. I normally subset each group with the
2023 Aug 05
1
feature request: optim() iteration of functions that return multiple values
For a solution that does not require any change to the original function being optimized, the following one-liner could be used, which converts existing functions to functions that return only the first element: returnFirst <- function(fun) function(...) do.call(fun,list(...))[[1]] Example: fr <- function(x) { ## Rosenbrock Banana function x1 <- x[1] x2 <- x[2] ans
2008 May 13
1
RSA SecurID and CentOS5
I am attempting to get our RSA SecurID tokens working in CentOS: http://www.rsa.com/node.aspx?id=1177 Has anyone had any experience with this? I know CentOS is not supported but one would think that it could be easily implemented... Here's the error I'm receiving: May 13 10:26:21 sshd[1662]: @(#)RSA Authentication Agent 5.3 for PAM [263] May 13 10:26:21 sshd[1662]: Entered
2009 Mar 24
2
update yum
Am trying to update my wine i get the following .. [] download]# yum update wine* Loading "priorities" plugin Loading "fastestmirror" plugin Loading mirror speeds from cached hostfile * epel: ftp.nluug.nl * rpmforge: fr2.rpmfind.net * base: ftp.halifax.rwth-aachen.de * updates: ftp.halifax.rwth-aachen.de * addons: ftp.halifax.rwth-aachen.de * extras:
2009 Aug 22
2
fasttest mirror -doesnt seem to pick sites near my region
guys, i have the yum plugin -> fastest mirror . But not even once i have seen it selecting repos which are near my region such as japan or australia ( where i get the best speeds). Something is wrong. It seems stuck with these 3 sites ; Determining fastest mirrors * ftp-stud.fht-esslingen.de : 0.309373 secs * apt.sw.be : 0.483867 secs * fr2.rpmfind.net : 0.503842 secs
2011 Mar 02
2
Error: Missing Dependency: libgnokii.so.4()(64bit) is needed by package 6:kdepim-3.5.10-2.el5.x86_64 (installed)
Hi Y'All, Yum update on CentOS 5 has for the last week or so started giving me the following errors root at neodymium 16:03:46 ~ # nice yum upgrade Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: mirror.sov.uk.goscomb.net * base: mirror.sov.uk.goscomb.net * epel: mirror01.th.ifl.net * extras: mirror.sov.uk.goscomb.net * rpmfusion-free-updates:
2013 Jan 09
1
gdisk dependancy problem
I followed the instructions here for enabling EHEL: http://www.thegeekstuff.com/2012/06/enable-epel-repository/ And tried to do a yum gdisk install on a new CentOS 6.2 fully updated install. yum install gdisk Loaded plugins: fastestmirror, security Loading mirror speeds from cached hostfile * base: mirror.flhsi.com * epel: www.gtlib.gatech.edu * extras: mirror.us.leaseweb.net * rpmforge: