Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 23rd August 2008, 06:28 AM
marcrblevins's Avatar
marcrblevins Offline
Registered User
 
Join Date: Jun 2006
Location: Texas
Age: 42
Posts: 4,168
Need to ask, how did mess it up that bad?
If you didn't put any data file on that rig, you could run:
Code:
su -
locate .conf | grep /etc
Backup those and fresh install, finally MANUALLY copy/paste those .conf files that are yours.
Reply With Quote
  #17  
Old 23rd August 2008, 06:28 AM
marcrblevins's Avatar
marcrblevins Offline
Registered User
 
Join Date: Jun 2006
Location: Texas
Age: 42
Posts: 4,168
Can he run "rpm -e *.386"?
Reply With Quote
  #18  
Old 23rd August 2008, 06:31 AM
marcrblevins's Avatar
marcrblevins Offline
Registered User
 
Join Date: Jun 2006
Location: Texas
Age: 42
Posts: 4,168
Oh gosh, forget my last entry, just ran:
Code:
rpm -qa | grep .i386
It scrolls forever.
Reply With Quote
  #19  
Old 23rd August 2008, 06:53 AM
marcrblevins's Avatar
marcrblevins Offline
Registered User
 
Join Date: Jun 2006
Location: Texas
Age: 42
Posts: 4,168
Ok how about this script?
Code:
#!/bin/bash
#set -x

for file in `rpm -qa | grep x86_64`; do
  echo "Processing $file"
  file386=${file/%.x86_64/}.i386
  echo "Processing $file386"
  rpm -e $file386 --nodeps 
done

Last edited by marcrblevins; 23rd August 2008 at 07:01 AM.
Reply With Quote
  #20  
Old 23rd August 2008, 01:52 PM
vallimar Offline
Registered User
 
Join Date: Jul 2008
Posts: 809
Why put so much work into updating GNOME on what's claimed to just be a webserver/fileserver anyways? With packages this screwed up, who knows what else is broken, better to wait 2-2.5 months for F10 and do a fresh install. Gnome hasn't changed that much and parts of it have gotten worse from f8->f9 anyways so not missing out on anything.
Reply With Quote
  #21  
Old 23rd August 2008, 05:56 PM
asianguyjt Offline
Registered User
 
Join Date: May 2008
Location: California
Age: 23
Posts: 11
@marcrblevins
I have no idea, it was just a normal upgrade and all.
With past upgrades, I've had no problems whatsoever

@vallimar
I wanted to take care of the problems so I can run yum without having to deal with errors

I'm going to start to backup my configuration files and such and just do a clean install because this is getting ridiculous

For future reference, on x86_64 installs, am I supposed to see i386 packages installed on my box?

I still consider myself new with linux although I've been using it for a few years now.
Thanks for putting up with me

Last edited by asianguyjt; 23rd August 2008 at 06:00 PM.
Reply With Quote
  #22  
Old 23rd August 2008, 06:15 PM
vallimar Offline
Registered User
 
Join Date: Jul 2008
Posts: 809
You'll see some i386, only a few on a fresh install, device-mapper bits and some encryption bits, but if you start installing other things, like wine, adobe-flash or ndiswrapper and such, you'll have an i386 implosion on your hands. It's generally okay to have them, the problem I pointed out before was that you appeared to still have fedora 8 packages sitting around on an upgraded f9 install, and that was the source of all your original conflict messages.

I did't look through the whole list to see what all was conflicting before, but if it was just some gnome packages, it should be safe to hit init 3, rip 'em out manually with rpm, then use yum to re-install the updated versions. You should still backup things just in case, but if you don't want to do a full re-install, give it a shot.
Reply With Quote
  #23  
Old 23rd August 2008, 06:48 PM
asianguyjt Offline
Registered User
 
Join Date: May 2008
Location: California
Age: 23
Posts: 11
I think I should settle for a fresh install since the upgrade got messed up in the first place.

Thanks for all of your input(:
Reply With Quote
  #24  
Old 23rd August 2008, 10:06 PM
marcrblevins's Avatar
marcrblevins Offline
Registered User
 
Join Date: Jun 2006
Location: Texas
Age: 42
Posts: 4,168
Well, I was hoping if the script work.
Reply With Quote
  #25  
Old 24th August 2008, 07:02 AM
vallimar Offline
Registered User
 
Join Date: Jul 2008
Posts: 809
Quote:
Originally Posted by marcrblevins
Well, I was hoping if the script work.
Well.. you could always try it out on your install to find out.... *grin*
Reply With Quote
  #26  
Old 24th August 2008, 07:09 AM
marcrblevins's Avatar
marcrblevins Offline
Registered User
 
Join Date: Jun 2006
Location: Texas
Age: 42
Posts: 4,168
@Vallimar, not really, my rig is 2000/2001 circa Pentium 4 Rambus rig. Very old. No 64 bit there. Waiting for it to choke on its last pin(leg), then I'll upgrade.
Reply With Quote
  #27  
Old 24th August 2008, 07:31 PM
vallimar Offline
Registered User
 
Join Date: Jul 2008
Posts: 809
Well, I ran it as a test just echoing the output.. technically it would have worked.
Quote:
Processing xorg-x11-server-Xorg-1.4.99.906-9.fc10.x86_64
Processing xorg-x11-server-Xorg-1.4.99.906-9.fc10.i386
rpm -e xorg-x11-server-Xorg-1.4.99.906-9.fc10.i386 --nodeps
Processing gtk2-engines-2.15.3-1.fc10.x86_64
Processing gtk2-engines-2.15.3-1.fc10.i386
rpm -e gtk2-engines-2.15.3-1.fc10.i386 --nodeps
Processing plymouth-0.6.0-0.2008.08.22.fc10.x86_64
Processing plymouth-0.6.0-0.2008.08.22.fc10.i386
rpm -e plymouth-0.6.0-0.2008.08.22.fc10.i386 --nodeps
You'd get lots of package not installed errors, but should have nabbed any real ones.
Reply With Quote
  #28  
Old 24th August 2008, 09:07 PM
asianguyjt Offline
Registered User
 
Join Date: May 2008
Location: California
Age: 23
Posts: 11
The script did appear to work because yum would fail at updating and crying dependency errors between fc8 and fc9 stuff

I did a fresh install yesterday and everything is working out now (:
Reply With Quote
  #29  
Old 24th August 2008, 10:56 PM
vallimar Offline
Registered User
 
Join Date: Jul 2008
Posts: 809
Good to hear it. Upgrades are a chancy business, sometimes they work, othertimes not so much.
Reply With Quote
Reply

Tags
errors, gnome, related, yum

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
gnome settings related question santanu Using Fedora 1 8th March 2009 07:12 PM
GCC/G++ Related errors danielakkerman Using Fedora 2 9th April 2008 05:57 PM
Gnome/Nautilus Bug - May be Mount Related fyrie Using Fedora 1 28th February 2008 11:05 PM
I had to scratch this itch (GNOME Vs KDE related) Thetargos Fedora Focus 12 27th February 2006 09:49 PM


Current GMT-time: 01:44 (Friday, 24-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat