Displaying 20 results from an estimated 5000 matches similar to: "Help with yum and cpio: MD5 sum mismatch"
2010 Mar 04
1
[Possibly OT] rpm conflicts has me confused
Hi list,
I can install the default ppp-2.4.4-2, but when I try to
install an rpm I built from Sangoma's ppp-2.4.4.5 (using
checkinstall-1.6.1) I get this error:
# rpm -ivh ppp.2.4.4.5-1.eai.i386.rpm
error: Failed dependencies:
ppp < 2.4.3-3 conflicts with kernel-2.6.18-162.2.1.el5.i686
Isn't 2.4.4.5 > 2.4.3-3 ???
trying this:
yum localinstall ppp.2.4.4.5-1.eai.i386.rpm
2011 Mar 05
0
[Fwd: Re: Centos 6 - What are you looking forward to?]
On Fri, March 4, 2011 14:12, aurfalien at gmail.com wrote:
> On Mar 4, 2011, at 11:07 AM, Kenneth Porter wrote:
>
>> --On Thursday, March 03, 2011 10:11 AM -0500 Digimer
>> <linux at alteeve.com
>> >
>> wrote:
>>
>>> How about the rest of you? What are you looking forward to in
>>> CentOS 6 when it is released?
>>
>> A new
2012 Feb 06
3
Bundler - how to re-install all gems after os update?
I had a working Rails setup using RVM on Ubuntu 11.10 with /home on a
separate partition. I installed Ubuntu 12.04 (Alpha) on the root
partition, leaving the home partition unchanged. I now find that some
things don''t work, I think due to the fact that the system has been
updated and versions of libraries have changed. For example I get:
$ rails c
2010 Nov 15
0
Problem testing Authlogic UserSession
I''ve posted this to the Authlogic group but things seem a little quiet, so
perhaps someone here can help:
''m testing Authlogic 2.1.6, running under Rails 3.0.1., using rspec
2.1.0
I have the following:
user.rb
class User < ActiveRecord::Base
acts_as_authentic do |config|
config.login_field :email
config.ignore_blank_passwords false
2010 Nov 22
3
Issue using bundler
I run bundle install, or bundle update, and it fails. I''m using RVM, so
if I switch to Ruby 1.9.2, this works fine, but using Ruby 1.8.7 it
fails. Any idea?
jeremy-woertinks-imac:winovations jeremywoertink$ bundle update
Fetching source index for http://rubygems.org/
Using rake (0.8.7)
Using RedCloth (4.2.3)
Using abstract (1.0.0)
Installing activesupport (3.0.1)
2010 Nov 30
0
simple SQLITE3 error!!??library routine called out of sequence
Hi, dear guys!
I have following super simple program
dbh=DBI.connect("DBI:SQLite3:barron.db")
sth=dbh.prepare("INSERT INTO WORDS VALUES(?,?,?)")
3.times{
sth.execute("1","2","3")
}
and it gives me error :
/Users/tsdeng/.rvm/gems/ruby-1.8.7-p302/gems/sqlite3-ruby-1.3.1/lib/sqlite3/statement.rb:41:in `bind_param'': library routine called
2010 Dec 22
5
rvm, rails and sqlite
i need to use old version of ruby (1.8.7) and older version of rails
(2.1.0) so i decided to use rvm. however since i''m somewhat new to ruby
and rails i''m having issues. i created a gemset with rvm for my project,
installed rails 2.1.0 into it. after that i created a project and a
scaffolding for it. however i bumped onto an issue with sqlite3 (or
sqlite3-ruby). it seems to me
2011 Apr 23
1
rake spec fails where rake spec:(models|controllers|views) pass
I''m still trying to work into Ruby 1.9.2 and am now experiencing
something that makes no sense to me. Using rspec 1.3.2 and rspec-rails
1.3.4 with rails 2.3.11 on ruby 1.9.2-p180, when I
$ rake spec:models
they all pass. When I
$ rake spec:controllers
they all pass. When I
$ rake spec:views
they all pass. But when I
$ rake spec
I get
<path to
2007 Nov 07
16
file access with mongrel running as windows service
i have an archive of documents (word, excel, jpeg, png, gif...)
residing on a network share that is accessed via send_file.
when running mongrel on the command line the files are properly
delivered.
with mongrel running as a service they don''t.
now normally i would think that should be fixable by configuring the
service to run under a user that can read the files....
but
2008 Nov 19
1
mle2 simple question - sigma?
I'm trying to get started with maximum likelihood estimation with a
simple regression equivalent out of Bolker (Ecological Models and Data
in R, p302).
With this code:
#Basic example regression
library(bbmle)
RegData<-data.frame(c(0.3,0.9,0.6),c(1.7,1.1,1.5))
names(RegData)<-c("x", "y")
linregfun = function(a,b,sigma) {
Y.pred = a+b*x
2009 Jun 24
3
[offtopic] Fedora 11 RPM's funny?
Is there something funny about rpm in Fedora 11 that causes cpio errors
when trying to install src.rpm's in CentOS 5.3, or am I just getting
repeated bad downloads?
2009 Mar 18
2
Updating wine with GIT
Hi. Ive used git for some time to download an update wine sources. However, Ive notices a couple of things i dont understand quite much.
My general procedure to download sources and compile is this:
git clone git://source.winehq.org/git/wine.git ~/wine-git
cd ~/wine-git
./configure --prefix=/usr
make
sudo checkinstall --fstrans=no --pkgversion=1.1.12
Here I've noticed that I have to
2010 Jan 14
1
Problem with checkinstall
I installed checkinstall 1.6.2 on CentOS 5.4 VM (VMWare Server on
WinXP). After getting the dependencies installed it compiled with no
errors. But when I run it in its own source directory, I keep getting an
error that I can't track down. The message is:
install: cannot change ownership of '/usr/local/lib/installwatch.so': No
such file or directory.
But not only does the file
2010 Dec 14
9
UTF-8 String.strip bug (and several over methods)
Hello, with Rails 3.0.3
"Café Noir ".strip => "Café noir"
but
"Café ".strip => "Caf\303\251"
In fact, strip() doesn''t works if the last printable character is
accentuated.
Surprisingly " écologie".strip works fine.
I''ve tried to dig deeper in active_support multibyte source code but
didn''t found any solution.
2010 May 26
25
Extremely slow start up with ruby 1.9.1 vs 1.8.7
I created a fresh new rails app, no gems, no nothing. Completely
unmodified. Doing anything that initializes rails takes 2 - 3 times
longer in ruby 1.9.1 than it does in 1.8.7. Obviously with a fresh rails
app, this is only 2 - 3 seconds extra. But with a decent sized app, this
can take up to 25 seconds for rails to initialize, vs the 12 seconds in
1.8.7.
I''ve been racking my brain on
2011 Nov 14
2
Checkinstall and R-2.14.0
Dear all,
I try to install the latest R version using checkinstall (v. 1.6.2) on
Ubuntu 11.10. After solving all the dependencies (installed using
apt-get build-dep r-base) checkinstall fails to build and install R
package with the following error (the same commands build and install
R-2.13.2 on the same machine without any problem):
wget
2012 Jun 14
0
Query about TSRV
Hi All,
This question may not belong here, but I asked this on the
R-SIG-FINANCE list and so far have not got any reply, so was hoping
someone here may help.
I have a basic query about TSRV and was hoping you all can shed some
light on the issue.
I have 22500 records for each day. So if I take the slow frequency as
5 mins I can have 75 subgrids. An estimate of the 5-minute realized
volatility
2012 Apr 17
2
packaging: src.rpm not a rpm
Hi all,
I have installed the recommended installs from here:
http://wiki.centos.org/HowTos/RebuildSRPM
I want to build a "ipfm" RPM on a CentOS 6.2, for legacy purpose.
I cant immediately get rid of that piece of software, but we're on the
move...
So:
$ wget
http://rpm.pbone.net/index.php3/stat/3/srodzaj/2/search/ipfm-0.11.5-alt1.src.rpm
$ rpm -i --nomd5
2015 Jun 15
0
mpv rpm
On 06/14/2015 09:56 PM, Peter wrote:
> On 06/15/2015 03:54 PM, Peter wrote:
>> On 06/15/2015 03:17 PM, jd1008 wrote:
>>> Does anyone have a working rpm of mpv for rhel6 or centos6?
>>> Would appreciate a download link.
>> No, but it's in Fedora so rebuilding it for CentOS should be pretty easy.
> I should clarify, it's in RPMFusion for Fedora as well as
2002 Jul 15
10
Patch: Solaris packages don't create privsep user or group
Hi.
Solaris packages created by buildpkg.sh don't create privsep user or
group and sshd won't start until they are created (or privsep is
disabled):
## Executing postinstall script.
starting /usr/local/sbin/sshd... Privilege separation user sshd does not
exist
/etc/init.d/opensshd: Error 255 starting /usr/local/sbin/sshd...
bailing.
The attached patch (against -cvs) ports the relevant