public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Help
@ 2005-07-24 17:23 C.Beamer
  2005-07-24 17:41 ` Stroller
                   ` (2 more replies)
  0 siblings, 3 replies; 63+ messages in thread
From: C.Beamer @ 2005-07-24 17:23 UTC (permalink / raw
  To: gentoo-user

Hi All,

After getting side-tracked by a power outage in the middle of a Gentoo
install a couple of weeks ago, I finally got back to doing a Gentoo
install trial run.

All seemed to go well.  When I rebooted I got the menu with the two
selections listed (Gentoo and DOS).  The computer will boot into DOS
okay, but I can't get it to boot into Gentoo.  Ergo, I think the grub
install is fine, but I made an error in my grub.conf file.

Since I'm only moderately savvy about editing configuration files, I
relied on the examples in the Gentoo Handbook.

Details are as follows:

I have a dual boot system:

hda1 is DOS
hda2 is /boot
hda3 is swap
hda4 is my extended partition
hda5 is /root

The grub.conf file that I entered is as follows:

default 0
timeout 30

splashimage=(hd0,1)/grub/splash.xpm.gz

title=Genoo Linux 2.6.12-r6

root (hda0, 1)
kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
real_root=/dev/hda5 udev
initrd /initrd-2.6.12-gentoo-r6

title=DOS
root (hda0,0)
makeactive
chainloader +1

I put the initrd line in the grub.conf file even though when I ran the
command

'ls /boot/kernel* /boot/initrd*'

as instructed in the Handbook, I got told that there was no initrdfile.

Have I missed something or done something wrong?

Is there a way to fix the grub.conf file?

I tried selecting the Gentoo line from the menu and pressing 'e' to
edit, but no matter what changes I made, I still get an error message
when I try to boot into Gentoo that says:

Error 15:  File not found

This displays immediatedly after the line

kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
real_root=/dev/hda5 udev

Any assistance would be appreciated.  And please remember, I am not
stupid, but I'm not a computer science grad.  I've been running Linux at
home for about 3 years and dabbling with it for a couple of years before
that, but I've always used Redhat or Fedora.  However, I'm finding that
with each release of Fedora, more "quirks" appear.  Things that I was
able to do with no problem in a previous release, I now can't do without
"letting some blood".  Hence, I wanted to try Gentoo because I can
install the software from source using emerge.  This will be a learning
curve for me, but I can conquer it - I have come a long way since a
friend first mentioned Linux to me and I asked what it was!

Anyway, the point of the previous paragraph is to ask that complete
details be stated for any help that is provided.  And if you tell me
that I "screwed up royally" and have to start all over, that's okay. 
That's what this exercise was for - to learn what I needed to know
before installing Gentoo on a "production" system.

BTW, I did a "Stage 3" install.  Since it was my first time and I don't
know anything about optimizations, I didn't want to get in over my
head.  :-)

Thanks in advance for any assistance.

Respectfully,

Colleen

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] Help
  2005-07-24 17:23 [gentoo-user] Help C.Beamer
@ 2005-07-24 17:41 ` Stroller
  2005-07-24 18:39 ` Martins Steinbergs
  2005-07-24 23:31 ` Alex A. Smith MCP
  2 siblings, 0 replies; 63+ messages in thread
From: Stroller @ 2005-07-24 17:41 UTC (permalink / raw
  To: gentoo-user


On Jul 24, 2005, at 6:23 pm, C.Beamer wrote:
>
> hda1 is DOS
> hda2 is /boot
> hda3 is swap
> hda4 is my extended partition
> hda5 is /root
>
> The grub.conf file that I entered is as follows:
>
> default 0
> timeout 30
>
> splashimage=(hd0,1)/grub/splash.xpm.gz
>
> title=Genoo Linux 2.6.12-r6
>
> root (hda0, 1)
> kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc 
> ramdisk=8192
> real_root=/dev/hda5 udev
> initrd /initrd-2.6.12-gentoo-r6

I haven't tried booting with a RAM disk, so I can't comment on the 
other lines, but in the first there should be no space after the comma. 
IE:
    root (hda0,1)

as you've done correctly below:

> title=DOS
> root (hda0,0)
> makeactive
> chainloader +1
>

> ...
> Is there a way to fix the grub.conf file?

I always do so by booting from the Gentoo LiveCD, mounting /dev/hda2 to 
/mount/gentoo, editing grub.conf with `nano` and then rebooting. You 
can experiment amply like this until you get it right.

Stroller.

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] Help
  2005-07-24 17:23 [gentoo-user] Help C.Beamer
  2005-07-24 17:41 ` Stroller
@ 2005-07-24 18:39 ` Martins Steinbergs
  2005-07-24 19:03   ` Richard Fish
  2005-07-24 23:31 ` Alex A. Smith MCP
  2 siblings, 1 reply; 63+ messages in thread
From: Martins Steinbergs @ 2005-07-24 18:39 UTC (permalink / raw
  To: gentoo-user

remove space in root (hda0, 1)

my kernel line also has devfs=nomount  but probably this isnt needed if using 
latest genkernel, dont know.

Martins


On Sunday 24 July 2005 20:23, C.Beamer wrote:
> Hi All,
>
> After getting side-tracked by a power outage in the middle of a Gentoo
> install a couple of weeks ago, I finally got back to doing a Gentoo
> install trial run.
>
> All seemed to go well.  When I rebooted I got the menu with the two
> selections listed (Gentoo and DOS).  The computer will boot into DOS
> okay, but I can't get it to boot into Gentoo.  Ergo, I think the grub
> install is fine, but I made an error in my grub.conf file.
>
> Since I'm only moderately savvy about editing configuration files, I
> relied on the examples in the Gentoo Handbook.
>
> Details are as follows:
>
> I have a dual boot system:
>
> hda1 is DOS
> hda2 is /boot
> hda3 is swap
> hda4 is my extended partition
> hda5 is /root
>
> The grub.conf file that I entered is as follows:
>
> default 0
> timeout 30
>
> splashimage=(hd0,1)/grub/splash.xpm.gz
>
> title=Genoo Linux 2.6.12-r6
>
> root (hda0, 1)
> kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
> real_root=/dev/hda5 udev
> initrd /initrd-2.6.12-gentoo-r6
>
> title=DOS
> root (hda0,0)
> makeactive
> chainloader +1
>
> I put the initrd line in the grub.conf file even though when I ran the
> command
>
> 'ls /boot/kernel* /boot/initrd*'
>
> as instructed in the Handbook, I got told that there was no initrdfile.
>
> Have I missed something or done something wrong?
>
> Is there a way to fix the grub.conf file?
>
> I tried selecting the Gentoo line from the menu and pressing 'e' to
> edit, but no matter what changes I made, I still get an error message
> when I try to boot into Gentoo that says:
>
> Error 15:  File not found
>
> This displays immediatedly after the line
>
> kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
> real_root=/dev/hda5 udev
>
> Any assistance would be appreciated.  And please remember, I am not
> stupid, but I'm not a computer science grad.  I've been running Linux at
> home for about 3 years and dabbling with it for a couple of years before
> that, but I've always used Redhat or Fedora.  However, I'm finding that
> with each release of Fedora, more "quirks" appear.  Things that I was
> able to do with no problem in a previous release, I now can't do without
> "letting some blood".  Hence, I wanted to try Gentoo because I can
> install the software from source using emerge.  This will be a learning
> curve for me, but I can conquer it - I have come a long way since a
> friend first mentioned Linux to me and I asked what it was!
>
> Anyway, the point of the previous paragraph is to ask that complete
> details be stated for any help that is provided.  And if you tell me
> that I "screwed up royally" and have to start all over, that's okay.
> That's what this exercise was for - to learn what I needed to know
> before installing Gentoo on a "production" system.
>
> BTW, I did a "Stage 3" install.  Since it was my first time and I don't
> know anything about optimizations, I didn't want to get in over my
> head.  :-)
>
> Thanks in advance for any assistance.
>
> Respectfully,
>
> Colleen
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] Help
  2005-07-24 18:39 ` Martins Steinbergs
@ 2005-07-24 19:03   ` Richard Fish
  2005-07-24 19:50     ` C.Beamer
  0 siblings, 1 reply; 63+ messages in thread
From: Richard Fish @ 2005-07-24 19:03 UTC (permalink / raw
  To: gentoo-user

Martins Steinbergs wrote:

>remove space in root (hda0, 1)
>
>  
>

Actually, that should be (hd0,1), like you have for the splashimage.

-Richard

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] Help
  2005-07-24 19:03   ` Richard Fish
@ 2005-07-24 19:50     ` C.Beamer
  2005-07-24 20:18       ` Richard Fish
  0 siblings, 1 reply; 63+ messages in thread
From: C.Beamer @ 2005-07-24 19:50 UTC (permalink / raw
  To: gentoo-user

Hi,

Thanks all for noticing the "typo".  However, this was a typo in the
e-mail, not in the boot.conf file.  :-)

Regards,

Colleen

Richard Fish wrote:

> Martins Steinbergs wrote:
>
>> remove space in root (hda0, 1)
>>
>>
>>
>
> Actually, that should be (hd0,1), like you have for the
> splashimage.
>
> -Richard
>

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] Help
  2005-07-24 19:50     ` C.Beamer
@ 2005-07-24 20:18       ` Richard Fish
  0 siblings, 0 replies; 63+ messages in thread
From: Richard Fish @ 2005-07-24 20:18 UTC (permalink / raw
  To: gentoo-user

C.Beamer wrote:

>Hi,
>
>Thanks all for noticing the "typo".  However, this was a typo in the
>e-mail, not in the boot.conf file.  :-)
>
>  
>

So, what does you actual boot.conf file contain? "(hd0,1)" or "(hda0,1)"?

-Richard

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* RE: [gentoo-user] Help
  2005-07-24 17:23 [gentoo-user] Help C.Beamer
  2005-07-24 17:41 ` Stroller
  2005-07-24 18:39 ` Martins Steinbergs
@ 2005-07-24 23:31 ` Alex A. Smith MCP
  2005-07-24 23:52   ` Martins Steinbergs
  2 siblings, 1 reply; 63+ messages in thread
From: Alex A. Smith MCP @ 2005-07-24 23:31 UTC (permalink / raw
  To: gentoo-user

Hi,

Have you made sure of the filenames of the init ram disk and the kernel?

Only reason I say this is because the other day when I did a Stage 3
Genkernel the files were named something completely different from what is
in the handbook. (I think initrd was something along the lines of
initramdisk-<more text> and the both included genkernel in the file name)

I had myself wondering over that for a while :)

hth

Alex A. Smith

p.s. im installing a gentoo 2.6.12-r6 Stage 3 genkernel atm so I'll let you
know when its done if the above didn't help ya.

-----Original Message-----
From: C.Beamer [mailto:cbeamer@interlynx.net] 
Sent: 24 July 2005 18:24
To: gentoo-user@lists.gentoo.org
Subject: [gentoo-user] Help

Hi All,

After getting side-tracked by a power outage in the middle of a Gentoo
install a couple of weeks ago, I finally got back to doing a Gentoo
install trial run.

All seemed to go well.  When I rebooted I got the menu with the two
selections listed (Gentoo and DOS).  The computer will boot into DOS
okay, but I can't get it to boot into Gentoo.  Ergo, I think the grub
install is fine, but I made an error in my grub.conf file.

Since I'm only moderately savvy about editing configuration files, I
relied on the examples in the Gentoo Handbook.

Details are as follows:

I have a dual boot system:

hda1 is DOS
hda2 is /boot
hda3 is swap
hda4 is my extended partition
hda5 is /root

The grub.conf file that I entered is as follows:

default 0
timeout 30

splashimage=(hd0,1)/grub/splash.xpm.gz

title=Genoo Linux 2.6.12-r6

root (hda0, 1)
kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
real_root=/dev/hda5 udev
initrd /initrd-2.6.12-gentoo-r6

title=DOS
root (hda0,0)
makeactive
chainloader +1

I put the initrd line in the grub.conf file even though when I ran the
command

'ls /boot/kernel* /boot/initrd*'

as instructed in the Handbook, I got told that there was no initrdfile.

Have I missed something or done something wrong?

Is there a way to fix the grub.conf file?

I tried selecting the Gentoo line from the menu and pressing 'e' to
edit, but no matter what changes I made, I still get an error message
when I try to boot into Gentoo that says:

Error 15:  File not found

This displays immediatedly after the line

kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
real_root=/dev/hda5 udev

Any assistance would be appreciated.  And please remember, I am not
stupid, but I'm not a computer science grad.  I've been running Linux at
home for about 3 years and dabbling with it for a couple of years before
that, but I've always used Redhat or Fedora.  However, I'm finding that
with each release of Fedora, more "quirks" appear.  Things that I was
able to do with no problem in a previous release, I now can't do without
"letting some blood".  Hence, I wanted to try Gentoo because I can
install the software from source using emerge.  This will be a learning
curve for me, but I can conquer it - I have come a long way since a
friend first mentioned Linux to me and I asked what it was!

Anyway, the point of the previous paragraph is to ask that complete
details be stated for any help that is provided.  And if you tell me
that I "screwed up royally" and have to start all over, that's okay. 
That's what this exercise was for - to learn what I needed to know
before installing Gentoo on a "production" system.

BTW, I did a "Stage 3" install.  Since it was my first time and I don't
know anything about optimizations, I didn't want to get in over my
head.  :-)

Thanks in advance for any assistance.

Respectfully,

Colleen

-- 
gentoo-user@gentoo.org mailing list



-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] Help
  2005-07-24 23:31 ` Alex A. Smith MCP
@ 2005-07-24 23:52   ` Martins Steinbergs
  2005-07-25 22:30     ` [gentoo-user] Help - We got boot! :-) C.Beamer
  0 siblings, 1 reply; 63+ messages in thread
From: Martins Steinbergs @ 2005-07-24 23:52 UTC (permalink / raw
  To: gentoo-user

i was wondering too ;)

corect is initramfs, not initramdisk, see my grub.conf entry

title Gentoo 11.12 - vanilla
	root (hd1,2)
	kernel /kernel-genkernel-x86_64-2.6.11.12 root=/dev/ram0 init=/linuxrc 
ramdisk=8192 real_root=/dev/hdb9 video=radeonfb:mtrr:ywrap vga=7 
splash=silent udev devfs=nomount
	initrd /initramfs-genkernel-x86_64-2.6.11.12

On Monday 25 July 2005 02:31, Alex A. Smith MCP wrote:
> Hi,
>
> Have you made sure of the filenames of the init ram disk and the kernel?
>
> Only reason I say this is because the other day when I did a Stage 3
> Genkernel the files were named something completely different from what is
> in the handbook. (I think initrd was something along the lines of
> initramdisk-<more text> and the both included genkernel in the file name)
>
> I had myself wondering over that for a while :)
>
> hth
>
> Alex A. Smith
>
> p.s. im installing a gentoo 2.6.12-r6 Stage 3 genkernel atm so I'll let you
> know when its done if the above didn't help ya.
>
> -----Original Message-----
> From: C.Beamer [mailto:cbeamer@interlynx.net]
> Sent: 24 July 2005 18:24
> To: gentoo-user@lists.gentoo.org
> Subject: [gentoo-user] Help
>
> Hi All,
>
> After getting side-tracked by a power outage in the middle of a Gentoo
> install a couple of weeks ago, I finally got back to doing a Gentoo
> install trial run.
>
> All seemed to go well.  When I rebooted I got the menu with the two
> selections listed (Gentoo and DOS).  The computer will boot into DOS
> okay, but I can't get it to boot into Gentoo.  Ergo, I think the grub
> install is fine, but I made an error in my grub.conf file.
>
> Since I'm only moderately savvy about editing configuration files, I
> relied on the examples in the Gentoo Handbook.
>
> Details are as follows:
>
> I have a dual boot system:
>
> hda1 is DOS
> hda2 is /boot
> hda3 is swap
> hda4 is my extended partition
> hda5 is /root
>
> The grub.conf file that I entered is as follows:
>
> default 0
> timeout 30
>
> splashimage=(hd0,1)/grub/splash.xpm.gz
>
> title=Genoo Linux 2.6.12-r6
>
> root (hda0, 1)
> kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
> real_root=/dev/hda5 udev
> initrd /initrd-2.6.12-gentoo-r6
>
> title=DOS
> root (hda0,0)
> makeactive
> chainloader +1
>
> I put the initrd line in the grub.conf file even though when I ran the
> command
>
> 'ls /boot/kernel* /boot/initrd*'
>
> as instructed in the Handbook, I got told that there was no initrdfile.
>
> Have I missed something or done something wrong?
>
> Is there a way to fix the grub.conf file?
>
> I tried selecting the Gentoo line from the menu and pressing 'e' to
> edit, but no matter what changes I made, I still get an error message
> when I try to boot into Gentoo that says:
>
> Error 15:  File not found
>
> This displays immediatedly after the line
>
> kernel /kernel-2.6.12-gentoo-r6 root=/dev/ram0 init=linuxrc ramdisk=8192
> real_root=/dev/hda5 udev
>
> Any assistance would be appreciated.  And please remember, I am not
> stupid, but I'm not a computer science grad.  I've been running Linux at
> home for about 3 years and dabbling with it for a couple of years before
> that, but I've always used Redhat or Fedora.  However, I'm finding that
> with each release of Fedora, more "quirks" appear.  Things that I was
> able to do with no problem in a previous release, I now can't do without
> "letting some blood".  Hence, I wanted to try Gentoo because I can
> install the software from source using emerge.  This will be a learning
> curve for me, but I can conquer it - I have come a long way since a
> friend first mentioned Linux to me and I asked what it was!
>
> Anyway, the point of the previous paragraph is to ask that complete
> details be stated for any help that is provided.  And if you tell me
> that I "screwed up royally" and have to start all over, that's okay.
> That's what this exercise was for - to learn what I needed to know
> before installing Gentoo on a "production" system.
>
> BTW, I did a "Stage 3" install.  Since it was my first time and I don't
> know anything about optimizations, I didn't want to get in over my
> head.  :-)
>
> Thanks in advance for any assistance.
>
> Respectfully,
>
> Colleen
>
> --
> gentoo-user@gentoo.org mailing list
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] Help - We got boot!  :-)
  2005-07-24 23:52   ` Martins Steinbergs
@ 2005-07-25 22:30     ` C.Beamer
  0 siblings, 0 replies; 63+ messages in thread
From: C.Beamer @ 2005-07-25 22:30 UTC (permalink / raw
  To: gentoo-user

Hi all,

Well, I did make a typo in by grub.conf file - I had .....gentoo-rc6
instead of r6.  This, of course, resulted in my still not being able
to boot when I fixed the kernel name.


Martins Steinbergs wrote:

> i was wondering too ;)
>
> corect is initramfs, not initramdisk, see my grub.conf entry
>
> title Gentoo 11.12 - vanilla root (hd1,2) kernel
> /kernel-genkernel-x86_64-2.6.11.12 root=/dev/ram0 init=/linuxrc
> ramdisk=8192 real_root=/dev/hdb9 video=radeonfb:mtrr:ywrap vga=7
> splash=silent udev devfs=nomount initrd
> /initramfs-genkernel-x86_64-2.6.11.12

I fixed the initrd line in my grub.conf file to read as above however,
mine is slightly different after 'genkernel'.  I got the correct line
from the grub directory.

It's amazing how a few problems will cause you to learn.  :-)

Thanks for the assistance.

Regards,

Colleen

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2005-10-06  2:46 Wes Gray
  2005-10-06  2:58 ` Eduard Vaykher
                   ` (2 more replies)
  0 siblings, 3 replies; 63+ messages in thread
From: Wes Gray @ 2005-10-06  2:46 UTC (permalink / raw
  To: gentoo-user

My 3-year old gentoo system has decided to be a big headache.  My
troubles started when I upgraded to kde 3.4.  The kde taskbar apps
wouldn't start.  I tried unmerging kde-base and emerging kdebase-meta
to see if it was related to the kde split, but that didn't help.  I got
the idea that the problem was some old kde packages, so I tried unmerging
everything on my system which was kde related, including some old packages
which are no longer in portage, then I reemerged everything.  THis was
a big mistake as afterwards kde was even more broken, and kde apps like
k3b now don't even work.  I've given up on kde and moved to enlightenment,
but it will be really hard to deal without any kde apps.  Lots of people have
given me advice, but everything I try just seems to make things worse.  It
seems like there is something about old versions of kde that won't go away,
which I don't understand at all.  It seems like if you reemerge something it
should move to the newest versions.  I really could use some help because
I have no idea what to do next.

-Wes
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  2:46 [gentoo-user] help Wes Gray
@ 2005-10-06  2:58 ` Eduard Vaykher
  2005-10-06  3:35   ` Wes Gray
  2005-10-06  9:42 ` Roger Miliker
  2005-10-06 10:57 ` Benno Schulenberg
  2 siblings, 1 reply; 63+ messages in thread
From: Eduard Vaykher @ 2005-10-06  2:58 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1447 bytes --]

On 10/5/05, Wes Gray <smiths@alumni.cse.ucsc.edu> wrote:
>
> My 3-year old gentoo system has decided to be a big headache. My
> troubles started when I upgraded to kde 3.4. The kde taskbar apps
> wouldn't start. I tried unmerging kde-base and emerging kdebase-meta
> to see if it was related to the kde split, but that didn't help. I got
> the idea that the problem was some old kde packages, so I tried unmerging
> everything on my system which was kde related, including some old packages
> which are no longer in portage, then I reemerged everything. THis was
> a big mistake as afterwards kde was even more broken, and kde apps like
> k3b now don't even work. I've given up on kde and moved to enlightenment,
> but it will be really hard to deal without any kde apps. Lots of people
> have
> given me advice, but everything I try just seems to make things worse. It
> seems like there is something about old versions of kde that won't go
> away,
> which I don't understand at all. It seems like if you reemerge something
> it
> should move to the newest versions. I really could use some help because
> I have no idea what to do next.
>
> -Wes
> --
> gentoo-user@gentoo.org mailing list
>
>
KDE should separate its releases by minor version. KDE 3.2 or 3.3 shouldn't
interfere with KDE 3.4, which makes me wonder why and older version is
blocking things. emerge kde-meta and see what kind of trouble it gives you.

[-- Attachment #2: Type: text/html, Size: 1886 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  2:58 ` Eduard Vaykher
@ 2005-10-06  3:35   ` Wes Gray
  2005-10-06  3:46     ` Ted Ozolins
  2005-10-06 11:49     ` Michael Crute
  0 siblings, 2 replies; 63+ messages in thread
From: Wes Gray @ 2005-10-06  3:35 UTC (permalink / raw
  To: gentoo-user

On Wed, Oct 05, 2005 at 10:58:45PM -0400, Eduard Vaykher wrote:
> KDE should separate its releases by minor version. KDE 3.2 or 3.3 shouldn't
> interfere with KDE 3.4, which makes me wonder why and older version is
> blocking things. emerge kde-meta and see what kind of trouble it gives you.

# emerge -p kde-meta

These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild   R   ] kde-base/kde-meta-3.4.1  

I tried emerging kde-meta.  I then tried unmerging all the blockers it
created and then emerging back kde, to get rid of kde-meta.  When that
didn't help I reversed the process and reemerged kde-meta, which is
where I am now.  I've rebuilt all of kde a couple of times now with
the situation getting worse, not better.
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  3:35   ` Wes Gray
@ 2005-10-06  3:46     ` Ted Ozolins
  2005-10-06  4:18       ` Wes Gray
  2005-10-06 11:49     ` Michael Crute
  1 sibling, 1 reply; 63+ messages in thread
From: Ted Ozolins @ 2005-10-06  3:46 UTC (permalink / raw
  To: gentoo-user

Wes Gray wrote:

># emerge -p kde-meta
>
>These are the packages that I would merge, in order:
>
>Calculating dependencies ...done!
>[ebuild   R   ] kde-base/kde-meta-3.4.1  
>
>I tried emerging kde-meta.  I then tried unmerging all the blockers it
>created and then emerging back kde, to get rid of kde-meta.  When that
>didn't help I reversed the process and reemerged kde-meta, which is
>where I am now.  I've rebuilt all of kde a couple of times now with
>the situation getting worse, not better.
>  
>
At the login screen, what have your chosen as the session type. Perhaps
its still selecting your old KDE. Check that and select KDE-3.4 and see
what happens.

-- 
Ted Ozolins(VE7TVO)
Westbank, B. C

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  3:46     ` Ted Ozolins
@ 2005-10-06  4:18       ` Wes Gray
  2005-10-06  9:37         ` DmD (Spider) LJungmark
  0 siblings, 1 reply; 63+ messages in thread
From: Wes Gray @ 2005-10-06  4:18 UTC (permalink / raw
  To: gentoo-user

On Wed, Oct 05, 2005 at 08:46:55PM -0700, Ted Ozolins wrote:
> At the login screen, what have your chosen as the session type. Perhaps
> its still selecting your old KDE. Check that and select KDE-3.4 and see
> what happens.

Yes, of course I am selecting 3.4.  That is the only choice.  I've tried
the obvious stuff, trust me.
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  4:18       ` Wes Gray
@ 2005-10-06  9:37         ` DmD (Spider) LJungmark
  0 siblings, 0 replies; 63+ messages in thread
From: DmD (Spider) LJungmark @ 2005-10-06  9:37 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 656 bytes --]

On Wed, 2005-10-05 at 21:18 -0700, Wes Gray wrote:
> On Wed, Oct 05, 2005 at 08:46:55PM -0700, Ted Ozolins wrote:
> > At the login screen, what have your chosen as the session type. Perhaps
> > its still selecting your old KDE. Check that and select KDE-3.4 and see
> > what happens.
> 
> Yes, of course I am selecting 3.4.  That is the only choice.  I've tried
> the obvious stuff, trust me.


Try this then :  Add a brand new sparkling user.
Log in to X and KDE.  Is the problem persisting then, or not?



//Spider
-- 
begin  .signature
Tortured users / Laughing in pain
See Microsoft KB Article Q265230 for more information.
end


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  2:46 [gentoo-user] help Wes Gray
  2005-10-06  2:58 ` Eduard Vaykher
@ 2005-10-06  9:42 ` Roger Miliker
  2005-10-06 10:57 ` Benno Schulenberg
  2 siblings, 0 replies; 63+ messages in thread
From: Roger Miliker @ 2005-10-06  9:42 UTC (permalink / raw
  To: gentoo-user

On Thursday 06 October 2005 04:46, Wes Gray wrote:
> My 3-year old gentoo system has decided to be a big headache.  My
> troubles started when I upgraded to kde 3.4.  The kde taskbar apps
> wouldn't start.  I tried unmerging kde-base and emerging kdebase-meta
> to see if it was related to the kde split, but that didn't help.  I got
> the idea that the problem was some old kde packages, so I tried unmerging
> everything on my system which was kde related, including some old packages
> which are no longer in portage, then I reemerged everything.  THis was
> a big mistake as afterwards kde was even more broken, and kde apps like
> k3b now don't even work.  I've given up on kde and moved to enlightenment,
> but it will be really hard to deal without any kde apps.  Lots of people
> have given me advice, but everything I try just seems to make things worse.
>  It seems like there is something about old versions of kde that won't go
> away, which I don't understand at all.  It seems like if you reemerge
> something it should move to the newest versions.  I really could use some
> help because I have no idea what to do next.
>
> -Wes
One thing you could try (while not running kde) is:
mv ~/.kde ~/myold.kde
Kde will regenerate ,kde on next start and if that works fine you can merge 
back the configs from the old ~/myold.kde

Hope this helps

Roger

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  2:46 [gentoo-user] help Wes Gray
  2005-10-06  2:58 ` Eduard Vaykher
  2005-10-06  9:42 ` Roger Miliker
@ 2005-10-06 10:57 ` Benno Schulenberg
  2005-10-06 15:46   ` Wes Gray
  2005-10-06 16:58   ` Wes Gray
  2 siblings, 2 replies; 63+ messages in thread
From: Benno Schulenberg @ 2005-10-06 10:57 UTC (permalink / raw
  To: gentoo-user

Wes Gray wrote:
> My 3-year old gentoo system has decided to be a big headache.  My
> troubles started when I upgraded to kde 3.4.

Upgrading from which version precisely?

What is the full output of 'ls -l ~/.kde*' ?

And of 'grep kde /var/lib/portage/world | sort' ?

And of 'grep kde /etc/env.d/*' ?

> The kde taskbar apps wouldn't start.

Does Konqueror work?  KMail?  KWrite?  Konsole?
The Control Center?  The Menu Editor?  Do most things work?

Looking back at your other emails...  Are you keeping the rest of 
your system up-to-date?  What does 'emerge -Dup world' say (after a 
sync)?  Do you still have an old python-2.2* installed?  What says 
'eix -e python'?  (If you don't have eix installed, first do 
'emerge eix; update-eix'.)  What says 'emerge -p --depclean'?  Does 
revdep-rebuild now run without problems?

(And please don't tell us to trust you, we're just asking questions, 
as you're not being very specific.)

Benno
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06  3:35   ` Wes Gray
  2005-10-06  3:46     ` Ted Ozolins
@ 2005-10-06 11:49     ` Michael Crute
  1 sibling, 0 replies; 63+ messages in thread
From: Michael Crute @ 2005-10-06 11:49 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 874 bytes --]

On 10/5/05, Wes Gray <smiths@alumni.cse.ucsc.edu> wrote:
>
> # emerge -p kde-meta
>
> These are the packages that I would merge, in order:
>
> Calculating dependencies ...done!
> [ebuild R ] kde-base/kde-meta-3.4.1
>
> I tried emerging kde-meta. I then tried unmerging all the blockers it
> created and then emerging back kde, to get rid of kde-meta. When that
> didn't help I reversed the process and reemerged kde-meta, which is
> where I am now. I've rebuilt all of kde a couple of times now with
> the situation getting worse, not better.
>

Try `emerge -eDav kde-meta` to rebuild all of KDEs dependencies.

-Mike

--
________________________________
Michael E. Crute
Software Developer
SoftGroup Development Corporation

Linux, because reboots are for installing hardware.
"In a world without walls and fences, who needs windows and gates?"

[-- Attachment #2: Type: text/html, Size: 1255 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06 10:57 ` Benno Schulenberg
@ 2005-10-06 15:46   ` Wes Gray
  2005-10-06 16:58   ` Wes Gray
  1 sibling, 0 replies; 63+ messages in thread
From: Wes Gray @ 2005-10-06 15:46 UTC (permalink / raw
  To: gentoo-user

On Thu, Oct 06, 2005 at 12:57:09PM +0200, Benno Schulenberg wrote:
> Upgrading from which version precisely?

3.3

> What is the full output of 'ls -l ~/.kde*' ?

I've played around with the ~/.kde* files a lot.  I've tried removing
them, as well as kde tmp files in /tmp and /var/tmp.  I've also tried
creating a completely new user.  With a new user or no ~/.kde files
kicker crashes on startup and I get no bar at the bottom.  With my
current ~/.kde* files the bar starts, but it's applets like the
clock or the thing that shows minimized apps doesn't work.

> And of 'grep kde /var/lib/portage/world | sort' ?

# grep kde /var/lib/portage/world | sort
kde-base/arts
kde-base/kde-env
kde-base/kde-meta
kde-base/kdebase-meta
kde-base/kdelibs
kde-base/konqueror
#

> And of 'grep kde /etc/env.d/*' ?

# grep kde /etc/env.d/*
/etc/env.d/46kdepaths-3.4:PATH=/usr/kde/3.4/bin
/etc/env.d/46kdepaths-3.4:ROOTPATH=/usr/kde/3.4/sbin:/usr/kde/3.4/bin
/etc/env.d/46kdepaths-3.4:LDPATH=/usr/kde/3.4/lib
/etc/env.d/46kdepaths-3.4:CONFIG_PROTECT="/usr/kde/3.4/share/config /usr/kde/3.4/env /usr/kde/3.4/shutdown"
/etc/env.d/47kdepaths-3.3.1:PATH=/usr/kde/3.3/bin
/etc/env.d/47kdepaths-3.3.1:ROOTPATH=/usr/kde/3.3/sbin:/usr/kde/3.3/bin
/etc/env.d/47kdepaths-3.3.1:LDPATH=/usr/kde/3.3/lib
/etc/env.d/47kdepaths-3.3.1:CONFIG_PROTECT="/usr/kde/3.3/share/config /usr/kde/3.3/env /usr/kde/3.3/shutdown"
/etc/env.d/48kdepaths-3.2.3:PATH=/usr/kde/3.2/bin
/etc/env.d/48kdepaths-3.2.3:ROOTPATH=/usr/kde/3.2/sbin:/usr/kde/3.2/bin
/etc/env.d/48kdepaths-3.2.3:LDPATH=/usr/kde/3.2/lib
/etc/env.d/48kdepaths-3.2.3:CONFIG_PROTECT=/usr/kde/3.2/share/config
/etc/env.d/49kdepaths-3.1.5:PATH=/usr/kde/3.1/bin
/etc/env.d/49kdepaths-3.1.5:ROOTPATH=/usr/kde/3.1/sbin:/usr/kde/3.1/bin
/etc/env.d/49kdepaths-3.1.5:LDPATH=/usr/kde/3.1/lib
/etc/env.d/49kdepaths-3.1.5:CONFIG_PROTECT=/usr/kde/3.1/share/config
/etc/env.d/56kdedir-3.1.5:KDEDIR=/usr/kde/3.1
/etc/env.d/57kdedir-3.2.3:KDEDIR=/usr/kde/3.2
/etc/env.d/65kdelibs-3.1:PATH=/usr/kde/3.1/bin
/etc/env.d/65kdelibs-3.1:ROOTPATH=/usr/kde/3.1/bin
/etc/env.d/65kdelibs-3.1:LDPATH=/usr/kde/3.1/lib
/etc/env.d/65kdelibs-3.1:KDEDIRS=/usr/kde/3.1
/etc/env.d/65kdelibs-3.1:CONFIG_PROTECT=/usr/kde/3.1/share/config
#

> 
> Does Konqueror work?

Konqueror is a good example.  I just emerged konqueror, to try to fix it,
and it didn't fix it (and broke some other stuff, see below).  When I run
Konqueror it runs but first I get:

"There was an error loading the module About-Page for Konqueror.  The
 diagnostics is: /usr/kde/3.1/lib/kde3/konq_aboutpage.so: cannot open shared
 object file: No such file or directory"

I suspect that if I could figure out why konqueror (and other apps) seem to
still want to point to 3.1 libraries I could get to the bottom of my problems.

>  KMail?  KWrite?  Konsole?

Konsole works.  I don't run kmail, it messes with my email.

> Do most things work?

Other than kde stuff, my system is fine.  As for kde stuff, it's hit an
miss.  The kde desktop is usuable, but I get errors and things are missing.
Kedit works.

> The Control Center?

Control center runs, but most of the pages are just generic pages with
no accessible options.

> The Menu Editor?

I don't have it...not sure why.

> Looking back at your other emails...  Are you keeping the rest of 
> your system up-to-date?  

Yeah, most packages are up-to-date.

>What does 'emerge -Dup world' say (after a sync)?

Actually that emerge of konqueror I did last night really hosed some stuff
up and a bunch of kde packages went away (don't ask me why) and kde crashed,
so I'm re-emerging kdebase right now and can't check but I will get back to
you.  In general though, my system is very up to date.  It was a little out
of date, but in the process of trying to fix this I sync'd and emerged
most everything that needed it.

> Do you still have an old python-2.2* installed?

I think I removed it trying to get revdep-rebuild to work.

> What says 'eix -e python'?  (If you don't have eix installed, first do 
> 'emerge eix; update-eix'.)  What says 'emerge -p --depclean'?

I will get back to you with this info after kde finishes later today.

> Does revdep-rebuild now run without problems?

It did a few days ago, after much work.

> (And please don't tell us to trust you, we're just asking questions, 
> as you're not being very specific.)

OK, sorry.  I appreciate the help.

-Wes
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06 10:57 ` Benno Schulenberg
  2005-10-06 15:46   ` Wes Gray
@ 2005-10-06 16:58   ` Wes Gray
  2005-10-06 20:17     ` Benno Schulenberg
  2005-10-07  3:59     ` Richard Fish
  1 sibling, 2 replies; 63+ messages in thread
From: Wes Gray @ 2005-10-06 16:58 UTC (permalink / raw
  To: gentoo-user

On Thu, Oct 06, 2005 at 12:57:09PM +0200, Benno Schulenberg wrote:

Here is the rest of the requested info:

> What does 'emerge -Dup world' say (after a > sync)?

# emerge -Dup world

These are the packages that I would merge, in order:

Calculating world dependencies ...done!
[blocks B     ] media-libs/giflib (is blocking media-libs/libungif-4.1.3)
[blocks B     ] media-libs/libquicktime (is blocking media-libs/openquicktime-1.
0-r1)
[ebuild     U ] sys-apps/texinfo-4.8-r1 [4.8]
[ebuild     U ] sys-devel/binutils-config-1.8-r5 [1.8-r3]
[ebuild     U ] sys-libs/glibc-2.3.5-r2 [2.3.5-r1]
[ebuild     U ] sys-apps/shadow-4.0.7-r4 [4.0.7-r3]
[ebuild     U ] sys-apps/util-linux-2.12r [2.12q-r3]
[ebuild     U ] sys-apps/utempter-0.5.5.6 [0.5.5.5-r1]
[ebuild     U ] x11-terms/xterm-204 [196]
[ebuild     U ] dev-libs/libIDL-0.8.6 [0.8.5]
[ebuild     U ] gnome-base/orbit-2.12.3 [2.12.2]
[ebuild     U ] gnome-base/libbonobo-2.10.1 [2.10.0]
[ebuild     U ] media-sound/esound-0.2.36-r1 [0.2.34]
[ebuild     U ] gnome-base/gnome-vfs-2.10.1-r2 [2.10.1-r1]
[ebuild     U ] gnome-base/libbonoboui-2.10.1 [2.10.0]
[ebuild     U ] x11-themes/gtk-engines-2.6.5 [2.6.4-r2]
[ebuild     U ] app-text/gtkspell-2.0.11 [2.0.4-r1]
[ebuild  N    ] media-libs/giflib-4.1.3
[ebuild     U ] app-text/docbook-sgml-dtd-4.1-r3 [4.1-r1]
[ebuild     U ] app-text/docbook-sgml-dtd-4.0-r3 [4.0-r1]
[ebuild     U ] app-text/docbook-sgml-dtd-3.0-r3 [3.0-r1]
[ebuild     U ] app-text/docbook-sgml-dtd-3.1-r3 [3.1-r1]
[ebuild     U ] app-text/docbook-xml-simple-dtd-4.1.2.4-r2 [4.1.2.4]
[ebuild  NS   ] app-text/docbook-xml-simple-dtd-1.0-r1
[ebuild     U ] media-libs/a52dec-0.7.4-r5 [0.7.4-r4]
[ebuild     U ] www-client/links-2.1_pre18 [2.1_pre17-r1]
[ebuild  NS   ] app-text/docbook-xml-dtd-4.4
[ebuild     U ] app-text/docbook-sgml-utils-0.6.14 [0.6.11-r2]
[ebuild     U ] app-text/docbook-xml-dtd-4.1.2-r5 [4.1.2-r4]
[ebuild     U ] dev-perl/Compress-Zlib-1.35 [1.33]
[ebuild     U ] perl-core/digest-base-1.10 [1.05]
[ebuild     U ] dev-perl/Digest-SHA1-2.10 [2.07]
[ebuild     U ] dev-perl/Net-DNS-0.49 [0.48]
[ebuild     U ] perl-core/DB_File-1.811-r1 [1.811]
[ebuild     U ] app-text/enscript-1.6.3-r3 [1.6.3-r1]
[ebuild  NS   ] sys-apps/i2c-2.9.1
[ebuild  NS   ] sys-apps/lm_sensors-2.9.1-r1
[ebuild     U ] gnome-extra/gcalctool-5.5.42-r2 [5.5.42-r1]
[ebuild     U ] sys-libs/db-1.85-r2 [1.85-r1]
[ebuild     U ] gnome-base/gnome-print-0.37 [0.35-r3]
[ebuild     U ] kde-base/kdebase-pam-6 [4]
[ebuild     U ] gnome-base/gconf-1.0.9 [1.0.8-r3]
[ebuild  N    ] gnome-base/gnome-common-2.8.0
[ebuild     U ] gnome-base/gnome-vfs-1.0.5-r4 [1.0.5-r2]
[ebuild     U ] gnome-extra/guppi-0.40.3-r2 [0.40.3-r1]
[ebuild     U ] dev-lang/swig-1.3.21 [1.3.10-r2]
[ebuild     U ] dev-libs/g-wrap-1.3.4-r1 [1.3.4]
[ebuild     U ] app-arch/sharutils-4.2.1-r11 [4.2.1-r10]
[ebuild     U ] sci-libs/fftw-3.0.1-r2 [3.0.1]
[ebuild     U ] x11-libs/gtkglext-1.0.6-r2 [1.0.5]
[ebuild     U ] dev-perl/libintl-perl-1.11 [1.10]
[ebuild     U ] media-libs/freetype-1.3.1-r4 [1.3.1-r3]
[ebuild  N    ] games-util/loki_setupdb-20050109
[ebuild  N    ] dev-util/xdelta-1.1.3
[ebuild  N    ] games-util/loki_patch-20050324
[ebuild  NS   ] x11-libs/wxGTK-2.6.1
[ebuild     U ] games-emulation/xmame-0.100 [0.97]
[ebuild     U ] gnome-base/gdm-2.8.0.3 [2.8.0.1-r1]
[ebuild     U ] media-gfx/xv-3.10a-r11 [3.10a-r3]
[ebuild     U ] net-im/centericq-4.21.0 [4.20.0-r3]
[ebuild     U ] sys-libs/db-3.2.9-r10 [3.2.9-r7]
[ebuild     U ] x11-themes/gnome-backgrounds-2.10.2 [2.10.1]
[ebuild     U ] gnome-base/gnome-2.10.2 [2.10-r1]
[ebuild     U ] dev-perl/Filter-1.30 [1.29]
[ebuild     U ] app-emulation/wine-20050725-r1 [20050524]
#

Oddly I tried unmerging giflib and it unmerged ok, but I still get the blocker.

> What says 'eix -e python'?

# eix -e python 
* dev-lang/python 
     Available versions:  2.1.3-r1 2.2.3-r6 2.3.4-r1 2.3.5 ~2.3.5-r1 2.3.5-r2 ~
2.4-r3 ~2.4.1 ~2.4.1-r1 ~2.4.2
     Installed:           2.2.3-r6 2.3.5-r2
     Homepage:            http://www.python.org/
     Description:         Python is an interpreted, interactive, object-orienta
ted programming language.


Found 1 matches
# 

> Does revdep-rebuild now run without problems?

yes, just reran it.

> What says 'emerge -p --depclean'?

# emerge -p --depclean

*** WARNING *** : DEPCLEAN CAN  SERIOUSLY  IMPAIR YOUR SYSTEM. USE CAUTION.
*** WARNING *** : (Cancel: CONTROL-C) -- ALWAYS VERIFY ALL PACKAGES IN THE
*** WARNING *** : CANDIDATE LIST FOR  SANITY  BEFORE  ALLOWING DEPCLEAN TO
*** WARNING *** : UNMERGE ANY PACKAGES.
*** WARNING *** :
*** WARNING *** : USE FLAGS MAY HAVE AN EXTREME EFFECT ON THE OUTPUT.
*** WARNING *** : SOME LIBRARIES MAY BE USED BY PACKAGES BUT ARE NOT
*** WARNING *** : CONSIDERED TO BE A DEPEND DUE TO USE FLAG SETTINGS.
*** WARNING *** : emerge --update --deep --newuse world TO VERIFY
*** WARNING *** : SANITY IN THIS REGARD.
*** WARNING *** :
*** WARNING *** : Packages  in the list  that are  desired  may be added
*** WARNING *** : directly to the world file to cause them to be ignored
*** WARNING *** : by depclean and maintained in the future. BREAKAGES DUE
*** WARNING *** : TO UNMERGING AN  ==IN-USE LIBRARY==  MAY BE REPAIRED BY
*** WARNING *** : MERGING  *** THE PACKAGE THAT COMPLAINS ***  ABOUT THE
*** WARNING *** : MISSING LIBRARY.

Calculating depclean dependencies ... done!
!!! There appears to be a problem with the following package:
!!! media-libs/libquicktime

!!! Please ensure that blocking/conflicting packages are not merged.!!! 'emerge -p media-libs/libquicktime

!!! There appears to be a problem with the following package:
!!! media-libs/giflib

!!! Please ensure that blocking/conflicting packages are not merged.!!! 'emerge -p media-libs/giflib

!!! There appears to be a problem with the following package:
!!! media-libs/openquicktime

!!! Please ensure that blocking/conflicting packages are not merged.!!! 'emerge -p media-libs/openquicktime


>>> These are the packages that I would unmerge:


!!! Trying to unmerge package(s) in system profile. 'app-editors/nano'
!!! This could be damaging to your system.



 app-text/dgs
    selected: 0.5.10-r1
   protected: none
     omitted: none

 dev-java/bsf
    selected: 2.3.0-r2
   protected: none
     omitted: none

 app-text/enscript
    selected: 1.6.3-r1
   protected: none
     omitted: none

 sys-devel/bin86
    selected: 0.16.13
   protected: none
     omitted: none

 dev-java/jdepend
    selected: 2.8.1
   protected: none
     omitted: none

 media-gfx/gimp-print
    selected: 4.2.2
   protected: none
     omitted: none

 dev-perl/Audio-Tools
    selected: 0.01
   protected: none
     omitted: none

 dev-java/bsh
    selected: 2.0_beta1-r1
   protected: none
     omitted: none

 sys-apps/netkit-base
    selected: 0.17-r6
   protected: none
     omitted: none

 dev-java/jakarta-regexp
    selected: 1.3-r2
   protected: none
     omitted: none

 dev-java/xjavac
    selected: 20041208
   protected: none
     omitted: none

 kde-base/kdeaccessibility
    selected: 3.3.2
   protected: none
     omitted: none

 sys-devel/ld.so
    selected: 1.9.11-r2
   protected: none
     omitted: none

 sys-apps/fileutils
    selected: 4.1.11-r1
   protected: none
     omitted: none

 sys-libs/libtermcap-compat
    selected: 1.2.3
   protected: none
     omitted: none

 app-shells/sash
    selected: 3.7
   protected: none
     omitted: none

 dev-perl/Data-Dumper
    selected: 2.101
   protected: none
     omitted: none

 dev-java/log4j
    selected: 1.2.9
   protected: none
     omitted: none

 x11-wm/windowmaker
    selected: 0.80.2
   protected: none
     omitted: none

 dev-java/antlr
    selected: 2.7.3
   protected: none
     omitted: none

 dev-java/commons-beanutils
    selected: 1.6.1-r2
   protected: none
     omitted: none

 gnome-extra/at-spi
    selected: 1.0.2
   protected: none
     omitted: none

 dev-java/commons-collections
    selected: 3.1
   protected: none
     omitted: none

 media-sound/mp3info
    selected: 0.8.4-r1
   protected: none
     omitted: none

 app-arch/ncompress
    selected: 4.2.4
   protected: none
     omitted: none

 sys-apps/sh-utils
    selected: 2.0.15
   protected: none
     omitted: none

 net-firewall/iptables
    selected: 1.2.7a
   protected: none
     omitted: none

 x11-themes/commonbox-styles
    selected: 0.6
   protected: none
     omitted: none

 dev-java/jzlib
    selected: 1.0.5
   protected: none
     omitted: none

 dev-java/rhino
    selected: 1.5.5-r1
   protected: none
     omitted: none

 www-misc/htdig
    selected: 3.1.6-r4
   protected: none
     omitted: none

 dev-java/ant
    selected: 1.6.2-r6
   protected: none
     omitted: none

 media-sound/oggtst
    selected: 0.0
   protected: none
     omitted: none

 dev-java/libreadline-java
    selected: 0.8.0-r1
   protected: none
     omitted: none

 dev-java/ant-core
    selected: 1.6.2-r3
   protected: none
     omitted: none

 net-mail/metamail
    selected: 2.7.45
   protected: none
     omitted: none

 dev-perl/MP3-Info
    selected: 1.01-r2
   protected: none
     omitted: none

 media-libs/compface
    selected: 1.4
   protected: none
     omitted: none

 dev-java/bcel
    selected: 5.1-r1
   protected: none
     omitted: none

 dev-java/xalan
    selected: 2.6.0-r2
   protected: none
     omitted: none

 dev-java/jakarta-oro
    selected: 2.0.8-r1
   protected: none
     omitted: none

 dev-java/commons-logging
    selected: 1.0.4-r1
   protected: none
     omitted: none

 media-libs/sdl-mixer
    selected: 1.2.4
   protected: none
     omitted: none

 media-video/xanim
    selected: 2.80.1-r4
   protected: none
     omitted: none

 app-doc/kdelibs-apidocs
    selected: 3.1.1
   protected: none
     omitted: none

 dev-java/javacup
    selected: 0.10k
   protected: none
     omitted: none

 sys-apps/slocate
    selected: 2.7-r5
   protected: none
     omitted: none

 media-libs/mpeg-lib
    selected: 1.3.1-r1
   protected: none
     omitted: none

 perl-core/Safe
    selected: 2.09
   protected: none
     omitted: none

 app-text/psutils
    selected: 1.17
   protected: none
     omitted: none

 dev-libs/libstroke
    selected: 0.4
   protected: none
     omitted: none

 net-misc/dhcpcd
    selected: 1.3.22_p4-r5
   protected: none
     omitted: none

 net-ftp/ftp
    selected: 0.17-r2
   protected: none
     omitted: none

 media-libs/quicktime4linux
    selected: 1.5.5-r1
   protected: none
     omitted: none

 dev-java/ant-tasks
    selected: 1.6.2-r9
   protected: none
     omitted: none

 gnome-extra/libgail-gnome
    selected: 1.0.2
   protected: none
     omitted: none

 media-plugins/gst-plugins-libpng
    selected: 0.6.3
   protected: none
     omitted: none

 dev-java/jsch
    selected: 0.1.18
   protected: none
     omitted: none

 sys-apps/textutils
    selected: 2.1
   protected: none
     omitted: none

 dev-java/xml-commons
    selected: 1.0_beta2
   protected: none
     omitted: none

 sys-apps/setserial
    selected: 2.17-r2
   protected: none
     omitted: none

 dev-cpp/gnomemm
    selected: 1.2.3-r1
   protected: none
     omitted: none

 app-editors/nano
    selected: 1.0.9
   protected: none
     omitted: none

 media-libs/hermes
    selected: 1.3.2-r2
   protected: none
     omitted: none

 media-libs/smpeg
    selected: 0.4.4-r4
   protected: none
     omitted: none

 media-libs/jbigkit
    selected: 1.4
   protected: none
     omitted: none

 app-text/a2ps
    selected: 4.13b-r4
   protected: none
     omitted: none

 dev-java/jython
    selected: 2.1-r5
   protected: none
     omitted: none

 dev-util/kdoc
    selected: 2.0_alpha54
   protected: none
     omitted: none

 x11-themes/gtk-engines-pixbuf
    selected: 2.2.0
   protected: none
     omitted: none

 dev-java/junit
    selected: 3.8.1-r1
   protected: none
     omitted: none

 dev-db/edb
    selected: 1.0.3
   protected: none
     omitted: none

 dev-java/xml-commons-resolver
    selected: 1.1
   protected: none
     omitted: none

 dev-perl/Audio-Wav
    selected: 0.02
   protected: none
     omitted: none

 dev-java/gnu-crypto
    selected: 2.0.1
   protected: none
     omitted: none

 dev-java/avalon-logkit
    selected: 1.2
   protected: none
     omitted: none

 sys-apps/attr
    selected: 2.4.19
   protected: none
     omitted: none

 sys-apps/acl
    selected: 2.2.27
   protected: none
     omitted: none

 dev-java/commons-net
    selected: 1.2.2-r1
   protected: none
     omitted: none

 dev-java/servletapi
    selected: 2.3-r2
   protected: none
     omitted: none

 media-libs/jpeg-mmx
    selected: 1.1.2-r1
   protected: none
     omitted: none

 dev-java/xerces
    selected: 2.6.2-r2
   protected: none
     omitted: none

 sys-apps/fbset
    selected: 2.1
   protected: none
     omitted: none

>>> 'Selected' packages are slated for removal.
>>> 'Protected' and 'omitted' packages will not be removed.


Packages installed:   960
Packages in world:    457
Packages in system:   59
Unique package names: 867
Required packages:    897
Number to remove:     83
# 

-Wes
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06 16:58   ` Wes Gray
@ 2005-10-06 20:17     ` Benno Schulenberg
  2005-10-07  2:21       ` Wes Gray
  2005-10-07  3:59     ` Richard Fish
  1 sibling, 1 reply; 63+ messages in thread
From: Benno Schulenberg @ 2005-10-06 20:17 UTC (permalink / raw
  To: gentoo-user

Wes Gray wrote:
> # grep kde /var/lib/portage/world | sort
> kde-base/arts
> kde-base/kde-env
> kde-base/kde-meta
> kde-base/kdebase-meta
> kde-base/kdelibs
> kde-base/konqueror

Hmm, if I'm not mistaken, if you've emerged kde-meta, none of the 
other kde things should be in your world file.  You've probably 
done a few emerges without using the --oneshot option.  When all 
the things below don't help, or have heleped, you may want to 
delete the superfluous lines and do a fresh 'emerge -Du world', 
just to be sure all is okay.

> # grep kde /etc/env.d/*
> /etc/env.d/46kdepaths-3.4:PATH=/usr/kde/3.4/bin
> /etc/env.d/46kdepaths-3.4:ROOTPATH=/usr/kde/3.4/sbin:/usr/kde/3.4
>/bin /etc/env.d/46kdepaths-3.4:LDPATH=/usr/kde/3.4/lib
> /etc/env.d/46kdepaths-3.4:CONFIG_PROTECT="/usr/kde/3.4/share/conf
>ig /usr/kde/3.4/env /usr/kde/3.4/shutdown"

Delete all the other kde files from /etc/env.d/, keeping only the 
3.4 one.  The older ones are not needed any more since you've 
uninstalled those versions, no?  This may solve some of your 
problems by removing that KDEDIR env var.

> I suspect that if I could figure out why konqueror (and other
> apps) seem to still want to point to 3.1 libraries I could get to
> the bottom of my problems.

Maybe because of that KDEDIR var.  When you've deleted the obsolete 
env files, do 'env-update' and restart KDE.

> # emerge -Dup world
> [...]

Okay, your system looks pretty much up-to-date.  But:

> [ebuild     U ] kde-base/kdebase-pam-6 [4]

Try updating this one, with 'emerge --oneshot kdebase-pam'.  It may 
solve some access problems, maybe those of kicker.  After emerging, 
log out and back in.

> # eix -e python
>[...]
>      Installed:           2.2.3-r6 2.3.5-r2

The ancient version is still installed, no harm in it probably, but 
no need for it either.  If you wish, unmerge it with 'emerge -C 
=python-2.2.3-r6', ignoring the warning.

> # emerge -p --depclean
> [...]
> !!! There appears to be a problem with the following package:
> !!! media-libs/libquicktime

Use 'eix -e ...'  to see which of these packages, libquicktime, 
openquicktime, giflib, libungif, you've got installed, uninstall 
each of them with 'emerge -C =...', and later let a fresh 'emerge 
-Du world' install the one's that are really needed.

That's a long list...  So first resolve the blocking issues (if it 
gives you trouble, search bugs.gentoo.org or the forums or the 
archives of this list), then run 'emerge --depclean' in earnest to 
get rid of all the obsoletes, after that do a 'revdep-rebuild', and 
conclude with 'emerge -Du world'.

Perseverance,

Benno
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06 20:17     ` Benno Schulenberg
@ 2005-10-07  2:21       ` Wes Gray
  2005-10-07 17:31         ` Benno Schulenberg
  0 siblings, 1 reply; 63+ messages in thread
From: Wes Gray @ 2005-10-07  2:21 UTC (permalink / raw
  To: gentoo-user

On Thu, Oct 06, 2005 at 10:17:20PM +0200, Benno Schulenberg wrote:
> Delete all the other kde files from /etc/env.d/, keeping only the 
> 3.4 one.  The older ones are not needed any more since you've 
> uninstalled those versions, no?  This may solve some of your 
> problems by removing that KDEDIR env var.

That solved everything!  I didn't have to emerge or anything.  You
are wonderful!  I'm still going to go through and do the other things
you suggest here to get my system cleaned up.  Thank you so much for
the help.

-Wes
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-06 16:58   ` Wes Gray
  2005-10-06 20:17     ` Benno Schulenberg
@ 2005-10-07  3:59     ` Richard Fish
  2005-10-07  4:54       ` Richard Fish
  2005-10-07  7:37       ` Neil Bothwick
  1 sibling, 2 replies; 63+ messages in thread
From: Richard Fish @ 2005-10-07  3:59 UTC (permalink / raw
  To: gentoo-user


> kde-base/kdeaccessibility
>    selected: 3.3.2
>   protected: none
>     omitted: none
>  
>

This one tells me that you've got old versions of KDE merged alongside 
the current version.  I suspect path and library problems are the result...

My suggestion is to:

ls -ld /var/db/pkg/kde-base/*-3[0-3]*

This will give you a list of all old kde packages that are merged.  You 
can then unmerge those, then do a revdep-rebuild.


>Packages in world:    457
>

This is a huge number of packages.  As Benno suggested, this probably 
means you have [re]merged packages without the --oneshot flag, so they 
got added to your world file, and portage now things you require those 
packages regardless of any dependancies.

The following script will show you all packages in world that are not 
depended on by something else.  Most (but not ALL!!) can be safely 
removed from world.  For example, sys-portage/portage is not depended on 
by something else, but it would be very bad to remove it from world!!

    cat /var/lib/portage/world | while read pkg; do
        count=`equery depends "$pkg" | wc -l`
        test $count -eq 0 && echo "pkg"
    done

This may or may not have an effect on your KDE installation.  Mostly, 
this just a case of portage cleanup.

HTH,
-Richard

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-07  3:59     ` Richard Fish
@ 2005-10-07  4:54       ` Richard Fish
  2005-10-07  7:37       ` Neil Bothwick
  1 sibling, 0 replies; 63+ messages in thread
From: Richard Fish @ 2005-10-07  4:54 UTC (permalink / raw
  To: gentoo-user

Richard Fish wrote:

>
>    cat /var/lib/portage/world | while read pkg; do
>        count=`equery depends "$pkg" | wc -l`
>        test $count -eq 0 && echo "pkg"
>    done


Um, sorry, I'm a complete idiot sometimes.  You want to remove from 
world packages that are included as a dependancy of something else.  So 
that "-eq 0" above should be "-gt 0".  But again, some results are not 
going to be safe to remove from world, like sys-libs/glibc.

Again, my apologies...


-Richard

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-07  3:59     ` Richard Fish
  2005-10-07  4:54       ` Richard Fish
@ 2005-10-07  7:37       ` Neil Bothwick
  1 sibling, 0 replies; 63+ messages in thread
From: Neil Bothwick @ 2005-10-07  7:37 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 469 bytes --]

On Thu, 06 Oct 2005 20:59:16 -0700, Richard Fish wrote:

> For example, sys-portage/portage is not depended on 
> by something else, but it would be very bad to remove it from world!!

Why? I have neither portage nor glibc in world. portage is part of system
and glibc is a dependency of just about everything.


-- 
Neil Bothwick

A computer scientist is someone who, when told to "Go to Hell,"
sees the "go to," rather than the destination, as harmful.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-07  2:21       ` Wes Gray
@ 2005-10-07 17:31         ` Benno Schulenberg
  0 siblings, 0 replies; 63+ messages in thread
From: Benno Schulenberg @ 2005-10-07 17:31 UTC (permalink / raw
  To: gentoo-user

Wes Gray wrote:
> On Thu, Oct 06, 2005 at 10:17:20PM +0200, Benno Schulenberg wrote:
> > Delete all the other kde files from /etc/env.d/, keeping only
> > the 3.4 one.  The older ones are not needed any more since
> > you've uninstalled those versions, no?  This may solve some of
> > your problems by removing that KDEDIR env var.
>
> That solved everything!  I didn't have to emerge or anything. 
> You are wonderful!

:)  Thanks.

> I'm still going to go through and do the 
> other things you suggest here to get my system cleaned up.

Take care with the depcleaning, it can cripple your system 
completely.  Most of the things in your depclean list look 
harmless, except for acl and attr -- they tripped me up several 
moons ago.  To play it safe, first tar up /lib and /usr/lib, and if 
after the cleaning anything starts to fail, re-extract the missing 
lib.  If even tar should fail, use 'busybox tar' instead.

After you're done with that, you may want to clean up your world 
file, as suggested by Richard.  And after that, another round of 
depcleaning.

Benno
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2005-10-26  8:50 Tamer Higazi
  2005-10-26 13:33 ` Michael Crute
  0 siblings, 1 reply; 63+ messages in thread
From: Tamer Higazi @ 2005-10-26  8:50 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #2: Type: text/html, Size: 233 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-26  8:50 Tamer Higazi
@ 2005-10-26 13:33 ` Michael Crute
  2005-10-26 21:03   ` b.n.
  0 siblings, 1 reply; 63+ messages in thread
From: Michael Crute @ 2005-10-26 13:33 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 325 bytes --]

On 10/26/05, Tamer Higazi <tamer23@myrealbox.com> wrote:
>
>
>
With what?

-Mike

--
________________________________
Michael E. Crute
Software Developer
SoftGroup Development Corporation

Linux, because reboots are for installing hardware.
"In a world without walls and fences, who needs windows and gates?"

[-- Attachment #2: Type: text/html, Size: 664 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-10-26 13:33 ` Michael Crute
@ 2005-10-26 21:03   ` b.n.
  0 siblings, 0 replies; 63+ messages in thread
From: b.n. @ 2005-10-26 21:03 UTC (permalink / raw
  To: gentoo-user

Michael Crute wrote:
> On 10/26/05, *Tamer Higazi* <tamer23@myrealbox.com 
> <mailto:tamer23@myrealbox.com>> wrote:
> 
> 
> 
> With what?

Probably he vanished before having time to tell us what was putting him 
in danger. Poor Mr.Higazi. We will miss him.

m.
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2005-12-29 15:14 gentoo user mail list
  2005-12-29 15:15 ` John Jolet
                   ` (2 more replies)
  0 siblings, 3 replies; 63+ messages in thread
From: gentoo user mail list @ 2005-12-29 15:14 UTC (permalink / raw
  To: gentoo-user


-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-12-29 15:14 gentoo user mail list
@ 2005-12-29 15:15 ` John Jolet
  2005-12-29 15:46   ` Uwe Thiem
  2005-12-29 15:36 ` Ciaran McCreesh
  2005-12-29 17:58 ` Lares Moreau
  2 siblings, 1 reply; 63+ messages in thread
From: John Jolet @ 2005-12-29 15:15 UTC (permalink / raw
  To: gentoo-user


On Dec 29, 2005, at 9:14 AM, gentoo user mail list wrote:
okay...  we're good, but we need a BIT more information than that.  :)
>
> -- 
> gentoo-user@gentoo.org mailing list
>

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-12-29 15:14 gentoo user mail list
  2005-12-29 15:15 ` John Jolet
@ 2005-12-29 15:36 ` Ciaran McCreesh
  2005-12-29 16:10   ` Martins Steinbergs
  2005-12-29 17:58 ` Lares Moreau
  2 siblings, 1 reply; 63+ messages in thread
From: Ciaran McCreesh @ 2005-12-29 15:36 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 380 bytes --]

On Thu, 29 Dec 2005 23:14:41 +0800 gentoo user mail list
<frid.gentoouser@gmail.com> wrote:
| 

Cut the blue wire first, then the green wire within the next five
seconds. Whatever you do, don't touch the red wire!

-- 
Ciaran McCreesh : Gentoo Developer (King of all Londinium)
Mail            : ciaranm at gentoo.org
Web             : http://dev.gentoo.org/~ciaranm


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-12-29 15:15 ` John Jolet
@ 2005-12-29 15:46   ` Uwe Thiem
  0 siblings, 0 replies; 63+ messages in thread
From: Uwe Thiem @ 2005-12-29 15:46 UTC (permalink / raw
  To: gentoo-user

On 29 December 2005 17:15, John Jolet wrote:
> On Dec 29, 2005, at 9:14 AM, gentoo user mail list wrote:
> okay...  we're good, but we need a BIT more information than that.  :)

Reminds me on something Matthias Ettrich once said when kwm was still KDE's 
window manager: "Alright, folks, next I will implement focus follows 
mind." ;-)

Uwe

-- 
Unix is sexy:
who | grep -i blonde | date
cd ~; unzip; touch; strip; finger
mount; gasp; yes; uptime; umount
sleep
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-12-29 15:36 ` Ciaran McCreesh
@ 2005-12-29 16:10   ` Martins Steinbergs
  0 siblings, 0 replies; 63+ messages in thread
From: Martins Steinbergs @ 2005-12-29 16:10 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 489 bytes --]

On Thursday 29 December 2005 17:36, Ciaran McCreesh wrote:
> On Thu, 29 Dec 2005 23:14:41 +0800 gentoo user mail list
> <frid.gentoouser@gmail.com> wrote:
>
>
> Cut the blue wire first, then the green wire within the next five
> seconds. Whatever you do, don't touch the red wire!


sometimes they fool with colors, better RUN NOW

mr.holywood
-- 
Linux 2.6.14-gentoo-r5 AMD Athlon(tm) 64 Processor 3200+
 18:10:01 up 1 day,  4:34,  4 users,  load average: 1.00, 1.01, 1.10

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-12-29 15:14 gentoo user mail list
  2005-12-29 15:15 ` John Jolet
  2005-12-29 15:36 ` Ciaran McCreesh
@ 2005-12-29 17:58 ` Lares Moreau
  2005-12-29 18:36   ` John J. Foster
  2 siblings, 1 reply; 63+ messages in thread
From: Lares Moreau @ 2005-12-29 17:58 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 512 bytes --]

On Thu, 2005-12-29 at 23:14 +0800, gentoo user mail list wrote:

"I need somebody, HELP, not just anybody, Help.
When I was younger so much younger then today..."
-- 
Lares Moreau <lares.moreau@gmail.com>  | LRU: 400755 http://counter.li.org
lares/irc.freenode.net                 |
Gentoo x86 Arch Tester                 |               ::0 Alberta, Canada
Public Key: 0D46BB6E @ subkeys.pgp.net |          Encrypted Mail Preferred
Key fingerprint = 0CA3 E40D F897 7709 3628  C5D4 7D94 483E 0D46 BB6E

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-12-29 17:58 ` Lares Moreau
@ 2005-12-29 18:36   ` John J. Foster
  2005-12-31  3:59     ` Norberto Bensa
  0 siblings, 1 reply; 63+ messages in thread
From: John J. Foster @ 2005-12-29 18:36 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 287 bytes --]

On Thu, Dec 29, 2005 at 10:58:11AM -0700, Lares Moreau wrote:
> On Thu, 2005-12-29 at 23:14 +0800, gentoo user mail list wrote:
> 
> "I need somebody, HELP, not just anybody, Help.
> When I was younger so much younger then today..."

"I never needed anybody's help in any way..."

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2005-12-29 18:36   ` John J. Foster
@ 2005-12-31  3:59     ` Norberto Bensa
  0 siblings, 0 replies; 63+ messages in thread
From: Norberto Bensa @ 2005-12-31  3:59 UTC (permalink / raw
  To: gentoo-user; +Cc: John J. Foster

John J. Foster wrote:
> On Thu, Dec 29, 2005 at 10:58:11AM -0700, Lares Moreau wrote:
> > On Thu, 2005-12-29 at 23:14 +0800, gentoo user mail list wrote:
> >
> > "I need somebody, HELP, not just anybody, Help.
> > When I was younger so much younger then today..."
>
> "I never needed anybody's help in any way..."

But now these days are gone, I'm not so self assured,
Now I find I've changed my mind and opened up the doors.
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2006-02-08 16:47 vikram ranade
  2006-02-08 17:25 ` Richard Fish
  0 siblings, 1 reply; 63+ messages in thread
From: vikram ranade @ 2006-02-08 16:47 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 2 bytes --]



[-- Attachment #2: Type: text/html, Size: 6 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2006-02-08 16:47 vikram ranade
@ 2006-02-08 17:25 ` Richard Fish
  2006-02-08 19:00   ` Ernie Schroder
  0 siblings, 1 reply; 63+ messages in thread
From: Richard Fish @ 2006-02-08 17:25 UTC (permalink / raw
  To: gentoo-user

On 2/8/06, vikram ranade <ranade.vikram@gmail.com> wrote:
>
>

My guess is that your keyboard is broken.

-Richard

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2006-02-08 17:25 ` Richard Fish
@ 2006-02-08 19:00   ` Ernie Schroder
  0 siblings, 0 replies; 63+ messages in thread
From: Ernie Schroder @ 2006-02-08 19:00 UTC (permalink / raw
  To: gentoo-user

On Wednesday 08 February 2006 12:25, a tiny voice compelled Richard Fish to 
write:
> On 2/8/06, vikram ranade <ranade.vikram@gmail.com> wrote:
>
>
>
> My guess is that your keyboard is broken.
>
> -Richard
Gotta love empty posts especially in HTML
-- 
Regards, Ernie
-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2008-07-03 15:46 Erik Ohrnberger
  2008-07-03 17:29 ` Jason Messerschmitt
                   ` (2 more replies)
  0 siblings, 3 replies; 63+ messages in thread
From: Erik Ohrnberger @ 2008-07-03 15:46 UTC (permalink / raw
  To: gentoo-user

help

-- 
gentoo-user@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2008-07-03 15:46 Erik Ohrnberger
@ 2008-07-03 17:29 ` Jason Messerschmitt
  2008-07-03 18:06 ` Hal Martin
  2008-07-04  1:58 ` Ricardo Bevilacqua
  2 siblings, 0 replies; 63+ messages in thread
From: Jason Messerschmitt @ 2008-07-03 17:29 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 194 bytes --]

certainly don't need any help with verbosity, do you?

On Thu, Jul 3, 2008 at 10:46 AM, Erik Ohrnberger <Erik@echohome.org> wrote:

> help
>
> --
> gentoo-user@lists.gentoo.org mailing list
>
>

[-- Attachment #2: Type: text/html, Size: 519 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2008-07-03 15:46 Erik Ohrnberger
  2008-07-03 17:29 ` Jason Messerschmitt
@ 2008-07-03 18:06 ` Hal Martin
  2008-07-04  1:58 ` Ricardo Bevilacqua
  2 siblings, 0 replies; 63+ messages in thread
From: Hal Martin @ 2008-07-03 18:06 UTC (permalink / raw
  To: gentoo-user

Erik Ohrnberger wrote:
> help
>
>   
Certainly, where/in what do you require it?

-Hal
-- 
gentoo-user@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2008-07-03 15:46 Erik Ohrnberger
  2008-07-03 17:29 ` Jason Messerschmitt
  2008-07-03 18:06 ` Hal Martin
@ 2008-07-04  1:58 ` Ricardo Bevilacqua
  2 siblings, 0 replies; 63+ messages in thread
From: Ricardo Bevilacqua @ 2008-07-04  1:58 UTC (permalink / raw
  To: gentoo-user

2008/7/3 Erik Ohrnberger <Erik@echohome.org>:
> help
>

That is a nice song from "The Beatles" [1] =)

Regards,

Richard.


[1] http://www.youtube.com/watch?v=9ibX3TejlZE
-- 
gentoo-user@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2009-01-08 18:59 Daryl Styrk
  2009-01-08 19:02 ` Tence T. George
  2009-01-08 19:02 ` Dale
  0 siblings, 2 replies; 63+ messages in thread
From: Daryl Styrk @ 2009-01-08 18:59 UTC (permalink / raw
  To: gentoo-user




^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2009-01-08 18:59 Daryl Styrk
@ 2009-01-08 19:02 ` Tence T. George
  2009-01-08 19:05   ` Daryl Styrk
  2009-01-08 19:02 ` Dale
  1 sibling, 1 reply; 63+ messages in thread
From: Tence T. George @ 2009-01-08 19:02 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 119 bytes --]

errr...what's seems to be the problem?

On Thu, Jan 8, 2009 at 1:59 PM, Daryl Styrk <darylstyrk@gmail.com> wrote:

>
>

[-- Attachment #2: Type: text/html, Size: 382 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2009-01-08 18:59 Daryl Styrk
  2009-01-08 19:02 ` Tence T. George
@ 2009-01-08 19:02 ` Dale
  2009-01-08 19:19   ` damian
  1 sibling, 1 reply; 63+ messages in thread
From: Dale @ 2009-01-08 19:02 UTC (permalink / raw
  To: gentoo-user

Daryl Styrk wrote:
>   

Did you fall and you can't get up or what?  :-p

Dale

:-)  :-) 



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2009-01-08 19:02 ` Tence T. George
@ 2009-01-08 19:05   ` Daryl Styrk
  2009-01-08 19:09     ` Qian Qiao
  0 siblings, 1 reply; 63+ messages in thread
From: Daryl Styrk @ 2009-01-08 19:05 UTC (permalink / raw
  To: gentoo-user

Tence T. George wrote:
> errr...what's seems to be the problem?
> 
> On Thu, Jan 8, 2009 at 1:59 PM, Daryl Styrk <darylstyrk@gmail.com> wrote:
> 
>>
> 

Sorry I was looking for the list mailman.. I deleted the initial
"Welcome to the list" containing the usual (sometimes) commands for
manipulating the subscriptions.






^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2009-01-08 19:05   ` Daryl Styrk
@ 2009-01-08 19:09     ` Qian Qiao
  2009-01-08 19:15       ` Daryl Styrk
  0 siblings, 1 reply; 63+ messages in thread
From: Qian Qiao @ 2009-01-08 19:09 UTC (permalink / raw
  To: gentoo-user

On Fri, Jan 9, 2009 at 03:05, Daryl Styrk <darylstyrk@gmail.com> wrote:
> Tence T. George wrote:
>> errr...what's seems to be the problem?
>>
>> On Thu, Jan 8, 2009 at 1:59 PM, Daryl Styrk <darylstyrk@gmail.com> wrote:
>>
>>>
>>
>
> Sorry I was looking for the list mailman.. I deleted the initial
> "Welcome to the list" containing the usual (sometimes) commands for
> manipulating the subscriptions.

Such information is in the header of every message you get from the list.



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2009-01-08 19:09     ` Qian Qiao
@ 2009-01-08 19:15       ` Daryl Styrk
  2009-01-08 19:24         ` Qian Qiao
  0 siblings, 1 reply; 63+ messages in thread
From: Daryl Styrk @ 2009-01-08 19:15 UTC (permalink / raw
  To: gentoo-user

Qian Qiao wrote:

> 
> Such information is in the header of every message you get from the list.
> 

Thank you for that.  I normally do not view headers detailed and had
overlooked it as an option.




^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2009-01-08 19:02 ` Dale
@ 2009-01-08 19:19   ` damian
  0 siblings, 0 replies; 63+ messages in thread
From: damian @ 2009-01-08 19:19 UTC (permalink / raw
  To: gentoo-user

On Thu, Jan 8, 2009 at 8:02 PM, Dale <rdalek1967@gmail.com> wrote:
> Daryl Styrk wrote:
>>
>
> Did you fall and you can't get up or what?  :-p
ROFL!

> Dale
>
> :-)  :-)
>
>



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2009-01-08 19:15       ` Daryl Styrk
@ 2009-01-08 19:24         ` Qian Qiao
  0 siblings, 0 replies; 63+ messages in thread
From: Qian Qiao @ 2009-01-08 19:24 UTC (permalink / raw
  To: gentoo-user

On Fri, Jan 9, 2009 at 03:15, Daryl Styrk <darylstyrk@gmail.com> wrote:
> Qian Qiao wrote:
>
>>
>> Such information is in the header of every message you get from the list.
>>
>
> Thank you for that.  I normally do not view headers detailed and had
> overlooked it as an option.
>

Many list softwares add those information to the header, so you know
where to look next time.



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2010-03-20 16:03 Dainius Matusevičius
  0 siblings, 0 replies; 63+ messages in thread
From: Dainius Matusevičius @ 2010-03-20 16:03 UTC (permalink / raw
  To: gentoo-user





^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
  2010-01-02 17:52 [gentoo-user] sky2 , kernel 2.6.31, macbook pro and connection hiccups bn
@ 2010-12-03 21:19 ` Linux User #332203
  2010-12-04 10:05   ` Neil Bothwick
  0 siblings, 1 reply; 63+ messages in thread
From: Linux User #332203 @ 2010-12-03 21:19 UTC (permalink / raw
  To: gentoo-user






^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2010-12-03 21:19 ` [gentoo-user] help Linux User #332203
@ 2010-12-04 10:05   ` Neil Bothwick
  0 siblings, 0 replies; 63+ messages in thread
From: Neil Bothwick @ 2010-12-04 10:05 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 334 bytes --]

On Fri, 3 Dec 2010 15:19:46 -0600, Linux User #332203 wrote:

X-Mailer: Microsoft Office Outlook 12.0

> 
> 
> 

Changing your mailer may help with the white text on a white background
problem :)


-- 
Neil Bothwick

Law of Mechanical Repair: After your hands become coated with
grease, your nose will begin to itch.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 198 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2013-02-23  9:28 Dan Hunter
  2013-02-23 12:43 ` Volker Armin Hemmann
  0 siblings, 1 reply; 63+ messages in thread
From: Dan Hunter @ 2013-02-23  9:28 UTC (permalink / raw
  To: gentoo-user




^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2013-02-23  9:28 Dan Hunter
@ 2013-02-23 12:43 ` Volker Armin Hemmann
  2013-02-23 13:07   ` Dale
  0 siblings, 1 reply; 63+ messages in thread
From: Volker Armin Hemmann @ 2013-02-23 12:43 UTC (permalink / raw
  To: gentoo-user

Am 23.02.2013 10:28, schrieb Dan Hunter:
>
>
no


^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2013-02-23 12:43 ` Volker Armin Hemmann
@ 2013-02-23 13:07   ` Dale
  2013-02-23 13:27     ` Dan Hunter
  0 siblings, 1 reply; 63+ messages in thread
From: Dale @ 2013-02-23 13:07 UTC (permalink / raw
  To: gentoo-user

Volker Armin Hemmann wrote:
> Am 23.02.2013 10:28, schrieb Dan Hunter:
>>
> no
>
>

Double no.  Next he will try the "unsubscribe" in the subject line angle
with little success there either.  Then someone will post the nice long
reply about the unsubscribe kit and all its options.  I find that one
funny tho so I usually read it.  o_O

Dale

:-)  :-)

-- 
I am only responsible for what I said ... Not for what you understood or how you interpreted my words!



^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2013-02-23 13:07   ` Dale
@ 2013-02-23 13:27     ` Dan Hunter
  2013-02-23 13:33       ` Volker Armin Hemmann
  0 siblings, 1 reply; 63+ messages in thread
From: Dan Hunter @ 2013-02-23 13:27 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 506 bytes --]

On 02/23/13 17:07, Dale wrote:
> Volker Armin Hemmann wrote:
>> Am 23.02.2013 10:28, schrieb Dan Hunter:
>> no
>>
>>
> Double no.  Next he will try the "unsubscribe" in the subject line angle
> with little success there either.  Then someone will post the nice long
> reply about the unsubscribe kit and all its options.  I find that one
> funny tho so I usually read it.  o_O
>
> Dale
>
> :-)  :-)
>
sorry expected robot reply
just want to knowurl ofthis lists. Is available http-version of gentoo lists?

[-- Attachment #2: Type: text/html, Size: 1205 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2013-02-23 13:27     ` Dan Hunter
@ 2013-02-23 13:33       ` Volker Armin Hemmann
  0 siblings, 0 replies; 63+ messages in thread
From: Volker Armin Hemmann @ 2013-02-23 13:33 UTC (permalink / raw
  To: gentoo-user

Am 23.02.2013 14:27, schrieb Dan Hunter:
> On 02/23/13 17:07, Dale wrote:
>> Volker Armin Hemmann wrote:
>>> Am 23.02.2013 10:28, schrieb Dan Hunter:
>>> no
>>>
>>>
>> Double no.  Next he will try the "unsubscribe" in the subject line angle
>> with little success there either.  Then someone will post the nice long
>> reply about the unsubscribe kit and all its options.  I find that one
>> funny tho so I usually read it.  o_O
>>
>> Dale
>>
>> :-)  :-)
>>
> sorry expected robot reply
> just want to knowurl ofthis lists. Is available http-version of gentoo lists?
>

look into the header of the mails your received. List-help for example.

There are many email-archives carrying this list. google is your friend.



^ permalink raw reply	[flat|nested] 63+ messages in thread

* [gentoo-user] help
@ 2018-10-04 13:18 Jorge Ventura
  2018-10-04 18:17 ` gevisz
  0 siblings, 1 reply; 63+ messages in thread
From: Jorge Ventura @ 2018-10-04 13:18 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1 bytes --]



[-- Attachment #2: Type: text/html, Size: 101 bytes --]

^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2018-10-04 13:18 Jorge Ventura
@ 2018-10-04 18:17 ` gevisz
  2018-10-04 22:22   ` Dale
  0 siblings, 1 reply; 63+ messages in thread
From: gevisz @ 2018-10-04 18:17 UTC (permalink / raw
  To: gentoo-user

чт, 4 окт. 2018 г. в 16:18, Jorge Ventura <jorge.araujo.ventura@gmail.com>:
>
>
Hm, could you, please, describe your problem in a bit more details?


^ permalink raw reply	[flat|nested] 63+ messages in thread

* Re: [gentoo-user] help
  2018-10-04 18:17 ` gevisz
@ 2018-10-04 22:22   ` Dale
  0 siblings, 0 replies; 63+ messages in thread
From: Dale @ 2018-10-04 22:22 UTC (permalink / raw
  To: gentoo-user

gevisz wrote:
> чт, 4 окт. 2018 г. в 16:18, Jorge Ventura <jorge.araujo.ventura@gmail.com>:
>>
> Hm, could you, please, describe your problem in a bit more details?
>
>

I wondered if they were trying to get list help,
gentoo-user+help@lists.gentoo.org, when I first saw it.  If so, maybe
that email address will help them, if they still need it. 

Dale

:-)  :-) 


^ permalink raw reply	[flat|nested] 63+ messages in thread

end of thread, other threads:[~2018-10-04 22:22 UTC | newest]

Thread overview: 63+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-24 17:23 [gentoo-user] Help C.Beamer
2005-07-24 17:41 ` Stroller
2005-07-24 18:39 ` Martins Steinbergs
2005-07-24 19:03   ` Richard Fish
2005-07-24 19:50     ` C.Beamer
2005-07-24 20:18       ` Richard Fish
2005-07-24 23:31 ` Alex A. Smith MCP
2005-07-24 23:52   ` Martins Steinbergs
2005-07-25 22:30     ` [gentoo-user] Help - We got boot! :-) C.Beamer
  -- strict thread matches above, loose matches on Subject: below --
2005-10-06  2:46 [gentoo-user] help Wes Gray
2005-10-06  2:58 ` Eduard Vaykher
2005-10-06  3:35   ` Wes Gray
2005-10-06  3:46     ` Ted Ozolins
2005-10-06  4:18       ` Wes Gray
2005-10-06  9:37         ` DmD (Spider) LJungmark
2005-10-06 11:49     ` Michael Crute
2005-10-06  9:42 ` Roger Miliker
2005-10-06 10:57 ` Benno Schulenberg
2005-10-06 15:46   ` Wes Gray
2005-10-06 16:58   ` Wes Gray
2005-10-06 20:17     ` Benno Schulenberg
2005-10-07  2:21       ` Wes Gray
2005-10-07 17:31         ` Benno Schulenberg
2005-10-07  3:59     ` Richard Fish
2005-10-07  4:54       ` Richard Fish
2005-10-07  7:37       ` Neil Bothwick
2005-10-26  8:50 Tamer Higazi
2005-10-26 13:33 ` Michael Crute
2005-10-26 21:03   ` b.n.
2005-12-29 15:14 gentoo user mail list
2005-12-29 15:15 ` John Jolet
2005-12-29 15:46   ` Uwe Thiem
2005-12-29 15:36 ` Ciaran McCreesh
2005-12-29 16:10   ` Martins Steinbergs
2005-12-29 17:58 ` Lares Moreau
2005-12-29 18:36   ` John J. Foster
2005-12-31  3:59     ` Norberto Bensa
2006-02-08 16:47 vikram ranade
2006-02-08 17:25 ` Richard Fish
2006-02-08 19:00   ` Ernie Schroder
2008-07-03 15:46 Erik Ohrnberger
2008-07-03 17:29 ` Jason Messerschmitt
2008-07-03 18:06 ` Hal Martin
2008-07-04  1:58 ` Ricardo Bevilacqua
2009-01-08 18:59 Daryl Styrk
2009-01-08 19:02 ` Tence T. George
2009-01-08 19:05   ` Daryl Styrk
2009-01-08 19:09     ` Qian Qiao
2009-01-08 19:15       ` Daryl Styrk
2009-01-08 19:24         ` Qian Qiao
2009-01-08 19:02 ` Dale
2009-01-08 19:19   ` damian
2010-01-02 17:52 [gentoo-user] sky2 , kernel 2.6.31, macbook pro and connection hiccups bn
2010-12-03 21:19 ` [gentoo-user] help Linux User #332203
2010-12-04 10:05   ` Neil Bothwick
2010-03-20 16:03 Dainius Matusevičius
2013-02-23  9:28 Dan Hunter
2013-02-23 12:43 ` Volker Armin Hemmann
2013-02-23 13:07   ` Dale
2013-02-23 13:27     ` Dan Hunter
2013-02-23 13:33       ` Volker Armin Hemmann
2018-10-04 13:18 Jorge Ventura
2018-10-04 18:17 ` gevisz
2018-10-04 22:22   ` Dale

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox