search for: downgrade

Displaying 20 results from an estimated 2703 matches for "downgrade".

2017 Jan 26
2
samba rpm deps - with yum downgrade = kind of a mayhem
On 25/01/17 14:26, Jonathan Billings wrote: > On Wed, Jan 25, 2017 at 11:32:16AM +0000, lejeczek wrote: >> hi guys, gals >> >> do you see this: >> >> ~]$ yum downgrade samba >> Resolving Dependencies >> [...] >> --> Processing Dependency: libtevent.so.0(TEVENT_0.9.9) for package: >> samba-client-libs-4.4.4 >> >> ..and process fails. >> chained are i686 arch? Is it only us(centos) or redhat's bugzilla should be >...
2017 Jun 01
4
yum install <olderversion> does not downgrade
...to configure our CentOS 6 servers, and we have a task to install a specific version of a package: - name: install thrift2 yum: name=ripencc-thrift2-{{ version }} In this ansible task, the "version" variable is set by the operator. When we want to upgrade, it works. But today we had to downgrade, and noticed that ansible wasn't downgrading it. So we tried by hand (the installed version was 1.0.8): # yum install ripencc-thrift2-1.0.3 I don't have the output handy, because a colleague was working on it, but basically, yum said something like "package already installed" an...
2017 Jan 25
2
samba rpm deps - with yum downgrade = kind of a mayhem
hi guys, gals do you see this: ~]$ yum downgrade samba Resolving Dependencies --> Running transaction check ---> Package samba.x86_64 0:4.4.4-9.el7 will be a downgrade --> Processing Dependency: samba-libs = 4.4.4-9.el7 for package: samba-4.4.4-9.el7.x86_64 --> Processing Dependency: samba-common-tools = 4.4.4-9.el7 for package: sam...
2006 Jun 16
2
[Slightly Off Topic]How to handle downgrades
...et''s say that there is a web application which comes in several different plans. Each plan has a different number of users and content items allowed for an account. Obviously we can allow the user to upgrade to a higher level plan by just increasing their limits but how do we handle downgrades? If the user is only allowed x items on the downgraded plan and they currently have x+10 items what do we do? The way I see it there are a few options. 1. Don''t let a user downgrade their plan until they have deleted enough users and items to meet the requirements for the plan they a...
2017 Feb 02
3
downgrading packages
...he host is the amanda server is working fine at backing up all my remote clients. But it has an error backing up itself. The amanda packages did not change version (3.3.3) and I've done no configuration change. I'm not looking for help debugging this at the moment. Instead I'd like to downgrade the amanda packages to see if the original function can be restored. But when I ask yum to downgrade, there are no packages available. Is it still possible to downgrade just these 4 packages? How? What potential problems? Jon -- Jon H. LaBadie jon at jgcomp.com 11226 South Sh...
2013 Jul 11
2
problems with apache downgrade
...and is now pegging a cpu, according to top. So, as a last resort, I tried downgrading both of them. When I did so, the server that uses ssl *erased* mod-ssl, not downgrading it, and I'll have to find where I can get the previous version tomorrow... but that shouldn't happen, I should think. Downgrade *should* get everything, unless it's brand new, and this isn't. mark
2013 Jun 28
3
Using Puppet for downgrading Varnish (circular dependency)
...ish-3.0.4-1.el6.x86_64 varnish-libs-3.0.4-1.el6.x86_64 When using "ensure" for downgrading I get a bunch of errors: err: /Stage[main]/Varnish/Package[varnish-libs]/ensure: change from 3.0.4-1.el6 to 3.0.3-1.el6 failed: Could not update: Execution of ''/usr/bin/yum -d 0 -e 0 -y downgrade varnish-libs-3.0.3-1.el6'' returned 1: Error: Package: varnish-3.0.4-1.el6.x86_64 (@varnish-3.0) Requires: varnish-libs = 3.0.4-1.el6 Removing: varnish-libs-3.0.4-1.el6.x86_64 (@varnish-3.0) varnish-libs = 3.0.4-1.el6 Downgraded By: varnish-l...
2004 May 25
6
Downgrading Asterisk
...terisk console when starting, something about "ast_get_txt" not found. Recompiling and installing asterisk HEAD afterwards works just fine. As a side note, I recently upgraded my kernel to 2.4.26 and had an issue with old kernel headers, but have since resolved that prior to trying this downgrade. Any ideas? Nik
2014 Mar 14
1
libplasma - no downgrade
I tried, last night, to downgrade kdelibs, I think it is, to resolve the libplasma crash that we talked about yesterday... and yum told me there was no upgrade or downgrade. I'm sort of assuming that I'd have to go back to 6.4... unless I need to add a repo - the vault? wget it, and downgrade it locally? mark
2010 Aug 09
3
Downgrade libgcc & gcc packages (is there a clean way)
...e libgcc and gcc packages to a specific version (Required by the Oracle Grid Control client). Normally I'd just remove and reinstall the packages however removing libgcc is no fun as I found out the hard way it breaks pretty much every package including rpm & yum. Is there an elegant way to downgrade the currently installed libgcc & gcc packages? Thanks, Dan
2008 Aug 06
1
OT: Cisco 7961 SIP downgrade from 8.3.3 -> 8.0.4SRS2 failing
Hi, My apologies for the OT. My googling came up empty and hopefully there are some members in the community that could give me a hint how to solve this issue: Cisco 7961 with SIP firmware 8.3.3. Needed to downgrade it to 8.0.4SRS2. The downgrade process started off good. The 7961 got it's IP address via DHCP, found it's SEP<mac>.cnf.xml file and started to "upgrade" the phone with the 8.0.4 firmware. All was well until it finally rebooted. Now it get's an IP from the DHCP serve...
2017 Jan 26
0
samba rpm deps - with yum downgrade = kind of a mayhem
On Thu, Jan 26, 2017 at 11:44:06AM +0000, lejeczek wrote: > but Centos should, right? > Being able to downgrade can save you a day or a few. I know, for it did save > mine several times, eg. buggy samba new update and downgrade fixed it, etc. > We absolutely should be able to downgrade every rpm, if this is just a > matter of an opinion(I'd fail to see any other reasons to not do it) then my &gt...
2017 Jun 01
0
yum install <olderversion> does not downgrade
Use the 'downgrade' option. https://access.redhat.com/solutions/29617 On Thu, Jun 1, 2017 at 1:46 PM, Anand Buddhdev <anandb at ripe.net> wrote: > We're using ansible to configure our CentOS 6 servers, and we have a > task to install a specific version of a package: > > - name: install th...
2004 Sep 14
1
Using yum to do downgrades
...stion but relates to some work I am doing with CentOS and other recent discussions on this list so I though I would post here first. Basically I am attempting a Red Hat 7.2 -> CentOS-2 upgrade. So far it has worked like a charm. The problem is though that yum (no doubt by design) will not downgrade packages to the CentOS versions. The problem is that some old RPMs have 72 in the release (for Red Hat 7.2) and the newer package as 21 in the release (For Enterprise Linux 2.1). Some others are updates to 7.2 which increased the version number where as 2.1 got a backported fix and increased r...
2018 Feb 07
3
Replication fails after DC re-joined to domain
...background: > > ================== > > I had a test environment which had two samba DCs (running v 4.8.0rc2) and 1 > > Windows Server 2008R2 DC. The samba DCs had been upgraded from v 4.6x and the > > secrets database was not encrypted (as far as I know). I decided to downgrade > > one of the samba DCs to v 4.7.4. > > > > On re-starting samba after the downgrade the log shows: > > > > ldb: unable to dlopen /usr/local/samba/lib/ldb/encrypted_secrets.so : > > /usr/local/samba/lib/private/libdsdb-module-samba4.so: version `SAMBA_4.8.0RC2...
2005 Oct 12
4
Downgrade from 3 to 2 suggestions
...amba 3 has problems with the combination of being a domain member, the 2.6 kernel, and Dell 2850 hardware. It works fine on the 2.4 kernels but fails on all the 2.6 versions I have avaialble for testing. I have one machine that I really prefer could stay at 2.6 so my last resort there is to try a downgrade to samba 2.X In the past samba has always 'just worked' so I have no experience at tuning the samba version to the kernel version. The system I need to downgrade is 2.6.11. Any advice which version of samba will work on that kernel version? -- Stephen Carville -- polluting the ranks of...
2016 Jan 01
2
NFS problem after 7.2
On Thu, 2015-12-31 at 10:16 -0700, Brandon Vincent wrote: > Looks like upstream is working on it [1]. According to the BZ, the > solution for now is to downgrade nfs-utils [2]. Thank you for spotting that one! Don't know it's because I'm still tired from yesterday, but don't seem to be able to downgrade. The command 'yum downgrade nfs-utils' just returns nothing to do. I've searched centos.org to find the previous package?nfs-u...
2017 Feb 02
0
downgrading packages
...ge. > Looking back at the released versions, amanada was updated from 3.3.3-13 to 3.3.3-17 in the 7.3 release. You can grab the old version here: http://vault.centos.org/7.2.1511/os/x86_64/Packages/ > I'm not looking for help debugging this at the moment. > Instead I'd like to downgrade the amanda packages > to see if the original function can be restored. But > when I ask yum to downgrade, there are no packages > available. Is it still possible to downgrade just > these 4 packages? How? What potential problems? > > Jon > In this instance yum can not down...
2017 Jun 02
0
yum install <olderversion> does not downgrade
...and we have a > task to install a specific version of a package: > > - name: install thrift2 > yum: name=ripencc-thrift2-{{ version }} > > In this ansible task, the "version" variable is set by the operator. > When we want to upgrade, it works. But today we had to downgrade, and > noticed that ansible wasn't downgrading it. So we tried by hand (the > installed version was 1.0.8): > > # yum install ripencc-thrift2-1.0.3 > > I don't have the output handy, because a colleague was working on it, > but basically, yum said something like "p...
2008 Jun 24
2
how to downgrade from CentOS 5.2 to CentOS 5.1?
I've run into some trouble with a new cPanel VPS, and noticed that it's running CentOS by default, installed via the CentOS http server. My question is, how do I downgrade CentOS to 5.1? -- Kind Regards Rudi Ahlers CEO, SoftDux Web: http://www.SoftDux.com Check out my technical blog, http://blog.softdux.com for Linux or other technical stuff, or visit http://www.WebHostingTalk.co.za for Web Hosting stuff