Quote:
|
Originally Posted by coyoteboy
Problem with this is that it doesn't install X etc or the network adapter for some odd reason.
|
Reason: Since Fedora 11, the text-based installation is a
true minimal installation. It installs only about 200 packages but enough to work in runlevel 3 and establish an Internet connection to install other things that you need. I like to install this way even though I don't have to.
Quote:
|
Originally Posted by coyoteboy
So I'm trying to use the commandline to get the rest of my packages in, I've mounted the DVD into a folder /yumrepo and the repo .xml file is found at /yumrepo/repodata. I've edited my fedora.repo and pointed the baseurl at file:///yumrepo/repodata but it tells me it cannot retrieve the repomd.xml - please verify path. Odd.
|
I doesn't matter now since you managed to establish an Internet connection, but a simple way to install packages with yum from the DVD is to set up the InstallMedia repo. Just for the record, there is a file named media.repo on the DVD. Copy it to the /etc/yum.repos.d folder. Then edit it to add a baseurl line for the DVD's mount point (use backslashes to escape spaces or %20 in place of spaces). Also add an enabled line, but it's best to leave this repo disabled IMO. Example of a finished media repo file...
Code:
[InstallMedia]
name=Fedora 13
mediaid=1273712438.740122
baseurl=file:///media/Fedora%2013%20i386%20Disc%201
enabled=0
metadata_expire=-1
gpgcheck=0
cost=500
To install from the InstallMedia repo, do it like this example...
Code:
su
yum disablerepo=* enablerepo=InstallMedia install [package] [package] [package]
Quote:
|
Originally Posted by coyoteboy
I'm fighting trying to get lxde on it, installed all deps and I'm left with a moan about pcmanfm.conf not existing, despite the package being installed.
|
It shouldn't be a fight, and yum should handle the dependencies. You should be able to install the LXDE package group and the X Window System package group in a single yum command from either the Fedora repos or the InstallMedia repo.
Code:
su
yum groupinstall LXDE "X Window System"
That should install several hundred packages. When it's done, edit /etc/inittab to change the default runlevel from 3 to 5. Reboot and you should arrive at the Firstboot screens to establish a user account (and so on) provided your video hardware is supported. After that you should end up at the desktop and be able to continue on with installing what else you need in the GUI. Anyway, this is exactly how I installed Fedora 13 with XFCE. I even had to involve the InstallMedia repo because wireless-tools was not included in the minimal installation this time, and I was doing all of this with a wireless connection.