[gentoo-user] advice regarding LVM needed

2003-09-14 Thread Gour
Hi!

Recently I bought Gentoo 1.4 and installed it on my 2nd HD's free space
(WD - 80G) wanting to have a slow transition from SuSE to Gentoo (to keep old
mail, news ..).

I emerged binary packages of X & KDE and then started to slowly emerge
other components.

However, three days ago, my old HD (IBM) started to *die* and I can
clearly hear the sounds of imminent death. 

Now I bought a new HD - 120 G while my /home partition is on WD
(together with Gentoo install.)

Today I'm going to trash my old IBM HD (together with SuSE :-) and
install a new one, so I'm thinking about LVM install.

Do you recommend it for two HDs (120G & 80G) install on home machine?

(the 80G HD I'd like to use mostly for future video-editing and I'm
used to have Reiser fs on my partitions - except /boot.)

In Gentoo's LVM docs it is recommended NOT to put 
/etc 
/lib 
/mnt 
/proc 
/sbin 
/dev 
/root  

in LVM partition. 

Any hint?


Sincerely,
Gour

-- 
Gour
[EMAIL PROTECTED]
Registered Linux User #278493


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] clearing out distfiles?

2003-09-14 Thread Davide Brini
On 05:20, lunedì 15 settembre 2003, [EMAIL PROTECTED] wrote:

> Hi,
>
> Is there anything in emerge/portage to remove files from
> /usr/portage/distfiles that have been superceded.

It seems to me that directory is just acting like a sort of portage cache in 
case you have to re-emerge some package, to avoid re-downloading it.

I was also going to ask this...can everything in /usr/portage/distfiles be 
safely removed (assuming I can re-download a package in case of need)?

Thanks
Davide


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] clearing out distfiles?

2003-09-14 Thread Tom Wesley
On Mon, 2003-09-15 at 04:20, [EMAIL PROTECTED] wrote:
> Hi,
> 
> Is there anything in emerge/portage to remove files from /usr/portage/distfiles
> that have been superceded.
> 
> eg.
> I currently have both
> 
> MPlayer-0.90.tar.bz2
> MPlayer-0.91.tar.bz2
> 
> I would want to remove .90 and keep .91
> 
> another example is that I've just updated to kde 3.1.3 and would want to remove
> 3.1.2.
> 
> Thanks,
> 
> Lex.
> 
> 
> --
> [EMAIL PROTECTED] mailing list

Attached is a copy of distclean, found on the forums...

-- 
Tom Wesley
#!/usr/bin/env python
## distclean.py version 0.1 (20 Aug 2003,
## This is the first version with a version number)
##
## Removes source files for Gentoo
## packages that are no longer installed
## Use with '-p' (pretend) flag to just get a list of files
## that would be removed
##
## Copyright (c) 2003, Fredrik Arnerup ([EMAIL PROTECTED])
## All rights reserved.
##
## Redistribution and use in source and binary forms, with or without
## modification, are permitted provided that the following conditions are met:
##
##   * Redistributions of source code must retain the above copyright notice,
## this list of conditions and the following disclaimer.
##
##   * Redistributions in binary form must reproduce the above copyright
## notice, this list of conditions and the following disclaimer in the
## documentation and/or other materials provided with the distribution.
##
## THIS SOFTWARE IS PROVIDED BY FREDRIK ARNERUP "AS IS" AND ANY
## EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
## WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
## DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
## SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
## CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
## DAMAGE.

import sys, os, os.path, getopt, portage

opt_p = 0
try:
if len(sys.argv) > 1:
opt_p = getopt.getopt(sys.argv[1:], 'p')[0][0][0] == '-p'
except getopt.GetoptError:
pass

distdir = portage.config().environ()['DISTDIR']
print 'DISTDIR =', distdir

vartree = portage.db['/']['vartree']
packages = []
for name in vartree.getallnodes():
packages.extend(vartree.dep_match(name))

files = {}
for package in packages:
try:
package_files = portage.portdb.aux_get(package, ['SRC_URI'])[0].split()
package_files = [(url.split('/')[-1]) for url in package_files]
for filename in package_files:
files[filename] = 1
except:
print 'Failed to get file list for', package

if not files:
sys.exit("No package files found.  This can't be right.\n")

try:
list = portage.listdir(distdir)
except os.OSError:
sys.exit('Failed to read ' + distdir)

size = 0; count = 0
for file in list:
abs_file = distdir + '/' + file
if (os.path.isfile(abs_file) and (not os.path.islink(abs_file)) 
and (not file in files)):
size += os.stat(abs_file).st_size
count += 1
if opt_p:
print 'Would remove', abs_file
else:
try:
os.remove(abs_file)
print 'Removed', abs_file
except OSError:
print 'Failed to remove', abs_file


size /= 1048576  ## MB
print '%i files, total size: %i MB' % (count, size)


signature.asc
Description: This is a digitally signed message part


[gentoo-user] File is corrupt or incomplete.

2003-09-14 Thread Chris
I have dl twice and the same thing happened both times.

>>> md5 src_uri ;-) X430src-1.tgz
>>> md5 src_uri ;-) X430src-2.tgz
>>> md5 src_uri ;-) X430src-3.tgz

!!! File is corrupt or incomplete. (Digests do not match)
>>> our recorded digest: 567903747018f2534965ab6cb3976b38
>>>  your file's digest: 78e597cad8fdad38c7666dbd7eed73ff
!!! File does not exist: /usr/portage/distfiles//X430src-4.tgz


-- 
Chris
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



[gentoo-user] How-to trouble shoot emerge/ebuild error messages...

2003-09-14 Thread Joshua Banks
My first question is:

1> Does someone have a standard operating proceedure for on how to troubleshoot package
compilation errors to get the most info possible to pass along to the list and/or 
Gentoo Forums?

2>Is there a log that is kept somewhere in Gentoo when a package fails with errors? If 
so, where 
please?

My example below... This is the only one that I was able to catch from the shell 
output.. But
allot of others failed as well because when I do a "emerge -uDp world" it keeps 
listing the same
files that fail continously when I try "emerge -uD world"...

The bad thing is, is that these take forever to compile and then they fail right at 
the end. My
computer has spent all day compiling/upgrading 33 pkgs and these keep failing. I'm 
running with
all Gentoo 2.4.20r5 defaults with no modifications to the make.conf file what so 
ever.. So I
should only be receiving stable packages...NO?
Calculating world dependencies ...done!
[ebuild U ] kde-base/kdegraphics-3.1.3 [3.1.2]
[ebuild U ] kde-base/kdeadmin-3.1.3 [3.1.2]
[ebuild U ] kde-base/kdeutils-3.1.3 [3.1.2]
[ebuild U ] kde-base/kdeartwork-3.1.3 [3.1.2]
[ebuild U ] kde-base/kdepim-3.1.3 [3.1.2]
[ebuild U ] kde-base/kde-3.1.3 [3.1.2]
[ebuild U ] sys-apps/pciutils-2.1.11 [2.1.10-r1]


grep: /usr/lib/libungif.la: No such file or directory
sed: can't read /usr/lib/libungif.la: No such file or directory
libtool: link: `/usr/lib/libungif.la' is not a valid libtool archive
make[3]: *** [kuickshow.la] Error 1
make[3]: Leaving directory
`/var/tmp/portage/kdegraphics-3.1.3/work/kdegraphics-3.1.3/kuickshow/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory 
`/var/tmp/portage/kdegraphics-3.1.3/work/kdegraphics-3.1.3/kuickshow'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/kdegraphics-3.1.3/work/kdegraphics-3.1.3'
make: *** [all] Error 2

!!! ERROR: kde-base/kdegraphics-3.1.3 failed.
!!! Function kde_src_compile, Line 137, Exitcode 2
!!! died running emake, kde_src_compile:make



Thanks,
JBanks




__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Function kde_src_compile, Line 137, Exitcode 2

2003-09-14 Thread Chris
Kde is upgrading and it got to kdegraphics-3.1.3 and failed at this point. To 
be sure that it wasnt caused by something going wrong with it when it dl I 
deleted it and had it dl again and it gave the same problem.


-- 
Chris
[EMAIL PROTECTED]
g++ -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/kde/3.1/include -I/usr/qt/3/include 
-I/usr/X11R6/include   -DQT_THREAD_SUPPORT  -D_REENTRANT  -Wnon-virtual-dtor 
-Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wwrite-strings -ansi 
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 
-O2 -mcpu=i686 -pipe -fno-exceptions -fno-check-new -DQT_CLEAN_NAMESPACE 
-DQT_NO_ASCII_CAST  -c -o dummy.o `test -f 'dummy.cpp' || echo './'`dummy.cpp
printing.cpp: In member function `void
   KuickPrintDialogPage::setScaleWidth(int)':
printing.cpp:302: warning: passing `float' for argument 1 of `void
   KIntNumInput::setValue(int)'
printing.cpp: In member function `void
   KuickPrintDialogPage::setScaleHeight(int)':
printing.cpp:307: warning: passing `float' for argument 1 of `void
   KIntNumInput::setValue(int)'
/bin/sh ../../libtool --silent --mode=link --tag=CXX g++  -Wnon-virtual-dtor 
-Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wwrite-strings -ansi 
-D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -DNDEBUG -DNO_DEBUG -O2 
-O2 -mcpu=i686 -pipe -fno-exceptions -fno-check-new -DQT_CLEAN_NAMESPACE 
-DQT_NO_ASCII_CAST-o kuickshow.la -rpath /usr/kde/3.1/lib -L/usr/X11R6/lib 
-L/usr/qt/3/lib -L/usr/kde/3.1/lib  -module -avoid-version kuickshow.lo aboutwidget.lo 
generalwidget.lo kuickconfigdlg..lo main.lo defaultswidget.lo imagewindow.lo 
kuickdata.lo imdata.lo filefinder.lo kurlwidget.lo filewidget.lo kuickio.lo kuick.lo 
imlibwidget.lo slideshowwidget.lo printing.lo -lkdeprint -L/usr/lib -lImlib -ljpeg 
-ltiff -lungif -lpng -lz -lm -lXext -L/usr/X11R6/lib -lSM -lICE -lXext -lX11
grep: /usr/lib/libungif.la: No such file or directory
sed: can't read /usr/lib/libungif.la: No such file or directory
libtool: link: `/usr/lib/libungif.la' is not a valid libtool archive
make[3]: *** [kuickshow.la] Error 1
make[3]: Leaving directory 
`/var/tmp/portage/kdegraphics-3.1.3/work/kdegraphics-3.1.3/kuickshow/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory 
`/var/tmp/portage/kdegraphics-3.1.3/work/kdegraphics-3.1.3/kuickshow'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/var/tmp/portage/kdegraphics-3.1.3/work/kdegraphics-3.1.3'
make: *** [all] Error 2

!!! ERROR: kde-base/kdegraphics-3.1.3 failed.
!!! Function kde_src_compile, Line 137, Exitcode 2
!!! died running emake, kde_src_compile:make

--
[EMAIL PROTECTED] mailing list

RE: [gentoo-user] user limits, pam.d

2003-09-14 Thread Gwendolyn van der Linden
Mikhail P. [mailto:[EMAIL PROTECTED] wrote:
> So once user "user" logins via ssh, he supposed to have
> these limits (viewble
> via "ulimit -a"). However, it does not work - user still
> has 1024 in FD
> limit.
> Now if I "su user" from root, and type "ulimit -a", I see
> that FD is 4048!
>
> Any suggestions where the problem could be?

Isn't 1024 a hard limit?  Especially if you use select() you have to
use a fixed size bitfield, which is IIRC 1024 bits long.  I'd say you
would need to do more than just raise the _allowed_ number of FDs per
process.

Gwendolyn.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Local mailing-list archive

2003-09-14 Thread Chris I
On 2003.09.14 23:51, Norberto Bensa wrote:
Chris I wrote:
> On 2003.09.14 14:56, Ron wrote:
> > Matthias F. Brandstetter wrote
> >
> > Why not to keep all gentoo-user mails?
>
> Using imap, it takes a rediculously long time to open mailboxes  
over
my
> connection from school (where I am) to home (where IMAP server is).

Even on a 10Mbit connection takes a lot of time to open a ~50k
messages like
my local copy of gentoo-{user,dev}
Yeah, my wireless network (which I use about 90% of the time now) isnt  
too speedy now that you mention it.

--

Chris I

I used to think I was indecisive, but now I'm not so sure.


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Boot Floppy - Replacement for Tom's Root Boot

2003-09-14 Thread Andrew Gaffney
Matt Neimeyer wrote:
Hey All,

I'm trying to install a very minimal Gentoo on a soon to be 486 router.

Call me clueless but... In the steps to install from a floppy at
Gentoo.org (http://forums.gentoo.org/viewtopic.php?t=8690) it says...
don't use Tom's Root Boot anymore.. it's too old. Okay. But I cannot for
the life of me find another that works that has a newer kernel than
2.2.something (which are close enough to the 2.2.20 on Tom's disk)
Can anyone recommend a good floppy based linux/boot disk of an
appropriate kernel version that will support the D-Link DE220 NIC I'm
using?
Is there any reason you can't use Tom's Root Boot with a custom kernel?

--
Andrew Gaffney
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Local mailing-list archive

2003-09-14 Thread Norberto Bensa
Chris I wrote:
> On 2003.09.14 14:56, Ron wrote:
> > Matthias F. Brandstetter wrote
> >
> > Why not to keep all gentoo-user mails?
>
> Using imap, it takes a rediculously long time to open mailboxes over my
> connection from school (where I am) to home (where IMAP server is).

Even on a 10Mbit connection takes a lot of time to open a ~50k messages like 
my local copy of gentoo-{user,dev}

Regards,
Norberto


pgp0.pgp
Description: signature


[gentoo-user] clearing out distfiles?

2003-09-14 Thread lexxx_h
Hi,

Is there anything in emerge/portage to remove files from /usr/portage/distfiles
that have been superceded.

eg.
I currently have both

MPlayer-0.90.tar.bz2
MPlayer-0.91.tar.bz2

I would want to remove .90 and keep .91

another example is that I've just updated to kde 3.1.3 and would want to remove
3.1.2.

Thanks,

Lex.


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Boot Floppy - Replacement for Tom's Root Boot

2003-09-14 Thread Matt Neimeyer
Hey All,

I'm trying to install a very minimal Gentoo on a soon to be 486 router.

Call me clueless but... In the steps to install from a floppy at
Gentoo.org (http://forums.gentoo.org/viewtopic.php?t=8690) it says...
don't use Tom's Root Boot anymore.. it's too old. Okay. But I cannot for
the life of me find another that works that has a newer kernel than
2.2.something (which are close enough to the 2.2.20 on Tom's disk)

Can anyone recommend a good floppy based linux/boot disk of an
appropriate kernel version that will support the D-Link DE220 NIC I'm
using?

Matt


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Gentoo poll #7 results.

2003-09-14 Thread Fred Van Andel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

These are the results for the seventh gentoo poll.

There was a dissapointing 36 respondants with 50 responses.

The question was:

What was the biggest problem you had installing gentoo?
Votes Percent  Problem
  816%  None
  816%  Hardware drivers
  612%  Impatience/Not reading docs
  510%  Kernel Config
  4  8%  Other Config
  4  8%  Use flags
  3  6%  No network/No CD
  3  6%  Took too long
  918%  Other

I will admit the question was too broad and too general. The most 
common response was other.  The next question will be a little 
easier.
- -- 
Fred Van Andel
[EMAIL PROTECTED]
GPG KeyID: 76526AD599455482  
GPG fingerprint: 64E4 4BAB 9C99 D565 3E3C F5D0 7652 6AD5 9945 5482
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/ZSltdlJq1ZlFVIIRAiagAJ9usPtIX+h/g0TQDwBNlfVN29THpACfQnp6
/6mvTzTbpth9Tdk8SehPH28=
=QXN1
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



[gentoo-user] OT, My opinion

2003-09-14 Thread Chris
I have to say this for gentoo. 
I have used several dif windows versions and mandrake 7.0, 7.2 and Red Hat 7.2 
and I have to say that gentoo is a wonder. All those other systems have you 
install a lot of junk (as I call it). Where as gentoo doesnt. And the support 
from the mailing list is far better. Thanks for the great work.
-- 
Chris
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] (OT) bootable Compact Flash card adapters...

2003-09-14 Thread Jason Cooper
Jerry McBride ([EMAIL PROTECTED]) scribbled:
> 
> Anyone here looking for CHEAP solid state hard drives implemented using 
> compact flash cards? Have a look 
> here:http://store.ituner.com/ituner/emstcfl.html
> 
> What caught my eye was how cheap these were... $25.00...
> 

Ummm, I believe that's the price of the adapter, not the price of the
CF.  However, it is still a good price for what it offers.  I think the
newest CF cards out (end user) is 2-4gig.  I've seen 17gig (~$20,000US a
year or two ago), but not mass market avail to my knowledge.  

Cooper.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Local mailing-list archive

2003-09-14 Thread Chris I
On 2003.09.14 14:56, Ron wrote:
Matthias F. Brandstetter wrote

Why not to keep all gentoo-user mails? I use maildir/ and have more
than 20.000 -user mails on my disk. They take less than 100MB space,
and IMHO this is nothing today.
Using imap, it takes a rediculously long time to open mailboxes over my  
connection from school (where I am) to home (where IMAP server is).

Other pros for a local archiv: You don't have to connect to the
archiv, you can search in several ways for mails (ee. with file utils
on the cmd line, they are always "online" ...)
ITs usually not an issue with most people to pop over to google and do  
a search for what you need. you could always specify the address of the  
archives with the site: paramater.

--

Chris I

Life's the same, except for the shoes.
- The Cars


pgp0.pgp
Description: PGP signature


[gentoo-user] (OT) bootable Compact Flash card adapters...

2003-09-14 Thread Jerry McBride

Anyone here looking for CHEAP solid state hard drives implemented using 
compact flash cards? Have a look 
here:http://store.ituner.com/ituner/emstcfl.html

What caught my eye was how cheap these were... $25.00...



-- 

**
 Registered Linux User Number 185956
  http://groups.google.com/groups?hl=en&safe=off&group=linux
 Join me in chat at #linux-users on irc.freenode.net
This email account no longers accepts attachments or messages containing html.
 8:23pm  up 66 days,  6:21,  4 users,  load average: 0.10, 0.10, 0.09


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Filesystem couldn't be fixed?

2003-09-14 Thread Spider
begin  quote
On Mon, 15 Sep 2003 00:31:12 +0400
Dmitry  Suzdalev <[EMAIL PROTECTED]> wrote:


> > As I use encrypted disks the livecd's won't do it (normally thats a
> > great recovery though) so instead I choose to edit the bootcommand
> > in grub and add: init=/bin/sash
> >
> > this will give you a ReadOnly mounted / , and nothing started.
> > at this time do fsck -f /dev/hda3 (assuming hda3 is your root
> > partition)
> >
> > And wait. wait wait and wait ;)
> 
> Well, not so long :). I have only one 40MB root partition. Check
> completes in about 5-10 minutes.

Thats strange, 40Mb for root?  Unless you partitioned /usr off I'm
really quite curious about how you managed to do that.


//Spider



-- 
begin  .signature
This is a .signature virus! Please copy me into your .signature!
See Microsoft KB Article Q265230 for more information.
end


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] kernel ver r6 and nividia

2003-09-14 Thread Chris
i found it after I sent the email. there was already a sym link to the r5 
kernel and when i told it to make the link it put a folder link in 
/usr/src/linux so i deleted the link linux and made a new linux link pointing 
to r6 then rebooted and retried nvidia kernel and glx and it worked. sorry 
for the bother.

On Tuesday 16 September 2003 09:01 am, Rick Sivernell wrote:
> On Sun, 14 Sep 2003 18:48:32 +
>
> Chris <[EMAIL PROTECTED]> wrote:
> > I ugraded to kernel-2.4.20-r6 from r5 and I am trying to get
> > nividia-kernel to install to r6 but it keeps installing to r5 the same
> > with nvidia-glx.
> >
> > How can I correct this problem?
> > --
> > Chris
> > [EMAIL PROTECTED]
> >
> >
> > --
> > [EMAIL PROTECTED] mailing list
>
> in /usr/src/ there is a symlink, make sure it is pointing to the kernel of
> choice.
>
> cheers

-- 
Chris
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] kernel ver r6 and nividia

2003-09-14 Thread Rick Sivernell
On Sun, 14 Sep 2003 18:48:32 +
Chris <[EMAIL PROTECTED]> wrote:

> I ugraded to kernel-2.4.20-r6 from r5 and I am trying to get nividia-kernel to 
> install to r6 but it keeps installing to r5 the same with nvidia-glx.
> 
> How can I correct this problem?
> -- 
> Chris
> [EMAIL PROTECTED]
> 
> 
> --
> [EMAIL PROTECTED] mailing list
> 

in /usr/src/ there is a symlink, make sure it is pointing to the kernel of
choice.

cheers

-- 
Rick Sivernell
Dallas, Texas  75287
972 306-2296
[EMAIL PROTECTED]
Gentoo Linux 
Registered Linux User

   .~.
  / v \
 /( _ )\
   ^ ^
In Linux we trust!

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo 1.4 - 1st time installation problem

2003-09-14 Thread Jason Stubbs
On Monday 15 September 2003 00:43, Stephen Liu wrote:
> On Sun, 2003-09-14 at 21:05, Jason Stubbs wrote:
> > > cdimage /# emerge -k sys-kernel/gentoo-sources
> > > !!! No profile directory; syetem mode unavailiable
> >
> > This sounds like you either missed the following from Step 8:
> >
> > # tar -xvjf /mnt/cdrom/snapshots/portage-mmdd.tar.bz2 -C
> > /mnt/gentoo/usr
>
> GRP package/snapshot steps
> Important:  The following instructions are for GRP users only
>
> According to the Installation instruction, that is for GRP but I am a
> single user.  Kindly advise.

From the installation guide:

Note: A complete Gentoo Linux 2-CD set contains the Gentoo Reference Platform, 
which is a complete pre-built Gentoo Linux system including GNOME, KDE, 
Mozilla and OpenOffice. The Gentoo Reference Platform ("GRP") was created to 
allow rapid Gentoo Linux package installations for those who need this 
capability. The "compile from source" functionality, which is the cornerstone 
of Gentoo Linux, will always be a fully-supported installation option as 
well. The purpose of the GRP is to make Gentoo Linux more convenient for some 
users, without impacting Gentoo's powerful "compile from source" installation 
process in any way. 


Sorry for the late reply... had to sleep!

Regards,
Jason

--
[EMAIL PROTECTED] mailing list



[gentoo-user] kernel ver r6 and nividia

2003-09-14 Thread Chris
I ugraded to kernel-2.4.20-r6 from r5 and I am trying to get nividia-kernel to 
install to r6 but it keeps installing to r5 the same with nvidia-glx.

How can I correct this problem?
-- 
Chris
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] USB Networking (Linux iPaq to Gentoo)

2003-09-14 Thread Rick [Kitty5]
Brian Doob wrote:
> I want to set up USB networking between my Linux-iPaq (an ARM based
> handheld with 2.4.19 Linux)

What linux do you have on your iPaq, and is that with or without extra ram /
microdrive?

Rick

Kitty5 NewMedia http://Kitty5.com
POV-Ray News & Resources http://Povray.co.uk
TEL : +44 (01270) 501101 - ICQ : 15776037

PGP Public Key
http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x231E1CEA


--
[EMAIL PROTECTED] mailing list



[gentoo-user] USB Networking (Linux iPaq to Gentoo)

2003-09-14 Thread Brian Doob
I want to set up USB networking between my Linux-iPaq (an ARM based
handheld with 2.4.19 Linux) and my Gentoo desktop box.  The gentoo box
is connected to a broadband router with an active DHCP server.  I want
the iPaq to get an address from the router and connect out to the
internet.  I think the iPaq is already configured correctly (it's
running familiar 0.7.1test + Opie 1.0).  I compiled usbnet statically
into my gentoo kernel (2.4.22-ck1).  I don't know which USB driver I
should use (Gigabyte GA-7VAX, VIA KT400, VIA VT8235).  I also don't know
how to set up my config files, or enable the IP forwarding (but not
masquerading) to talk to my router.  Does anyone know how to set this
up?  Thanks.

-Brian

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Cannot install k3b or arson (solved)

2003-09-14 Thread Chris Conway
For those interested i figured out that gcc had been updated all the 
way to 3.3.1 as part of my emerge of the latest radeon drivers.  Put 
everything back and it worked fine again.

On Sunday, Sep 14, 2003, at 15:41 America/New_York, Chris Conway wrote:

I am attempting to install k3b or arson and the compile fails.

First a few pages of "warning: obsolete use of designated initializer 
with ':' ".

Then i get
k3bmpmodule.cpp:428: error: ISO C++ forbids braced-groups within 
expressions
k3bmpmodule.cpp:428: error: ISO C++ forbids braced-groups within 
expressions
k3bmpmodule.cpp:445: error: ISO C++ forbids braced-groups within 
expressions
k3bmpmodule.cpp:445: error: ISO C++ forbids braced-groups within 
expressions

Then a whole series of make error 1 failures

and finally

!!! Error: app-cdr/k3b-0.9 failed.
!!! Function kde_src_compile, line 137, Exitcode 2
!!! Died running emake, kde_src_compile:make
Any clues?

--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] where are the gentoo-user mailing list archives???

2003-09-14 Thread Renat Golubchyk
On Sunday 14 September 2003 22:47, el lodger wrote:
> On Sun, 14 Sep 2003 19:20:45 +0200
>
> Renat Golubchyk <[EMAIL PROTECTED]> wrote:
> > Hi!
> >
> > On Sunday 14 September 2003 18:08, Norberto Bensa wrote:
> > > Renat Golubchyk wrote:
> > > > Hi!
> > > >
> > > > On Sunday 14 September 2003 07:42, momesana wrote:
> > > > > Can anybody tell me where to find the archives for this very
> > > > > mailinglist.
> > > >
> > > > http://news.gmane.org/gmane.linux.gentoo.user
> > > > http://marc.theaimsgroup.com/?l=gentoo-user&r=1&w=2
> > > > http://www.mail-archive.com/[EMAIL PROTECTED]/index.html
> > >
> > > What about a signature? Any admin reading this?
> >
> > It doesn't look like if admins read the mailing list, because I
> > proposed the same thing (a line in the signature) two weeks ago on
> > gentoo-dev and nothing happened. They even didn't add a link to the
> > webpage with the lists although people asked for it multiple times. I
> > think we should send these proposals to other addresses like
> > [EMAIL PROTECTED] .
>
> Maybe you should try writing a bugzilla report for this.

Somehow I missed that option :-) Always associated bugzilla with 
gentoo-related or even program-related bugs rather than administrative stuff 
although I knew that it is actually for everything. Well, have to think more 
thoroughly I guess.

Bug filed at http://bugs.gentoo.org/show_bug.cgi?id=28730
Feel free to comment and to make more suggestions.


Cheers,
Renat


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] where are the gentoo-user mailing list archives???

2003-09-14 Thread el lodger
On Sun, 14 Sep 2003 19:20:45 +0200
Renat Golubchyk <[EMAIL PROTECTED]> wrote:

> Hi!
> 
> On Sunday 14 September 2003 18:08, Norberto Bensa wrote:
> > Renat Golubchyk wrote:
> > > Hi!
> > >
> > > On Sunday 14 September 2003 07:42, momesana wrote:
> > > > Can anybody tell me where to find the archives for this very
> > > > mailinglist.
> > >
> > > http://news.gmane.org/gmane.linux.gentoo.user
> > > http://marc.theaimsgroup.com/?l=gentoo-user&r=1&w=2
> > > http://www.mail-archive.com/[EMAIL PROTECTED]/index.html
> >
> > What about a signature? Any admin reading this?
> 
> It doesn't look like if admins read the mailing list, because I
> proposed the same thing (a line in the signature) two weeks ago on
> gentoo-dev and nothing happened. They even didn't add a link to the
> webpage with the lists although people asked for it multiple times. I
> think we should send these proposals to other addresses like
> [EMAIL PROTECTED] .
Maybe you should try writing a bugzilla report for this.
lodger
-- 
Powered by GENTOO LINUX 

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] how to install gentoo without a CDROM?

2003-09-14 Thread Spider
begin  quote
On 14 Sep 2003 12:48:14 -0700
HvR <[EMAIL PROTECTED]> wrote:

> does anyone know how to install gentoo without a cdrom? i have a
> floppy
> drive
> or i can put a bunch of files on the hard disk but my cdrom doesnt
> work...
> can i do a loop back mount of teh cdrom iso image somehow?
> 
> i really would like to install gentoo, any help or pointers
> appreciated...


the alt-install guide shows how to do harddisk install (Basically the
same as any other install, but without booting)  bootdiscs are avaiable
from other sources / distributions that can be used if need be.

//Spider

-- 
begin  .signature
This is a .signature virus! Please copy me into your .signature!
See Microsoft KB Article Q265230 for more information.
end


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] how to install gentoo without a CDROM?

2003-09-14 Thread Karl Huysmans
http://www.gentoo.org/doc/en/altinstall.xml

hope this helps ...

On Sunday 14 September 2003 21:48, HvR wrote:
> does anyone know how to install gentoo without a cdrom? i have a floppy
> drive
> or i can put a bunch of files on the hard disk but my cdrom doesnt
> work...
> can i do a loop back mount of teh cdrom iso image somehow?
>
> i really would like to install gentoo, any help or pointers
> appreciated...

-- 
Karl Huysmans


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Filesystem couldn't be fixed?

2003-09-14 Thread Dmitry Suzdalev
On Sunday 14 September 2003 19:34, Spider wrote:
> Yep, I had  a case of bad RAM that caused strange segfaults and errors
> (attempt to read past end of device style errors ) which forced me to do
> some scrunity on all hardware.   

I should notice that my RAM work quite well -- hadn't any problems with it. 
But still maybe I should check it.

> As I use encrypted disks the livecd's
> won't do it (normally thats a great recovery though) so instead i choose
> to edit the bootcommand in grub and add:
> init=/bin/sash
>
> this will give you a ReadOnly mounted / , and nothing started.
> at this time do
> fsck -f /dev/hda3 (assuming hda3 is your root partition)
>
> And wait. wait wait and wait ;)

Well, not so long :). I have only one 40MB root partition. Check completes in 
about 5-10 minutes.

Thanks for pointers.

Dmitry.
-- 
Gentoo Linux 2.4.20 #1 i686 AMD Athlon(tm)  AuthenticAMD GNU/Linux


--
[EMAIL PROTECTED] mailing list



[gentoo-user] how to install gentoo without a CDROM?

2003-09-14 Thread HvR




does anyone know how to install gentoo without a cdrom? i have a floppy drive
or i can put a bunch of files on the hard disk but my cdrom doesnt work...
can i do a loop back mount of teh cdrom iso image somehow?

i really would like to install gentoo, any help or pointers appreciated...





Re: [gentoo-user] lilo and upgraded world

2003-09-14 Thread HvR




yes you have to use genkernel or make your own initrd by hand

On Sat, 2003-09-13 at 19:55, Chris wrote:

Kernel panic: VFS: UNable to mount root fs on 03:43

Could someone tell me why I am getting this.

On Sunday 14 September 2003 01:52 am, Kees Bergwerf wrote:
> Op zaterdag 13 september 2003 22:26, schreef Chris:
> > All I have is a simple question. This thing is emerging -u world and part
> > of it is the kernel and souces do I have to edit lilo again to usew these
> > new sources?
>
> At first you have to compile the kernel sources.
> make a symbolic link /usr/src/linux to the new sources:
>
> ln -s /usr/src/ /usr/src/linux
>
> then go to /usr/src/linux
> # make menuconfig
>
> Configure your kernel, save the config
> then
> # make dep && make clean bzImage modules modules_install
>
> When everything is ok, the new kernel can be found :
> /usr/src/linux/arch/x86/boot/bzImage
>
> #mount /boot
> and copy bzImage to /boot
> you can rename it if you like so that you don't overwrite an existing
> bzImage
>
> then add this image to lilo.conf (and run lilo) so you can choose it when
> booting.
> If something goes wrong, you can still boot the old kernel
>
>
> --Kees
>
> --
> [EMAIL PROTECTED] mailing list





[gentoo-user] Cannot install k3b or arson

2003-09-14 Thread Chris Conway
I am attempting to install k3b or arson and the compile fails.

First a few pages of "warning: obsolete use of designated initializer 
with ':' ".

Then i get
k3bmpmodule.cpp:428: error: ISO C++ forbids braced-groups within 
expressions
k3bmpmodule.cpp:428: error: ISO C++ forbids braced-groups within 
expressions
k3bmpmodule.cpp:445: error: ISO C++ forbids braced-groups within 
expressions
k3bmpmodule.cpp:445: error: ISO C++ forbids braced-groups within 
expressions

Then a whole series of make error 1 failures

and finally

!!! Error: app-cdr/k3b-0.9 failed.
!!! Function kde_src_compile, line 137, Exitcode 2
!!! Died running emake, kde_src_compile:make
Any clues?

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] lilo and upgraded world

2003-09-14 Thread HvR




more precisly:

rm /usr/src/linux (removes old link)
ln -s /usr/src/ /usr/src/linux
genkernel (or genkernel --config if you want to change stuff)
then do the lilo stuff

On Sat, 2003-09-13 at 18:52, Kees Bergwerf wrote:

Op zaterdag 13 september 2003 22:26, schreef Chris:

> All I have is a simple question. This thing is emerging -u world and part
> of it is the kernel and souces do I have to edit lilo again to usew these
> new sources?

At first you have to compile the kernel sources.
make a symbolic link /usr/src/linux to the new sources:

ln -s /usr/src/ /usr/src/linux

then go to /usr/src/linux
# make menuconfig

Configure your kernel, save the config
then
# make dep && make clean bzImage modules modules_install

When everything is ok, the new kernel can be found : 
/usr/src/linux/arch/x86/boot/bzImage

#mount /boot
and copy bzImage to /boot
you can rename it if you like so that you don't overwrite an existing bzImage

then add this image to lilo.conf (and run lilo) so you can choose it when 
booting.
If something goes wrong, you can still boot the old kernel


--Kees

--
[EMAIL PROTECTED] mailing list






[gentoo-user] Local mailing-list archive

2003-09-14 Thread Ron
Matthias F. Brandstetter wrote

Why not to keep all gentoo-user mails? I use maildir/ and have more 
than 20.000 -user mails on my disk. They take less than 100MB space, 
and IMHO this is nothing today.

Other pros for a local archiv: You don't have to connect to the 
archiv, you can search in several ways for mails (ee. with file utils 
on the cmd line, they are always "online" ...)

ok, just my 2 cents :)
Greetings, Matthias

Hi

I am new to Linux and even newer to mailing lists.  How do you save the
mailing-list emails?  Do you move them to a folder in your mail program
or do you have a separate directory you use?  I like the idea as I have
also deleted things I later wished I still had!

Thank-you

-- 
Ron
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Can't update postgresql

2003-09-14 Thread Phil Barnett

About a month ago, I started getting a message that ant is not working, which 
keeps me from emerging the latest postgresql, which in turn keeps me from 
emerging the latest php.

I have unmerged and emerged ant with no effect.

This bug is listed in the bug list as #22875.

How can I troubleshoot what is going on?

-- 

Democracy is two wolves and a lamb voting on what to have for
lunch. Liberty is a well-armed lamb contesting the vote.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] where are the gentoo-user mailing list archives???

2003-09-14 Thread Renat Golubchyk
Hi!

On Sunday 14 September 2003 18:08, Norberto Bensa wrote:
> Renat Golubchyk wrote:
> > Hi!
> >
> > On Sunday 14 September 2003 07:42, momesana wrote:
> > > Can anybody tell me where to find the archives for this very
> > > mailinglist.
> >
> > http://news.gmane.org/gmane.linux.gentoo.user
> > http://marc.theaimsgroup.com/?l=gentoo-user&r=1&w=2
> > http://www.mail-archive.com/[EMAIL PROTECTED]/index.html
>
> What about a signature? Any admin reading this?

It doesn't look like if admins read the mailing list, because I proposed the 
same thing (a line in the signature) two weeks ago on gentoo-dev and nothing 
happened. They even didn't add a link to the webpage with the lists although 
people asked for it multiple times. I think we should send these proposals to 
other addresses like [EMAIL PROTECTED] .


Cheers,
Renat


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] gnome 2.2.3

2003-09-14 Thread Owen Ford
On Sun, 2003-09-14 at 11:17, Collins Richey wrote:
> On Sun, 14 Sep 2003 00:27:24 -0400
> Chris I <[EMAIL PROTECTED]> wrote:
> 
> > On 2003.09.13 13:19, Collins Richey wrote:
> > > I'm currently running gnome 2.2.3 on linux kernel 2.6-test5.  I have
> > > emerged the gnome-audion package as well as the standard gnome set.
> > > I'm
> > > using OSS emulation on 2.6 because the alsa modules for my car
> > > (ES1371)
> > > do not work.  Sound works just fine for me with XMMS, RealPlayer,
> > > etc.,
> > > but the gnome system sounds do not work.  Mixer settings are all
> > > unmuted.  When I go to gnome system events and play one of the
> > > standard
> > > sound .wav files, I get no error indication but no sound.
> > > 
> > > Any help would be appreciated.
> > 
> > Have you enabled sound server startup in the control-center?
> > 
> 
> Yes.  Here's more info.  I just discovered that each time I push play in the
> control-center dialog, I get the following (to me somewhat meaningless Call Trace in
> /var/log/messages:
> 
> Sep 14 08:39:59 richeypc3 kernel: Call Trace:
> Sep 14 08:39:59 richeypc3 kernel:  [__might_sleep+95/112] __might_sleep+0x5f/0x7
> 0
> Sep 14 08:39:59 richeypc3 kernel:  [] __might_sleep+0x5f/0x70
> Sep 14 08:39:59 richeypc3 kernel:  [__alloc_pages+801/816] __alloc_pages+0x321/0
> x330
> Sep 14 08:39:59 richeypc3 kernel:  [] __alloc_pages+0x321/0x330
> Sep 14 08:39:59 richeypc3 kernel:  [__alloc_pages+141/816] __alloc_pages+0x8d/0x
> 330
> Sep 14 08:39:59 richeypc3 kernel:  [] __alloc_pages+0x8d/0x330
> Sep 14 08:39:59 richeypc3 kernel:  [pte_alloc_one+26/80] pte_alloc_one+0x1a/0x50
> Sep 14 08:39:59 richeypc3 kernel:  [] pte_alloc_one+0x1a/0x50
> Sep 14 08:39:59 richeypc3 kernel:  [pte_alloc_map+64/192] pte_alloc_map+0x40/0xc
> 0
> Sep 14 08:39:59 richeypc3 kernel:  [] pte_alloc_map+0x40/0xc0
> Sep 14 08:39:59 richeypc3 kernel:  [remap_page_range+180/464] remap_page_range+0
> xb4/0x1d0
> Sep 14 08:39:59 richeypc3 kernel:  [] remap_page_range+0xb4/0x1d0
> Sep 14 08:39:59 richeypc3 kernel:  [_end+541716521/1067432924] nv_kern_mmap+0x31
> 4/0x367 [nvidia]
> Sep 14 08:39:59 richeypc3 kernel:  [] nv_kern_mmap+0x314/0x367 [nvidia
> ]
> Sep 14 08:39:59 richeypc3 kernel:  [do_mmap_pgoff+784/1696] do_mmap_pgoff+0x310/
> 0x6a0
> Sep 14 08:39:59 richeypc3 kernel:  [] do_mmap_pgoff+0x310/0x6a0
> Sep 14 08:39:59 richeypc3 kernel:  [sys_mmap2+155/224] sys_mmap2+0x9b/0xe0
> Sep 14 08:39:59 richeypc3 kernel:  [] sys_mmap2+0x9b/0xe0
> Sep 14 08:39:59 richeypc3 kernel:  [syscall_call+7/11] syscall_call+0x7/0xb
> Sep 14 08:39:59 richeypc3 kernel:  [] syscall_call+0x7/0xb
> Sep 14 08:39:59 richeypc3 kernel: 
> 
> So, could this be a 2.6.test? kernel problem?
Odds are good that you have the many debugging options turned on.  That
one appears to be from Debug memory allocations (CONFIG_DEBUG_SLAB),
Page alloc debugging (CONFIG_DEBUG_PAGEALLOC), or Sleep-inside-spinlock
checking (CONFIG_DEBUG_SPINLOCK_SLEEP).

Do not report these to the kernel developers because they will tell you
to contact nvidia (and maybe a few other colorful things as well). 
These are errors in the nvidia binary drivers (
note the "Sep 14 08:39:59 richeypc3 kernel:  []
nv_kern_mmap+0x314/0x367 [nvidia]" bit).

If you are recieving similar messages on a non-tainted kernel, feel free
to drop an email to [EMAIL PROTECTED]

--
Owen Ford <[EMAIL PROTECTED]>


signature.asc
Description: This is a digitally signed message part


Re: [gentoo-user] where are the gentoo-user mailing list archives???

2003-09-14 Thread Norberto Bensa
Renat Golubchyk wrote:
> Hi!
>
> On Sunday 14 September 2003 07:42, momesana wrote:
> > Can anybody tell me where to find the archives for this very mailinglist.
>
> http://news.gmane.org/gmane.linux.gentoo.user
> http://marc.theaimsgroup.com/?l=gentoo-user&r=1&w=2
> http://www.mail-archive.com/[EMAIL PROTECTED]/index.html

What about a signature? Any admin reading this?

Norberto


pgp0.pgp
Description: signature


Re: [gentoo-user] gnome 2.2.3

2003-09-14 Thread Collins Richey
On Sun, 14 Sep 2003 00:27:24 -0400
Chris I <[EMAIL PROTECTED]> wrote:

> On 2003.09.13 13:19, Collins Richey wrote:
> > I'm currently running gnome 2.2.3 on linux kernel 2.6-test5.  I have
> > emerged the gnome-audion package as well as the standard gnome set.
> > I'm
> > using OSS emulation on 2.6 because the alsa modules for my car
> > (ES1371)
> > do not work.  Sound works just fine for me with XMMS, RealPlayer,
> > etc.,
> > but the gnome system sounds do not work.  Mixer settings are all
> > unmuted.  When I go to gnome system events and play one of the
> > standard
> > sound .wav files, I get no error indication but no sound.
> > 
> > Any help would be appreciated.
> 
> Have you enabled sound server startup in the control-center?
> 

Yes.  Here's more info.  I just discovered that each time I push play in the
control-center dialog, I get the following (to me somewhat meaningless Call Trace in
/var/log/messages:

Sep 14 08:39:59 richeypc3 kernel: Call Trace:
Sep 14 08:39:59 richeypc3 kernel:  [__might_sleep+95/112] __might_sleep+0x5f/0x7
0
Sep 14 08:39:59 richeypc3 kernel:  [] __might_sleep+0x5f/0x70
Sep 14 08:39:59 richeypc3 kernel:  [__alloc_pages+801/816] __alloc_pages+0x321/0
x330
Sep 14 08:39:59 richeypc3 kernel:  [] __alloc_pages+0x321/0x330
Sep 14 08:39:59 richeypc3 kernel:  [__alloc_pages+141/816] __alloc_pages+0x8d/0x
330
Sep 14 08:39:59 richeypc3 kernel:  [] __alloc_pages+0x8d/0x330
Sep 14 08:39:59 richeypc3 kernel:  [pte_alloc_one+26/80] pte_alloc_one+0x1a/0x50
Sep 14 08:39:59 richeypc3 kernel:  [] pte_alloc_one+0x1a/0x50
Sep 14 08:39:59 richeypc3 kernel:  [pte_alloc_map+64/192] pte_alloc_map+0x40/0xc
0
Sep 14 08:39:59 richeypc3 kernel:  [] pte_alloc_map+0x40/0xc0
Sep 14 08:39:59 richeypc3 kernel:  [remap_page_range+180/464] remap_page_range+0
xb4/0x1d0
Sep 14 08:39:59 richeypc3 kernel:  [] remap_page_range+0xb4/0x1d0
Sep 14 08:39:59 richeypc3 kernel:  [_end+541716521/1067432924] nv_kern_mmap+0x31
4/0x367 [nvidia]
Sep 14 08:39:59 richeypc3 kernel:  [] nv_kern_mmap+0x314/0x367 [nvidia
]
Sep 14 08:39:59 richeypc3 kernel:  [do_mmap_pgoff+784/1696] do_mmap_pgoff+0x310/
0x6a0
Sep 14 08:39:59 richeypc3 kernel:  [] do_mmap_pgoff+0x310/0x6a0
Sep 14 08:39:59 richeypc3 kernel:  [sys_mmap2+155/224] sys_mmap2+0x9b/0xe0
Sep 14 08:39:59 richeypc3 kernel:  [] sys_mmap2+0x9b/0xe0
Sep 14 08:39:59 richeypc3 kernel:  [syscall_call+7/11] syscall_call+0x7/0xb
Sep 14 08:39:59 richeypc3 kernel:  [] syscall_call+0x7/0xb
Sep 14 08:39:59 richeypc3 kernel: 

So, could this be a 2.6.test? kernel problem?

-- 
Collins Richey - Denver Area
if you fill your heart with regrets of yesterday and the 
worries of tomorrow, you have no today to be thankful for.



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] gnome 2.2.3

2003-09-14 Thread Collins Richey
On Sun, 14 Sep 2003 00:27:24 -0400
Chris I <[EMAIL PROTECTED]> wrote:

> On 2003.09.13 13:19, Collins Richey wrote:
> > I'm currently running gnome 2.2.3 on linux kernel 2.6-test5.  I have
> > emerged the gnome-audion package as well as the standard gnome set.
> > I'm
> > using OSS emulation on 2.6 because the alsa modules for my car
> > (ES1371)
> > do not work.  Sound works just fine for me with XMMS, RealPlayer,
> > etc.,
> > but the gnome system sounds do not work.  Mixer settings are all
> > unmuted.  When I go to gnome system events and play one of the
> > standard
> > sound .wav files, I get no error indication but no sound.
> > 
> > Any help would be appreciated.
> 
> Have you enabled sound server startup in the control-center?
> 
> --
> 
> Chris I
> 
> Never ask two questions in a business letter.  The reply will discuss
> the one you are least interested, and say nothing about the other.
> 

Yes, Enable sound server startup, Sounds for events, and Restore Mixer
Levels of Gnome Mixer are checked.

-- 
Collins Richey - Denver Area
if you fill your heart with regrets of yesterday and the 
worries of tomorrow, you have no today to be thankful for.



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo 1.4 - 1st time installation problem

2003-09-14 Thread Stephen Liu
Hi Jason,

Thanks for your advise.  

Before taking another round I expect to clarify following point;

On Sun, 2003-09-14 at 21:05, Jason Stubbs wrote:
- snip -
> > cdimage /# emerge -k sys-kernel/gentoo-sources
> > !!! No profile directory; syetem mode unavailiable
> 
> This sounds like you either missed the following from Step 8:
> 
> # tar -xvjf /mnt/cdrom/snapshots/portage-mmdd.tar.bz2 -C /mnt/gentoo/usr

GRP package/snapshot steps 
Important:  The following instructions are for GRP users only
..
,
..

Code listing 8.3: Using Portage snapshot

Replace mmdd with the datestamp in the filename.
# tar -xvjf /mnt/cdrom/snapshots/portage-mmdd.tar.bz2 -C /mnt/gentoo/usr




According to the Installation instruction, that is for GRP but I am a
single user.  Kindly advise.

> or something went wrong with the stage3 tarball extraction and your missing a 
> symlink at /etc/make.profile. After chroot'ing, check with "ls -l 
> /etc/make.profile" and if it's missing (or different) fix it with:
> 
> # ln -s ../usr/portage/profiles/default-x86-1.4 /etc/make.profile

Noted with thanks

B.R.
Stephen


To Get Your Own iCareHK.com Email Address?  Go To www.iCareHK.com.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Filesystem couldn't be fixed?

2003-09-14 Thread Spider
begin  quote
On Sun, 14 Sep 2003 14:03:45 +0400
Dmitry  Suzdalev <[EMAIL PROTECTED]> wrote:

> 
> * Filesystem couldn't be fixed [!!]
> 
 

> Upon the next reboot, all goes okay, e2fsck says that FS is clean.
> Same result 
> if I issue "e2fsck /dev/hda4" command manually. 
> How can I catch this nasty error now? 


> Anyone had something like this?


Yep, I had  a case of bad RAM that caused strange segfaults and errors
(attempt to read past end of device style errors ) which forced me to do
some scrunity on all hardware.   As I use encrypted disks the livecd's
won't do it (normally thats a great recovery though) so instead i choose
to edit the bootcommand in grub and add:
init=/bin/sash

this will give you a ReadOnly mounted / , and nothing started.
at this time do 
fsck -f /dev/hda3 (assuming hda3 is your root partition)

And wait. wait wait and wait ;)

Then, go through each partition in turn and fsck them (fsck is a wrapper
that does automatic fs determination before calling fsck.ext3 fsck.jfs
or others)

//Spider




-- 
begin  .signature
This is a .signature virus! Please copy me into your .signature!
See Microsoft KB Article Q265230 for more information.
end


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Gentoo Stats

2003-09-14 Thread Mike Arrison
On Sun, Sep 14, 2003 at 10:45:10AM -0400, Jay Carson wrote:
>Anyone know whats going on with gentoo-stats. 
Seems to me the machine stats.gentoo.org has been down for quite awhile.
I tried last week and no answer.

-Mike Arrison


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Can't compiling kernel for install

2003-09-14 Thread Mike Arrison
On Sun, Sep 14, 2003 at 08:09:03AM -0700, Harold Martin wrote:
[snip]...
> make[2]: Entering directory `/usr/src/linux-2.4.22-ck1/kernel'
> make[2]: *** No rule to make target
> `/usr/src/linux-2.4.22-ck1/include/linux/autoconf.h', needed by
> `/usr/src/linux-2.4.22-ck1/include/linux/modules/signal.ver'.  Stop.
> make[2]: Leaving directory `/usr/src/linux-2.4.22-ck1/kernel'
> make[1]: *** [_sfdep_kernel] Error 2
> make[1]: Leaving directory `/usr/src/linux-2.4.22-ck1'
> make: *** [dep-files] Error 2
> 
> What do I need to do now?

Same mistake I made.  Your old config must be missing some option when
you copied it from the old kernel.  Either do a "make oldconfig" or
"make menuconfig" to see the changed options.  Then it'll compile.

-Mike Arrison


pgp0.pgp
Description: PGP signature


[gentoo-user] Can't compiling kernel for install

2003-09-14 Thread Harold Martin
I've now gotten to the step in the install process where I need to
install my kernel. I ran 'emerge -k sys-kernel/ck-sources' and
configured it. When I go to 'make dep' however I get the errors:
make[1]: Entering directory `/usr/src/linux-2.4.22-ck1/arch/i386/boot'
make[1]: Nothing to be done for `dep'.
make[1]: Leaving directory `/usr/src/linux-2.4.22-ck1/arch/i386/boot'
rm -f .depend .hdepend
make _sfdep_kernel _sfdep_drivers _sfdep_mm _sfdep_fs _sfdep_net
_sfdep_ipc _sfdep_lib _sfdep_crypto _sfdep_arch/i386/kernel
_sfdep_arch/i386/mm _sfdep_arch/i386/lib _FASTDEP_ALL_SUB_DIRS="kernel
drivers mm fs net ipc lib crypto arch/i386/kernel arch/i386/mm
arch/i386/lib"
make[1]: Entering directory `/usr/src/linux-2.4.22-ck1'
make -C kernel fastdep
make[2]: Entering directory `/usr/src/linux-2.4.22-ck1/kernel'
make[2]: *** No rule to make target
`/usr/src/linux-2.4.22-ck1/include/linux/autoconf.h', needed by
`/usr/src/linux-2.4.22-ck1/include/linux/modules/signal.ver'.  Stop.
make[2]: Leaving directory `/usr/src/linux-2.4.22-ck1/kernel'
make[1]: *** [_sfdep_kernel] Error 2
make[1]: Leaving directory `/usr/src/linux-2.4.22-ck1'
make: *** [dep-files] Error 2

What do I need to do now?

Thanks,
Harold


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] where are the gentoo-user mailing list archives???

2003-09-14 Thread Matthias F. Brandstetter
-- quoting momesana --
> Unfortunately I have deleted the mail ( ... since you can't keep
> all of those 100 or more mails posted every single day ) and I cant

Why not to keep all gentoo-user mails? I use maildir/ and have more 
than 20.000 -user mails on my disk. They take less than 100MB space, 
and IMHO this is nothing today.

Other pros for a local archiv: You don't have to connect to the 
archiv, you can search in several ways for mails (ee. with file utils 
on the cmd line, they are always "online" ...)

ok, just my 2 cents :)
Greetings, Matthias

-- 
Man:You must be stupider than you look.

Homer:  Stupider like a fix!

   Lemon of Troy


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Gentoo Stats

2003-09-14 Thread Jay Carson



Anyone know whats going on with gentoo-stats. I 
just finished building my system and everything seems to work, but when I 
type:
 
gentoo-stats --new
 I receive the following error
 
Obtaining new system ID...There was an error 
when obtaining a new system ID (proxy?).Please try again 
later.
This has been happening for a while now... and 
there is no proxy.


Re: [gentoo-user] Why is "sendmail: Cannot open mail:25" popping up

2003-09-14 Thread Chris Conway
On Sunday, Sep 14, 2003, at 01:13 America/New_York, Jean Magnan de 
Bornier wrote:

Le 09/14/03 Chris Conway <[EMAIL PROTECTED]> a écrit notamment:

I am just finishing a new install of gentoo sourcces and have emerged
xfree, kde, and the ATI drivers.  Why is this popping up in the
terminal?  Better question is why- I haven't installed sendmail?  Is 
it
part of KDE? Or is it some other process trying to invoke sendmail and
failing? metalog trying to send a message (can it do that)?

Odder yet I did a emerge -p unmerge sendmail and it says it isn't
installed.
Is my computer haunted by a sendmail daemon?
Most probably you have ssmtp installed with a symlink to sendmail, so 
it
is ssmtp talking to you

Wouldn't ssmtp or sendmail then show up as a process when I type  ps -A?
--
Jean Magnan de Bornier
3 Cours Victor Hugo, 13980 Alleins   France
Tel: 04 90 59 33 94Port: 06 09 17 35 87
mèl: jm.bornier*at*free.fr
--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


[gentoo-user] Cups & Epson Stylus Photo 870

2003-09-14 Thread Alexander Puchmayr
Hi there!

I have heavy problems getting cups to operate with my Epson Stylus photo 870 
printer.

The first problem is, that it alwyas says "Media tray empty!", although 
there's enough paper in the tray. The status flags are 0x18 (returned by 
LPGETSTATUS) in the normal case (i.e. printer ready, enough paper), and 
cups interprets this as "No paper" and "Printer Error". So I commented out 
the lines checking the status in cups's source for the usb-driver 
(backend/usb.c). But this cannot be the solution to this problem.

And the second one is that it calls ghostscript with some driver it does not 
support. According to the log, it calls gs with "-sDEVICE=stp", but gs does 
not have this driver compiled in. 

D [14/Sep/2003:15:57:04 +0200] [Job 6] foomatic-gswrapper: gs 
'-dPARANOIDSAFER' '-dNOPAUSE' '-dBATCH' '-sDEVICE=stp' '-sModel=escp2-870' 
'-sOutputFile=| cat >&3' '/dev/fd/0' 3>&1 1>&2
D [14/Sep/2003:15:57:04 +0200] [Job 6] ESP Ghostscript 7.05 (2003-02-05)
D [14/Sep/2003:15:57:04 +0200] [Job 6] Copyright (C) 2002 artofcode LLC, 
Benicia, CA.  All rights reserved.
D [14/Sep/2003:15:57:04 +0200] [Job 6] This software comes with NO WARRANTY: 
see the file PUBLIC for details.
D [14/Sep/2003:15:57:04 +0200] [Job 6] Unknown device: stp
D [14/Sep/2003:15:57:04 +0200] [Job 6] renderer return value: 1
D [14/Sep/2003:15:57:04 +0200] [Job 6] renderer received signal: 1

Thanks for any suggestions
Alex


-- 
Alexander Puchmayr
PGP/GPG-Key: http://puchmayr.linznet.at/private/alex_pubkey.asc


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] horribly slow portage updates (fixpackages)

2003-09-14 Thread Joshua Banks
Awesome Marius... :P

Your previous explanation, in my opinion, is better than any that I've come accrossed 
on the
Gentoo Forums so far. Most people seemed to be grabbing at thin air trying to comeup 
with an
explantion as to why fixpackages seemed so slow.

Thanks again. Appreciate your time.

Joshua Banks
--- Marius Mauch <[EMAIL PROTECTED]> wrote:
> On 09/14/03  Marius Mauch wrote:
> 
> > Now the fact that fixpackages is so slow is because to update this
> > information the .tbz2 needs to be uncompressed, then the information
> > can be updated and then it needs to be recompressed. This takes some
> > time for 1 or 2 GB of data. I'm currently trying to optimize the code
> > a bit, but I think for a dramatic improvement we would have to drop
> > the current.tbz2 format (so we can save the uncompress-recompress
> > steps) itself which is unlikely to happen anytime soon.
> 
> Ok, answering to myself: looks as if I was wrong about the speed
> bottleneck in fixpackages. The uncompress/recompress is not the thing
> that takes most of the time, it seems to be the fact that the actual
> changing is done in a shellscript and the launch of about 2 dozen
> processes for each .tbz2/update-entry combination kills the performance.
> I ported this shellscript to python and integrated it in portage.py (the
> portage corefile) and it increased the performance about factor 8
> (little test with 4 .tbz2 packages). Still have to check if that change
> has any side-effects, if not I think it will be integrated in one of the
> next portage versions.
> 
> Marius
> 
> -- 
> Public Key at http://www.genone.de/info/gpg-key.pub
> 
> In the beginning, there was nothing. And God said, 'Let there be
> Light.' And there was still nothing, but you could see a bit better.
> 

> ATTACHMENT part 2 application/pgp-signature 


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] horribly slow portage updates (fixpackages)

2003-09-14 Thread Marius Mauch
On 09/14/03  Marius Mauch wrote:

> Now the fact that fixpackages is so slow is because to update this
> information the .tbz2 needs to be uncompressed, then the information
> can be updated and then it needs to be recompressed. This takes some
> time for 1 or 2 GB of data. I'm currently trying to optimize the code
> a bit, but I think for a dramatic improvement we would have to drop
> the current.tbz2 format (so we can save the uncompress-recompress
> steps) itself which is unlikely to happen anytime soon.

Ok, answering to myself: looks as if I was wrong about the speed
bottleneck in fixpackages. The uncompress/recompress is not the thing
that takes most of the time, it seems to be the fact that the actual
changing is done in a shellscript and the launch of about 2 dozen
processes for each .tbz2/update-entry combination kills the performance.
I ported this shellscript to python and integrated it in portage.py (the
portage corefile) and it increased the performance about factor 8
(little test with 4 .tbz2 packages). Still have to check if that change
has any side-effects, if not I think it will be integrated in one of the
next portage versions.

Marius

-- 
Public Key at http://www.genone.de/info/gpg-key.pub

In the beginning, there was nothing. And God said, 'Let there be
Light.' And there was still nothing, but you could see a bit better.


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Gentoo 1.4 - 1st time installation problem

2003-09-14 Thread Marius Mauch
On 09/14/03  Svein Harald Soleim wrote:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On Sunday 14 September 2003 14:21, Stephen Liu wrote:
> > Hi all folks,
> >
> > I am installing Gentoo 1.4 (Gentoo-030908), 2CDs version following
> > Gentoo Linux 1.4 Installation Instructions
> >
> > Tarball extracted: stage3
> >
> > Coming to
> > 16. Installing the kernel and system logger
> > Kernel selections
> >
> > cdimage /# emerge -k sys-kernel/gentoo-sources
> 
> werd. Try just  # emerge gentoo-sources
> it should work.

It won't work, his system is missing the /etc/make.profile symlink or
the target is not there. Check the following steps:
Did you unpack the portage snapshot OR did you run emerge sync? One of
these steps is necessary or portage won't work as it has no information
about anything. If that's not the error check the /etc/make.profile
symlink and its target, it should point to
/usr/portage/profiles/default-x86-1.4 (change that according to your
architecture if you don't have a x86)

Marius


> -BEGIN PGP SIGNATURE-
> Version: GnuPG v1.2.1 (GNU/Linux)
> 
> iD8DBQE/ZGKI4KpqZ5FbB0URAtKIAKCrWgY7Z9pfCH/muQ5B4Lu+OVOWWwCfY2/G
> LRSeOZB2ih2U+hc6nbgndf8=
> =t6Et
> -END PGP SIGNATURE-
> 
> 
> --
> [EMAIL PROTECTED] mailing list
> 


-- 
Public Key at http://www.genone.de/info/gpg-key.pub

In the beginning, there was nothing. And God said, 'Let there be
Light.' And there was still nothing, but you could see a bit better.


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Gentoo 1.4 - 1st time installation problem

2003-09-14 Thread Jason Stubbs
On Sunday 14 September 2003 21:21, Stephen Liu wrote:
> cdimage /# emerge -k sys-kernel/gentoo-sources
> !!! No profile directory; syetem mode unavailiable



> cdimage /# genkernel gentoo-sources
> bash: genkernel: command not found

Also, you need to run:
# emerge -k genkernel

before you can use it.

Regards,
Jason

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] horribly slow portage updates (fixpackages)

2003-09-14 Thread Joshua Banks
Thanks for taking the time to respond Marius.

Your explanation is fine..

Its just hard to know what, if anything, to do when I get a message like the one 
that I
posted. I meanif there's nothing for me to do then it would be nice not to see 
messages like
that in the first place. I know because I'm knew to Gentoo that little messages like 
the one I
received confuses me when there's really no accompanying explanation as to what the 
message
actually means and what, if anything to do about it?

Cannot update binary:
Destination exists: (If this line is outputted then wouldn't it be easy to put a 
small
explanation of what this means and what to do, if anything...so that the user isn't 
just wondering
what this means and wondering what to do?)
!!! app-admin/gentoolkit-0.1.30 -> app-portage/gentoolkit-0.1.30

Joshua Banks


--- Marius Mauch <[EMAIL PROTECTED]> wrote:
> On 09/12/03  Joshua Banks wrote:
> 
> > Hey Alan,
> > 
> > I just installed Gentoo on a new machine and just did the first
> > "emerge sync" and I started fixpages at 9:11 pm and its exactly
> > 11:11pm and fix packages isn't done yet.. I'm a little mystified as
> > well. The only thing that I have installed rightnow is KDE and
> > XFREE.and that was off the LiveCD via GRP...
> 
> It doesn't matter what you've installed, it matters how many packages
> you have in /usr/portage/packages and how many package moves took place.
> 
> > I wish there was a better explantion of fixpackages because its always
> > been dog slow for me and I can't seem to find any NON-Engineering
> > explantion of why it spits out some of the things that it does and
> > what fixpackages is actally doing that needs 2 hrs to do it on fastass
> > system. Yours is a little beefier than mine but its very compairable.
> 
> Ok, I'll try to explain it:
> portage stores information about the package names and categories for
> dependencies in the .tbz2 files. Now if a package has moved in the tree
> (like the recent app-games -> games-* split) this information can become
> incorrect and should be updated. A little example what could happen if
> it is not updated:
> - you have a .tbz2 package for package foo, which has a dependency on 
> app-misc/bar
> - package app-misc/bar is moved to net-misc/bar in the tree
> - you try to install foo with your .tbz2 package, portage looks for
> app-misc/bar (because the .tbz2 wasn't updated), can't find it because
> it was moved and aborts the installation
> 
> Now the fact that fixpackages is so slow is because to update this
> information the .tbz2 needs to be uncompressed, then the information can
> be updated and then it needs to be recompressed. This takes some time
> for 1 or 2 GB of data. I'm currently trying to optimize the code a bit,
> but I think for a dramatic improvement we would have to drop the current
> .tbz2 format (so we can save the uncompress-recompress steps) itself
> which is unlikely to happen anytime soon.
> 
> > I've alwasy gotten this:
> > Cannot update binary:
> > Destination exists:
> > !!! app-admin/gentoolkit-0.1.30 -> app-portage/gentoolkit-0.1.30
> > -Unquote
> 
> This happens if the package name already has been updated, but there is
> probably more to fix in the dependency information. Read it as a status
> message, not an error message.
> 
> > OK...So what the hell does this mean and what if anything do I need to
> > do about it because"Fixpackages" doesn't fix crapI get this same
> > message no matter how many times that I run it..
> 
> fixpackages does something, but you don't see it in most cases. I hope I
> could explain it in a not-too-much-engineering way.
> 
> Marius
> 
> -- 
> Public Key at http://www.genone.de/info/gpg-key.pub
> 
> In the beginning, there was nothing. And God said, 'Let there be
> Light.' And there was still nothing, but you could see a bit better.
> 

> ATTACHMENT part 2 application/pgp-signature 


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo 1.4 - 1st time installation problem

2003-09-14 Thread Jason Stubbs
On Sunday 14 September 2003 21:21, Stephen Liu wrote:
> Hi all folks,
>
> I am installing Gentoo 1.4 (Gentoo-030908), 2CDs version following
> Gentoo Linux 1.4 Installation Instructions
>
> Tarball extracted: stage3
>
> Coming to
> 16. Installing the kernel and system logger
> Kernel selections
>
> cdimage /# emerge -k sys-kernel/gentoo-sources
> !!! No profile directory; syetem mode unavailiable

This sounds like you either missed the following from Step 8:

# tar -xvjf /mnt/cdrom/snapshots/portage-mmdd.tar.bz2 -C /mnt/gentoo/usr

or something went wrong with the stage3 tarball extraction and your missing a 
symlink at /etc/make.profile. After chroot'ing, check with "ls -l 
/etc/make.profile" and if it's missing (or different) fix it with:

# ln -s ../usr/portage/profiles/default-x86-1.4 /etc/make.profile

Hope this helps.

Regards,
Jason

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Filesystem couldn't be fixed?

2003-09-14 Thread Dmitry Suzdalev
Thanks for info, Karl!

Dmitry.

On Sunday 14 September 2003 16:15, Karl Huysmans wrote:
> This is a bug.
>
> #emerge rsync
> #emerge -UDp world
>
> Upgrade to baselayout 1.8.6.10-r1 and the next time your root file
> system is checked/modified, gentoo will just reboot instead of giving
> this confusing error message.
>
> Some other very nice fixes in baselayout too!
>


-- 
Gentoo Linux 2.4.20 #1 i686 AMD Athlon(tm)  AuthenticAMD GNU/Linux


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Gentoo 1.4 - 1st time installation problem

2003-09-14 Thread Svein Harald Soleim
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sunday 14 September 2003 14:21, Stephen Liu wrote:
> Hi all folks,
>
> I am installing Gentoo 1.4 (Gentoo-030908), 2CDs version following
> Gentoo Linux 1.4 Installation Instructions
>
> Tarball extracted: stage3
>
> Coming to
> 16. Installing the kernel and system logger
> Kernel selections
>
> cdimage /# emerge -k sys-kernel/gentoo-sources

werd. Try just  # emerge gentoo-sources
it should work.

- -- 
gnuPG key: ID 915B0745 at http://pgp.mit.edu/
   http://www.fribyte.uib.no/~svein/PublicKey.asc
Key fingerprint = 0123 B179 0994 F5C7 12D3  F253 E0AA 6A67 915B 0745
Registered Linux User #319622

'The maths is easy,' said Chaos.
'AH? WELL, MATHS', said Death, dismissively.
'GENERALLY I NEVER GET MUCH FURTHER THAN SUBTRACTION.'


Svein Harald Soleim
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE/ZGKI4KpqZ5FbB0URAtKIAKCrWgY7Z9pfCH/muQ5B4Lu+OVOWWwCfY2/G
LRSeOZB2ih2U+hc6nbgndf8=
=t6Et
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Gentoo 1.4 - 1st time installation problem

2003-09-14 Thread Stephen Liu
Hi all folks,

I am installing Gentoo 1.4 (Gentoo-030908), 2CDs version following
Gentoo Linux 1.4 Installation Instructions

Tarball extracted: stage3

Coming to
16. Installing the kernel and system logger
Kernel selections

cdimage /# emerge -k sys-kernel/gentoo-sources
!!! No profile directory; syetem mode unavailiable
cdimage /# emerge -k genkernel
!!! No profile directory; syetem mode unavailiable
cdimage /# emerge -k genkernel/gentoo-sources
!!! No profile directory; syetem mode unavailiable
cdimage /# emerge -k genkernel/gs-source
!!! No profile directory; syetem mode unavailiable
etc.

cdimage /# genkernel gentoo-sources
bash: genkernel: command not found
cdimage /# sys-kernel gentoo-sources
bash: sys-kernel: command not found
etc.

cdimage /# genkernel --config
bash: genkernel: command not found

Could not proceed further.  Kindly advise.

Thanks in advance.

B.R.
Stephen Liu



To Get Your Own iCareHK.com Email Address?  Go To www.iCareHK.com.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Filesystem couldn't be fixed?

2003-09-14 Thread Karl Huysmans
This is a bug.

#emerge rsync
#emerge -UDp world

Upgrade to baselayout 1.8.6.10-r1 and the next time your root file
system is checked/modified, gentoo will just reboot instead of giving
this confusing error message.

Some other very nice fixes in baselayout too!

On Sun, 2003-09-14 at 12:03, Dmitry Suzdalev wrote:
> Hello!
> 
> Today my ext3 filesystem had gone 30 days w/o checking and check was forced 
> :). When the checking process ended, it said something usual about 
> fragmentation and number of blocks, and then:
> 
> * Filesystem couldn't be fixed [!!]
> 
> And this is the only error message I can see.
> What does this mean and where can I look for error that occured? Any kind of 
> log? Syslog starts later so I can't rely on /var/log/*.
> 
> Upon the next reboot, all goes okay, e2fsck says that FS is clean. Same result 
> if I issue "e2fsck /dev/hda4" command manually. 
> How can I catch this nasty error now? 
> 
> No strange noises from HDD, no read/write problems, but this is second time I 
> get this error. 
> 
> Anyone had something like this?
> 
> TIA,
> Dmitry.
-- 
Karl Huysmans <[EMAIL PROTECTED]>


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] horribly slow portage updates (fixpackages)

2003-09-14 Thread Marius Mauch
On 09/12/03  Joshua Banks wrote:

> Hey Alan,
> 
> I just installed Gentoo on a new machine and just did the first
> "emerge sync" and I started fixpages at 9:11 pm and its exactly
> 11:11pm and fix packages isn't done yet.. I'm a little mystified as
> well. The only thing that I have installed rightnow is KDE and
> XFREE.and that was off the LiveCD via GRP...

It doesn't matter what you've installed, it matters how many packages
you have in /usr/portage/packages and how many package moves took place.

> I wish there was a better explantion of fixpackages because its always
> been dog slow for me and I can't seem to find any NON-Engineering
> explantion of why it spits out some of the things that it does and
> what fixpackages is actally doing that needs 2 hrs to do it on fastass
> system. Yours is a little beefier than mine but its very compairable.

Ok, I'll try to explain it:
portage stores information about the package names and categories for
dependencies in the .tbz2 files. Now if a package has moved in the tree
(like the recent app-games -> games-* split) this information can become
incorrect and should be updated. A little example what could happen if
it is not updated:
- you have a .tbz2 package for package foo, which has a dependency on 
app-misc/bar
- package app-misc/bar is moved to net-misc/bar in the tree
- you try to install foo with your .tbz2 package, portage looks for
app-misc/bar (because the .tbz2 wasn't updated), can't find it because
it was moved and aborts the installation

Now the fact that fixpackages is so slow is because to update this
information the .tbz2 needs to be uncompressed, then the information can
be updated and then it needs to be recompressed. This takes some time
for 1 or 2 GB of data. I'm currently trying to optimize the code a bit,
but I think for a dramatic improvement we would have to drop the current
.tbz2 format (so we can save the uncompress-recompress steps) itself
which is unlikely to happen anytime soon.

> I've alwasy gotten this:
> Cannot update binary:
> Destination exists:
> !!! app-admin/gentoolkit-0.1.30 -> app-portage/gentoolkit-0.1.30
> -Unquote

This happens if the package name already has been updated, but there is
probably more to fix in the dependency information. Read it as a status
message, not an error message.

> OK...So what the hell does this mean and what if anything do I need to
> do about it because"Fixpackages" doesn't fix crapI get this same
> message no matter how many times that I run it..

fixpackages does something, but you don't see it in most cases. I hope I
could explain it in a not-too-much-engineering way.

Marius

-- 
Public Key at http://www.genone.de/info/gpg-key.pub

In the beginning, there was nothing. And God said, 'Let there be
Light.' And there was still nothing, but you could see a bit better.


pgp0.pgp
Description: PGP signature


[gentoo-user] Filesystem couldn't be fixed?

2003-09-14 Thread Dmitry Suzdalev
Hello!

Today my ext3 filesystem had gone 30 days w/o checking and check was forced 
:). When the checking process ended, it said something usual about 
fragmentation and number of blocks, and then:

* Filesystem couldn't be fixed [!!]

And this is the only error message I can see.
What does this mean and where can I look for error that occured? Any kind of 
log? Syslog starts later so I can't rely on /var/log/*.

Upon the next reboot, all goes okay, e2fsck says that FS is clean. Same result 
if I issue "e2fsck /dev/hda4" command manually. 
How can I catch this nasty error now? 

No strange noises from HDD, no read/write problems, but this is second time I 
get this error. 

Anyone had something like this?

TIA,
Dmitry.
-- 
Gentoo Linux 2.4.20 #1 i686 AMD Athlon(tm)  AuthenticAMD GNU/Linux


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Choice of Kernel Sources

2003-09-14 Thread Alexander Futasz
On Sat, 13 Sep 2003 20:35:51 -0700, Ian Truelsen wrote:
> On Sun, 14 Sep 2003 04:10:03 +0100
> Stroller <[EMAIL PROTECTED]> wrote:
> 
> > What I'm personally after is the best sources for a headless 
> > general-purpose server: all it does is serve mail, DNS & a few 
> > webpages, and crunches away in the background at Seti when it's not 
> > busy, so it doesn't have to be hardened or anything superlatively 
> > special. I would like to upgrade to 2.4.21 for reasons of paranoia, 
> > tho', as I'm using 2.4.20 vanilla sources at the moment.
> > 
> In the same sort of machine that you are describing, I use the
> grsec-sources. It provides everything that I need.

And for me it's vanilla-sources in that case.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] blocker

2003-09-14 Thread Oscar Martin
On Sun, 2003-09-14 at 01:22, Pietro Leone wrote:
> Hallo, when I try to emerge something with -U option I receive the
> following message:
> 
> !!! Error: the  with another package.!!!both can't be installed on the same
> system together.
> !!!Please use 'emerge --pretend' to determine blockers.
> 
> >>> --upgradeonly implies --update... adding --update to options.
> 
> With --pretend I obtain this output:
>  
> These are the packages that I would merge, in order:
>  
> Calculating dependencies  ...done!
> [blocks B ]  dev-lang/perl-5.8.0-r12)
> [ebuild U ] sys-devel/gettext-0.12.1 [0.11.5-r1]
> [ebuild U ] sys-devel/binutils-2.14.90.0.6-r2 [2.13.90.0.18]
> [ebuild U ] sys-apps/gawk-3.1.3 [3.1.2-r3]
> [ebuild U ] sys-kernel/linux-headers-2.4.19-r1 [2.4.19]
> [ebuild U ] sys-apps/miscfiles-1.3-r1 [1.3]
> [ebuild U ] sys-devel/gcc-config-1.3.3-r1 [1.3.1-r1]
> [ebuild U ] sys-libs/cracklib-2.7-r7 [2.7-r6]
> [ebuild U ] sys-apps/shadow-4.0.3-r7 [4.0.3-r6]
> [ebuild U ] sys-apps/pam-login-3.11-r1 [3.10]
> [ebuild U ] sys-apps/util-linux-2.12 [2.11y]
> [ebuild U ] sys-apps/baselayout-1.8.6.10-r1 [1.8.5.9]
> [ebuild U ] net-misc/dhcpcd-1.3.22_p4-r1 [1.3.22_p4]
> [ebuild U ] sys-devel/bison-1.875 [1.35]
> [ebuild U ] sys-apps/texinfo-4.6 [4.5]
> [ebuild U ] sys-devel/gcc-3.3.1-r1 [3.2.2]
> [ebuild U ] sys-libs/glibc-2.3.2-r1 [2.3.1-r4]
> [ebuild U ] sys-libs/ncurses-5.3-r4 [5.3-r1]
> [ebuild  N] dev-python/python-docs-2.2.3
> [ebuild U ] media-libs/freetype-2.1.4-r1 [2.1.4]
> [ebuild U ] media-libs/fontconfig-2.2.1 [2.2.0-r2]
> [ebuild U ] x11-base/xfree-4.3.0-r3 [4.3.0-r2]
> [ebuild U ] dev-lang/tk-8.4.3 [8.3.4-r1]
> [ebuild U ] dev-lang/python-2.2.3-r1 [2.2.2]
> [ebuild U ] app-shells/bash-2.05b-r7 [2.05b-r3]
> [ebuild U ] dev-util/dialog-0.9_beta20030308-r1 [0.9_beta20020814]
> [ebuild U ] sys-apps/grep-2.5.1-r1 [2.5-r1]
> [ebuild U ] app-portage/gentoolkit-0.1.30 [0.1.23]
> [ebuild U ] dev-lang/tcl-8.4.3 [8.3.4]
> [ebuild U ] sys-libs/db-4.0.14-r2 [3.2.9-r2]
> [ebuild U ] dev-lang/perl-5.8.0-r12 [5.8.0-r10]
> 
> Why the first package blocks everything I try to emerge with the -U
> option? How can I remouve this block? Is it safe to remove this block?
> 
> Thanks, Pietro.

I had a similar problem a few weeks ago, and its safe to unemerge that
blocking package and emerge perl again... at least it worked for me ;)

Oscar.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] where are the gentoo-user mailing list archives???

2003-09-14 Thread momesana
That's what I was looking for.
Thanx!

Am Sonntag, 14. September 2003 08:29 schrieb Renat Golubchyk:
> Hi!
>
> On Sunday 14 September 2003 07:42, momesana wrote:
> > Can anybody tell me where to find the archives for this very mailinglist.
>
> http://news.gmane.org/gmane.linux.gentoo.user
> http://marc.theaimsgroup.com/?l=gentoo-user&r=1&w=2
> http://www.mail-archive.com/[EMAIL PROTECTED]/index.html
>
>
>
> Cheers,
> Renat
>
>
> --
> [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



[gentoo-user] emerge php fails

2003-09-14 Thread Rudmer van Dijk
Hi,

anyone seen this?

I was trying to emerge php-4.3.3-r1 but it failed on configure:

checking for jpeg_read_header in -ljpeg... no
configure: error: libjpeg not found!
 
!!! ERROR: dev-php/php-4.3.3-r1 failed.
!!! Function econf, Line 324, Exitcode 1
!!! econf failed
 
I also tried it with USE="-jpeg" but even then it failed with the same 
error...

Then I found that it had to do with blackdown-jdk-1.4.1: a libjpeg.so is 
located in /opt/blackdown-jdk-1.4.1/jre/lib/i386, this path is set with -L so 
ld will use this instead of the correct libjepeg.so in /usr/lib.

compiling with USE="-java" works. For me that is ok but I can imagine that it 
is not so for others. Renaming 
/opt/blackdown-jdk-1.4.1/jre/lib/i386/libjpeg.so while compiling will 
probably also work but it is not the right solution.

Rudmer




--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] lilo and upgraded world

2003-09-14 Thread Kees Bergwerf
Op zondag 14 september 2003 04:55, schreef Chris:

> Kernel panic: VFS: UNable to mount root fs on 03:43
>
> Could someone tell me why I am getting this.

> > At first you have to compile the kernel sources.

...

Perhaps you did not include support for the filesystem(s)  in the kernel


--Kees


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] lilo and upgraded world

2003-09-14 Thread Chris
I think I found it. Somehow I put the wrong type of fs support for reiserfs I 
compiled as M instead of *.

On Sunday 14 September 2003 02:55 am, Chris wrote:
> Kernel panic: VFS: UNable to mount root fs on 03:43
>
> Could someone tell me why I am getting this.
>
> On Sunday 14 September 2003 01:52 am, Kees Bergwerf wrote:
> > Op zaterdag 13 september 2003 22:26, schreef Chris:
> > > All I have is a simple question. This thing is emerging -u world and
> > > part of it is the kernel and souces do I have to edit lilo again to
> > > usew these new sources?
> >
> > At first you have to compile the kernel sources.
> > make a symbolic link /usr/src/linux to the new sources:
> >
> > ln -s /usr/src/ /usr/src/linux
> >
> > then go to /usr/src/linux
> > # make menuconfig
> >
> > Configure your kernel, save the config
> > then
> > # make dep && make clean bzImage modules modules_install
> >
> > When everything is ok, the new kernel can be found :
> > /usr/src/linux/arch/x86/boot/bzImage
> >
> > #mount /boot
> > and copy bzImage to /boot
> > you can rename it if you like so that you don't overwrite an existing
> > bzImage
> >
> > then add this image to lilo.conf (and run lilo) so you can choose it when
> > booting.
> > If something goes wrong, you can still boot the old kernel
> >
> >
> > --Kees
> >
> > --
> > [EMAIL PROTECTED] mailing list

-- 
Chris
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] lilo and upgraded world

2003-09-14 Thread Chris
Kernel panic: VFS: UNable to mount root fs on 03:43

Could someone tell me why I am getting this.

On Sunday 14 September 2003 01:52 am, Kees Bergwerf wrote:
> Op zaterdag 13 september 2003 22:26, schreef Chris:
> > All I have is a simple question. This thing is emerging -u world and part
> > of it is the kernel and souces do I have to edit lilo again to usew these
> > new sources?
>
> At first you have to compile the kernel sources.
> make a symbolic link /usr/src/linux to the new sources:
>
> ln -s /usr/src/ /usr/src/linux
>
> then go to /usr/src/linux
> # make menuconfig
>
> Configure your kernel, save the config
> then
> # make dep && make clean bzImage modules modules_install
>
> When everything is ok, the new kernel can be found :
> /usr/src/linux/arch/x86/boot/bzImage
>
> #mount /boot
> and copy bzImage to /boot
> you can rename it if you like so that you don't overwrite an existing
> bzImage
>
> then add this image to lilo.conf (and run lilo) so you can choose it when
> booting.
> If something goes wrong, you can still boot the old kernel
>
>
> --Kees
>
> --
> [EMAIL PROTECTED] mailing list

-- 
Chris
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Evolution and Palm sync

2003-09-14 Thread Patrick Marquetecken
Hi,

I'm trying to sync my palm with evolution. I can sync with jpilot without any problem. 
But it won't work with evolution.
I have installed gpilot, placed the gpilotd-applet on the gnome-panel and pressed the 
sync button on the palm cradle.
The settings of gpilot are the same as jpilot. What am i doing wrong?

Patrick

-- 
 "Do you know what a Vulcan mind meld is?" -- Tuvok
 "It's that thing where you grab someone's head..." -- Crewman Suiter (Meld) 

 PGP Key: http://users.pandora.be/rivendell/marquetp.gpg
 Fingerprint = 2792 057F C445 9486 F932 3AEA D3A3 1B0C 1059 273B
 ICQ# 316932703 
 Registered Linux User #44550
 http://counter.li.org


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] currupt icons in nautilus from gnome 2.4 ~x86

2003-09-14 Thread Chris van der Pennen
I had something similar to that in the latest Evolution.  Fix was to turn
off RenderAccel in the nvidia drivers.

Chris

- Original Message -
From: "Alan" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, September 14, 2003 2:51 PM
Subject: [gentoo-user] currupt icons in nautilus from gnome 2.4 ~x86


> Just got gnome 2.4 (~x86) installed, and I'm seeing some strange icon
> curruption in nautilus, both on the desktop and in nautilus windows.
> It's almost like the icons are undecided if they want to trade looks
> with other icons or something.  When the window or desktop is brought
> into focus, they go back to being ok, but any window not in focus (it
> seems) will sometimes have the icons flash between normal and currupt.
> I have a screenshot at http://arcterex.net/stuff/currupt-icons.png
>
> Same thing happens with a new user with no .gnome* or .gconf* directories.
>
> I'm going to guess that this is a gentoo specific (or maybe a me
> specific) thing.  Anyone who has any idea on how to fix this I'd greatly
> appreciate it.
>
> --
> Alan <[EMAIL PROTECTED]> - http://arcterex.net
> 
> "There are only 3 real sports: bull-fighting, car racing and mountain
> climbing. All the others are mere games."-- Hemingway
>
> --
> [EMAIL PROTECTED] mailing list
>
>


--
[EMAIL PROTECTED] mailing list