Re: [gentoo-user] hardened install

2005-08-28 Thread Rumen Yotov
James wrote:

Hello,

http://open-systems.ufl.edu/mirrors/gentoo/experimental/x86/hardened/livecd/
is what I'm using to install a base system, later on a complete 
firewall/router.

The K6 booted find with the grsec-noX option, but it prompts me for 
a login and password right off the bat.

These did not work:
root root
admin admin
gentoo gentoo
root gentoo
root hardened

Any ideas what the cd uses for the root passwd. Note
I did not set this up, the install CD booted up this
way. I cannont manually setup the ethernet, if
I cannot go root

Ideas?

James


  

Hi,
NO direct help here, just suggestions ;)
Have you tried with a blank password or by using sudo.
Could ask on hardened-ML or hardened irc-channel (maybe a faster answer).
HTH. Rumen


smime.p7s
Description: S/MIME Cryptographic Signature


Re: [gentoo-user] [OT] Open Office USE flags

2005-08-28 Thread Willie Wong
On Sat, Aug 27, 2005 at 11:07:52PM -0400, John Dangler wrote:
 Anyone know why Open Office would require USE=???hardened??? ?

huh? To my knowledge, no package would REQUIRE a useflag. 

 Or is this here to show that it can be installed in a hardened Gentoo 
 environment?

The line IUSE= hardened ... in the ebuild specifies that it CAN
be built with the hardened flag, probably for PIE. 

 I noticed some postings based on people installing it with -hardened (and 
 having problems), but I don't have a hardened Gentoo install and don't want 
 this to bork, since I'm sure it will take a while to compile...

OpenOffice is app-office, I highly doubt most people using OpenOffice,
i.e., on a desktop, would seriously need/want hardened. 

Go ahead and emerge it with -hardened. 

W
-- 
Q: What's grey and proves the nondenumerability of the Reals? 
A: Cantor's Diagonal Elephant
Sortir en Pantoufles: up 16 days,  9:06
-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] [OT] Open Office USE flags

2005-08-28 Thread John Dangler
Wilie~
Thanks for the reply.  I did leave it out.  I kept reading and couldn't find
anywhere except portage (and the hardened docs) where it would be necessary
for anything in 'daily life'.  And, the references I did find for it were
all linked to PIE.  The USE flags I quoted were from portage.  Looking at
the package and selecting USE flags.  I've taken to looking at all of the
information about a package before emerging -- it saves a lot of backstrokes
in the long run, and I keep notes about which flags I've added to make.conf
for which packages, along with the defaults that are already there...

John D

-Original Message-
From: Willie Wong [mailto:[EMAIL PROTECTED] 
Sent: Sunday, August 28, 2005 2:07 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] [OT] Open Office USE flags

On Sat, Aug 27, 2005 at 11:07:52PM -0400, John Dangler wrote:
 Anyone know why Open Office would require USE=???hardened??? ?

huh? To my knowledge, no package would REQUIRE a useflag. 

 Or is this here to show that it can be installed in a hardened Gentoo
environment?

The line IUSE= hardened ... in the ebuild specifies that it CAN
be built with the hardened flag, probably for PIE. 

 I noticed some postings based on people installing it with -hardened (and
having problems), but I don't have a hardened Gentoo install and don't want
this to bork, since I'm sure it will take a while to compile...

OpenOffice is app-office, I highly doubt most people using OpenOffice,
i.e., on a desktop, would seriously need/want hardened. 

Go ahead and emerge it with -hardened. 

W
-- 
Q: What's grey and proves the nondenumerability of the Reals? 
A: Cantor's Diagonal Elephant
Sortir en Pantoufles: up 16 days,  9:06
-- 
gentoo-user@gentoo.org mailing list





-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Unable to unmerge php and mod_php

2005-08-28 Thread Rumen Yotov
Hi,
On Fri, 2005-08-26 at 14:44 -0400, fire-eyes wrote:
 Hi,
 
 I am trying to unmerge all versions of php and mod_php on my system.
 
 However:
 
 # emerge -C php mod_php
 
   dev-php/mod_php
  selected: 4.3.2-r5 4.3.8
 protected: none
   omitted: none
 
   'Selected' packages are slated for removal.
   'Protected' and 'omitted' packages will not be removed.
 
   Waiting 5 seconds before starting...
   (Control-C to abort)...
   Unmerging in: 5 4 3 2 1
   Unmerging dev-php/mod_php-4.3.2-r5...
 No package files given... Grabbing a set.
 
 QA Notice: ECLASS 'php' inherited illegally in dev-php/mod_php-4.3.2-r5
 
 /usr/lib/portage/bin/ebuild.sh: line 1443: 
 /var/portage/eclass/php.eclass: No such file or directory
think this is the culpit --^
(missing php.eclass-should have been replaced by some other php eclass).
Or check old portage files (was attic in CVS) IIRC and put it in overlay
 
 !!! ERROR: dev-php/mod_php-4.3.2-r5 failed.
 !!! Function inherit, Line 1444, Exitcode 1
 !!! died sourcing /var/portage/eclass/php.eclass in inherit()
 !!! If you need support, post the topmost build error, NOT this status 
 message.
 
 !!! FAILED prerm: 1
 
 
 Any suggestions?
 
...SKIP...
HTH. Rumen

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] [OT] Open Office USE flags

2005-08-28 Thread Nick Rout
If you really want to know what a USE flag does on a particular ebuild
you have to:

1, read the ebuild and find what the USE flag switches on or off.
2, understand, from your knowledge of the package, what switching that
option on or off does.

for example, in openoffice:

[EMAIL PROTECTED] ~/mediatemp $ grep
hardened /usr/portage/app-office/openoffice/openoffice-1.1.4-r1.ebuild
IUSE=curl hardened java kde nptl zlib
#GCC 3.4 fixes, also needed for hardened
#Fixes for hardened
if use hardened; then
epatch ${FILESDIR}/${PV}/hardened-link.patch

this shows that the effect (and the only effect) of using the hardened
flag is to patch the source with the file
${FILESDIR}/${PV}/hardened-link.patch

Translating, ${FILESDIR} is the files directory
under /usr/portage/app-office/openoffice

${PV} is package version, ie in the case of openoffice-1.1.4 is 1.1.4

so the file is:

[EMAIL PROTECTED] ~/mediatemp $
cat /usr/portage/app-office/openoffice/files/1.1.4/hardened-link.patch
diff -ur solenv.orig/inc/unxlngi4.mk solenv/inc/unxlngi4.mk
--- solenv.orig/inc/unxlngi4.mk 2004-10-23 20:09:29.344518376 +0200
+++ solenv/inc/unxlngi4.mk  2004-10-23 20:09:43.084429592 +0200
@@ -156,8 +156,8 @@
 LINKFLAGS=-Wl,-z,combreloc $(LINKFLAGSDEFS) $(LINKFLAGSRUNPATH)

 # linker flags for linking applications
-LINKFLAGSAPPGUI= -Wl,-export-dynamic
-LINKFLAGSAPPCUI= -Wl,-export-dynamic
+LINKFLAGSAPPGUI= -Wl,-export-dynamic -Wl,-z,execheap
+LINKFLAGSAPPCUI= -Wl,-export-dynamic -Wl,-z,execheap

 # linker flags for linking shared libraries
 LINKFLAGSSHLGUI= -shared

you'll have to work out for yourself what this actually does. the
Changelog file might have a clue, or bugs.gentoo.org





On Sun, 2005-08-28 at 02:42 -0400, John Dangler wrote:
 Wilie~
 Thanks for the reply.  I did leave it out.  I kept reading and couldn't find
 anywhere except portage (and the hardened docs) where it would be necessary
 for anything in 'daily life'.  And, the references I did find for it were
 all linked to PIE.  The USE flags I quoted were from portage.  Looking at
 the package and selecting USE flags.  I've taken to looking at all of the
 information about a package before emerging -- it saves a lot of backstrokes
 in the long run, and I keep notes about which flags I've added to make.conf
 for which packages, along with the defaults that are already there...
 
 John D
 

 
-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] sub-net 0.0.0.0 [SOLVED]

2005-08-28 Thread Nick Rout
On Sat, 2005-08-27 at 23:35 -0600, Joseph wrote:
 On Sat, 2005-08-27 at 10:23 +0100, Neil Bothwick wrote:
  On Fri, 26 Aug 2005 17:20:12 -0600, Joseph wrote:
  
   Is there a way to check what IP the device has on the network?
   I know the device MAC address and when I plug it IN, it obtains one of
   the IP via DHCP.   With 
   arp -a IP
   arp -e 
   I can only check the MAC address.   Is there a way to other way around. 
  
  Try arp -a
 
 Very closed.  but better yet is:
 Knowing MAC address but looking for IP
 tcpdump -e -i eth0 |grep -i 00:09:45:52:04:da
 Since I know the MAC address, the above command will capture the IP
 address of the device when plugged into the server.
 
 Knowing IP address but looking for MAC
 ping IP
 arp -e

of course arp will only work if the device has actually done anything on
the network within arp's cache period. I just tried arp -a and found my
wireless AP did not appear in the list, probably because I haven't used
wireless for a few days. I pinged the (known) address and then tried
again and it showed up. 

 
 -- 
 #Joseph
-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] config qt theme without kde?

2005-08-28 Thread Norberto Bensa
Qiangning Hong wrote:
 Anyone can tell me how to manually install qt themes or give me a howto
 URL?  I did google with qt theme install but have no luck.

qtconfig

-- 
Norberto Bensa
4544-9692 / 15-4190-6344
Ciudad de Buenos Aires, Argentina


pgp2idGRX9H9y.pgp
Description: PGP signature


Re: [gentoo-user] How can I burn DVD with k3b ?

2005-08-28 Thread Rumen Yotov
On Sat, 2005-08-27 at 18:33 +0400, Makurin Roman wrote:
 Hi all! How can I burn dvd with k3b ?
 I emerge this with dvdr use flag, but what I need to do to write dvd ?
 
 10nx
 
Hi,
Here's the description for dvdr USE-flag:
 $ euse -i dvdr
global use flags (searching: dvdr)

[+ C  ] dvdr - Adds support for DVD writer hardware (e.g. in xcdroast)

local use flags (searching: dvdr)

no matching entries found
...END...
Using that flag 'dvdr' i can *write* DVDs
HTH. Rumen

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] ftp

2005-08-28 Thread Rumen Yotov
On Sat, 2005-08-27 at 22:05 -0400, John Dangler wrote:
 Can someone here recommend a good ftp app that I can use in gnome?
 
 Thanks.
 
 John D
 
 
 
Hi,
Try 'gftp'
Rumen

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] cannot load libc, permission denied

2005-08-28 Thread Marco Matthies

David Busby wrote:

I cannot open /etc/ld.so.cache!  What? See:

cdrtx cdr_tx # ls -l /etc/ld.so.cache
-rw-r--r--  1 root root 18311 Aug 27 21:13 /etc/ld.so.cache

Any other ideas?


I reproduced your bug and diagnostics on a vmware install of gentoo 
exactly by doing a chmod a-x /


So issuing a
chmod a+x /
should fix it if this is the cause.

But it's very weird that the execute bit should not be set on / if it's 
this what is causing your errors.


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



Re: [gentoo-user] Yet another geforce4 problem

2005-08-28 Thread Alexander Kirillov

I've recently installed GeForce4 MX440 AGP 8x
into my gentoo box and got it working.
Bootsplash, opengl and so on..
But one serious problem remains.
I have 90% chance to get garbled screen right after system reboot
when bios is starting hw checks. The problem goes away
after a random number of poweroffs.
Is there a way to fix this?



If you've upgraded the bios on the motherboard, then trash the motherboard.
It's not doing a proper reset to the AGP bus.

Other possibility is the chip on the MX440 is on the slow side of things and 
the reset
is too short for it.  Generally, the chip will eventually get slower as it ages 
and the problem
will get worse.


Thanks for the hint Bob,
Upgraded the bios. The problem's still there:(
As I don't reboot very often I may live with this for a while.
Sasha

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Google Video: Firefox + VLC?

2005-08-28 Thread Nick Rout
On Fri, 2005-08-26 at 18:53 -0400, Alvin A ONeal Jr wrote:
 I know that Google Video is still in it's infancy, but hey, gentoo is 
 all about bleeding-edge, right?
 
 I'm wondering if anyone has managed to get it working yet - and if so, 
 would you be kind enough to share?
 
 I've done some initial research and put up a stub page here:
 http://gentoo-wiki.com/HOWTO_Google_Video_(VLC)_with_Firefox
 but I don't understand what it is I need to do in order to make things 
 happen.

http://bugs.gentoo.org/show_bug.cgi?id=97250


 
-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] many packages are available in gentoo?

2005-08-28 Thread William Kenworthy
Is there a link that states how many packages are available in gentoo?
Stable, ~x86 etc?

Used to on the main gentoo site but I cant find it now (and
packages.gentoo.org has no stats at all)

BillK


-- 
William Kenworthy [EMAIL PROTECTED]
Home!

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Alex
On Saturday 27 August 2005 20:57, Roman Makurin wrote:
 What I need to do ? :-)

I've been looking for the same thing for some days now... The good thing I 
just found a solution (well at least it worked for me :) )
You have to enable direct raw access in the kernel:

Device Drivers  --- ATA/ATAPI/MFM/RLL support  ---[*] IDE Taskfile 
Access 

boot with your new kernel and enjoy your movies ;)

-- 
Cheers, Alex.


pgpo1qB3cnILR.pgp
Description: PGP signature


Re: [gentoo-user] Re: Proposed option for etc-update

2005-08-28 Thread Neil Bothwick
On Sat, 27 Aug 2005 22:46:53 -0400, Alvin A ONeal Jr wrote:

 ditch etc-update, dispatch-conf has backup features built in
 emerge gentoolkit
 dispatch-conf

dispatch-conf is not in gentoolkit, it is part or portage.

# qpkg -f `which dispatch-conf `
sys-apps/portage

 and while you're at it
 emerge eix
 eix some-package

Absolutely, I wouldn't be without eix.


-- 
Neil Bothwick

The trouble with life is that you are halfway through it before you
realize it's a do it yourself thing.


pgpzpEGKNxrqS.pgp
Description: PGP signature


[gentoo-user] Re: /dev read,write problem

2005-08-28 Thread Tom Eastman

Jonas Geiregat wrote:
When I startup my system I need to loing as root and run chmod a+rw 
/dev/* else I have problems login in or starting multiple shells I'm 
using udev anyone got any idea what could cause the problem ?


I found myself having a similar problem.  It started happening after 
updating udev (I think) and failing to update all the files using 
etc-update.  after replacing all the old files with the new ones, the 
problem fixed itself.


Tom

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [asking again] keyboard/mouse woes on 2.6 kernel

2005-08-28 Thread Timur Aydin
Martins Steinbergs [EMAIL PROTECTED] writes:

 mouse support is built into kernel (now in 2.6.13-rc7), not module, xorg has 
 correct entry
 ill try live_cd, maybe find something interesting


I have reinstalled gentoo 2005.1 (network install with stage1). The
system is currently using devfs and my mouse problem is still there,
exactly the same way as before. So, my theory about udev being the
culprit is out the window.

I have tried booting from the livecd. I wasn't able to run X with this
configuration, but I tried issuing the cat /dev/input/mice
command. With the livecd, there is data coming back when I turn the
mouse wheel. When I boot into the gentoo that is installed on the
harddisk and do the same thing, no data comes back when I turn the
mouse wheel.

As a result, I am almost certain that this is related to the kernel
configuration. Continuing the search...

-- 
Timur Aydin
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread Neil Bothwick
On Sun, 28 Aug 2005 18:17:56 +0800, William Kenworthy wrote:

 Is there a link that states how many packages are available in gentoo?
 Stable, ~x86 etc?

You can get the total number of packages with

# find $(portageq portdir) -maxdepth 2 -mindepth 2 -type d | wc -l
10017

To find the total number of ebuilds for a specific architecture, you'd
have to do something like

# find $(portageq portdir) -name '*.ebuild' -exec grep '^KEYWORDS=.*[^~]x86' {} 
';' | wc -l


-- 
Neil Bothwick

Trekkers work out in the `He's Dead Gym'.


pgp7DciuFcIqL.pgp
Description: PGP signature


Re: [gentoo-user] [asking again] keyboard/mouse woes on 2.6 kernel

2005-08-28 Thread Erik Osterholm
On 8/28/05, Timur Aydin [EMAIL PROTECTED] wrote:
Martins Steinbergs [EMAIL PROTECTED] writes: mouse support is built into kernel (now in 2.6.13-rc7), not module, xorg has correct entry ill try live_cd, maybe find something interesting
I have reinstalled gentoo 2005.1 (network install with stage1). Thesystem is currently using devfs and my mouse problem is still there,exactly the same way as before. So, my theory about udev being the
culprit is out the window.I have tried booting from the livecd. I wasn't able to run X with thisconfiguration, but I tried issuing the cat /dev/input/micecommand. With the livecd, there is data coming back when I turn the
mouse wheel. When I boot into the gentoo that is installed on theharddisk and do the same thing, no data comes back when I turn themouse wheel.As a result, I am almost certain that this is related to the kernel
configuration. Continuing the search...--Timur Aydin--gentoo-user@gentoo.org mailing list
Are you using the Event interface? 
CONFIG_INPUT_EVDEV=m
I get this problem occasionally, mostly with my mouse, when I use my
KVM to switch to my docked linux laptop, and the solution is always to
modprobe -r evdev  modprobe evdev. It rarely affects my
keyboard, so I can usually do this. In the rare event of a
keyboard problem, I can just ssh in to do it.

I haven't figured out precisely what the problem is, however I've
definitely narrowed it down to the above configuration. If you
are using EVDEV, it may be possible to configure your kernel/get a
working system without it. If you aren't using EVDEV, give it a
try. As a module, at least you can unload/reload it and save
yourself a reboot until you figure out what's really going on.

Erik


Re: [gentoo-user] A Gentoo Firewall howto?

2005-08-28 Thread William Kenworthy
Its not just easing the pain: I am not sure that someone who is not
intimately familiar with iptables doing what amounts to a home brew is
advisable.  There's quite a number of ways to screw up and leave your
system exposed.  The way to minimise the risk is to start with a known,
popular,  opensource (i.e., many eyes) script that does the main things
for you - and then *test* it from both inside and outside.

The time to fiddle with something as critical as this is when you know
what you are doing.  Many (most?) will be successful, but what about
those who try and do everything right and fail ...

BillK

On Sat, 2005-08-27 at 09:11 -0400, Mark Shields wrote:
 I know you mentioned easing the pain, but good old iptables worked for
...


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] SpamAssassin is letting everything through

2005-08-28 Thread William Kenworthy
The mail gateway user guide uses a separate email account (spamtrap) for
spamassassin's use.  I just copy/move spam and ham to the spam or ham
folders of this account - a cron job does an sa-learn on these folders.
In evolution its a no brainer to dragNdrop between accounts.

BillK


On Sat, 2005-08-27 at 18:15 +0100, Jonathan Wright wrote:
 Jarry wrote:
  I've trained it with sa-learn on a whole slew of ham and spam and it
  continues to let through nearly all the spam coming in.
  
  BTW, in which form do all emails have to be in order to use them as
  examples for spamassassin-learning? mbox (all mails in 1 file), or
  maildir (every mail is a separate file)? Or both are acceptable?
 
...

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Makurin Roman
В сообщении от Воскресенье 28 августа 2005 17:28 Alex написал(a):
 On Saturday 27 August 2005 20:57, Roman Makurin wrote:
  What I need to do ? :-)

 I've been looking for the same thing for some days now... The good thing I
 just found a solution (well at least it worked for me :) )
 You have to enable direct raw access in the kernel:

 Device Drivers  --- ATA/ATAPI/MFM/RLL support  ---  [*] IDE Taskfile
 Access

But I could play dvd some time ago with the same kernel.


 boot with your new kernel and enjoy your movies ;)


pgpFkG9GyEr5K.pgp
Description: PGP signature


Re: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread Sergio Polini
William Kenworthy:
 Is there a link that states how many packages are available in
 gentoo? Stable, ~x86 etc?

Do you speak perl? Sorry, I don't speak python any more ;-)

 begin gentoo_packages.pl 
#!/usr/bin/perl

use strict;
use File::Find;
use vars qw/*name/;
*name   = *File::Find::name;

# Your architecture
my $arch = 'x86';
# $uniq == 1 - nss_ldap-207.ebuild and
# nss_ldap-215-r1.ebuild are the same package
my $uniq = 1;
# $categ == 1 - package names like 'sys-auth/nss_ldsp'
# $categ == 0 - package names like 'nss_ldap'
my $categ = 1;
# Output:
my $sfile = 'stable';
my $tfile = 'testing';

my %stable;
my %testing;
my @stable;
my @testing;

find(\wanted, '/usr/portage');
@stable = sort keys %stable;
@testing = sort keys %testing;
$=\n;
open OUT, ''.$sfile or die Errore opening $sfile: $!\n;
print OUT @stable\n;
close OUT;
open OUT, ''.$tfile or die Errore opening $tfile: $!\n;
print OUT @testing\n;
close OUT;
print Done.\n;

sub wanted {
/^.*\.ebuild\z/s
 storename($name);
}

sub storename {
my $fname = $_[0];
my $shortname;
my $line;
my @temp = split('/', $fname);
print $fname\n;
if ($uniq) {
$temp[5] =~ /(.*)-\d.*ebuild/;
$temp[5] = $1;
}
$shortname = $categ ? $temp[3] . '/' : '';
$shortname .= $temp[5];
open EBLD, $fname or die Error opening $fname: $!\n;
while ($line=EBLD) {
if ($line =~ /^KEYWORDS/) {
if ($line =~ /~$arch/) {
++$testing{$shortname};
} elsif ($line =~ /$arch/) {
++$stable{$shortname};
}
last;
}
}
close EBLD;
}
 end gentoo_packages.pl 

Then:
[root ~]# wc stable
  7702   7702 152968 stable
[root ~]# wc testing
 4929  4929 98613 testing

HTH

Sergio

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] attempt at using new nvidia drivers

2005-08-28 Thread Erik Osterholm
On 8/26/05, maxim wexler [EMAIL PROTECTED] wrote:
Hi everybody,When I ran the program fromhttp://www.nvidia.com/object/linux_nforce_1.0-0306.htmla ncurses-type window opens and offers two
pre-selected choices: install the audio drivers,install the network drivers. I require neither butcan't de-select them. Can toggle from one to other butthat's it. Other than [OK] beneath the choices(?) and
the title there's nothing elseto be seen.What now?-maxim
Pressing ENTER while the option you don't want is selected will
remove the x and deselect it. However I have to ask--if you need
require neither, why are you installing them? Perhaps you are,
instead, looking for the nVidia graphics drivers located at
http://www.nvidia.com/object/linux_display_ia32_1.0-7676.html ?

Erik



[gentoo-user] Tcpdump warning in emerge world -u output

2005-08-28 Thread Harry Putnam
I found this near the end of emerge -v world -u output:


 Waiting 5 seconds before starting...
 (Control-C to abort)...
 Unmerging in: 5 4 3 2 1
QA Notice: ECLASS 'multilib' inherited illegally in net-analyzer/tcpdump-3.8.3-r
1

 * Please upgrade your package (tcpdump-3.8.3-r1) to use toolchain-funcs.eclass
 * Please upgrade your package (tcpdump-3.8.3-r1) to use toolchain-funcs.eclass
 Regenerating /etc/ld.so.cache...
 Regenerating /etc/ld.so.cache...

Anyone here know what this means or what I might need to do.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Yet another geforce4 problem

2005-08-28 Thread Stuart Howard
Do you have any other gfx board you can put in ?
Just to identify the source of the problem, ie. gfx board or mobo
Alternatively do you get the problem when booting under a liveCD of
some description

stu


On 8/28/05, Alexander Kirillov [EMAIL PROTECTED] wrote:
 I've recently installed GeForce4 MX440 AGP 8x
 into my gentoo box and got it working.
 Bootsplash, opengl and so on..
 But one serious problem remains.
 I have 90% chance to get garbled screen right after system reboot
 when bios is starting hw checks. The problem goes away
 after a random number of poweroffs.
 Is there a way to fix this?
 
 
  If you've upgraded the bios on the motherboard, then trash the motherboard.
  It's not doing a proper reset to the AGP bus.
 
  Other possibility is the chip on the MX440 is on the slow side of things 
  and the reset
  is too short for it.  Generally, the chip will eventually get slower as it 
  ages and the problem
  will get worse.
 
 Thanks for the hint Bob,
 Upgraded the bios. The problem's still there:(
 As I don't reboot very often I may live with this for a while.
 Sasha
 
 --
 gentoo-user@gentoo.org mailing list
 
 


-- 
There are 10 types of people in this world: those who understand
binary, those who don't

--Unknown

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] browser,news,mail

2005-08-28 Thread Tero Grundström
On Sat, 27 Aug 2005 17:05:23 -0400
John Dangler [EMAIL PROTECTED] wrote:

 After some more reading, I decided to emerge Firefox and Thunderbird
 anyway...
 It installs fine, except it's really annoying that mousing over a menu
 selection turns the colors white on white... (developer's joke,
 perhaps)

This problem is is caused by a gtk+ theme engine that is not compatible
with Firefox in some way. My guess is that you're using
gtk-engines-gtkstep.

HTH
-- 
T.G.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Alex
On Sunday 28 August 2005 12:27, Makurin Roman wrote:
 But I could play dvd some time ago with the same kernel.

Oh! Hmm...  did you install a new version of xine/libddvdcss before dvds 
stopped playing? did you change your configuration file? do you use raw 
access to your dvd device? Does kaffeine give you the same error? because 
IIRC xiTK is only used by xine-ui. Does

 $  xine --verbose=2  dvd:/

give you more info?
Does this happens on every dvd or on commercial dvds only?

And look at this, it might help,
http://forums.gentoo.org/viewtopic-t-310644-highlight-sigsegv+xine.html
-- 
Cheers, Alex.


pgpxFMIMNbQNu.pgp
Description: PGP signature


Re: [gentoo-user] Tcpdump warning in emerge world -u output

2005-08-28 Thread Alex
On Sunday 28 August 2005 12:44, Harry Putnam wrote:
 I found this near the end of emerge -v world -u output:
  Waiting 5 seconds before starting...
  (Control-C to abort)...
  Unmerging in: 5 4 3 2 1

 QA Notice: ECLASS 'multilib' inherited illegally in
 net-analyzer/tcpdump-3.8.3-r 1

  * Please upgrade your package (tcpdump-3.8.3-r1) to use
 toolchain-funcs.eclass * Please upgrade your package (tcpdump-3.8.3-r1) to
 use toolchain-funcs.eclass

  Regenerating /etc/ld.so.cache...
  Regenerating /etc/ld.so.cache...

 Anyone here know what this means or what I might need to do.

You dont have to do anything, it's not a problem. QA notices are addressed to 
ebuild developers. :)
-- 
Cheers, Alex.


pgpHHC9ZykwUY.pgp
Description: PGP signature


Re: [gentoo-user] Forgotten root password on remote system

2005-08-28 Thread Norbert Kamenicky
Grant wrote:
 I have forgotten the root password of my remote server.  Is there any
 way to retrieve or reset it?

This is my way to solve your problem (and a lot of other problems too):

Ask some guy on remote side do this:

1. Put Knoppix CD into drive and reboot

2. answer knoppix 2 to boot: prompt and hit Enter
(If prompt doesn't occur, it's probably necessary
  to change booting order in BIOS.)

3. when root prompt # appears, write these commands:

   # ifconfig eth0 server's-IP netmask proper-netmask

   # route add default gw gateway's-IP

   # passwd
 put twice this password: word

   # /etc/init.d/sshd start

-
If everything went OK, u have now remote access to the server
and u can do anything u like.
U can change password, repair broken lilo or grub setup,
repair broken filesystem, install gentoo ... etc.

To change password, follow these steps:

mv ~/.ssh/known_hosts{,.bak}
ssh [EMAIL PROTECTED]
mkdir /gentoo
mount /dev/root-device /gentoo
chroot /gentoo
passwd(now u are changeing server's password)
exit   (from chroot)
init 6; exit   (server reboot)
mv ~/.ssh/known_hosts{.bak,}
Ask remote guy take out Knoppix CD and press Enter.

U can adopt this receipt to any other bootable media (CD, DVD, usb key,
HDD, etc.) with nearly any live linux on it (Gentoo, Slax ...)

HTH, noro
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] gaim emerge error

2005-08-28 Thread Marco Matthies

John Dangler wrote:

I just tried emerging gaim and got this error:
configure: WARNING: Could not find Tcl which is needed for the kadm5 tests
configure: error: Could not find Tcl

!!! Please attach the config.log to your bug report:
!!! /var/tmp/portage/mit-krb5-1.4.1-r2/work/krb5-1.4.1/src/config.log

!!! ERROR: app-crypt/mit-krb5-1.4.1-r2 failed.
!!! Function econf, Line 485, Exitcode 0
!!! econf failed


This is not an error in the gaim ebuild but in the app-crypt/mit-krb5 
ebuild (look at the line that says ERROR: ...) which probably got pulled 
in as a dependency of gaim.



Everything seems to work ok now, except a message I got during the emerge
said to do this:
make sure to run revdep-rebuild .

What exactly does this do?


http://www.gentoo.org/doc/en/gentoolkit.xml
This is the first hit when googling for revdep-rebuild, please try 
google before asking the list.



Should I still send the config.log file in as a bug? (I copied the log file
to another location since I figured /tmp... anything would get overwritten)


You seem to have maketest in FEATURES (have a look at the output of 
'emerge info' to see what is set through your configuration and the 
profiles). When trying to reproduce this bug, it said that the maketest 
feature had been disabled for debugging, maybe you need to do an emerge 
sync (but i use amd64, so that might be different here)?

anyways, aside from your solution, you could have also done
FEATURES=-maketest emerge foo
too disable the maketest feature just for one merge.

Hope that helps,
Marco
--
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] [asking again] keyboard/mouse woes on 2.6 kernel

2005-08-28 Thread John Dangler
I had that same problem with a stage 1 build on my laptop.  My laptop also
has 2 mouse inputs (glidepoint and the ibm button).  I noticed the same
behavior, and modprobing evdev did solve it – sort of. The random jumping
only showed up once in a great while and was only a minor annoyance at that
point.   The kernel at the time was 2.6.7 release.  I had a drive crash on
the laptop, and, when I got it back, decided to reinstall the 2005.1 using
stage 2/genkernel.  I haven’t noticed the problem yet on the new build (been
a week so far)…

John D

-Original Message-
From: Erik Osterholm [mailto:[EMAIL PROTECTED] 
Sent: Sunday, August 28, 2005 7:55 AM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] [asking again] keyboard/mouse woes on 2.6 kernel


On 8/28/05, Timur Aydin [EMAIL PROTECTED] wrote:
Martins Steinbergs [EMAIL PROTECTED] writes:

 mouse support is built into kernel (now in 2.6.13-rc7), not module, xorg
has
 correct entry
 ill try live_cd, maybe find something interesting 


I have reinstalled gentoo 2005.1 (network install with stage1). The
system is currently using devfs and my mouse problem is still there,
exactly the same way as before. So, my theory about udev being the 
culprit is out the window.

I have tried booting from the livecd. I wasn't able to run X with this
configuration, but I tried issuing the cat /dev/input/mice
command. With the livecd, there is data coming back when I turn the 
mouse wheel. When I boot into the gentoo that is installed on the
harddisk and do the same thing, no data comes back when I turn the
mouse wheel.

As a result, I am almost certain that this is related to the kernel 
configuration. Continuing the search...

--
Timur Aydin
--
gentoo-user@gentoo.org mailing list

Are you using the Event interface?  
CONFIG_INPUT_EVDEV=m
I get this problem occasionally, mostly with my mouse, when I use my KVM to
switch to my docked linux laptop, and the solution is always to modprobe -r
evdev  modprobe evdev.  It rarely affects my keyboard, so I can usually do
this.  In the rare event of a keyboard problem, I can just ssh in to do it.

I haven't figured out precisely what the problem is, however I've definitely
narrowed it down to the above configuration.  If you are using EVDEV, it may
be possible to configure your kernel/get a working system without it.  If
you aren't using EVDEV, give it a try.  As a module, at least you can
unload/reload it and save yourself a reboot until you figure out what's
really going on.

Erik



-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] [OT] Open Office USE flags

2005-08-28 Thread John Dangler
Nick~
Thanks for the reply.  Of all the sources of information possible, I didn't
think of looking through the ebuild for how the flags are implemented!!  I
did notice that portage allows you to view the ebuild (so looking through
the build script before emerging is possible).  Great tip!

John D

-Original Message-
From: Nick Rout [mailto:[EMAIL PROTECTED] 
Sent: Sunday, August 28, 2005 4:28 AM
To: gentoo-user@lists.gentoo.org
Subject: RE: [gentoo-user] [OT] Open Office USE flags

If you really want to know what a USE flag does on a particular ebuild
you have to:

1, read the ebuild and find what the USE flag switches on or off.
2, understand, from your knowledge of the package, what switching that
option on or off does.

for example, in openoffice:

[EMAIL PROTECTED] ~/mediatemp $ grep
hardened /usr/portage/app-office/openoffice/openoffice-1.1.4-r1.ebuild
IUSE=curl hardened java kde nptl zlib
#GCC 3.4 fixes, also needed for hardened
#Fixes for hardened
if use hardened; then
epatch ${FILESDIR}/${PV}/hardened-link.patch

this shows that the effect (and the only effect) of using the hardened
flag is to patch the source with the file
${FILESDIR}/${PV}/hardened-link.patch

Translating, ${FILESDIR} is the files directory
under /usr/portage/app-office/openoffice

${PV} is package version, ie in the case of openoffice-1.1.4 is 1.1.4

so the file is:

[EMAIL PROTECTED] ~/mediatemp $
cat /usr/portage/app-office/openoffice/files/1.1.4/hardened-link.patch
diff -ur solenv.orig/inc/unxlngi4.mk solenv/inc/unxlngi4.mk
--- solenv.orig/inc/unxlngi4.mk 2004-10-23 20:09:29.344518376 +0200
+++ solenv/inc/unxlngi4.mk  2004-10-23 20:09:43.084429592 +0200
@@ -156,8 +156,8 @@
 LINKFLAGS=-Wl,-z,combreloc $(LINKFLAGSDEFS) $(LINKFLAGSRUNPATH)

 # linker flags for linking applications
-LINKFLAGSAPPGUI= -Wl,-export-dynamic
-LINKFLAGSAPPCUI= -Wl,-export-dynamic
+LINKFLAGSAPPGUI= -Wl,-export-dynamic -Wl,-z,execheap
+LINKFLAGSAPPCUI= -Wl,-export-dynamic -Wl,-z,execheap

 # linker flags for linking shared libraries
 LINKFLAGSSHLGUI= -shared

you'll have to work out for yourself what this actually does. the
Changelog file might have a clue, or bugs.gentoo.org





On Sun, 2005-08-28 at 02:42 -0400, John Dangler wrote:
 Wilie~
 Thanks for the reply.  I did leave it out.  I kept reading and couldn't
find
 anywhere except portage (and the hardened docs) where it would be
necessary
 for anything in 'daily life'.  And, the references I did find for it were
 all linked to PIE.  The USE flags I quoted were from portage.  Looking at
 the package and selecting USE flags.  I've taken to looking at all of the
 information about a package before emerging -- it saves a lot of
backstrokes
 in the long run, and I keep notes about which flags I've added to
make.conf
 for which packages, along with the defaults that are already there...
 
 John D
 

 
-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] openofficeq

2005-08-28 Thread Marco Matthies

John Dangler wrote:

I know this isn't really the Gentoo (read - Linux) way, but, since I'm using
this for business apps, I need to take the end users point of view for a
moment.  Open Office or the Ximianized Open Office.  I read that Ximian
was bought by Novell, so I'm wondering which of these two portage packages
to get.  www.ximian.org is no longer, apparently, so I'm wondering when this
will turn into a commercial (read - for sale) product.  


Google for ximian openoffice to find the new homepage, please.
I really doubt that this will become a commercial product (and it might 
not even be possible due to the licensing, i don't know which license 
they use), though i'm not really informed what's going on in the 
openoffice world.



I read that the ximianized version is faster to load and run, and I also
read that open office takes a long time to compile, so I'd hate to put the
Ximianized version together and then find out somewhere down the road that
I'd have to dump it and go to the other version.  Any insight here is
greatly appreciated.  I'm finally (after 3 days and nights) getting to the
end of having a basic functioning laptop.


Don't know about the merits of openoffice-ximian vs openoffice.
Use openoffice-bin / openoffice-ximian-bin (precompiled binaries), and 
save yourself a lot of time, the compile takes _ages_.


You can see your options by issuing a
emerge -s openoffice
to search for ebuilds containing the words openoffice.

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



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Makurin Roman
В сообщении от Воскресенье 28 августа 2005 20:14 Alex написал(a):
 On Sunday 28 August 2005 12:27, Makurin Roman wrote:
  But I could play dvd some time ago with the same kernel.

 Oh! Hmm...  did you install a new version of xine/libddvdcss before dvds
 stopped playing?
yes, xine-lib and libdvdcss

 did you change your configuration file?
no
 do you use raw access to your dvd device?

what is it ? I can copy dvd to hard drive

 Does kaffeine give you the same error?

xine based  == kaffeine, xine, totem, etc

 because IIRC xiTK is only used by xine-ui. Does

  $  xine --verbose=2  dvd:/




 give you more info?
 Does this happens on every dvd or on commercial dvds only?

It happens on every dvd


 And look at this, it might help,
 http://forums.gentoo.org/viewtopic-t-310644-highlight-sigsegv+xine.html


xine.log.bz2
Description: BZip2 compressed data


pgpd5g0KPQrkz.pgp
Description: PGP signature


Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Makurin Roman
В сообщении от Воскресенье 28 августа 2005 20:14 Alex написал(a):
 On Sunday 28 August 2005 12:27, Makurin Roman wrote:
  But I could play dvd some time ago with the same kernel.

 Oh! Hmm...  did you install a new version of xine/libddvdcss before dvds
 stopped playing? did you change your configuration file? do you use raw
 access to your dvd device? Does kaffeine give you the same error? because
 IIRC xiTK is only used by xine-ui. Does

  $  xine --verbose=2  dvd:/

 give you more info?
 Does this happens on every dvd or on commercial dvds only?

 And look at this, it might help,
 http://forums.gentoo.org/viewtopic-t-310644-highlight-sigsegv+xine.html

Also I`ve open bug: https://bugs.gentoo.org/show_bug.cgi?id=103972


pgpghgUPkJhn2.pgp
Description: PGP signature


Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Alex
On Sunday 28 August 2005 14:38, Makurin Roman wrote:
 what is it ? I can copy dvd to hard drive

just put a synbolic link /dev/rdvd pointing to your dvd device (i.e. /dev/hdc) 
or adjust the appropriate setting in your xine configuration, it's this line

media.dvd.raw_device:

(in kaffeine it's on settings-- xine engine options -- media--expert 
options tab -- dvd.raw_device )


Also if you have upgraded from a pre-1 xine-lib you should have removed your 
old configurations.
Well your xine.log looks normal (too me)

Sorry but I cant be of more help here... Good Luck :)
-- 
Cheers, Alex.


pgpK1dLoo0Nx7.pgp
Description: PGP signature


Re: [gentoo-user] Yet another geforce4 problem

2005-08-28 Thread Alexander Kirillov



Do you have any other gfx board you can put in ?
Just to identify the source of the problem, ie. gfx board or mobo


Nope, I don't:( But this is an interesting idea. Thanks Stuart.


Alternatively do you get the problem when booting under a liveCD of
some description


Same [EMAIL PROTECTED] booting from liveCD and windows.
(I have a small win partition for hw troubleshooting)
So it doesn't look like a driver problem
and Bob's guess seems to be correct. Unfortunately:(


I've recently installed GeForce4 MX440 AGP 8x
into my gentoo box and got it working.
Bootsplash, opengl and so on..
But one serious problem remains.
I have 90% chance to get garbled screen right after system reboot
when bios is starting hw checks. The problem goes away
after a random number of poweroffs.
Is there a way to fix this?



If you've upgraded the bios on the motherboard, then trash the motherboard.
It's not doing a proper reset to the AGP bus.

Other possibility is the chip on the MX440 is on the slow side of things and 
the reset
is too short for it.  Generally, the chip will eventually get slower as it ages 
and the problem
will get worse.


Thanks for the hint Bob,
Upgraded the bios. The problem's still there:(
As I don't reboot very often I may live with this for a while.


--
gentoo-user@gentoo.org mailing list



[gentoo-user] OT KDE remote share ?

2005-08-28 Thread Dave S
I am giving KDE a go after being a long term fluxbox-er. I have a NFS 
hdd on my other machine which I mount with 'mount /mnt/archive' as root.


I right clicked, behaviors, device icons and ticked a curiously named 
'Mounted NFS share' and 'Unmounted NFS share'


I get an icon 'Mounted Share 192.168.0.6', which when I selected its 
properties and gave it a name of NFS - it shot multiple progress windows 
up - I canceled everything in a hurry !


Also if I click it, i get a konqueror with the title 'media:/' and an 
overview of all my drives, not really what I want.


What is a mounted 'share', its obviously not just the NFS partition and 
why do things go crazy when I try and rename it ?



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



Re: [gentoo-user] strange problem with kdm

2005-08-28 Thread Alexander Kirillov

After installing kde through emerge kdebase-meta and test with
startx of no problem,
I add xdm to default runlevel with modifying display manager to kdm in
rc.conf.
However when I reboot the computer, the screen turn black for a second
and then up
without kdm start. The log file only contain following info about kdm:

kdm[5526]: x server for display: 0 terminated unexpectedly
kdm[5526]: unknow session exit code 0 (sig 9) from manager process

ps -ef show kdm[5526] are still running. 
However when I del xdm from default runlevel or kill 5526 then type:

/etc/init.d/xdm start
the kdm just turn out to run smoothly.

And startup with default xdm in rc.conf also had no problem.

It is so strange that there is no problem to start kdm after login
from command line,
and only to fail at startup in default runlevel.


Have you checked /var/log/Xorg.0.log?
Anything related to the problem you're having?
Sasha

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Makurin Roman
В сообщении от Воскресенье 28 августа 2005 22:12 Alex написал(a):
 On Sunday 28 August 2005 14:38, Makurin Roman wrote:
  what is it ? I can copy dvd to hard drive

 just put a synbolic link /dev/rdvd pointing to your dvd device (i.e.
 /dev/hdc) or adjust the appropriate setting in your xine configuration,
 it's this line

 media.dvd.raw_device:

 (in kaffeine it's on settings-- xine engine options -- media--expert
 options tab -- dvd.raw_device )


Unfortunately it doesn`t help me :-(

I think it`s fault of some lib needed by xine. I know that xine in gentoo 
trying to use system libs rather than included and sometimes it gives such 
problems.


 Also if you have upgraded from a pre-1 xine-lib you should have removed
 your old configurations.
 Well your xine.log looks normal (too me)

 Sorry but I cant be of more help here... Good Luck :)


pgpLZIEYKyeEs.pgp
Description: PGP signature


Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Volker Armin Hemmann
On Sunday 28 August 2005 16:38, Makurin Roman wrote:
 В сообщении от Воскресенье 28 августа 2005 20:14 Alex написал(a):
  On Sunday 28 August 2005 12:27, Makurin Roman wrote:
   But I could play dvd some time ago with the same kernel.
 
  Oh! Hmm...  did you install a new version of xine/libddvdcss before dvds
  stopped playing?

 yes, xine-lib and libdvdcss

  did you change your configuration file?

 no

  do you use raw access to your dvd device?

 what is it ? I can copy dvd to hard drive

  Does kaffeine give you the same error?

 xine based  == kaffeine, xine, totem, etc


did you rebuilt xine-ui/kaffeine/totem after the upgrade?

I had a lot of xine-crashes, which looked like yours and were easily solved by 
rebuilding xine-ui.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Alex
On Sunday 28 August 2005 15:39, Makurin Roman wrote:
 I know that xine in gentoo
 trying to use system libs rather than included and sometimes it gives such
 problems.

Do you have libdvdnav or libdvdread installed? AFAIK xine doesnt use these 
anymore, it uses its internal ones. 
Just a guess...
-- 
Cheers, Alex.


pgpKYBBI0d6B0.pgp
Description: PGP signature


Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Makurin Roman
В сообщении от Воскресенье 28 августа 2005 19:57 Volker Armin Hemmann 
написал(a):
 On Sunday 28 August 2005 16:38, Makurin Roman wrote:
  В сообщении от Воскресенье 28 августа 2005 20:14 Alex написал(a):
   On Sunday 28 August 2005 12:27, Makurin Roman wrote:
But I could play dvd some time ago with the same kernel.
  
   Oh! Hmm...  did you install a new version of xine/libddvdcss before
   dvds stopped playing?
 
  yes, xine-lib and libdvdcss
 
   did you change your configuration file?
 
  no
 
   do you use raw access to your dvd device?
 
  what is it ? I can copy dvd to hard drive
 
   Does kaffeine give you the same error?
 
  xine based  == kaffeine, xine, totem, etc

 did you rebuilt xine-ui/kaffeine/totem after the upgrade?

 I had a lot of xine-crashes, which looked like yours and were easily solved
 by rebuilding xine-ui.


Yes. But I`ve got crashes only with DVD(or when trying to play *.VOB)


pgpN5KL1wFQ9t.pgp
Description: PGP signature


Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Makurin Roman
В сообщении от Воскресенье 28 августа 2005 23:25 Alex написал(a):
 On Sunday 28 August 2005 15:39, Makurin Roman wrote:
  I know that xine in gentoo
  trying to use system libs rather than included and sometimes it gives
  such problems.

 Do you have libdvdnav or libdvdread installed? AFAIK xine doesnt use these
 anymore, it uses its internal ones.
 Just a guess...


I`ve got libdvdread installed.  Its needed by transcode, not xine


pgp9bK4Rk1Qqr.pgp
Description: PGP signature


Re: [gentoo-user] openofficeq

2005-08-28 Thread Michael W. Holdeman
On Saturday 27 August 2005 07:50 pm, John Dangler wrote:
 I know this isn't really the Gentoo (read - Linux) way, but, since I'm
 using this for business apps, I need to take the end users point of view
 for a moment.  Open Office or the Ximianized Open Office.  I read that
 Ximian was bought by Novell, so I'm wondering which of these two portage
 packages to get.  www.ximian.org is no longer, apparently, so I'm wondering
 when this will turn into a commercial (read - for sale) product.
 I read that the ximianized version is faster to load and run, and I also
 read that open office takes a long time to compile, so I'd hate to put the
 Ximianized version together and then find out somewhere down the road that
 I'd have to dump it and go to the other version.  Any insight here is
 greatly appreciated.  I'm finally (after 3 days and nights) getting to the
 end of having a basic functioning laptop.
I'd use openoffice-ximian-bin.

Mike
-- 
 
Michael W. Holdeman



Powered by Gentoo Linux www.gentoo.org  |
Kernel 2.6.11-ck8   |
Win4Lin 5-1-20 netraverse.com   |
Win4LinPro 6.1.1-03 win4lin.com |
|
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Quanta setup for cervisia?

2005-08-28 Thread Jeff Cranmer
I have been using Quanta to develop a small website.  Apart from a
tendency to die with 'sigsegv' crashes at regular intervals, the program
seems to work quite well (the recovery function always manages to
recover almost all my work after a crash).

I would like to import the project into cervisia, so that I can maintain
it via cvs and perform some kind of version control on the website, but
I don't know how to set this up.

Opening the project from Quanta and clicking on the cvs icon simply
returns the error

This is not a CVS folder

I get a similar error when I try to open any folder from within
konqueror.   From konqueror, I can then go through a cycle of creating a
project via cervisia, but next time I try to open that project from
within konqueror, I get the same This is not a CVS folder error - back
to square one :-/

It seems that the first hurdle I need to get over is How do you create
a CVS folder?

Can anybody help me with this?

Thanks

Jeff


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] USB controller selection.

2005-08-28 Thread Rhywek
Hi, * .*

I have a small problem with usb in my laptop. First I had all 3 HCD
compiled in my kernel: ehci, ohci and uhci. When I connected some usb
2.0 device (hard drive or external DVD burner), there was a message in
/var/log/everything/current that device is not running at full speed and
that I should connect it to a faster hub and it was using ohci. I tried
all four ports I have and it was the same. I tested the device (it is a
hard-drive) with hdparm -tT /dev/sda and it gave about 900 kbyte/s,
which is something like usb 1.x.

Then I recompiled my kernel with ehci only. Now there is no such
message, the same device is using ehci and when I test it, it gives more
than 20 Mbytes/s, which must be USB 2.0, as I want.

The problem is: why when I have compiled ohci also, the device does not
work as USB 2.0? I could work with ehci only, but the problem is that
now my usb mouse is not working (it is not usb 2.0).

I read the help to all selections in kernel config under USB support.
There is no thing like select fastest driver... They say that it is no
harm to select al HCD...

This is the relevant part of the output from lspci -v:

:00:13.0 USB Controller: ATI Technologies Inc OHCI USB Controller #1
(rev
01) (prog-if 10 [OHCI])
Subsystem: Acer Incorporated [ALI]: Unknown device 0052
Flags: bus master, 66Mhz, medium devsel, latency 64, IRQ 11
Memory at d8001000 (32-bit, non-prefetchable) [size=4K]

:00:13.1 USB Controller: ATI Technologies Inc OHCI USB Controller #2
(rev
01) (prog-if 10 [OHCI])
Subsystem: Acer Incorporated [ALI]: Unknown device 0052
Flags: bus master, 66Mhz, medium devsel, latency 64, IRQ 11
Memory at d8002000 (32-bit, non-prefetchable) [size=4K]

:00:13.2 USB Controller: ATI Technologies Inc EHCI USB Controller
(rev 01)
 (prog-if 20 [EHCI])
Subsystem: Acer Incorporated [ALI]: Unknown device 0052
Flags: bus master, 66Mhz, medium devsel, latency 64, IRQ 19
Memory at d8003000 (32-bit, non-prefetchable) [size=4K]
Capabilities: [dc] Power Management version 2



Any clues?
Any proper kernel configs for this part?

Thanks in advance.
Rhywek.



-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [asking again] keyboard/mouse woes on 2.6 kernel

2005-08-28 Thread Timur Aydin
Erik Osterholm [EMAIL PROTECTED] writes:

Are you using the Event interface?

No. I tried enabling support for it. I have also enabled support for
the Event interface debug. After booting this kernel, nothing
changed. The are no syslog debug messages when I turn the wheel, so
the kernel apparently doesn't see the wheel turning.

-- 
Timur Aydin
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread Nick Rout
On Sun, 2005-08-28 at 18:17 +0800, William Kenworthy wrote:
 Is there a link that states how many packages are available in gentoo?
 Stable, ~x86 etc?
 
 Used to on the main gentoo site but I cant find it now (and
 packages.gentoo.org has no stats at all)
 
 BillK

update-eix reports the number of packages when it finishes - mine tells
me 10,000, but that includes those in overlay.

but are you talking about packages or versions of packages?

for example is this one package or eight?

[EMAIL PROTECTED] ~ $ eix gentoo-sources
* sys-kernel/gentoo-sources
 Available versions:  2.4.28-r9 ~2.4.31-r1 2.6.9-r9 2.6.12-r4
2.6.12-r6 ~2.6.12-r7 ~2.6.12-r8 2.6.12-r9


 
 
 -- 
 William Kenworthy [EMAIL PROTECTED]
 Home!
 
-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Forgotten root password on remote system

2005-08-28 Thread Norbert Kamenicky
Frank Schafer wrote:
 There is no official hack to get the password out of the machine. It is
 nowhere stored in uncrypted form and the crypting algorithm itself is
 not reversable.

Yes, u are right, but encrypted passwords are stored in /etc/shadow,
and therefore u can try to decrypt them (using brutal force) by john
(emerge johntheripper).

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



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Nick Rout
On Sun, 2005-08-28 at 20:50 +0400, Makurin Roman wrote:
 В сообщении от Воскресенье 28 августа 2005 23:25 Alex написал(a):
  On Sunday 28 August 2005 15:39, Makurin Roman wrote:
   I know that xine in gentoo
   trying to use system libs rather than included and sometimes it gives
   such problems.
 
  Do you have libdvdnav or libdvdread installed? AFAIK xine doesnt use these
  anymore, it uses its internal ones.
  Just a guess...
 
 
 I`ve got libdvdread installed.  Its needed by transcode, not xine


Look stop guessing and do some diagnosis.

firstly use ldd to make sure that there are no broken links to
libraries.

secondly run xine with strace, saving the results to a file. there will
usually be something revealing at the point of the crash, which may
reveal the problem.

also, does mplayer still play dvd's?

-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] ebuild for Lost Labyrinth

2005-08-28 Thread Markus Döbele
Just uploaded laby_1.0.3 to the Sourceforge Site.
Would be nice if you update the ebuild.

We did a lot of bugfixing. Slowly the game is really playable :-)


Am Freitag, 26. August 2005 02:14 schrieb Nick Rout:
 On Fri, 26 Aug 2005 01:36:01 +0200

 Holly Bostick wrote:
  Since we know Nick's ebuild works, from the testers, Nick, why don't you
  just send him a copy?

 i have

  It is GPL, isn't it ;) ?

 assuming you are referring to the ebuild then yes it is GPL (i hadn't
 really thought too much about it but as i started from
 /usr/portage/skel.ebuild it has a GPL notice in it.)


 --
 Nick Rout [EMAIL PROTECTED]
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread Philip Webb
050828 William Kenworthy wrote:
 Is there a link that states how many packages are available in gentoo?

When I did my weekly esync yesterday, it indexed  10 350  packages.
'esync' is part of the 'esearch' package.

 Stable, ~x86 etc?

It doesn't distinguish.

If people ask or you want to give the figure in an article somewhere,
the simple answer today is more than 10 000 .

-- 
,,
SUPPORT ___//___,  Philip Webb : [EMAIL PROTECTED]
ELECTRIC   /] [] [] [] [] []|  Centre for Urban  Community Studies
TRANSIT`-O--O---'  University of Toronto
-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread John Dangler
Maybe it's me - I don't get it.
www.gentoo-portage.com

front page ...

19884 ebuilds, 9986 Packages, Last Updated At 18:07:35 GMT

John D

esearch | grep for the particular arch seems to retrieve an accurate number
of packages for that arch, as the OP said previously...

-Original Message-
From: Philip Webb [mailto:[EMAIL PROTECTED] 
Sent: Sunday, August 28, 2005 4:07 PM
To: gentoo-user@lists.gentoo.org
Subject: Re: [gentoo-user] many packages are available in gentoo?

050828 William Kenworthy wrote:
 Is there a link that states how many packages are available in gentoo?

When I did my weekly esync yesterday, it indexed  10 350  packages.
'esync' is part of the 'esearch' package.

 Stable, ~x86 etc?

It doesn't distinguish.

If people ask or you want to give the figure in an article somewhere,
the simple answer today is more than 10 000 .

-- 
,,
SUPPORT ___//___,  Philip Webb : [EMAIL PROTECTED]
ELECTRIC   /] [] [] [] [] []|  Centre for Urban  Community Studies
TRANSIT`-O--O---'  University of Toronto
-- 
gentoo-user@gentoo.org mailing list




-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] [asking again] keyboard/mouse woes on 2.6 kernel

2005-08-28 Thread inferno




Hi,

 If it's any help: I'm using 2.6.12-gentoo-r4 kernel not a
genkernel. Maybe the version of kernel on your computer is newer than
the one on the live cd, try a downgrade and see if it help.

Best regards
Timur Aydin wrote:

  Erik Osterholm [EMAIL PROTECTED] writes:

  
  
   Are you using the Event interface?

  
  
No. I tried enabling support for it. I have also enabled support for
the Event interface debug. After booting this kernel, nothing
changed. The are no syslog debug messages when I turn the wheel, so
the kernel apparently doesn't "see" the wheel turning.

  






Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Makurin Roman
В сообщении от Понедельник 29 августа 2005 04:22 Alex написал(a):
 On Sunday 28 August 2005 19:56, Nick Rout wrote:
  also, does mplayer still play dvd's?

 or a previous version of xine-lib?

I tryed both xine-lib-1.1.0(my previous version) and xine-lib-1.1.0-r1


pgpopPhrjmrAf.pgp
Description: PGP signature


Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Nick Rout
what version of gcc are you using?

http://sourceforge.net/mailarchive/forum.php?thread_id=414forum_id=40741

By the way the only files on my system that relate to xitk are :

[EMAIL PROTECTED] ~ $ locate -i xitk
/usr/share/locale/sk/LC_MESSAGES/xitk.mo
/usr/share/locale/pl/LC_MESSAGES/xitk.mo
/usr/share/locale/ja/LC_MESSAGES/xitk.mo
/usr/share/locale/es/LC_MESSAGES/xitk.mo
/usr/share/locale/cs/LC_MESSAGES/xitk.mo
/usr/share/locale/pt_BR/LC_MESSAGES/xitk.mo
/usr/share/locale/de/LC_MESSAGES/xitk.mo
/usr/share/locale/it/LC_MESSAGES/xitk.mo
/usr/share/locale/uk/LC_MESSAGES/xitk.mo
/usr/share/locale/fr/LC_MESSAGES/xitk.mo

IE to do with locales - could this be a locale problem?

On Mon, 29 Aug 2005 01:33:12 +0400
Makurin Roman wrote:

 ? ? ?? ??? 29 ??? 2005 04:22 Alex ???(a):
  On Sunday 28 August 2005 19:56, Nick Rout wrote:
   also, does mplayer still play dvd's?
 
  or a previous version of xine-lib?
 
 I tryed both xine-lib-1.1.0(my previous version) and xine-lib-1.1.0-r1

-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Alex
On Sunday 28 August 2005 21:33, Makurin Roman wrote:
 В сообщении от Понедельник 29 августа 2005 04:22 Alex написал(a):
  On Sunday 28 August 2005 19:56, Nick Rout wrote:
   also, does mplayer still play dvd's?
 
  or a previous version of xine-lib?

 I tryed both xine-lib-1.1.0(my previous version) and xine-lib-1.1.0-r1

Have you tried the vlc player? maybe you can play dvd's with it (at least 
until you found out what's wrong with the uncooperative xine-lib :p )
-- 
Cheers, Alex.


pgpYks6FjR7qX.pgp
Description: PGP signature


Re: [gentoo-user] Can`t play dvd with xine based video players

2005-08-28 Thread Nick Rout
OK rule that out, now have you read this page?

http://forums.gentoo.org/viewtopic-t-310644-highlight-sigsegv+xine.html


On Mon, 29 Aug 2005 02:06:23 +0400
Makurin Roman wrote:

 ? ? ?? ??? 29 ??? 2005 01:54 Nick Rout ???(a):
  what version of gcc are you using?
 
 
 sys-devel/gcc-3.4.4-r1
 
 
  IE to do with locales - could this be a locale problem?
 
 I don`t think. I`ve got crashes with ALL xine based players,
 eg I`ve got segfaults with kaffeine
 
-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread W.Kenworthy
Not sure that is an official site ...

The question came from a couple of posts where debian is showing ~17000
packages and Fedora a couple of thousand less.  They were bemoaning the
size of the install media.  The difference between distros is most
likely little used packages, and the fact that rpm's for instance split
headers and sometimes aux functions into separate packages,
approximately doubling the package count.  I presume debian do the same.

billk

On Sun, 2005-08-28 at 16:24 -0400, John Dangler wrote:
 Maybe it's me - I don't get it.
 www.gentoo-portage.com
 
 front page ...
 
 19884 ebuilds, 9986 Packages, Last Updated At 18:07:35 GMT
 
 John D
...
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread Nick Rout

On Mon, 29 Aug 2005 06:50:17 +0800
W.Kenworthy wrote:

 Not sure that is an official site ...
 
 The question came from a couple of posts where debian is showing ~17000
 packages and Fedora a couple of thousand less.  They were bemoaning the
 size of the install media.  The difference between distros is most
 likely little used packages, and the fact that rpm's for instance split
 headers and sometimes aux functions into separate packages,
 approximately doubling the package count.  I presume debian do the same.
 
 billk

to make a fair comparison then you need to count the number of
.src.rpm's - one .src.rpm makes the -devel and auxillary packages as
well as the main package.





-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] many packages are available in gentoo?

2005-08-28 Thread Nick Rout

On Mon, 29 Aug 2005 06:50:17 +0800
W.Kenworthy wrote:

 Not sure that is an official site ...
 
 The question came from a couple of posts where debian is showing ~17000
 packages and Fedora a couple of thousand less.  They were bemoaning the
 size of the install media.  

Don't these people have access to the worldwideintarwebthingy? why
download media you don't need? just install the packages you want over a
network.

Where does the thousands come from with fedora? I count 965 source rpms
on a fedora mirror i looked at.

on the same mirror there were 1483 binary rpm's. of those 299 have
devel in the filename, so will have been from a split build - ie one
foo.src.rpm may become foo.i386.rpm, foo-devel.i386.rpm,
foo-xorg.i386.rpm, foo-doc.i386.rpm etc.

This filter shows me how many binary rpm's have unique names up the the
first hyphen, :

 grep i386.rpm fedora.filelist |cut -d- -f1|sort|uniq|wc -l

which gives 693 - but I don't know if thats an accurate way to tell if a
built package comes from the same source package.

But my real question is - how do you get thousands of fedora packages?
so you have to scratch around private repositories looking for the ones
with the stuff you want?



The difference between distros is most
 likely little used packages, and the fact that rpm's for instance split
 headers and sometimes aux functions into separate packages,
 approximately doubling the package count.  I presume debian do the same.

yes they do. usually called -dev rather than -devel from what i can see.

 
 billk
 
-- 
Nick Rout [EMAIL PROTECTED]

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] ebuild for Lost Labyrinth

2005-08-28 Thread Nick Rout

On Sun, 28 Aug 2005 21:56:24 +0200
Markus Döbele wrote:

 Just uploaded laby_1.0.3 to the Sourceforge Site.
 Would be nice if you update the ebuild.
 
 We did a lot of bugfixing. Slowly the game is really playable :-)

The new ebuild was really easy - as i have said previously just change
the name of the file from laby-1.0.2.ebuild to laby-1.0.3.ebuild.

However I have taken the opportunity to try and add an icon and a
desktop file [1], but the latter is giving some errors. I have posted a
question to the developer list and when i have fixed whatever I did
wrong i will post again.

I also found a nice little games ebuild writing howto which tells me I
have made a few stylistic errors. I'll improve as I go hopefully!


I have discovered that portage has some nice little functions like
these:

newicon ${WORKDIR}/${PN}_${PV}/laby.xpm ${PN}.xpm

(puts the file $WORKDIR/laby_1.0.3/laby.xpm into
/usr/share/pixmaps/laby.xpm)

make_desktop_entry laby Lost Labyrinth ${PN}.xpm Game;RolePlaying;

(makes a desktop file in /usr/share/applications with executable=laby,
icon=/usr/share/pixmaps/laby.xpm Type=Application, Categories-
Application;Game;Roleplaying Name=Lost Labyrinth)




 
 
 Am Freitag, 26. August 2005 02:14 schrieb Nick Rout:
  On Fri, 26 Aug 2005 01:36:01 +0200
 
  Holly Bostick wrote:
   Since we know Nick's ebuild works, from the testers, Nick, why don't you
   just send him a copy?
 
  i have
 
   It is GPL, isn't it ;) ?
 
  assuming you are referring to the ebuild then yes it is GPL (i hadn't
  really thought too much about it but as i started from
  /usr/portage/skel.ebuild it has a GPL notice in it.)
 
 
  --
  Nick Rout [EMAIL PROTECTED]
 -- 
 gentoo-user@gentoo.org mailing list

-- 
Nick Rout [EMAIL PROTECTED]


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Any booby-traps with AMD64?

2005-08-28 Thread Walter Dnes
  I've got my bright shiney (would you believe dull beige-coloured?) new
toy, and I'm working on the install now.  A few anxious newbie moments...

  - when I tried unscrewing the dialup-modem-connector cable from my old
machine, I ended up with the thumbscrew in my hand, and the modem
connector still firmly connected... oops.  It took several minutes of
screwing in, unscrewing, and wiggling around to get it out.  I have
used my dialup account on occasion when my ADSL ISP was down so I do
want to keep the dialup option.  I'll remove the thumbscrews before
inserting the connector onto my new machine.

  - the install CD couldn't find /dev/hda ... because the SATA drive
shows up as /dev/sda (dohhh)

  - when I first tried chrooting, it failed with an Exec format error.
After a bit of googling, I finally figured out that I had grabbed my
***32-bit X86*** Gentoo 2005.1 install CD and tried to install the
64-bit version (dohhh).  Download and burn the AMD64 install ISO, wipe
/dev/sda1 and restart.

  I've gone with 12 gigs for /dev/sda1, 2 gigs for /dev/sda5 (swap), and
the rest of the drive is /dev/sda6, which will be mounted as /home.  I'm
using ReiserFS, as the Gentoo AMD64 guide seems a bit dated, with
references to 2004.3.  The references to 32-bit compilation are somewhat
confusing.  It looks like I have two choices...

  1) Building my system with the multilib flag and *MANUALLY* building
stuff with the m32 flag.  Stuff should probably go to /usr/local.

  2) A complete chrooted environment into which I do a full-blown 32-bit
X86 (*NOT* AMD64) install.

-- 
Walter Dnes [EMAIL PROTECTED]
My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] How to instruct emerge to leave certain stuff alone

2005-08-28 Thread Harry Putnam
I just ran an emerge world -u and at the beginning there were some
errors/warnings  about my lines in 
/etc/portage/profile/package.provided

I didn't save the error but it indicate my file would be ignored.

It contained 
dev-util/cvs
app-editors/emacs-cvs

I didn't want the emerge to mess with emacs.  I build my own for yrs
now.  However rather than investigate and fix, I just commented the
line out and proceeded.

Emerge installed the latest emacs and even overwrote my .emacs-custom
file. (Which seems it should not have, if it found one)

But what I want here now is to know how to handle this in the future.

That is, how to tell emerge that I want certain packages ignored or
left to me.

Last time around those lines in package.provided were sufficient but
apparantly something has changed.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] ebuild for Lost Labyrinth

2005-08-28 Thread Nick Rout
OK once again the ebuild is attached, it now creates a desktop file in
/usr/share/applications/ and pops the .xpm icon file into
/usr/share/pixmaps/. This is where gentoo likes these things to be.

Those of you who have expressed an interest in this game please try it
out. If it works OK I will check out any last tweaks i need and then
submit it to bugs.gentoo.org



Cheers, Nick.
On Mon, 29 Aug 2005 13:51:28 +1200
Nick Rout wrote:

 
 On Sun, 28 Aug 2005 21:56:24 +0200
 Markus Döbele wrote:
 
  Just uploaded laby_1.0.3 to the Sourceforge Site.
  Would be nice if you update the ebuild.
  
  We did a lot of bugfixing. Slowly the game is really playable :-)
 
 The new ebuild was really easy - as i have said previously just change
 the name of the file from laby-1.0.2.ebuild to laby-1.0.3.ebuild.
 
 However I have taken the opportunity to try and add an icon and a
 desktop file [1], but the latter is giving some errors. I have posted a
 question to the developer list and when i have fixed whatever I did
 wrong i will post again.
 
 I also found a nice little games ebuild writing howto which tells me I
 have made a few stylistic errors. I'll improve as I go hopefully!
 
 
 I have discovered that portage has some nice little functions like
 these:
 
 newicon ${WORKDIR}/${PN}_${PV}/laby.xpm ${PN}.xpm
 
 (puts the file $WORKDIR/laby_1.0.3/laby.xpm into
 /usr/share/pixmaps/laby.xpm)
 
 make_desktop_entry laby Lost Labyrinth ${PN}.xpm Game;RolePlaying;
 
 (makes a desktop file in /usr/share/applications with executable=laby,
 icon=/usr/share/pixmaps/laby.xpm Type=Application, Categories-
 Application;Game;Roleplaying Name=Lost Labyrinth)
 
 
 
 
  
  
  Am Freitag, 26. August 2005 02:14 schrieb Nick Rout:
   On Fri, 26 Aug 2005 01:36:01 +0200
  
   Holly Bostick wrote:
Since we know Nick's ebuild works, from the testers, Nick, why don't you
just send him a copy?
  
   i have
  
It is GPL, isn't it ;) ?
  
   assuming you are referring to the ebuild then yes it is GPL (i hadn't
   really thought too much about it but as i started from
   /usr/portage/skel.ebuild it has a GPL notice in it.)
  
  
   --
   Nick Rout [EMAIL PROTECTED]
  -- 
  gentoo-user@gentoo.org mailing list
 
 -- 
 Nick Rout [EMAIL PROTECTED]
 
 
 -- 
 gentoo-user@gentoo.org mailing list

-- 
Nick Rout [EMAIL PROTECTED]


laby-1.0.3.ebuild
Description: Binary data


Re: [gentoo-user] Any booby-traps with AMD64?

2005-08-28 Thread W.Kenworthy
On my last few installs I have used LVM2: magic as it means you can
easily and transparently resize partitions and add new drives with
minimal downtime.  Partition size choices are no longer such a limiting
factor.

Highly recommended.

BillK


On Sun, 2005-08-28 at 22:11 -0400, Walter Dnes wrote:
   I've got my bright shiney (would you believe dull beige-coloured?) new
 toy, and I'm working on the install now.  A few anxious newbie moments...
 
   - when I tried unscrewing the dialup-modem-connector cable from my old
 machine, I ended up with the thumbscrew in my hand, and the modem
 connector still firmly connected... oops.  It took several minutes of
 screwing in, unscrewing, and wiggling around to get it out.  I have
 used my dialup account on occasion when my ADSL ISP was down so I do
 want to keep the dialup option.  I'll remove the thumbscrews before
 inserting the connector onto my new machine.
 
   - the install CD couldn't find /dev/hda ... because the SATA drive
 shows up as /dev/sda (dohhh)
 
   - when I first tried chrooting, it failed with an Exec format error.
 After a bit of googling, I finally figured out that I had grabbed my
 ***32-bit X86*** Gentoo 2005.1 install CD and tried to install the
 64-bit version (dohhh).  Download and burn the AMD64 install ISO, wipe
 /dev/sda1 and restart.
 
   I've gone with 12 gigs for /dev/sda1, 2 gigs for /dev/sda5 (swap), and
 the rest of the drive is /dev/sda6, which will be mounted as /home.  I'm
 using ReiserFS, as the Gentoo AMD64 guide seems a bit dated, with
 references to 2004.3.  The references to 32-bit compilation are somewhat
 confusing.  It looks like I have two choices...
 
   1) Building my system with the multilib flag and *MANUALLY* building
 stuff with the m32 flag.  Stuff should probably go to /usr/local.
 
   2) A complete chrooted environment into which I do a full-blown 32-bit
 X86 (*NOT* AMD64) install.
 
 -- 
 Walter Dnes [EMAIL PROTECTED]
 My musings on technology and security at http://tech_sec.blog.ca
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Forgotten root password on remote system

2005-08-28 Thread A. Khattri
On Sun, 28 Aug 2005, Norbert Kamenicky wrote:

 Ask some guy on remote side do this:

 1. Put Knoppix CD into drive and reboot

 2. answer knoppix 2 to boot: prompt and hit Enter
 (If prompt doesn't occur, it's probably necessary
   to change booting order in BIOS.)

 3. when root prompt # appears, write these commands:

# ifconfig eth0 server's-IP netmask proper-netmask

# route add default gw gateway's-IP

# passwd
  put twice this password: word

# /etc/init.d/sshd start

A Gentoo LiveCD could be used the same way.


-- 

-- 
gentoo-user@gentoo.org mailing list