LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 02-01-2005, 08:12 AM   #1
FocusedWolf
Member
 
Registered: Feb 2004
Distribution: Fedora Core 3
Posts: 43

Rep: Reputation: 15
If i install Fedora Core 2, can i just update to Core 3 from internet?


Hmm, used 3 cd's in past for core 1, used 4 for core 2,...getting tired of using so many cd's for updates...

If i install Fedora Core 2, can i just update to Core 3 from internet through that updater thing? Will it be the same as if i installed Core 3 from cd or will i be missing packages and stuff?

Also for sake of trying out suse, cause i hear it has good hardware detection, is their anyway to download the distro to like somewhere on my hd and run installer from floppy?

Last edited by FocusedWolf; 02-01-2005 at 08:13 AM.
 
Old 02-01-2005, 10:56 AM   #2
jailbait
LQ Guru
 
Registered: Feb 2003
Location: Virginia, USA
Distribution: Debian 12
Posts: 8,337

Rep: Reputation: 548Reputation: 548Reputation: 548Reputation: 548Reputation: 548Reputation: 548
"If i install Fedora Core 2, can i just update to Core 3 from internet through that updater thing? Will it be the same as if i installed Core 3 from cd or will i be missing packages and stuff?"

I updated from SuSE 8.0 to 8.1 by downloading and upgrading packages. This turned out to be far more work than upgrading using the CDs. I highly recommend using CD upgrades over download upgrades.

Also it is better to install the new Linux on a separate partition and dual boot until the new version is stable. When you have problems with upgrading in place you end up with no working system. When you have problems the new version in a dual boot system there is no time pressure to fix the problems.

Here is where I buy my CDs.

http://www.linuxcd.org/

-----------------------------
Steve Stites
 
Old 02-03-2005, 08:15 AM   #3
misc
Senior Member
 
Registered: Apr 2003
Distribution: Red Hat + Fedora
Posts: 1,084

Rep: Reputation: 54
You can do an online upgrade with e.g. Yum or Apt-RPM, e.g. hints on doing it are here:

http://linux.duke.edu/~skvidal/misc/...e-with-yum.txt

With a bit of web searching, you might find other documents. If you run into problems, you're on your own. The only supported upgrade method is using the official installation media and the Anaconda installer. The rationale is, that there are post-installation configuration and migration steps which you may be missing if you do an online update with Yum. Also, the new Fedora Core installation discs would start a new kernel including all features you may need prior to first reboot.

-----
Plenty of GMail invitations left - mail to mschwendt AT gmail.com to request an invitation
 
Old 02-03-2005, 08:39 AM   #4
FocusedWolf
Member
 
Registered: Feb 2004
Distribution: Fedora Core 3
Posts: 43

Original Poster
Rep: Reputation: 15
Ok 4 more cds will be sacrificed to the hell fire to bring me core3

Hmm maybe three, some reason i never needed the 4th cd lol
 
Old 02-03-2005, 12:57 PM   #5
johnnydangerous
Member
 
Registered: Jan 2005
Location: Sofia, Bulgaria
Distribution: Fedora Core 4 Rawhide
Posts: 431

Rep: Reputation: 30
Red face

what's the forth CD about anyway?
 
Old 02-03-2005, 01:10 PM   #6
misc
Senior Member
 
Registered: Apr 2003
Distribution: Red Hat + Fedora
Posts: 1,084

Rep: Reputation: 54
The fourth CD of FC3 contains 447 packages, not limited to 169 packages for software development and numerous other packages which cannot be summed up easily. Depending on what you install, you may need it.
 
Old 02-03-2005, 01:27 PM   #7
FocusedWolf
Member
 
Registered: Feb 2004
Distribution: Fedora Core 3
Posts: 43

Original Poster
Rep: Reputation: 15
I still think it'd be more leet if their was a linux installer that you ran from a floppy and it just downloaded all the packages you needed from some mirror that holds updates.
 
Old 02-03-2005, 01:49 PM   #8
misc
Senior Member
 
Registered: Apr 2003
Distribution: Red Hat + Fedora
Posts: 1,084

Rep: Reputation: 54
Have you ever done floppy based network installs with Red Hat Linux before? Fedora Core's boot images are just a few Megabytes (5-6).
 
Old 02-07-2005, 08:13 AM   #9
FocusedWolf
Member
 
Registered: Feb 2004
Distribution: Fedora Core 3
Posts: 43

Original Poster
Rep: Reputation: 15
Is this a folder used to get fedora when you install it straight from download?

http://rpm.rutgers.edu/repository/fe...ore/3/i386/os/
 
Old 02-07-2005, 10:29 AM   #10
jlawren7
Member
 
Registered: Jan 2005
Location: Rochester, NY
Distribution: Fedora Core III
Posts: 46

Rep: Reputation: 15
One more thing to watch out for if you do update i did this on my desktop and all updates still pointed to FC2 Not FC3
 
Old 02-07-2005, 10:41 AM   #11
misc
Senior Member
 
Registered: Apr 2003
Distribution: Red Hat + Fedora
Posts: 1,084

Rep: Reputation: 54
With yum or up2date?

With Yum that cannot happen unless you configured FC2 repositories manually. In yum.conf, instead of a hardcoded distribution version a macro $releasever is used and is determined automatically by examining the fedora-release package. After an upgrade to FC3, all repositories which use $releasever instead of a harcoded version would automatically switch to FC3.
 
Old 02-07-2005, 12:53 PM   #12
johnnydangerous
Member
 
Registered: Jan 2005
Location: Sofia, Bulgaria
Distribution: Fedora Core 4 Rawhide
Posts: 431

Rep: Reputation: 30
what's the meaning of hardcoded? briefly
 
Old 02-07-2005, 01:03 PM   #13
misc
Senior Member
 
Registered: Apr 2003
Distribution: Red Hat + Fedora
Posts: 1,084

Rep: Reputation: 54
It's jargon and means to not use a variable, but enter a constant value, which would only change if you edited it again.

Here it means to insert a specific Fedora Core version number instead of the macros supported by Yum.

Example (notice the $release and $basearch variables):

wrong:
Code:
[base]
name=Fedora Core 3 - i386 - Base
baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/3/i386/os/
enabled=1
gpgcheck=1
Right:
Code:
[base]
name=Fedora Core $releasever - $basearch - Base
baseurl=http://download.fedora.redhat.com/pub/fedora/linux/core/$releasever/$basearch/os/
enabled=1
gpgcheck=1
The $releasever macro expands to the version of Fedora Core you have installed. For Fedora Core 3 it expands to '3'. The $basearch macro expands to your hardware base architecture.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
I have problem to update with the update function under fedora core 2 babyboss Fedora 4 08-10-2005 07:34 AM
Install Fedora Core 4 Extras or Updates without Internet Connection. jkuzenka Linux - Newbie 7 07-15-2005 08:14 AM
Install FEdora Core 3 over Fedorda Core 2 loninappleton Fedora - Installation 5 04-16-2005 03:17 PM
Fedora Core 1...can I update to core 2 w/out downloading all discs again? arctic123 Red Hat 3 09-05-2004 04:47 AM
Upgrading via Internet Fedora Core 1 to Fedora Core 2 cdean Linux - Newbie 2 05-30-2004 11:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora

All times are GMT -5. The time now is 08:33 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration