Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Installation and Live Media
FedoraForum Search

Forgot Password? Join Us!

Installation and Live Media Help with Installation & Live Media (Live CD, USB, DVD) problems.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 11th June 2012, 08:42 PM
DanielFed Offline
Registered User
 
Join Date: Jun 2012
Location: Iran
Posts: 8
linuxfirefox
Need help, How to install rest packages from Fedora 17 DVD?

Hello all,
I installed Fedora 17 today and I was expected to have some software installed, like Blender, Inkscape, but nothing actually there, I noticed to DVD file that (I burned to dvd from iso ~3.6 GB for 32bit ) there is a "Package" folder that has some extras, I then tried to find a way that may I could install other packages.

also I follow this description
http://docs.fedoraproject.org/en-US/...enabling-repos

but I was not able to do local dvd repository.

Can anyone please guide, THANKS.
Reply With Quote
  #2  
Old 11th June 2012, 09:26 PM
Fenrin Offline
Registered User
 
Join Date: Apr 2010
Location: Earth
Posts: 857
linuxopera
Re: Need help, How to install rest packages from Fedora 17 DVD?

Hello,

if your internet connection is fast enough, you could just install it via yum from terminal:
Code:
su
yum install inkscape blender
Fedora has also a graphical software installation tool (PackageKit, in gnome desktop it's in the menu as "Add/Remove Software"), if you prefer that.

you didn't ask for it, but for multimedia codecs and such things you can install the rpmfusion repo:
Code:
rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
Autoplus can also be helpful for Fedora users.
Reply With Quote
  #3  
Old 11th June 2012, 09:29 PM
marko's Avatar
marko Offline
Registered User
 
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,449
linuxfirefox
Re: Need help, How to install rest packages from Fedora 17 DVD?

The instructions in
18.3.1.2. Using a Fedora Installation DVD as a Software Repository

should be the right thing to do to get the packages off the DVD as a repository. I have some problems with their example (for example there's no such DVD iso with "Server" in the name) and some of their examples are contrived and don't match what you'd really do.

One tip, I suspect you just have a small error in the 'baseurl'. The baseurl should be set up so that if you do a file listing in the mount point after the iso file is mounted you should see a child directory named "repodata". If you don't see repodata in the iso file mount point then the mount point is wrong.

Do not literally copy the example they showed in section 5c of 18.3.1.2 as there will not be a "Server"
child directory in the DVD iso you are using. I would think you'd want the dvd.repo fille contents to be like (note that the baseurl is simply file:///mnt/repo ) this:

Code:
[dvd]
baseurl=file:///mnt/repo
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch
At that point, with the DVD iso file mounted as explained in that URL you quoted, you can install packages from the iso file like this:
Quote:
yum install --disablerepo=* --enablerepo=dvd blender
using blender as the package example and the disablerepo and enablerepo done to prevent yum from trying the internet repos but only looking to the DVD file

Last edited by marko; 11th June 2012 at 09:37 PM.
Reply With Quote
  #4  
Old 12th June 2012, 09:36 AM
DanielFed Offline
Registered User
 
Join Date: Jun 2012
Location: Iran
Posts: 8
linuxfirefox
Re: Need help, How to install rest packages from Fedora 17 DVD?

Quote:
Originally Posted by marko View Post
The instructions in
18.3.1.2. Using a Fedora Installation DVD as a Software Repository

should be the right thing to do to get the packages off the DVD as a repository. I have some problems with their example (for example there's no such DVD iso with "Server" in the name) and some of their examples are contrived and don't match what you'd really do.

One tip, I suspect you just have a small error in the 'baseurl'. The baseurl should be set up so that if you do a file listing in the mount point after the iso file is mounted you should see a child directory named "repodata". If you don't see repodata in the iso file mount point then the mount point is wrong.

Do not literally copy the example they showed in section 5c of 18.3.1.2 as there will not be a "Server"
child directory in the DVD iso you are using. I would think you'd want the dvd.repo fille contents to be like (note that the baseurl is simply file:///mnt/repo ) this:

Code:
[dvd]
baseurl=file:///mnt/repo
enabled=0
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-fedora-$basearch
At that point, with the DVD iso file mounted as explained in that URL you quoted, you can install packages from the iso file like this:


using blender as the package example and the disablerepo and enablerepo done to prevent yum from trying the internet repos but only looking to the DVD file


Thank you, sorry for late reply,
I am actually anew user in linux, but I could make a repo with iso image file, but it sends error

yum install --disablerepo=* --enablerepo=dvd blender
Loaded plugins: langpacks, presto, refresh-packagekit
Repository 'dvd' is missing name in configuration, using id
No package blender available.
Error: Nothing to do

also I tried using "Add/Remove software" but i can't install anything offline,

next thing is that, i see packages in "Packages" directory of iso and there are XFCE and KDE desktop I really want all desktop installed, Can you please guide me.
Thanks

---------- Post added at 08:36 AM ---------- Previous post was at 06:52 AM ----------

I finally could install XFCE-Desktop From dvd (as source), but I can not install KDE-Dektop. and other tools when I trying to install from "add /remove software" after applying it does nothing, weird.
And seems on DVD Blender does not exist, so I had to get from internet.
Reply With Quote
  #5  
Old 12th June 2012, 03:58 PM
droidhacker Offline
Registered User
 
Join Date: Oct 2009
Posts: 824
linuxfirefox
Re: Need help, How to install rest packages from Fedora 17 DVD?

yum --disablerepo=* localinstall /path/to/dvd/packages/directory/* --disable-broken
Note: above should install every single package on the dvd.

You're trying specifically to install blender? Is it even ON the dvd? Many Fedora packages are only available from online repositories.
Reply With Quote
  #6  
Old 12th June 2012, 04:42 PM
marko's Avatar
marko Offline
Registered User
 
Join Date: Jun 2004
Location: Laurel, MD USA
Posts: 5,449
linuxfirefox
Re: Need help, How to install rest packages from Fedora 17 DVD?

Quote:
Originally Posted by DanielFed View Post
Thank you, sorry for late reply,
I am actually anew user in linux, but I could make a repo with iso image file, but it sends error

yum install --disablerepo=* --enablerepo=dvd blender
Loaded plugins: langpacks, presto, refresh-packagekit
Repository 'dvd' is missing name in configuration, using id
No package blender available.
Error: Nothing to do

also I tried using "Add/Remove software" but i can't install anything offline,

next thing is that, i see packages in "Packages" directory of iso and there are XFCE and KDE desktop I really want all desktop installed, Can you please guide me.
Thanks


Ok, that must mean that "blender" isn't included on the DVD packages, not much we can do about that.

When you have the DVD mounted, you can install KDE with:
Quote:
yum groupinstall --disablerepo=* --enablerepo=dvd "KDE Software Compilation"
and similarly for XFCE:

Quote:
yum groupinstall --disablerepo=* --enablerepo=dvd Xfce

Last edited by marko; 12th June 2012 at 04:45 PM.
Reply With Quote
  #7  
Old 13th June 2012, 09:12 AM
DanielFed Offline
Registered User
 
Join Date: Jun 2012
Location: Iran
Posts: 8
linuxfirefox
Re: Need help, How to install rest packages from Fedora 17 DVD?

Many THANKS for guides.
Thank you Marko, completely installed from DVD iso and i have 3 nice dektop environment.
Good lucks.

Last edited by DanielFed; 13th June 2012 at 09:16 AM.
Reply With Quote
Reply

Tags
dvd, fedora, install, packages, rest

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
Fedora 16 - Rest of environment freezes when opening new program mjs2430 Using Fedora 2 15th November 2011 12:11 AM
help with install packages in Fedora 10 brandon88tube Installation and Live Media 4 13th April 2009 03:32 AM
Can't install certain rpm packages in fedora 10? jonathonp Using Fedora 2 12th December 2008 01:45 PM
Should non-Fedora RPM packages install to /opt ? joekrahn Using Fedora 1 2nd September 2008 06:49 PM
where does Fedora install the packages? redflyingpig Fedora Focus 5 27th February 2005 07:48 PM


Current GMT-time: 06:32 (Tuesday, 21-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