Quote:
|
Originally Posted by Company2 Yes of course I boot of the cd but the XPS 700 won't boot to it so I decided to go to gentoo as my first distro. I'm starting to get it the biggest problem for me is installing software that I can't install in the terminal. |
If you want to use gentoo, you must become very good friends with the terminal lol.
Quote:
|
Originally Posted by Company2 TO install I've tried extracting the info in the /home directory and from there I wanted to compile and install. I never got that far though because gentoo wouldn't let me because I wasn't logged in as an adminstrator (which I don't know how to do). |
You should be using emerge to install most software, but if you want to compile and install something yourself, then open a terminal and type
You will be prompted for the root password, enter it and cd to the directory where you have the files. Most likely you will have a .tar.gz or .tgz file. You need to unzip the contents to compile. So you would type
Code:
tar -xzvf whatever.tar.gz
This Xtracts the Zip Verbosely and F denotes that the filename follows. Once extracted cd into the directory and type
Code:
./configure && make && make install
Quote:
|
Originally Posted by Company2 Also I don't know how to find out what drivers to install. I know all of them aren't installed because I can't play music. Also I need to install the linux 2.6 kernel because they told me I can't load any USB devices. |
Well normally the easiest way to find out which module is for your specific card is to type
Which will show all the devices on your PCI bus. The one you want should say the chipset that runs the board rather than the marketing slogan on the box. Say you see this
Code:
02:09.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8169 Gigabit Ethernet (rev 10)
the chipset is RTL-8169, so you need to grep the kernel sources for like 8169 with
Code:
grep -r 8169 /usr/src/linux
If that method seems like a bit too much to handle, then just google the name of the board but add linux module to the end.
As far as installing the kernel, you need to get the source with emerge, and choose your options and compile it. This is outlined in the gentoo handbook depending on the arch you are using.
Quote:
|
Originally Posted by Company2 Looking at this yeah I know I have a lot of problems and I have to do a lot of study even though I've been studying for a long time.  |
Well I think choosing gentoo as your first distro is pretty brave, and you're going to go through a lot of headache with it as you go.