Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Discussion & Documentation Documentation, Tips & Tricks
  • Search

Installing Gentoo - The Developers Method - Stage1 and NPTL

Unofficial documentation for various parts of Gentoo Linux. Note: This is not a support forum.
Post Reply
Advanced search
601 posts
  • Page 20 of 25
    • Jump to page:
  • Previous
  • 1
  • …
  • 18
  • 19
  • 20
  • 21
  • 22
  • …
  • 25
  • Next
Author
Message
krazyyzark
n00b
n00b
Posts: 6
Joined: Fri Aug 20, 2004 4:59 am

Re: Tip: Styles can be applied quickly to selected text.

  • Quote

Post by krazyyzark » Wed Dec 29, 2004 1:16 am

kimchi_sg wrote:
krazyyzark wrote:I edited my make.conf file to say ACCEPT_KEYWORDS="~x86" instead of ACCEPT_KEYWORDS="x86" I looked back at the tutorial and I am not sure which way it should be. If I change to just x86 and then try to "emerge world" it wants to downgrade almost everything on my system. Should I have ~x86 or just x86 in my make.conf?
You should leave the ACCEPT_KEYWORDS variable unchanged. Don't be afraid of using so-called unstable packages. They are merely less well-tested, and in case of trouble, well, you can always refer to the gentoo wiki or here.
Thanks kimchi_sg!!!
Top
ali3nx
l33t
l33t
User avatar
Posts: 732
Joined: Sun Sep 21, 2003 4:28 am
Location: Winnipeg, Canada
Contact:
Contact ali3nx
Website

  • Quote

Post by ali3nx » Wed Dec 29, 2004 3:38 am

Updated .config for gentoo-dev-sources-2.6.10-r1 now available here Merry Christmas and Happy New Year to all
Compiling Gentoo since version 1.4
Thousands of Gentoo Installs Completed
Emerged on every continent but Antarctica
Compile long and Prosper!
Top
kimchi_sg
Advocate
Advocate
Posts: 3039
Joined: Fri Nov 26, 2004 11:11 am

ali3nx's new CFLAGS: complaint

  • Quote

Post by kimchi_sg » Wed Dec 29, 2004 6:45 am

@ali3nx: Your new make.conf as downloaded from eliteitminds.com has very aggressive CFLAGS as default. I changed the -march and -mtune options to pentium4, and b0rked the binutils install. Emerge complained that the "C compiler cannot create executables". :-(

I'm using the stage3 "safe" install, on a pentium4 1.7ghz. Removing -mtune, -fweb, and -fomit-frame-pointer and downgrading -O3 to -O2 (i.e, CFLAGS="-march=pentium4 -O2 -pipe) got me past binutils.
Top
ali3nx
l33t
l33t
User avatar
Posts: 732
Joined: Sun Sep 21, 2003 4:28 am
Location: Winnipeg, Canada
Contact:
Contact ali3nx
Website

  • Quote

Post by ali3nx » Wed Dec 29, 2004 6:54 am

I'm sad to report that over the christmas holidays the owner of Exovian in his infiite wisdom deleted the entire directory my ali3nx.info domain was hosted in on thier server. The entire domain's files were lost without regard to the use of space of the largest file in the site. The iso the i was hosting for lxnay. Thanks goes out to Ben of Exovian for deleting the entire domain in one command. Way to go buddie... I'm sure people love you
Compiling Gentoo since version 1.4
Thousands of Gentoo Installs Completed
Emerged on every continent but Antarctica
Compile long and Prosper!
Top
3nd3r
n00b
n00b
User avatar
Posts: 38
Joined: Wed Aug 25, 2004 1:31 am
Location: /dev/null
Contact:
Contact 3nd3r
Website

  • Quote

Post by 3nd3r » Wed Dec 29, 2004 9:43 am

ali3nx wrote:I'm sad to report that over the christmas holidays the owner of Exovian in his infiite wisdom deleted the entire directory my ali3nx.info domain was hosted in on thier server. The entire domain's files were lost without regard to the use of space of the largest file in the site. The iso the i was hosting for lxnay. Thanks goes out to Ben of Exovian for deleting the entire domain in one command. Way to go buddie... I'm sure people love you
He did the same to my backup folder... so i know how you feel....
Top
Coz
Tux's lil' helper
Tux's lil' helper
Posts: 99
Joined: Thu Mar 18, 2004 5:27 am
Location: You wanna stalk me? :p Dominican republic

  • Quote

Post by Coz » Wed Dec 29, 2004 7:11 pm

I just finished with the guide, and tought I didn't found even 1 problem in the middle, when I was going to boot I found 2 weird problems, one of them solved by itself but I don't know how XD and the second was that ntp wouldn't work :S the /etc/conf.d/ntp-client file was wrong, instead of settings it was a script but it might have been a faulty ebuild :s
Ask smart questions and follow the guidelines to get your post answered|Answer a unanswered post!
Top
kimchi_sg
Advocate
Advocate
Posts: 3039
Joined: Fri Nov 26, 2004 11:11 am

  • Quote

Post by kimchi_sg » Thu Dec 30, 2004 1:49 am

Coz wrote:ntp wouldn't work :S the /etc/conf.d/ntp-client file was wrong, instead of settings it was a script but it might have been a faulty ebuild :s
No its intentional, I think. The /etc/conf.d/ntp-client file does not exist by default.

My preferred alternative is to use ntpdate once to set the clock:

Code: Select all

ntpdate -b -u pool.ntp.org
Then I add ntpd, not ntp-client, to the default runlevel:

Code: Select all

rc-update add ntpd default
Lastly, edit the /etc/ntpd.conf file if you wish to change the time server from the default of pool.ntp.org.
Top
slycordinator
Advocate
Advocate
User avatar
Posts: 3065
Joined: Sat Jan 31, 2004 9:51 pm
Location: Korea

  • Quote

Post by slycordinator » Thu Dec 30, 2004 3:43 am

kimchi_sg wrote:Then I add ntpd, not ntp-client, to the default runlevel:

Code: Select all

rc-update add ntpd default
Lastly, edit the /etc/ntpd.conf file if you wish to change the time server from the default of pool.ntp.org.
Or you could just add both.

/etc/init.d/ntp-client sets the clock using ntpdate and /etc/init.d/ntpd runs as the daemon, keeping your clock at the right time. Using both together is better, imo.
Top
kimchi_sg
Advocate
Advocate
Posts: 3039
Joined: Fri Nov 26, 2004 11:11 am

  • Quote

Post by kimchi_sg » Thu Dec 30, 2004 4:22 am

slycordinator wrote:/etc/init.d/ntp-client sets the clock using ntpdate and /etc/init.d/ntpd runs as the daemon, keeping your clock at the right time. Using both together is better, imo.
But the /etc/conf.d/ntp-client file does not even exist after the install, and i couldn't find any instruction anywhere on how to fill it out. :-( That's why i use ntpd only.
Top
slycordinator
Advocate
Advocate
User avatar
Posts: 3065
Joined: Sat Jan 31, 2004 9:51 pm
Location: Korea

  • Quote

Post by slycordinator » Thu Dec 30, 2004 5:03 am

kimchi_sg wrote:
slycordinator wrote:/etc/init.d/ntp-client sets the clock using ntpdate and /etc/init.d/ntpd runs as the daemon, keeping your clock at the right time. Using both together is better, imo.
But the /etc/conf.d/ntp-client file does not even exist after the install, and i couldn't find any instruction anywhere on how to fill it out. :-( That's why i use ntpd only.
Oh ok. Strange, the file used to be created whenever you merged ntp.

Here's my copy of the /etc/conf.d/ntp-client

Code: Select all

# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ntp/files/ntp-client.confd,v 1.9 2004/10/28 12:25:34 vapier Exp $

# Command to run to set the clock initially
# Most people should just leave this line alone ...
# however, if you know what you're doing, and you
# want to use ntpd to set the clock, change this to 'ntpd'
NTPCLIENT_CMD="ntpdate"

# Options to pass to the above command
# Most people should just uncomment this variable and
# change 'someserver' to a valid hostname which you
# can aquire from the URL's below
NTPCLIENT_OPTS=" -b -u bigben.cac.washington.edu tick.ucla.edu montpelier.caltech.edu"

# How long to wait (in seconds) before giving up.
# Useful for when you boot and DNS/internet isn't
# really available but you have your net interface
# come up with say a static IP.
NTPCLIENT_TIMEOUT=30

##
# A list of available servers can be found here:
# http://www.pool.ntp.org/
# A good way to get servers for your machine is:
# netselect -s 3 pool.ntp.org
##
You'll have to edit the servers in the NTPCLIENT_OPTS line to ones closer to your location.
Top
Hobbit_HK
n00b
n00b
Posts: 54
Joined: Thu Nov 11, 2004 4:07 pm
Location: Israel

  • Quote

Post by Hobbit_HK » Thu Dec 30, 2004 1:09 pm

I remember seeing some error about the /etc/conf.d/ntp-client file creation during the merging and the file wan't created afterwards... And I also remember that when I emerged ntp sometime ago this error didn't occur.. Faulty ebuild perhaps?
- Hobbit HK :)

Don't use stage1\2 tarballs
Do a stage1 install from a stage3 tarball
Top
JDGBOLT
n00b
n00b
Posts: 14
Joined: Sat Dec 04, 2004 9:01 pm

  • Quote

Post by JDGBOLT » Fri Dec 31, 2004 12:27 am

Does anybody happen to have a backup of that make.conf file, I was hoping to at least use that configuration file as a template for a new gentoo installation that I plan on doing.

Thanks,

JDGBOLT
Top
kimchi_sg
Advocate
Advocate
Posts: 3039
Joined: Fri Nov 26, 2004 11:11 am

  • Quote

Post by kimchi_sg » Fri Dec 31, 2004 2:23 am

JDGBOLT wrote:Does anybody happen to have a backup of that make.conf file
It is downloadable from ali3nx's alternate site, http://www.eliteitminds.com/make.conf

EDIT: sorry for the typo in the URL.
Last edited by kimchi_sg on Sun Jan 02, 2005 7:47 am, edited 1 time in total.
Top
Deranger
Veteran
Veteran
User avatar
Posts: 1215
Joined: Thu Aug 26, 2004 9:46 am

  • Quote

Post by Deranger » Fri Dec 31, 2004 6:31 am

kimchi_sg wrote:
JDGBOLT wrote:Does anybody happen to have a backup of that make.conf file
It is downloadable from ali3nx's alternate site, http://www.aliteitminds.com/make.conf
http://www.eliteitminds.com/make.conf is the correct one... ;)
Top
kowal
n00b
n00b
Posts: 40
Joined: Wed Apr 23, 2003 12:34 am

  • Quote

Post by kowal » Sat Jan 01, 2005 6:26 am

My bootstraping would fail by following any steps listed in this forum. I've been using lxnay Gentoo RR4 LiveCD 2.10
I came accross post about exporting AR=ar, not sure what AR is but strangly got my bootstrap going again.
Top
Coz
Tux's lil' helper
Tux's lil' helper
Posts: 99
Joined: Thu Mar 18, 2004 5:27 am
Location: You wanna stalk me? :p Dominican republic

  • Quote

Post by Coz » Sat Jan 01, 2005 6:01 pm

I dared to try to make a reiserfs4 install, using mm-sources (couldn't find a kernel patch for reiserfs4 on namesys or I just didn't looked well enough), had a couple of after install problems here and there, but just to warn you, mm-sources won't detect a ps2 mouse if ACPI support is enabled.

Maybe it's better not to do that reiserfs4 tutorial until that problem is fixed.

EDIT: Seems like I will have to take mm-sources out XD current release doesn't works with nvidia-kernel. I will try harder now to find a patch for reiserfs4.
Ask smart questions and follow the guidelines to get your post answered|Answer a unanswered post!
Top
-TooL
Tux's lil' helper
Tux's lil' helper
Posts: 75
Joined: Thu Nov 18, 2004 2:57 am

  • Quote

Post by -TooL » Sat Jan 01, 2005 8:44 pm

Can bootstrap break because of perl issues? I did the updated one-liner and woke up to a perl dependency issue, tho I had emerge lib-perl twice.. as copyed and pasted from the one liner..

Is there a way to tell if your system was/has been bootstrapped? because i did the emerge perl thing again, then emerge system.. but if its a broken bootstrap.. its all in vein..
n00b4lyfe
Top
hielvc
Advocate
Advocate
Posts: 2805
Joined: Fri Apr 19, 2002 5:55 pm
Location: Oceanside, Ca

  • Quote

Post by hielvc » Sat Jan 01, 2005 8:56 pm

Just do an "emerge system -e" instead of dorking around with bootstrap.
An A-Z Index of the Linux BASH command line
Top
Coz
Tux's lil' helper
Tux's lil' helper
Posts: 99
Joined: Thu Mar 18, 2004 5:27 am
Location: You wanna stalk me? :p Dominican republic

  • Quote

Post by Coz » Sun Jan 02, 2005 12:07 am

Hehe I just found out that Redeeman has a patch to fix the nvidia problem :D
Ask smart questions and follow the guidelines to get your post answered|Answer a unanswered post!
Top
-TooL
Tux's lil' helper
Tux's lil' helper
Posts: 75
Joined: Thu Nov 18, 2004 2:57 am

  • Quote

Post by -TooL » Sun Jan 02, 2005 12:34 am

Not sure what happened, seems to work now.. im a n00b

Even the splash worked.. im like omgzzz

Toshiba A10 notebook dual booted with winblows xp sp2 and gentoo linux following this guide. Ill post a nbench benchmark once I get to that point.
n00b4lyfe
Top
Deranger
Veteran
Veteran
User avatar
Posts: 1215
Joined: Thu Aug 26, 2004 9:46 am

  • Quote

Post by Deranger » Sun Jan 02, 2005 12:49 am

Coz wrote:I will try harder now to find a patch for reiserfs4.
Here are Reiser4 patches from Namesys...
Here are mm-sources broken-outs...
Top
thecrazyperson_ws
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 89
Joined: Tue Apr 06, 2004 4:55 pm

  • Quote

Post by thecrazyperson_ws » Sun Jan 02, 2005 2:00 am

well, it's about that time again. i broke another bootstrap. go ahead and laugh if you will, because i'm laughing at myself. Oh well, time to try again...
Bevelle: Dual Athlon MP 2000+, 1.25G ram, 120G HD, Gentoo 2005.1-r1, Kernel 2.6.15-gentoo-r5

Gagazet: Pentium 2-266, 288M ram, 240G HD, currently installing gentoo

Besaid: p-150, 80M ram, win2k pro
Top
ali3nx
l33t
l33t
User avatar
Posts: 732
Joined: Sun Sep 21, 2003 4:28 am
Location: Winnipeg, Canada
Contact:
Contact ali3nx
Website

  • Quote

Post by ali3nx » Sun Jan 02, 2005 4:43 am

Okay... after becoming inspired by Oktane's latest post i deceided to try --dry-run patching reiser4's 2.6.10 patch against gentoo-dev-sources. Results? hehe.... not one failed hunk. I've opened a bug requesting inclusion of reiser4 in gentoo-dev-sources which you all can monitor to your hearts content here
Compiling Gentoo since version 1.4
Thousands of Gentoo Installs Completed
Emerged on every continent but Antarctica
Compile long and Prosper!
Top
ali3nx
l33t
l33t
User avatar
Posts: 732
Joined: Sun Sep 21, 2003 4:28 am
Location: Winnipeg, Canada
Contact:
Contact ali3nx
Website

  • Quote

Post by ali3nx » Sun Jan 02, 2005 5:34 am

Just a brief update on the tuitorial files. I'll host them on my own webserver for the meantime. If anyone has a copy of the make.conf from my old file stash on ali3nx.info email me a copy. I've allready hosted one but the use flags have varied to some degree and i would like to maintain some margin of consistancy with the use flags. My email address is available in my profile. Happy new year to all and thanks
Compiling Gentoo since version 1.4
Thousands of Gentoo Installs Completed
Emerged on every continent but Antarctica
Compile long and Prosper!
Top
Coz
Tux's lil' helper
Tux's lil' helper
Posts: 99
Joined: Thu Mar 18, 2004 5:27 am
Location: You wanna stalk me? :p Dominican republic

  • Quote

Post by Coz » Sun Jan 02, 2005 7:14 am

Oktane wrote:
Coz wrote:I will try harder now to find a patch for reiserfs4.
Here are Reiser4 patches from Namesys...
Here are mm-sources broken-outs...
Thanks XD
Ask smart questions and follow the guidelines to get your post answered|Answer a unanswered post!
Top
Post Reply

601 posts
  • Page 20 of 25
    • Jump to page:
  • Previous
  • 1
  • …
  • 18
  • 19
  • 20
  • 21
  • 22
  • …
  • 25
  • Next

Return to “Documentation, Tips & Tricks”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic