Re: [gentoo-user] Firewall Problems

2003-09-30 Thread Kevin Miller, Jr.
No luck.  I recompiled my kernel and still cannot modprobe these modules.  The 
iptables seems to work though.

Kevin
>
> modprobe: Can't locate module ip_conntrack
> modprobe: Can't locate module ip_conntrack_ftp
> modprobe: Can't locate module ip_conntrack_irc
>
> I think if this was working before and stopped working after the upgrade
> then all that you need to do is remerge iptables again and reboot or you
> will need to manually add these to the kernel via "genkernel --conifg"
> (that is assuming that you used "genkernel" to compile the kernel for you.)
> , which opens a menuconfig editor for your kernel.
>
> Then goto "Network Options->"IP: Netfilter Configuration--->" and make
> sure that the following are modules or "m"'s.
>  Connection tracking (required for masq/NAT)
>FTP protocol support
>IRC protocol support
>
> I don't know anything about the type of firewall that your running and
> woudl thing that for any error messages that your receiving from your
> firewall that you direct your questions to a list thats maintained by the
> firewall that your using for a faster response.
>
> JBanks
>
>
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
>
> --
> [EMAIL PROTECTED] mailing list

-- 
Kevin Miller, Jr.
Masters of Public Affairs,
Comparative and International Affairs, Information Systems, and Nonprofit 
Management,
School of Public and Environmental Affairs
Indiana University - Bloomington
http://e-civilsociety.org
[EMAIL PROTECTED]
mobile: 812-219-5047



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Microsoft *.wav files

2003-09-30 Thread Arnaud BARRE
If your files are *.wma, i have a perl script to convert wma in mp3 file.

#!/usr/bin/perl -w
use strict;
my $log="\n";
foreach my $file (@ARGV) {
next if ($file !~ /\.wma$/i);
my $base = $file; $base =~ s/\.wma$//i;
system "mplayer -quiet \"$file\" -ao pcm -aofile \"$base.wav\"";
system "lame -h \"$base.wav\" \"$base.mp3\"";
unlink("$base.wav");
$log.="$base.wma converted to mp3.\n";
}
print "$log";

you must emerge lame and mplayer, it's all.
Alexander Plank wrote:
I dont think .wav files are a microsoft format.  Do you mean .wma files?

--
[EMAIL PROTECTED] mailing list



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Firewall Problems

2003-09-30 Thread Kevin Miller, Jr.
I am recompiling the kernel right now.  Connection Tracking was not a module 
in my menuconfig.  Thanks for noticing that.  I will see if this works.

I posted the same message over on the forum so hopefully I can get some input 
there.

Kevin

On Wednesday 01 October 2003 05:04 am, Joshua Banks wrote:
> modprobe: Can't locate module ip_conntrack
> modprobe: Can't locate module ip_conntrack_ftp
> modprobe: Can't locate module ip_conntrack_irc
>
> I think if this was working before and stopped working after the upgrade
> then all that you need to do is remerge iptables again and reboot or you
> will need to manually add these to the kernel via "genkernel --conifg"
> (that is assuming that you used "genkernel" to compile the kernel for you.)
> , which opens a menuconfig editor for your kernel.
>
> Then goto "Network Options->"IP: Netfilter Configuration--->" and make
> sure that the following are modules or "m"'s.
>  Connection tracking (required for masq/NAT)
>FTP protocol support
>IRC protocol support
> I don't know anything about the type of firewall that your running and
> woudl thing that for any error messages that your receiving from your
> firewall that you direct your questions to a list thats maintained by the
> firewall that your using for a faster response.
>
> JBanks
--
> --- "Kevin Miller, Jr." <[EMAIL PROTECTED]> wrote:
> > After spending most of the day trying to get either Firestarter of
> > KMyFirewall to work, I am getting closer to having a firewall set up.  I
> > am still having problems though.  Below is the input after I run
> > firestarter, configure with the wizard and then start the firewall:
>
> ---
>
>
> > romulan root # firestarter
> > NETFILTER detected
> > Firewall script saved as /etc/firestarter/firewall.sh
> > Adding Firestarter startup hook to /etc/dhcpcd/dhcpcd-eth1.exe
> > Could not write firestarter DHCP hook: No such file or directory
> > modprobe: Can't locate module ip_conntrack
> > modprobe: Can't locate module ip_conntrack_ftp
> > modprobe: Can't locate module ip_conntrack_irc
> > Firewall started
>




--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Heschi Kreinick
Basically an initrd is a completely different filesystem. This step in the
boot process is trying to turn the filesystem from this:
/ = / on initrd
into this:
/ = / on root volume
/initrd = / on initrd

by doing mount /dev/whatever /new_root.
then pivot_root /new_root /initrd
It's like a chroot, but not quite.
So your problem is that it can't remount / on the initrd to /initrd,
probably because you haven't created the mount point. So it fails by not
remounting the initrdin short, it unmounts it.
So yes, it's not a problem, and yes, you can ignore it, and no, it has
nothing to do with reiserfs. Read linux/Documentation/initrd.txt for more
details.
-Heschi

- Original Message - 
From: "Joshua Banks" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Wednesday, October 01, 2003 12:42 AM
Subject: RE: [gentoo-user] after kernel upgrade get / mount error


> --- Corey Larsen <[EMAIL PROTECTED]> wrote:
> > Make sure that ReiserFs support is compiled into the kernel
> > monolithically, instead of being included as a module.
> >
> > e.g. you should have:
> > File systems --->
> > <*> Reiserfs support
> >
> > instead of:
> > File systems --->
> >  Reiserfs support
> >
> > also make sure that you have the correct options compiled in/excluded
per the docs at
> > http://www.gentoo.org/doc/en/gentoo-x86-install.xml under "Code listing
16.6:"
>
> Ok so I have it compiled into the kernel from what I can see.
> grep -I REI .config
> CONFIG_REISERFS_FS=y
> # CONFIG_REISERFS_CHECK is not set
> # CONFIG_REISERFS_PROC_INFO is not set
>
> So I take it that the bootup messages that are posted below can safely be
ignored?
>
>  ReiserFS version 3.6.25
> Sep 29 17:57:18 deadmeat kernel: VFS: Mounted root (reiserfs filesystem)
readonly.
> Sep 29 17:57:18 deadmeat kernel: Trying to move old root to /initrd ...
failed  
> Sep 29 17:57:18 deadmeat kernel: Unmounting old root
> Sep 29 17:57:18 deadmeat kernel: Trying to free ramdisk memory ... okay
> Sep 29 17:57:18 deadmeat kernel: Freeing unused kernel memory: 112k freed
> Sep 29 17:57:18 deadmeat kernel: Adding Swap: 506036k swap-space
(priority -1)
>
>
> Thanks,
> JBanks
>
>
>
>
>
>
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
>
> --
> [EMAIL PROTECTED] mailing list
>


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Firewall Problems

2003-09-30 Thread Joshua Banks
--- "Kevin Miller, Jr." <[EMAIL PROTECTED]> wrote:
> After spending most of the day trying to get either Firestarter of KMyFirewall 
> to work, I am getting closer to having a firewall set up.  I am still having 
> problems though.  Below is the input after I run firestarter, configure with 
> the wizard and then start the firewall:
>
---
> romulan root # firestarter
> NETFILTER detected
> Firewall script saved as /etc/firestarter/firewall.sh
> Adding Firestarter startup hook to /etc/dhcpcd/dhcpcd-eth1.exe
> Could not write firestarter DHCP hook: No such file or directory
> modprobe: Can't locate module ip_conntrack
> modprobe: Can't locate module ip_conntrack_ftp
> modprobe: Can't locate module ip_conntrack_irc
> Firewall started


modprobe: Can't locate module ip_conntrack
modprobe: Can't locate module ip_conntrack_ftp
modprobe: Can't locate module ip_conntrack_irc

I think if this was working before and stopped working after the upgrade then all that 
you need to
do is remerge iptables again and reboot or you will need to manually add these to the 
kernel via
"genkernel --conifg" (that is assuming that you used "genkernel" to compile the kernel 
for you.) ,
which opens a menuconfig editor for your kernel.

Then goto "Network Options->"IP: Netfilter Configuration--->" and make sure that 
the following
are modules or "m"'s.
 Connection tracking (required for masq/NAT)
   FTP protocol support
   IRC protocol support

I don't know anything about the type of firewall that your running and woudl thing 
that for any
error messages that your receiving from your firewall that you direct your questions 
to a list
thats maintained by the firewall that your using for a faster response.

JBanks


__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Joshua Banks
--- Corey Larsen <[EMAIL PROTECTED]> wrote:
> Make sure that ReiserFs support is compiled into the kernel
> monolithically, instead of being included as a module. 
> 
> e.g. you should have:
> File systems --->
> <*> Reiserfs support
> 
> instead of:
> File systems --->
>  Reiserfs support
> 
> also make sure that you have the correct options compiled in/excluded per the docs at
> http://www.gentoo.org/doc/en/gentoo-x86-install.xml under "Code listing 16.6:"

Ok so I have it compiled into the kernel from what I can see.
grep -I REI .config
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set

So I take it that the bootup messages that are posted below can safely be ignored? 

 ReiserFS version 3.6.25
Sep 29 17:57:18 deadmeat kernel: VFS: Mounted root (reiserfs filesystem) readonly.
Sep 29 17:57:18 deadmeat kernel: Trying to move old root to /initrd ... failed  
Sep 29 17:57:18 deadmeat kernel: Unmounting old root
Sep 29 17:57:18 deadmeat kernel: Trying to free ramdisk memory ... okay
Sep 29 17:57:18 deadmeat kernel: Freeing unused kernel memory: 112k freed
Sep 29 17:57:18 deadmeat kernel: Adding Swap: 506036k swap-space (priority -1)


Thanks,
JBanks






__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Corey Larsen
Make sure that ReiserFs support is compiled into the kernel
monolithically, instead of being included as a module. 

e.g. you should have:
File systems --->
<*> Reiserfs support

instead of:
File systems --->
 Reiserfs support

also make sure that you have the correct options compiled in/excluded per the docs at
http://www.gentoo.org/doc/en/gentoo-x86-install.xml under "Code listing 16.6:"


On Tue, 2003-09-30 at 23:09, Joshua Banks wrote:
> --- Jeffrey Smelser <[EMAIL PROTECTED]> wrote:
> > After Re-Reading this, make sure since your using ReiserFs is either not a module 
> > in the kernel,
> > or your specifying the initrd for it. Or you will have problems.
> 
> Can someone please explain this a little better. This doesn't make any sense above. 
> 
> 
> I keep getting what appear to be strange bootup messages. I don't know if this is 
> something that I
> need to fix or not. Yet everything appears to be working just fine. 
> 
> "Sep 29 17:57:18 deadmeat kernel: ReiserFS version 3.6.25
> Sep 29 17:57:18 deadmeat kernel: VFS: Mounted root (reiserfs filesystem) readonly.
> Sep 29 17:57:18 deadmeat kernel: Trying to move old root to /initrd ... failed
> Sep 29 17:57:18 deadmeat kernel: Unmounting old root"
> 
> Is this anything to be worried about when I see this uppon bootup everytime?
> 
> 
> Here's my "fstab" info:
> 
> # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
> /dev/hda1   /boot   ext3noauto,noatime  1 1
> /dev/hda3   /   reiserfsnoatime 0 0
> /dev/hda2   noneswapsw  0 0
> /dev/cdroms/cdrom0  /mnt/cdrom  iso9660 noauto,ro   0 0
> 
> # NOTE: The next line is critical for boot!
> none/proc   procdefaults0 0
> 
> # glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
> # POSIX shared memory (shm_open, shm_unlink).
> # (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
> #  use almost no memory if not populated with files)
> # Adding the following line to /etc/fstab should take care of this:
> 
> none/dev/shmtmpfs   defaults0 0
> ***
> Here's what "grub.conf' looks like currently:
> 
> *
> 
> default 0
> timeout 30
> splashimage=(hd0,0)/boot/grub/splash.xpm.gz
> 
> title= Gentoo Linux
> root (hd0,0)
> kernel (hd0,0)/boot/kernel-2.4.20-gentoo-r7 root=/dev/hda3  vga=795
> initrd (hd0,0)/boot/initrd-2.4.20-gentoo-r7
> 
> 
> 
> In my kernel under:
> 
> Block Devices>
> <*> RAM disk support 
>   
> (8192)   Default RAM disk size   
>   
> [*]   Initial RAM disk (initrd) support  
>  
>  
> [*] Per partition statistics in /proc/partitions
> 
> Thanks,
> JBanks
> 
> 
> 
> 
> __
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
> http://shopping.yahoo.com
> 
> --
> [EMAIL PROTECTED] mailing list
> 
> 


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Firewall Problems

2003-09-30 Thread Kevin Miller, Jr.
After spending most of the day trying to get either Firestarter of KMyFirewall 
to work, I am getting closer to having a firewall set up.  I am still having 
problems though.  Below is the input after I run firestarter, configure with 
the wizard and then start the firewall:
---
romulan root # firestarter
NETFILTER detected
Firewall script saved as /etc/firestarter/firewall.sh
Adding Firestarter startup hook to /etc/dhcpcd/dhcpcd-eth1.exe
Could not write firestarter DHCP hook: No such file or directory
modprobe: Can't locate module ip_conntrack
modprobe: Can't locate module ip_conntrack_ftp
modprobe: Can't locate module ip_conntrack_irc
Firewall started
-

For the first part, I can eliminate the error if I choose eth0 as my network 
device but for some reason, it is actually located at eth1 after I upgraded 
my kernel from 2.4.20-gentoor5 to 2.4.20-gentoo-r7.  I am not sure why it 
changed from eth0 to eth1 so I guess I will need to know how to correct this 
error (I do have two pcmcia slots but only the eth0 is in use).  When I do 
select the etho network device I can run firestarter but I still get the 
modprobe errors and this error:

No DHCP client configuration found

The firewall will not be loaded automatically on a lease renewal.  Please make 
sure the external interface is configured properly or deselect the DHCP 
option if you are using static settings.
--

Now for the second part of my problem, I am not sure how I can add all the 
above modules to my kernel.  I recompiled the kernel several times.  Where in 
the menuconfig do I need to add these modules?  Or do I need to emerge them 
after I compile the kernel?

Below is the list of modules that I currently have:
-
romulan root # lsmod
Module  Size  Used byTainted: GF
ipt_ttl  536   0  (autoclean)
ipt_unclean 6712   0  (autoclean)
iptable_mangle  2040   0  (unused)
ipt_MASQUERADE  1592   0  (unused)
ipt_TOS  920   0  (unused)
ipt_REDIRECT 696   0  (unused)
iptable_nat21080   0  [ipt_MASQUERADE ipt_REDIRECT]
ipt_REJECT  2840   0  (unused)
ipt_state536   0 
ipt_limit792   0
ipt_LOG 3192   0
iptable_filter  1612   0  (autoclean)
ip_tables  13952  14  [ipt_ttl ipt_unclean iptable_mangle 
ipt_MASQUERADE ipt_TOS ipt_REDIRECT iptable_nat ipt_REJECT ipt_state 
ipt_limit ipt_LOG iptable_filter]
maestro3   24656   1
soundcore   3364   2  [maestro3]
ac97_codec  9800   0  [maestro3]
ohci1394   15592   0  (unused)
ieee1394   29708   0  [ohci1394]
serial 49092   0  (autoclean)
isa-pnp28100   0  (autoclean) [serial]
parport_pc 24520   1  (autoclean)
lp  6400   0  (autoclean)
parport22720   1  (autoclean) [parport_pc lp]
3c575_cb   21956   2 
cb_enabler  2864   2  [3c575_cb]
ds  7432   4  [cb_enabler]
i82365 41408   2
pcmcia_core44288   0  [cb_enabler ds i82365]
printer 6624   0  (unused)
3c59x  25584   1
usb-storage55608   0  (unused)
hid12468   0  (unused)
uhci   23008   0  (unused)
usbcore55264   1  [printer usb-storage hid uhci]


Any help will be appreciated:)

Kevin Miller


--
[EMAIL PROTECTED] mailing list



[gentoo-user] courier-imap problem with sylpheed

2003-09-30 Thread Ian Truelsen
I just installed qmail and courier-imap and I am sending and receiving
email. Courier-imap processes are running on my server, but I am not
able to access any of the folders with sylpheed (0.9.4). 

I have set up courier-imap with the authpam module and
authdaemond.plain. I have told courier to listen on 127.0.0.1. I am
includung my imapd, authdaemond.conf and authdaemonrc files, in case
someone can see something obvious that I have missed. I apologize in
advance for the length.

There is no firewall running on this server.

Can someone give me some pointers on how to troubleshoot this?
Everything seems to be working, but sylpheed just won't see it. Any help
would be greatly appreciated.

dark-lord courier-imap # cat authdaemond.conf
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or
# later$Header:
# /home/cvsroot/gentoo-x86/net-mail/courier-imap/files/authdaemond.conf
# ,v 1.1 2002/09/11 15:45:46 raker Exp $

# This file should contain your chosen authenticator
# Valid choices are..
#
# AUTHDAEMOND="authdaemond.mysql"
# AUTHDAEMOND="authdaemond.ldap"
# AUTHDAEMOND="authdaemond.plain"
#
AUTHDAEMOND="authdaemond.plain"

dark-lord courier-imap # cat authdaemonrc
##VERSION: $Id: authdaemonrc.in,v 1.8 2001/10/07 02:16:22 mrsam Exp $
#
# Copyright 2000-2001 Double Precision, Inc.  See COPYING for
# distribution information.
#
# authdaemonrc created from authdaemonrc.dist by sysconftool
#
# Do not alter lines that begin with ##, they are used when upgrading
# this configuration.
#
# This file configures authdaemond, the resident authentication daemon.
#
# Comments in this file are ignored.  Although this file is intended to
# be sourced as a shell script, authdaemond parses it manually, so
# the acceptable syntax is a bit limited.  Multiline variable contents,
# with the \ continuation character, are not allowed.  Everything must
# fit on one line.  Do not use any additional whitespace for
# indentation, or anything else.

##NAME: authmodulelist:0
#
# The authentication modules that are linked into authdaemond.  The
# default list is installed.  You may selectively disable modules simply
# by removing them from the following list.  The available modules you
# can use are: authcustom authcram authuserdb authmysql authpam

authmodulelist="authcustom authcram authuserdb authmysql authpam"

##NAME: authmodulelistorig:1
#
# This setting is used by Courier's webadmin module, and should be left
# alone

#authmodulelistorig="authcustom authcram authuserdb authmysql authpam"
authmodulelistorig="authpam"

##NAME: daemons:0
#
# The number of daemon processes that are started.  authdaemon is
# typically installed where authentication modules are relatively
# expensive: such as authldap, or authmysql, so it's better to have a
# number of them running. PLEASE NOTE:  Some platforms may experience a
# problem if there's more than one daemon.  Specifically, SystemV
# derived platforms that use TLI with socket emulation.  I'm suspicious
# of TLI's ability to handle multiple processes accepting connections on
# the same filesystem domain socket.
#
# You may need to increase daemons if as your system load increases. 
# Symptoms include sporadic authentication failures.  If you start
# getting authentication failures, increase daemons.  However, the
# default of 5 SHOULD be sufficient.  Bumping up daemon count is only a
# short-term solution.  The permanent solution is to add more resources:
# RAM, faster disks, faster CPUs...

daemons=5

##NAME: version:0
#
# When you have multiple versions of authdaemond.* installed,
# authdaemond just picks the first one it finds.  Set "version" to
# override that. For example:  version=authdaemond.plain

version="authdaemon.plain"

##NAME: authdaemonvar:0
#
# authdaemonvar is here, but is not used directly by authdaemond.  It's
# used by various configuration and build scripts, so don't touch it!

authdaemonvar=/var/lib/courier-imap/authdaemon

dark-lord courier-imap # cat imapd
##VERSION: $Id: imapd.dist.in,v 1.22 2003/02/27 04:42:20 mrsam Exp $
#
# imapd created from imapd.dist by sysconftool
#
# Do not alter lines that begin with ##, they are used when upgrading
# this configuration.
#
#  Copyright 1998 - 2002 Double Precision, Inc.  See COPYING for
#  distribution information.
#
#  This configuration file sets various options for the Courier-IMAP
#  server when used with the couriertcpd server.
#  A lot of the stuff here is documented in the manual page for
#  couriertcpd.
#
#  NOTE - do not use \ to split long variable contents on multiple
#  lines. This will break the default imapd.rc script, which parses this
#  file.
#
##NAME: ADDRESS:0
#
#  Address to listen on, can be set to a single IP address.
#
# ADDRESS=127.0.0.1

ADDRESS=127.0.0.1

##NAME: PORT:1
#
#  Port numbers that connections are accepted on.  The default is 143,
#  the standard IMAP port.
#
#  Multiple port numbers can be separated by commas.  When multiple

RE: [gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Joshua Banks
--- Jeffrey Smelser <[EMAIL PROTECTED]> wrote:
> After Re-Reading this, make sure since your using ReiserFs is either not a module in 
> the kernel,
> or your specifying the initrd for it. Or you will have problems.

Can someone please explain this a little better. This doesn't make any sense above. 


I keep getting what appear to be strange bootup messages. I don't know if this is 
something that I
need to fix or not. Yet everything appears to be working just fine. 

"Sep 29 17:57:18 deadmeat kernel: ReiserFS version 3.6.25
Sep 29 17:57:18 deadmeat kernel: VFS: Mounted root (reiserfs filesystem) readonly.
Sep 29 17:57:18 deadmeat kernel: Trying to move old root to /initrd ... failed
Sep 29 17:57:18 deadmeat kernel: Unmounting old root"

Is this anything to be worried about when I see this uppon bootup everytime?


Here's my "fstab" info:

# NOTE: If your BOOT partition is ReiserFS, add the notail option to opts.
/dev/hda1   /boot   ext3noauto,noatime  1 1
/dev/hda3   /   reiserfsnoatime 0 0
/dev/hda2   noneswapsw  0 0
/dev/cdroms/cdrom0  /mnt/cdrom  iso9660 noauto,ro   0 0

# NOTE: The next line is critical for boot!
none/proc   procdefaults0 0

# glibc 2.2 and above expects tmpfs to be mounted at /dev/shm for
# POSIX shared memory (shm_open, shm_unlink).
# (tmpfs is a dynamically expandable/shrinkable ramdisk, and will
#  use almost no memory if not populated with files)
# Adding the following line to /etc/fstab should take care of this:

none/dev/shmtmpfs   defaults0 0
***
Here's what "grub.conf' looks like currently:

*

default 0
timeout 30
splashimage=(hd0,0)/boot/grub/splash.xpm.gz

title= Gentoo Linux
root (hd0,0)
kernel (hd0,0)/boot/kernel-2.4.20-gentoo-r7 root=/dev/hda3  vga=795
initrd (hd0,0)/boot/initrd-2.4.20-gentoo-r7



In my kernel under:

Block Devices>
<*> RAM disk support   

(8192)   Default RAM disk size 

[*]   Initial RAM disk (initrd) support
   
 
[*] Per partition statistics in /proc/partitions

Thanks,
JBanks




__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] bittorrent

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

On September 22, 2003 03:40 pm, Pupeno wrote:
> I was just thinking if it wouldn't be a good idea to integrate
> bittorrent into ebuild so people could use it to download the
> sources from diferent mirrors and even people could share a bit
> aliviating mirrors' task... of course, the current way should be
> available always and bittorrent as an improved way if it is
> posible (that is, if bittorrent is installed (and enabled ?) and
> there's a .bittorrent file for the file that's going to be
> downloaded). Or this is already done and I didn't know ?
> Thanks.

My apologies in entering this thread very late.

Regarding Bittorrent: 
Bitorrent requires a separate instance and a separate port for every 
file that you are sharing. When some people will be sharing 
hundreds of files this is simply not a workable approach. 
 
Bittorent is optimized towards dealing with a small number of large 
files under very high (initial) demand situations. Our needs are a 
little different, we are dealing with large number of much smaller 
files under moderate demand and without the initial spike in 
demand. 
 
P2P in general: 
The content of the network needs to be tightly controlled. We are 
dealing with source code here and the consequences of someone being 
able to inject malicious code or malicious files into the network 
would be unthinkable. Therefore ALL files on the network MUST be 
vetted by a central server, and ONLY files allowed by the central 
server would be allowed on the network. All files transfered over 
the network MUST be checked to make sure that they match the 
checksums of the authorized files. 

As far as I know there are no p2p networks that allow this much 
central control, the trend in p2p networks is away from central 
control because of liability issues.

I am in the process of writing a p2p system specifically for gentoo 
that will have the necessary controls in place to make it safe for 
distrubuting source code.  It will be optional and controlled by 
the FETCHCOMMEND= setting in make.conf

I also want to create a network that is 100% legal content so that 
when the RIAA or MPAA goes on a rampage we will be unaffected. 

- -- 
Fred Van Andel
[EMAIL PROTECTED]
GPG KeyID: 76526AD599455482  
GPG fingerprint: 64E4 4BAB 9C99 D565 3E3C F5D0 7652 6AD5 9945 5482
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/ek1rdlJq1ZlFVIIRAg54AJ40m06cRHu0F1/GYSA374fq0TZ7YgCfVq8l
rHXt1j3FG47MFsGumjx4mic=
=GUqZ
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] non-graphical boot & cascading shutdown/reboot from Gnome

2003-09-30 Thread Corey Larsen
warning: the following will compromise the security of your system and
is not reccomended for use on a large corporate server ;)

#chmod u+s /sbin/halt

The way that I understand your e-mail you have a set up about the same
as my laptop with only myself and root as a user, and your system boots
up into init level 3.  The reason that the system does not shut straight
down is because your user does not have the perms to do so... if you
start gnome as root it should work.  The above command allows ALL users
on your system the ability to shut down the system reguardless of their
competence or status.  Let me know if this doesnt work for you or if i
mis-interpreted you


On Tue, 2003-09-30 at 18:01, Andrew Farmer wrote:
> On Tue, 30 Sep 2003 14:53:22 -0700, Greg Yasko muttered:
> > Hi. How can I setup Gentoo so that when shutting down or rebooting from 
> > Gnome the operation cascades instead of stopping at the prompt?
> > 
> > Currently I have to log out of Gnome and then type "reboot or "shutdown 
> > -h now" at the prompt.
> > 
> > Note, my Gentoo installation is set up without a display manager, and I 
> > like to be able to boot without starting x and then startx from the prompt.
> 
> Use a display manager. gdm works well with Gnome.


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Apple 17" colorsync monitor

2003-09-30 Thread Monah Baki
Hi all,

I'm running gentoo 1.4 and I'be been having problems with the apple colorsync monitor. 
I 
plugged in the right horizontal and vertical sync, yet when grub loads, the screen 
starts 
flickering.
I'm running a trident generic 3d card. This machine works fine on my dell monitor, but 
starts 
acting weird on the apple monitor.

Thank you.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] infinite loop when emerging gnomba-0.6.2

2003-09-30 Thread Marshal Newrock
When emerging gnomba, the following happens until I ctrl-c:

configure complete, now type 'make'

cd . \
  && CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
cd . \
  && CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
cd . \
  && CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
cd . \
  && CONFIG_FILES=Makefile CONFIG_HEADERS= /bin/sh ./config.status
creating Makefile
[ repeat until ctrl-c ]
make: *** Deleting file `Makefile'
Caught signal 2
./config.status: line 2: gnomba.spec: command not found
./config.status: line 3: Makefile: command not found
./config.status: line 4: po/Makefile.in: Permission denied
./config.status: line 5: src/Makefile: Permission denied
./config.status: line 6: intl/Makefile: Permission denied
make: *** [Makefile] Error 1

/usr/portage/net-misc/gnomba/gnomba-0.6.2.ebuild: src_compile aborted;
exiting.


I attempted to file a bug, but hit a (known) javascript bug in bugzilla.

-- 
Marshal Newrock, unemployed Linux user in Lansing, MI
Caution: Product will be hot after heating


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] CFLAGS for p3?

2003-09-30 Thread Norberto Bensa
Paul Fraser wrote:
> I'm using "-march=pentium3 -O3 -pipe -mmmx -msse -fomit-frame-pointer
> -fforce-addr -falign-functions=4 -fprefetch-loop-arrays" and I'm yet to
> run into any problems.

I've found -Os faster. I'm rebuilding the whole system (including kernel) with 
-Os

Best regards,
Norberto


pgp0.pgp
Description: signature


[gentoo-user] vsftpd virtual users setup - problems with pam

2003-09-30 Thread Jose A. Hernandez
I'm trying to use vsftpd virtual user functionality.  After doing all
the configuration settings I'm not able to log into the server.
The error log shows this:

Sep 30 20:29:00 [vsftpd] PAM unable to dlopen(/lib/security/pam_userdb.so)
Sep 30 20:29:00 [vsftpd] PAM [dlerror: /lib/security/pam_userdb.so:
undefined symbol: __db_ndbm_close_4000]
Sep 30 20:29:00 [vsftpd] PAM adding faulty module:
/lib/security/pam_userdb.so
Google searches have only provided me with a post by someone with the 
same problem, but no tips on how to solve it.  Is this a pam bug?

JHBoricua

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] mod_perl and Apache 2.x

2003-09-30 Thread Kevin Miller, Jr.
Have you tried to look for any help at CPAN?

Kevin

On Wednesday 01 October 2003 12:48 am, Andrew Gaffney wrote:
> Does anyone know how to set it up? In my cgi-bin, I have a mish mash of
> C++ and Perl scripts. The problem is that none of the Perl scripts have
> a .pl extension. Is there a way to get mod_perl to recognize the Perl
> scripts as Perl scripts even though they don't have a .pl extension?
>
> Kevin Miller, Jr. wrote:
> > I asked a similar question and checked the forums.  Seems that a stable
> > version of mod_perl is not available yet.  in one of the forum, a user
> > stated that he did get mod_perl to work with Apache2.  Check the forums.
> >
> > Kevin
> >
> > On Tuesday 30 September 2003 05:45 pm, Andrew Gaffney wrote:
> >>Does mod_perl not yet work with Apache 2.x? On my ACCEPT_KEYWORDS="x86"
> >>system, when I do 'emerge -p mod_perl', I get:
> >>
> >>
> >>skyline root # emerge -p mod_perl
> >>
> >>These are the packages that I would merge, in order:
> >>
> >>Calculating dependencies ...done!
> >>[ebuild  N] dev-perl/MIME-Base64-2.20
> >>[ebuild  N] dev-perl/URI-1.23
> >>[ebuild  N] dev-perl/HTML-Tagset-3.03-r2
> >>[ebuild  N] dev-perl/HTML-Parser-3.28
> >>[ebuild  N] dev-perl/Digest-MD5-2.24
> >>[ebuild  N] dev-perl/Crypt-SSLeay-0.49
> >>[ebuild  N] dev-perl/libnet-1.16
> >>[ebuild  N] dev-perl/libwww-perl-5.69-r1
> >>[ebuild  N] dev-libs/mm-1.2.1
> >>[ebuild U ] net-www/apache-1.3.28 [2.0.47]
> >>[ebuild  N] dev-perl/mod_perl-1.27-r2
> >>
> >>
> >>On the same system I get:
> >>
> >>
> >>skyline root # ACCEPT_KEYWORDS="~x86" emerge -p mod_perl
> >>
> >>These are the packages that I would merge, in order:
> >>
> >>Calculating dependencies ...done!
> >>[ebuild  N] dev-perl/CGI-3.00
> >>[ebuild  N] dev-perl/mod_perl-1.99.09
> >>
> >>
> >>So, does mod_perl work well enough and just hasn't actually been
> >>released, or is it still not quite there. This is a production server,
> >>so I don't want to mess anything up.
> >
> > --
> > [EMAIL PROTECTED] mailing list

-- 
Kevin Miller, Jr.
Masters of Public Affairs,
Comparative and International Affairs, Information Systems, and Nonprofit 
Management,
School of Public and Environmental Affairs
Indiana University - Bloomington
http://e-civilsociety.org
[EMAIL PROTECTED]
mobile: 812-219-5047



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] mod_perl and Apache 2.x

2003-09-30 Thread Andrew Gaffney
Does anyone know how to set it up? In my cgi-bin, I have a mish mash of 
C++ and Perl scripts. The problem is that none of the Perl scripts have 
a .pl extension. Is there a way to get mod_perl to recognize the Perl 
scripts as Perl scripts even though they don't have a .pl extension?

Kevin Miller, Jr. wrote:
I asked a similar question and checked the forums.  Seems that a stable 
version of mod_perl is not available yet.  in one of the forum, a user stated 
that he did get mod_perl to work with Apache2.  Check the forums.

Kevin

On Tuesday 30 September 2003 05:45 pm, Andrew Gaffney wrote:

Does mod_perl not yet work with Apache 2.x? On my ACCEPT_KEYWORDS="x86"
system, when I do 'emerge -p mod_perl', I get:
skyline root # emerge -p mod_perl

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

Calculating dependencies ...done!
[ebuild  N] dev-perl/MIME-Base64-2.20
[ebuild  N] dev-perl/URI-1.23
[ebuild  N] dev-perl/HTML-Tagset-3.03-r2
[ebuild  N] dev-perl/HTML-Parser-3.28
[ebuild  N] dev-perl/Digest-MD5-2.24
[ebuild  N] dev-perl/Crypt-SSLeay-0.49
[ebuild  N] dev-perl/libnet-1.16
[ebuild  N] dev-perl/libwww-perl-5.69-r1
[ebuild  N] dev-libs/mm-1.2.1
[ebuild U ] net-www/apache-1.3.28 [2.0.47]
[ebuild  N] dev-perl/mod_perl-1.27-r2
On the same system I get:

skyline root # ACCEPT_KEYWORDS="~x86" emerge -p mod_perl

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

Calculating dependencies ...done!
[ebuild  N] dev-perl/CGI-3.00
[ebuild  N] dev-perl/mod_perl-1.99.09
So, does mod_perl work well enough and just hasn't actually been
released, or is it still not quite there. This is a production server,
so I don't want to mess anything up.




--
[EMAIL PROTECTED] mailing list


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


[gentoo-user] imhangul users / asian language users

2003-09-30 Thread a park
any imhangul users able to tell me how to get it to work to input korean 
characters?

i've gotten the applet on my panel, but is there something else that i need 
to do to get it to work?

_
Get MSN 8 Dial-up Internet Service FREE for one month.  Limited time offer-- 
sign up now!   http://join.msn.com/?page=dept/dialup

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Video card performance

2003-09-30 Thread Donnie Berkholz
On Tue, 2003-09-30 at 15:04, Bruce E. Harris wrote:
> Here's my results. Is this a good thing?
> 
> direct rendering: Yes
> OpenGL renderer string: Fire GL 8800 128MB DDR Athlon (3DNow!) (FireGL)

Yes, perfect. You're doing great, everything's set up right.


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


Re: [gentoo-user] Video card performance

2003-09-30 Thread Bruce E. Harris
Here's my results. Is this a good thing?

direct rendering: Yes
OpenGL renderer string: Fire GL 8800 128MB DDR Athlon (3DNow!) (FireGL)


On Tuesday 30 September 2003 18:12, Donnie Berkholz wrote:
> On Tue, 2003-09-30 at 11:34, Bruce E. Harris wrote:
> > Hi,
> >
> > I finally got Gentoo up and running--its great. I have my video card
> > working, but how can I test it to see if its working in accelerated 3D?
> >
> > I have a ATI FireGL 8800.
>
> glxinfo | grep render
>
> The 8800 should be compatible with either the DRI project's open-sources
> drivers (xfree-drm in Gentoo) or ATI's binary drivers (ati-drivers in
> Gentoo).
>
> http://www.gentoo.org/doc/en/ati-faq.xml
> http://www.gentoo.org/doc/en/dri-howto.xml


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Video card performance

2003-09-30 Thread Donnie Berkholz
On Tue, 2003-09-30 at 11:34, Bruce E. Harris wrote:
> Hi,
> 
> I finally got Gentoo up and running--its great. I have my video card working, 
> but how can I test it to see if its working in accelerated 3D?
> 
> I have a ATI FireGL 8800. 

glxinfo | grep render

The 8800 should be compatible with either the DRI project's open-sources
drivers (xfree-drm in Gentoo) or ATI's binary drivers (ati-drivers in
Gentoo).

http://www.gentoo.org/doc/en/ati-faq.xml
http://www.gentoo.org/doc/en/dri-howto.xml


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


Re: [gentoo-user] non-graphical boot & cascading shutdown/reboot from Gnome

2003-09-30 Thread Andrew Farmer
On Tue, 30 Sep 2003 14:53:22 -0700, Greg Yasko muttered:
> Hi. How can I setup Gentoo so that when shutting down or rebooting from 
> Gnome the operation cascades instead of stopping at the prompt?
> 
> Currently I have to log out of Gnome and then type "reboot or "shutdown 
> -h now" at the prompt.
> 
> Note, my Gentoo installation is set up without a display manager, and I 
> like to be able to boot without starting x and then startx from the prompt.

Use a display manager. gdm works well with Gnome.

-- 
Andrew Farmer
[EMAIL PROTECTED]


pgp0.pgp
Description: PGP signature


[gentoo-user] non-graphical boot & cascading shutdown/reboot from Gnome

2003-09-30 Thread Greg Yasko
Hi. How can I setup Gentoo so that when shutting down or rebooting from 
Gnome the operation cascades instead of stopping at the prompt?

Currently I have to log out of Gnome and then type "reboot or "shutdown 
-h now" at the prompt.

Note, my Gentoo installation is set up without a display manager, and I 
like to be able to boot without starting x and then startx from the prompt.

Thanks.

-Greg Yasko



--
[EMAIL PROTECTED] mailing list


[gentoo-user] awk "Broken pipe" errors while emerging ..

2003-09-30 Thread Jean Jordaan
Hi all

After my latest 'emerge rsync', I now regularly see this when emerging:

"""
 * Caching service dependencies...
awk: cmd. line:2: (FILENAME=/etc/init.d/xfs FNR=290) warning: error writing 
standard output (Broken pipe) 
[ ok ]
>>> Regenerating /etc/ld.so.cache...
 * Caching service dependencies...
awk: cmd. line:2: (FILENAME=/etc/init.d/xfs FNR=290) warning: error writing 
standard output (Broken pipe) 
[ ok ]
>>> Auto-cleaning packages ...
"""

It looks like the emerge is working, but what's that error about?

Regards,
Jean Jordaan
--
[EMAIL PROTECTED] mailing list


[gentoo-user] dual-head, dual-user question

2003-09-30 Thread Mark Knecht
Hi,
   I think this should be quite possible with a tricky bit of configuration.

   If I had a single PC with a dual head graphics adapter, and then two
keyboards and two mice (possibly one mouse and keyboard are USB, or possibly
both) should it be possible to take a single fast machine and let two
non-performance oriented users 'share' the machine?

   If this was to work I'd need the linking of monitor, mouse and keyboard
to be bullet proof, such that logging on at Keyboard A, independent of what
the user ID was, would always correctly show up on the monitor in front of
keyboard A and would always use mouse A. Both heads must be able to run X,
and if possible I want both to run different Window environments if
possible. (Say KDE and fluxbox at the same time on different monitors, but
this is not an absolute requirement.)

   Where would the keyboards and mice go? On separate USB ports to keep
everything straight at boot time? I assume that either startx and/or
.xinitrc could be set up to let one keyboard/mouse & user use a specific
display. In their case they will always sit down at the same keyboards.
(They won't trade.)

   My 70+ year old parents with absolutely zero Linux experience are the
target audience for this idea. This was their request. They got quite burned
recently from a windows Virus problem. I would manage the machine remotely,
which I already do with their Windows boxes and PC Anywhere.

   Any and all ideas much appreciated. Pointers to working examples are
certainly best. Any problems you know abut this sort of system would be
interesting.

thanks,
Mark



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Video card performance

2003-09-30 Thread Ernie Schroder
On Tuesday 30 September 2003 06:28 pm, Michael Rasile wrote:
> On Tue Sep 30, 2003 at 04:20:00PM -0400 or thereabouts, Ernie 
Schroder wrote:
> > On Tuesday 30 September 2003 11:34 am, Bruce E. Harris wrote:
> > > Hi,
> > >
> > > I finally got Gentoo up and running--its great. I have my video
> > > card working, but how can I test it to see if its working in
> > > accelerated 3D?
> > >
> > > I have a ATI FireGL 8800.
> > >
> > > Thanks
> > >
> > > Bruce
> > >
> > >
> > > --
> > > [EMAIL PROTECTED] mailing list
> >
> > I'm running an Nvidia card here but I would guess you can do
> > something like this:
> > $ cat /proc/driver/nvidia/agp/status
> > Status:  Enabled
> > Driver:  NVIDIA
> > AGP Rate:4x
> > Fast Writes: Disabled
> > SBA: Disabled
> >
> >   AND:
> >
> > $ glxinfo will give your openGL information
> >
> > And test your framerate:
> >
> >  $ glxgears
> > 28771 frames in 5.0 seconds = 5754.200 FPS
> > 29023 frames in 5.0 seconds = 5804.600 FPS
> > 28997 frames in 5.0 seconds = 5799.400 FPS
> > 28943 frames in 5.0 seconds = 5788.600 FPS
> > 28952 frames in 5.0 seconds = 5790.400 FPS
>
> when I do cat /proc/driver/nvidia/agp/status
> it says the driver is AGPGART instead of NVIDIA. Just wondering
> why? Thanks.
>
> Mike
>
> > HTH
> > [EMAIL PROTECTED] mailing list


That's because you are using Xfree's AGP instead of nvidia's.

Section "Screen"
Identifier  "Screen 1"
Device  "nVidia_GeForce4_TI4200"
Option  "NvAGP" "1"
#BusID  "PCI:1:0:0"
Monitor "HYUNDAI"
DefaultDepth 16

Look for the above section in /etc/X11/XF86Config
"NvAGP" "1" =nvidia AGP(nvgart)
"NvAGP" "2" = xfree AGP (AGPGART)
"NvAGP" "3" = try nvgart first, if it doesn't work, use AGPGART

I believe that if AGPGART is compiled in, nvgart won't work. If it's a 
module, you should get nvgart buy changing the line:

Option  "NvAGP" "x "
to:
Option  "NvAGP" "1 " 
or :
Option  "NvAGP" "3"


-- 
Regards, Ernie
100% Microsoft and Intel free


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Video card performance

2003-09-30 Thread Michael Rasile
On Tue Sep 30, 2003 at 04:20:00PM -0400 or thereabouts, Ernie Schroder wrote:
> On Tuesday 30 September 2003 11:34 am, Bruce E. Harris wrote:
> > Hi,
> >
> > I finally got Gentoo up and running--its great. I have my video
> > card working, but how can I test it to see if its working in
> > accelerated 3D?
> >
> > I have a ATI FireGL 8800.
> >
> > Thanks
> >
> > Bruce
> >
> >
> > --
> > [EMAIL PROTECTED] mailing list
> 
> 
> I'm running an Nvidia card here but I would guess you can do something 
> like this:
> $ cat /proc/driver/nvidia/agp/status
> Status:  Enabled
> Driver:  NVIDIA
> AGP Rate:4x
> Fast Writes: Disabled
> SBA: Disabled
> 
>   AND:
> 
> $ glxinfo will give your openGL information
> 
> And test your framerate:
> 
>  $ glxgears
> 28771 frames in 5.0 seconds = 5754.200 FPS
> 29023 frames in 5.0 seconds = 5804.600 FPS
> 28997 frames in 5.0 seconds = 5799.400 FPS
> 28943 frames in 5.0 seconds = 5788.600 FPS
> 28952 frames in 5.0 seconds = 5790.400 FPS
> 

when I do cat /proc/driver/nvidia/agp/status
it says the driver is AGPGART instead of NVIDIA. Just wondering why?
Thanks.

Mike
> HTH
> [EMAIL PROTECTED] mailing list
> 

-- 
Regards,
Mike
[EMAIL PROTECTED]
"Don't Fear The Penguin."

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Wes Gray
On Tue, Sep 30, 2003 at 08:49:20PM +0100, Stroller wrote:
> Didn't use `genkernel`, did you, by any chance..? I didn't get along 
> with `genkernel` when I tried it.

No, I didn't use genkernel, I did almost exactly what suggested, except
I ran "make oldconfig" to upgrade my .config from the previous one.  Also
I had no need to edit grub (that I know of).

I have Reiser Support in the kernel, but missing two other Reiser-related
options:

% grep -i REI .config
CONFIG_REISERFS_FS=y
# CONFIG_REISERFS_CHECK is not set
# CONFIG_REISERFS_PROC_INFO is not set
%

Maybe it's one of those other ones.  I will try turning those on tonight
and see if that fixes it.

Thanks for the info,

-Wes

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Video card performance

2003-09-30 Thread Ernie Schroder
On Tuesday 30 September 2003 11:34 am, Bruce E. Harris wrote:
> Hi,
>
> I finally got Gentoo up and running--its great. I have my video
> card working, but how can I test it to see if its working in
> accelerated 3D?
>
> I have a ATI FireGL 8800.
>
> Thanks
>
> Bruce
>
>
> --
> [EMAIL PROTECTED] mailing list


I'm running an Nvidia card here but I would guess you can do something 
like this:
$ cat /proc/driver/nvidia/agp/status
Status:  Enabled
Driver:  NVIDIA
AGP Rate:4x
Fast Writes: Disabled
SBA: Disabled

  AND:

$ glxinfo will give your openGL information

And test your framerate:

 $ glxgears
28771 frames in 5.0 seconds = 5754.200 FPS
29023 frames in 5.0 seconds = 5804.600 FPS
28997 frames in 5.0 seconds = 5799.400 FPS
28943 frames in 5.0 seconds = 5788.600 FPS
28952 frames in 5.0 seconds = 5790.400 FPS

HTH

-- 
Regards, Ernie
100% Microsoft and Intel free


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread Bruce E. Harris
I looked there, a generic gateway ip was there and commented out.
I changed it. 

Thanks. 

On Tuesday 30 September 2003 14:54, gabriel wrote:
> On Tue, 2003-09-30 at 11:36, Bruce E. Harris wrote:
> > Everytime I reboot, I lose my gateway, and have to configure it by
> > hand.
> > Were is that info suppose to be so I can add it to the file and save
> > it? I
> > followed the instructins and got my /etc/host and /etc/resolve
> > correct, but
> > dont know where the gateway data would be.
>
> i believe you're looking for /etc/conf.d/net.  it has your basic network
> info, including your gateway.  it should look something like this:
>
>
> # /etc/conf.d/net:
> # $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/conf.d/net,v 1.7
> 2002/11/18 19:39:22 azarah Exp $
>
> # Global config file for net.* rc-scripts
>
> # This is basically the ifconfig argument without the ifconfig $iface
> #
> iface_eth0="192.168.x.yyy broadcast 192.168.x.255 netmask 255.255.255.0"
> #iface_eth1="207.170.82.202 broadcast 207.0.255.255 netmask 255.255.0.0"
>
> # For DHCP set iface_eth? to "dhcp"
> # For passing options to dhcpcd use dhcpcd_eth?
> #
> #iface_eth0="dhcp"
> #dhcpcd_eth0="..."
>
> # For adding aliases to a interface
> #
> #alias_eth0="192.168.0.3 192.168.0.4"
>
> # NB:  The next is only used for aliases.
> #
> # To add a custom netmask/broadcast address to created aliases,
> # uncomment and change accordingly.  Leave commented to assign
> # defaults for that interface.
> #
> #broadcast_eth0="192.168.0.255 192.168.0.255"
> #netmask_eth0="255.255.255.0 255.255.255.0"
>
>
> # For setting the default gateway
> #
> gateway="eth0/192.168.x.z"
>
>
>
> --
> [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] remote cups control

2003-09-30 Thread Tux the turtle
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Am Dienstag, 30. September 2003 19:49 schrieb Brent:
> Hi,
>
> The Admin section of cupsd.conf needs to be enabled and cupsd needs to
> be listening to an open port particularly port 631.
>
>
>  /admin>
> AuthType Basic
> AuthClass System
>
> ## Restrict access to local domain
> Order Deny,Allow
> Deny From All
> Allow From *.*.*.* (insert address you want to manage the server from
> here)
> #Encryption Required
> 
That's what I tried but it does not work... :(

- -- 

visit tux online: http//www.tuthtu.net
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/efzPbTe9XMUf00QRAvMaAJ43FxKwQs4jGCIzJRNJCZpax4kCdgCdHJDd
29uX8D3j1SxWeYBPnYJM/BI=
=110+
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread Fred Van Andel
"Bruce E. Harris" <[EMAIL PROTECTED]> wrote:
(09/30/2003 08:36)

>Everytime I reboot, I lose my gateway, and have to configure it by hand.
>Were is that info suppose to be so I can add it to the file and save it? I 
>followed the instructins and got my /etc/host and /etc/resolve correct, but 
>dont know where the gateway data would be.

The last line of /etc/conf.d/net , don't forget to uncomment it



Fred Van Andel
[EMAIL PROTECTED]
GPG KeyID: 76526AD599455482  
GPG fingerprint: 64E4 4BAB 9C99 D565 3E3C F5D0 7652 6AD5 9945 5482


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread Matthias F. Brandstetter
-- quoting Bruce E. Harris --
> Everytime I reboot, I lose my gateway, and have to configure it by hand.
> Were is that info suppose to be so I can add it to the file and save it?
> I followed the instructins and got my /etc/host and /etc/resolve
> correct, but dont know where the gateway data would be.

You can enter your gateway IP (beside some other net related info) into the 
file /etc/conf.d/net.

Greetings, Matthias

-- 
Time to fertilize the lawn.  A couple of 500-pound bags should do it!

-- Homer Simpson
   Homer vs. Patty and Selma


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread brett holcomb
Check the instructions about setting up net.eth0.  You 
specify the gateway in there and use rc-update to add it 
to the default runlevel.

On Tue, 30 Sep 2003 10:36:17 -0500
 "Bruce E. Harris" <[EMAIL PROTECTED]> wrote:
Hi,

Everytime I reboot, I lose my gateway, and have to 
configure it by hand.
Were is that info suppose to be so I can add it to the 
file and save it? I 
followed the instructins and got my /etc/host and 
/etc/resolve correct, but 
dont know where the gateway data would be.

TIA

Bruce

--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Video card performance

2003-09-30 Thread Matthias F. Brandstetter
-- quoting Bruce E. Harris --
> I finally got Gentoo up and running--its great. I have my video card
> working, but how can I test it to see if its working in accelerated 3D?
>
> I have a ATI FireGL 8800.

You can test video performance with the program "glxgears".
Greetings, Matthias

-- 
Even the Chinese are against me.

-- Homer Simpson
   The Last Temptation of Homer


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread Bruce E. Harris
Thanks
On Tuesday 30 September 2003 14:50, Jeffrey Smelser wrote:
> /etc/conf.d/net
>
> Last line.
>
> > -Original Message-
> > From: Bruce E. Harris [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 30, 2003 10:36 AM
> > To: [EMAIL PROTECTED]
> > Subject: [gentoo-user] Where is my Gateway's IP address kept?
> >
> >
> > Hi,
> >
> > Everytime I reboot, I lose my gateway, and have to configure
> > it by hand.
> > Were is that info suppose to be so I can add it to the file
> > and save it? I
> > followed the instructins and got my /etc/host and
> > /etc/resolve correct, but
> > dont know where the gateway data would be.
> >
> > TIA
> >
> > Bruce
> >
> >
> > --
> > [EMAIL PROTECTED] mailing list
>
> --
> [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread Ciaran McCreesh
On Tue, 30 Sep 2003 10:36:17 -0500 "Bruce E. Harris"
<[EMAIL PROTECTED]> wrote:

| Everytime I reboot, I lose my gateway, and have to configure it by
| hand. Were is that info suppose to be so I can add it to the file and
| save it? I followed the instructins and got my /etc/host and
| /etc/resolve correct, but dont know where the gateway data would be.

/etc/conf.d/net , towards the end.

HTH,
-- 
Ciaran McCreesh
Mail:   ciaranm at firedrop.org.uk
Web:www.firedrop.org.uk
System: Gentoo Base System version 1.4.3.10p1 Linux 2.4.20-gentoo-r7

--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Jeffrey Smelser
After Re-Reading this, make sure since your using ReiserFs is either not a module in 
the kernel, or your specifying the initrd for it. Or you will have problems.

> -Original Message-
> From: Stroller [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 30, 2003 2:49 PM
> To: [EMAIL PROTECTED]
> Cc: Wes Gray
> Subject: Re: [gentoo-user] after kernel upgrade get / mount error
> 
> 
> 
> On 30 Sep 2003, at 6:24 pm, Wes Gray wrote:
> 
> > I am running vanilla sources, and I upgraded from 2.4.19 to 2.4.20 
> > fine,
> > but when I go to 2.4.21 or 2.4.22, on boot I get an error "Root 
> > filesystem
> > could not be mounted read/write". After that error, lots of 
> files are 
> > not
> > found for the rest of the boot process, but at the end I am able to
> > log into the system and / is definitly mounted, though some of the
> > files the boot process is looking for are missing.  My / is 
> reiserfs.
> >
> > I highly suspect that I am missing some kernel modules, but no idea
> > which ones.  I have reiserfs enabled for the kernel.  Does 
> anyone have
> > any idea what I might be missing, or have a good suggestion 
> for how to
> > go about debugging this problems?  Thanks,
> 
> Didn't use `genkernel`, did you, by any chance..? I didn't get along 
> with `genkernel` when I tried it.
> 
> What I would do is log in as root &
> # cd /usr/src
> # rm linux <-- remove the old sym-link
> # ln -s linux-new_version_number linux   <-- make new sym link
> # cp linux-old_working_version/.config linux/
> # cd linux
> # make menuconfig
>  
> # make dep && make clean bzImage modules modules_install
>   
> # mount /boot
> # cp /usr/src/linux/arch/i386/boot/bzImage 
> /boot/bzImage-version_number
> # nano -w /boot/grub/grub.conf
> 
> # umount /boot
> # reboot
> 
> If this doesn't work, then take a further look at  code listing 16.6: 
> "make menuconfig options" of 
>  - you 
need to find the option for ReiserFS & make sure it is compiled into 
the kernel (NOT as a module).

HTH,

Stroller.


--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Can insert ppp_generic module into linux 2.6.0-test6-mm1

2003-09-30 Thread Scharf Yuval
Hi,

dmesg shows:

PPP generic driver version 2.4.2
devfs_mk_cdev: could not append to parent for ppp
failed to register PPP device (-17)

Can someone tell me what the problem is or atlaest give me a direction for
investigation?

Thanks,
Yuval Scharf



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread gabriel
On Tue, 2003-09-30 at 11:36, Bruce E. Harris wrote:
> Everytime I reboot, I lose my gateway, and have to configure it by
> hand.
> Were is that info suppose to be so I can add it to the file and save
> it? I 
> followed the instructins and got my /etc/host and /etc/resolve
> correct, but 
> dont know where the gateway data would be.

i believe you're looking for /etc/conf.d/net.  it has your basic network
info, including your gateway.  it should look something like this:


# /etc/conf.d/net:
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/conf.d/net,v 1.7
2002/11/18 19:39:22 azarah Exp $

# Global config file for net.* rc-scripts

# This is basically the ifconfig argument without the ifconfig $iface
#
iface_eth0="192.168.x.yyy broadcast 192.168.x.255 netmask 255.255.255.0"
#iface_eth1="207.170.82.202 broadcast 207.0.255.255 netmask 255.255.0.0"

# For DHCP set iface_eth? to "dhcp"
# For passing options to dhcpcd use dhcpcd_eth?
#
#iface_eth0="dhcp"
#dhcpcd_eth0="..."

# For adding aliases to a interface
#
#alias_eth0="192.168.0.3 192.168.0.4"

# NB:  The next is only used for aliases.
#
# To add a custom netmask/broadcast address to created aliases,
# uncomment and change accordingly.  Leave commented to assign
# defaults for that interface.
#
#broadcast_eth0="192.168.0.255 192.168.0.255"
#netmask_eth0="255.255.255.0 255.255.255.0"


# For setting the default gateway
#
gateway="eth0/192.168.x.z"



--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread Jeffrey Smelser
/etc/conf.d/net

Last line. 

> -Original Message-
> From: Bruce E. Harris [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 30, 2003 10:36 AM
> To: [EMAIL PROTECTED]
> Subject: [gentoo-user] Where is my Gateway's IP address kept?
> 
> 
> Hi,
> 
> Everytime I reboot, I lose my gateway, and have to configure 
> it by hand.
> Were is that info suppose to be so I can add it to the file 
> and save it? I 
> followed the instructins and got my /etc/host and 
> /etc/resolve correct, but 
> dont know where the gateway data would be.
> 
> TIA
> 
> Bruce
> 
> 
> --
> [EMAIL PROTECTED] mailing list
> 
> 

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Stroller
On 30 Sep 2003, at 6:24 pm, Wes Gray wrote:

I am running vanilla sources, and I upgraded from 2.4.19 to 2.4.20 
fine,
but when I go to 2.4.21 or 2.4.22, on boot I get an error "Root 
filesystem
could not be mounted read/write". After that error, lots of files are 
not
found for the rest of the boot process, but at the end I am able to
log into the system and / is definitly mounted, though some of the
files the boot process is looking for are missing.  My / is reiserfs.

I highly suspect that I am missing some kernel modules, but no idea
which ones.  I have reiserfs enabled for the kernel.  Does anyone have
any idea what I might be missing, or have a good suggestion for how to
go about debugging this problems?  Thanks,
Didn't use `genkernel`, did you, by any chance..? I didn't get along 
with `genkernel` when I tried it.

What I would do is log in as root &
# cd /usr/src
# rm linux <-- remove the old sym-link
# ln -s linux-new_version_number linux   <-- make new sym link
# cp linux-old_working_version/.config linux/
# cd linux
# make menuconfig

# make dep && make clean bzImage modules modules_install
http://www.gentoo.org/doc/en/gentoo-x86-install.xml#doc_chap16>
# mount /boot
# cp /usr/src/linux/arch/i386/boot/bzImage /boot/bzImage-version_number
# nano -w /boot/grub/grub.conf
   
# umount /boot
# reboot

If this doesn't work, then take a further look at  code listing 16.6: 
"make menuconfig options" of 
 - you 
need to find the option for ReiserFS & make sure it is compiled into 
the kernel (NOT as a module).

HTH,

Stroller.

--
[EMAIL PROTECTED] mailing list


[gentoo-user] Where is my Gateway's IP address kept?

2003-09-30 Thread Bruce E. Harris
Hi,

Everytime I reboot, I lose my gateway, and have to configure it by hand.
Were is that info suppose to be so I can add it to the file and save it? I 
followed the instructins and got my /etc/host and /etc/resolve correct, but 
dont know where the gateway data would be.

TIA

Bruce


--
[EMAIL PROTECTED] mailing list



[gentoo-user] Video card performance

2003-09-30 Thread Bruce E. Harris
Hi,

I finally got Gentoo up and running--its great. I have my video card working, 
but how can I test it to see if its working in accelerated 3D?

I have a ATI FireGL 8800. 

Thanks

Bruce 


--
[EMAIL PROTECTED] mailing list



[gentoo-user] remote cups control

2003-09-30 Thread Tux the turtle
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Anyone any hint on what to set in cups.conf to get remote access to 
http://:631/admin ?
ThanX...

- -- 

visit tux online: http//www.tuthtu.net
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/efRobTe9XMUf00QRAsDoAJ99rUDh3r4kcS8f555I2jXMzZP2LgCfR9Is
dGDckuGnt+QE3fwMkGWWz0o=
=/wu6
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Dual Xeon HT Configuration and Installation questions

2003-09-30 Thread Karl Huysmans
Hi, 

Just did a server with the same setup (Gigabyte dual xeon mainboard,
based on Intel E7500 chipset, dual 3-ware 8-port ATA-raid with 250GB WD
disks, 1 GB RAM.

I choose for xfs-sources, because it gave me the best options for
optimizing the file system for the ATA raid array's. But you might want
to choose for vanilla-sources if you don't need xfs. Basicly, keep the
kernel as simple as you can (depends on your needs). 

APIC is default when you build an SMP kernel, if you need more detail,
there is plenty of documentation on the web.  

HT should indeed just work when you run a SMP enabled kernel. On my
Gigabyte board there was no option for HT, I only see 2 processors. (I'
ve heard not all Xeons/P4's have hyperthreading). If the
processors/mainboard support it, I know it works, my personal
workstation at work has a single 2.6 GHz P4 and it behaves like a dual
processor machine. 

For make options, look at /etc/make.conf, uncomment the -march=pentium3
line (do not use -march pentium4, you will run into problems).

You will probably use -j3 if only two processors are seen by the
bios/OS.

One good advice: start compiling gentoo form stage 1, on this kind of
hardware it does not take very long to get a basic gentoo system going.

Good luck!

On Tue, 2003-09-30 at 00:25, Chris Conway wrote:
> So I got myself a dual xeon 2.6 with HT, 4gb RAM, and over a tb of hard 
> drive space and I am looking to put gentoo on it.  Looking around the 
> forums I saw very little good information about smp installation and 
> Xeon's in particular.  So I thought I would ask you guys some questions 
> and if all goes well and the system comes up I might write an install 
> guide for SMP machines.
> 
> So here we go:
> 1) Any kernel variation suggestions and what should I enable/disable?
> 2) What is the deal with APIC?
> 3) What are the proper make settings (j8?)
> 4) I have booted once from the live cd (smp-noapic nofb) and only saw 
> two processors in proc.  Is this normal given that I have HT enabled in 
> the BIOS?  I thought HT just worked?
> 5) Anything else anyone thinks might be good to know before I start?
> 
> Any config files would be very welcome.
> 
> Thanks in advance!
> 
> 
> --
> [EMAIL PROTECTED] mailing list
-- 
Karl Huysmans <[EMAIL PROTECTED]>


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Spam getting tru - part two

2003-09-30 Thread Brent




Hi,

Look at the rc-script howto. http://www.gentoo.org/doc/en/rc-scripts.xml

I think that creating a separate runlevel for these service which starts before the default level might solve your problem.

Brent

On Tue, 2003-09-30 at 11:40, Patrick Marquetecken wrote:

Hi, 
Last week i send a mail that some spam is getting true and if i save it
as file and rund procmail < file then it is recogniced as spam.
Now after days looking i have found wy, but i don't know the 
wright gentoo solution to fix it, in my default runlevel fetchmail
start, then hotplug this takes several seconds (6). after hotplug there
are another six deamons to start before spamd. 
If it was Unix i would rename the spamd to espamd so it would be before
fetchmail.
Wat is the right way in gentoo to do this, i want also iptables to be
activated before the net.* files.

TIA
Patrick





[gentoo-user] Spam getting tru - part two

2003-09-30 Thread Patrick Marquetecken
Hi, 
Last week i send a mail that some spam is getting true and if i save it
as file and rund procmail < file then it is recogniced as spam.
Now after days looking i have found wy, but i don't know the 
wright gentoo solution to fix it, in my default runlevel fetchmail
start, then hotplug this takes several seconds (6). after hotplug there
are another six deamons to start before spamd. 
If it was Unix i would rename the spamd to espamd so it would be before
fetchmail.
Wat is the right way in gentoo to do this, i want also iptables to be
activated before the net.* files.

TIA
Patrick

-- 
"The needs of the many outweigh the needs of the few." 
Captain Spock in Star Trek II: The Wrath of Khan

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


signature.asc
Description: Dit berichtdeel is digitaal ondertekend


Re: [gentoo-user] KDE Konqueror umask

2003-09-30 Thread Karl Huysmans
Works, thanks a lot!

Karl

On Tue, 2003-09-30 at 19:05, Troels Vognbjerg wrote:
> Karl Huysmans wrote:
> > Under Gnome, everything works fine with "umask 0007" in ~/.bashrc, in
> > KDE this doesn't work.
> > 
> > Have been searching for hours on the web, haven't found anything on this
> > subject.
> 
> X do not read ~/.bashrc, but it do read /etc/profile, have you tried 
> adding the line to profile instent...
> 
> 
> --
> [EMAIL PROTECTED] mailing list
-- 
Karl Huysmans <[EMAIL PROTECTED]>


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] mod_perl and Apache 2.x

2003-09-30 Thread Kevin Miller, Jr.
I asked a similar question and checked the forums.  Seems that a stable 
version of mod_perl is not available yet.  in one of the forum, a user stated 
that he did get mod_perl to work with Apache2.  Check the forums.

Kevin

On Tuesday 30 September 2003 05:45 pm, Andrew Gaffney wrote:
> Does mod_perl not yet work with Apache 2.x? On my ACCEPT_KEYWORDS="x86"
> system, when I do 'emerge -p mod_perl', I get:
>
>
> skyline root # emerge -p mod_perl
>
> These are the packages that I would merge, in order:
>
> Calculating dependencies ...done!
> [ebuild  N] dev-perl/MIME-Base64-2.20
> [ebuild  N] dev-perl/URI-1.23
> [ebuild  N] dev-perl/HTML-Tagset-3.03-r2
> [ebuild  N] dev-perl/HTML-Parser-3.28
> [ebuild  N] dev-perl/Digest-MD5-2.24
> [ebuild  N] dev-perl/Crypt-SSLeay-0.49
> [ebuild  N] dev-perl/libnet-1.16
> [ebuild  N] dev-perl/libwww-perl-5.69-r1
> [ebuild  N] dev-libs/mm-1.2.1
> [ebuild U ] net-www/apache-1.3.28 [2.0.47]
> [ebuild  N] dev-perl/mod_perl-1.27-r2
>
>
> On the same system I get:
>
>
> skyline root # ACCEPT_KEYWORDS="~x86" emerge -p mod_perl
>
> These are the packages that I would merge, in order:
>
> Calculating dependencies ...done!
> [ebuild  N] dev-perl/CGI-3.00
> [ebuild  N] dev-perl/mod_perl-1.99.09
>
>
> So, does mod_perl work well enough and just hasn't actually been
> released, or is it still not quite there. This is a production server,
> so I don't want to mess anything up.



--
[EMAIL PROTECTED] mailing list



[gentoo-user] mod_perl and Apache 2.x

2003-09-30 Thread Andrew Gaffney
Does mod_perl not yet work with Apache 2.x? On my ACCEPT_KEYWORDS="x86" 
system, when I do 'emerge -p mod_perl', I get:

skyline root # emerge -p mod_perl

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

Calculating dependencies ...done!
[ebuild  N] dev-perl/MIME-Base64-2.20
[ebuild  N] dev-perl/URI-1.23
[ebuild  N] dev-perl/HTML-Tagset-3.03-r2
[ebuild  N] dev-perl/HTML-Parser-3.28
[ebuild  N] dev-perl/Digest-MD5-2.24
[ebuild  N] dev-perl/Crypt-SSLeay-0.49
[ebuild  N] dev-perl/libnet-1.16
[ebuild  N] dev-perl/libwww-perl-5.69-r1
[ebuild  N] dev-libs/mm-1.2.1
[ebuild U ] net-www/apache-1.3.28 [2.0.47]
[ebuild  N] dev-perl/mod_perl-1.27-r2
On the same system I get:

skyline root # ACCEPT_KEYWORDS="~x86" emerge -p mod_perl

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

Calculating dependencies ...done!
[ebuild  N] dev-perl/CGI-3.00
[ebuild  N] dev-perl/mod_perl-1.99.09
So, does mod_perl work well enough and just hasn't actually been 
released, or is it still not quite there. This is a production server, 
so I don't want to mess anything up.

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


[gentoo-user] after kernel upgrade get / mount error

2003-09-30 Thread Wes Gray
I am running vanilla sources, and I upgraded from 2.4.19 to 2.4.20 fine,
but when I go to 2.4.21 or 2.4.22, on boot I get an error "Root filesystem
could not be mounted read/write". After that error, lots of files are not
found for the rest of the boot process, but at the end I am able to
log into the system and / is definitly mounted, though some of the
files the boot process is looking for are missing.  My / is reiserfs.

I highly suspect that I am missing some kernel modules, but no idea
which ones.  I have reiserfs enabled for the kernel.  Does anyone have
any idea what I might be missing, or have a good suggestion for how to
go about debugging this problems?  Thanks,

-Wes

--
[EMAIL PROTECTED] mailing list



[gentoo-user] tk-8.4.3 compile error

2003-09-30 Thread Brent




Hello,

I have tcl-8.4.3 emerged from portage with out a problem, however when I try to emerge tk-8.4.3 I get this error:

In file included from /var/tmp/portage/tk-8.4.3/work/tk8.4.3/generic/tkPort.h:34,
 from /var/tmp/portage/tk-8.4.3/work/tk8.4.3/generic/tkArgv.c:16:
/var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix/tkUnixPort.h:224:20: tclInt.h: No such file or directory

The file tclInt.h is alive and well at /usr/lib/tcl8.4/include/generic/tclInt.h

What have I missed?

Here is the full emerge output:

emerge tk
Calculating dependencies ...done!
>>> emerge (1 of 1) dev-lang/tk-8.4.3 to /
>>> md5 src_uri ;-) tk8.4.3-src.tar.gz
>>> Unpacking source...
>>> Unpacking tk8.4.3-src.tar.gz to /var/tmp/portage/tk-8.4.3/work
 * Applying remove-control-v-8.4.diff... [ ok ]>>> Source unpacked.
creating cache ./config.cache
checking whether to use symlinks for manpages... no
checking compression for manpages... no
checking for gcc... gcc
checking whether the C compiler (gcc -march=athlon -O3 -pipe ) works... yes
checking whether the C compiler (gcc -march=athlon -O3 -pipe ) is a cross-compiler... no
checking whether we are using GNU C... yes
checking whether gcc accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for unistd.h... yes
checking for limits.h... yes
checking for building with threads... yes
checking for pthread_mutex_init in -lpthread... yes
checking for pthread_attr_setstacksize... yes
checking for readdir_r... yes
checking if the compiler understands -pipe... yes
checking for required early compiler flags...  _LARGEFILE64_SOURCE
checking for 64-bit integer type... long long
checking for struct dirent64... no
checking for struct stat64... yes
checking for off64_t... yes
checking for Tcl configuration... found /usr/lib/tclConfig.sh
checking for existence of /usr/lib/tclConfig.sh... loading
checking how to build libraries... shared
checking for ranlib... ranlib
checking if 64bit support is requested... no
checking if 64bit Sparc VIS support is requested... no
checking system version (for dynamic loading)... Linux-2.4.22-pre7-aa1
checking for dlopen in -ldl... yes
checking for ar... ar
checking for build with symbols... no
checking for sin... no
checking for main in -lieee... yes
checking stdlib.h... yes
checking fd_set and sys/select... yes
checking for ANSI C header files... yes
checking for mode_t... yes
checking for pid_t... yes
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for sys/time.h... yes
checking whether time.h and sys/time.h may both be included... yes
checking pw_gecos in struct pwd... yes
checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include
checking for main in -lXbsd... no
checking for connect... yes
checking for gethostbyname... yes
checking for sin... (cached) no
checking for main in -lieee... (cached) yes
checking whether char is unsigned... no
checking for strtod... yes
checking for Solaris2.4/Tru64 strtod bugs... ok
updating cache ./config.cache
creating ./config.status
creating Makefile
creating tkConfig.sh
gcc -pipe -c -march=athlon -O3 -pipe -Wall -Wconversion -Wno-implicit-int -fPIC -I/var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix -I/var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix/../generic -I/var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix/../bitmaps -I/var/tmp/portage/tcl-8.4.3/work/tcl8.4.3/generic -I/usr/X11R6/include -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DTCL_THREADS=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_READDIR_R=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_TYPE=long\ long -DHAVE_STRUCT_STAT64=1 -DHAVE_TYPE_OFF64_T=1 -DPEEK_XCLOSEIM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_PW_GECOS=1  -DTCL_NO_DEPRECATED -DUSE_TCL_STUBS  /var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix/../generic/tk3d.c
gcc -pipe -c -march=athlon -O3 -pipe -Wall -Wconversion -Wno-implicit-int -fPIC -I/var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix -I/var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix/../generic -I/var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix/../bitmaps -I/var/tmp/portage/tcl-8.4.3/work/tcl8.4.3/generic -I/usr/X11R6/include -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DTCL_THREADS=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_READDIR_R=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_TYPE=long\ long -DHAVE_STRUCT_STAT64=1 -DHAVE_TYPE_OFF64_T=1 -DPEEK_XCLOSEIM=1 -DSTDC_HEADERS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_PW_GECOS=1  -DTCL_NO_DEPRECATED -DUSE_TCL_STUBS  /var/tmp/portage/tk-8.4.3/work/tk8.4.3/unix/../generic/tkArgv.c
In file included from /var/tmp/portage/tk-8.4.3/work/tk8.4.3/generic/tkPort.h:34,
 from /var/tmp/portage/tk-8.4.3/work/tk8.4.3/generic/tkInt.h:27,
 from /var/tmp/portage/tk-8.4.3/work/tk8.4.3/generic/tk3d.h:18,
 from /var/

Re: [gentoo-user] KDE Konqueror umask

2003-09-30 Thread Troels Vognbjerg
Karl Huysmans wrote:
Under Gnome, everything works fine with "umask 0007" in ~/.bashrc, in
KDE this doesn't work.
Have been searching for hours on the web, haven't found anything on this
subject.
X do not read ~/.bashrc, but it do read /etc/profile, have you tried 
adding the line to profile instent...

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] CFLAGS for p3?

2003-09-30 Thread Hemmann, Volker Armin
On Tuesday 30 September 2003 08:29, Rick [Kitty5] wrote:
> Hi all,
>
> Any recommendations for system wide CFLAGS for a P3?
>
> Rick

-march=pentium3 -Os -fomit-frame-pointer -msse -mfpmath=sse

-- 
Conclusions
 In a straight-up fight, the Empire squashes the Federation like a bug. Even 
with its numerical advantage removed, the Empire would still squash the 
Federation like a bug. Accept it. -Michael Wong


--
[EMAIL PROTECTED] mailing list



[gentoo-user] KDE Konqueror umask

2003-09-30 Thread Karl Huysmans
Hi,

Does anyone know where to set the default umask for files created in
Konqueror (or any other KDE 3 application)?

Under Gnome, everything works fine with "umask 0007" in ~/.bashrc, in
KDE this doesn't work.

Have been searching for hours on the web, haven't found anything on this
subject.

THX



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] galeon broken

2003-09-30 Thread Shawn
Hey, I'm not insane! Take a look at
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=212436

Where it's also reported.

On 09/29, Shawn said something like:
> It seems something in my system has broken galeon in a very strange way.
> (I say this because I've tried older galeon releases and they are broken
> as well)
> 
> When I visit, for example, movies.yahoo.com and enter in a zip code, and
> some old zip code stored in a cookie gets remembered instead of the one
> I fed it. Other websites' input forms are affected as well.
> 
> epiphany and mozilla work fine, too.
> 
> The breakage may have happened after a glibc update. I'm running the
> very latest +nptl (-r6).
> 
> I'm really just wondering if anyone has debugging tips.
> 
> --
> [EMAIL PROTECTED] mailing list
> 
--
Shawn Leas
[EMAIL PROTECTED]

"They that can give up essential liberty to obtain a little temporary 
safety deserve neither liberty nor safety."
-- Benjamin Franklin, Historical Review of Pennsylvania, 1759.


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] emerge depclean

2003-09-30 Thread Stroller
On 30 Sep 2003, at 4:08 pm, Mike Williams wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On Tuesday 30 September 2003 16:03, gabriel wrote:
On Tue, 2003-09-30 at 10:54, Andrew Gaffney wrote:
First of all, never, never, never user 'emerge depclean'. In the 
future,
use 'dep-clean -U'.
maybe a stupid question, but if "emerge depclean" is a bad thing to 
use,
then why is it there?  or at the very least marked with "developer use
only"?
sauron root # emerge 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 *** :
*** WARNING *** : ... BREAKAGES DUE
*** WARNING *** : TO UNMERGING AN  ==IN-USE LIBRARY==  MAY BE REPAIRED 
BY
*** WARNING *** : MERGING  *** THE PACKAGE THAT COMPLAINS ***  ABOUT 
THE
*** WARNING *** : MISSING LIBRARY.
I've never had a problem, I don't think, with `emerge -depclean`. But 
then I'd always -p & read the output first.

The second paragraph quoted above explains why some packages might have 
a problem, and the last paragraph explains how to fix it if some do. I 
don't see why this justifies the emphatic "never, never, never use 
depclean" instruction. if course, I'm not familiar with `dep-clean`, 
which might be MUCH better for all I know.

Stroller.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] emerge depclean

2003-09-30 Thread Andrew Gaffney
Peter van Eck wrote:
On Tuesday 30 September 2003 16:54, Andrew Gaffney wrote:

Peter van Eck wrote:

Hi,

I have run into the following problem trying to emerge gnome

emerging gnome came to a halt when emerging the package openjade

My system (Pentium 200 MMX) get exhausted when compiling that package
meaning I can't login on any of the console tty's and looged in shells
seem to be stuck.
I aborted the emerge gnome ( CTRL-C)

I tried installing the binary package (gnome)

This failed with error : package gnome masked. Which it isn't on CD .

I took the brave step to run emerge depclean and now the half of my
system has vanished. Most of the basic OS commands are gone like ls,
rm.
What should I do ? untar stage 3 is what I think but is that a wise thing
to do ??
thanks in advance for any helpful reply ...
First of all, never, never, never user 'emerge depclean'. In the future,
use 'dep-clean -U'. As for fixing your system, try 'emerge -u system'.
That should probably merge the missing packages.


I take it 'dep-clean -U' is syntax input parameter for emerge command
No, dep-clean is a separate program that is included with gentoolkit. If 
you don't already have it installed, try 'emerge gentoolkit'.

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


Re: [gentoo-user] emerge depclean

2003-09-30 Thread Mike Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Tuesday 30 September 2003 16:03, gabriel wrote:
> On Tue, 2003-09-30 at 10:54, Andrew Gaffney wrote:
> > First of all, never, never, never user 'emerge depclean'. In the future,
> > use 'dep-clean -U'.
>
> maybe a stupid question, but if "emerge depclean" is a bad thing to use,
> then why is it there?  or at the very least marked with "developer use
> only"?

sauron root # emerge 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 *** :
*** 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.

>>> Waiting 10 seconds before starting...
>>> (Control-C to abort)...
>>> Depclean in: 10 9 sauron root #

Warning enough I think :)

- -- 
Mike Williams
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/eZxaInuLMrk7bIwRAuIIAJ9IIR5CktalVgkUiv+zBsT4v/rYLQCeLqPc
as6tvLtBoS4Cv8a8C/CCc60=
=Z5x0
-END PGP SIGNATURE-

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge depclean

2003-09-30 Thread gabriel
On Tue, 2003-09-30 at 10:54, Andrew Gaffney wrote:
> First of all, never, never, never user 'emerge depclean'. In the future, 
> use 'dep-clean -U'.

maybe a stupid question, but if "emerge depclean" is a bad thing to use,
then why is it there?  or at the very least marked with "developer use
only"?


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] emerge depclean

2003-09-30 Thread Peter van Eck
On Tuesday 30 September 2003 16:54, Andrew Gaffney wrote:
> Peter van Eck wrote:
> > Hi,
> >
> > I have run into the following problem trying to emerge gnome
> >
> > emerging gnome came to a halt when emerging the package openjade
> >
> > My system (Pentium 200 MMX) get exhausted when compiling that package
> > meaning I can't login on any of the console tty's and looged in shells
> > seem to be stuck.
> >
> > I aborted the emerge gnome ( CTRL-C)
> >
> > I tried installing the binary package (gnome)
> >
> > This failed with error : package gnome masked. Which it isn't on CD .
> >
> > I took the brave step to run emerge depclean and now the half of my
> > system has vanished. Most of the basic OS commands are gone like ls,
> > rm.
> >
> > What should I do ? untar stage 3 is what I think but is that a wise thing
> > to do ??
> >
> > thanks in advance for any helpful reply ...
>
> First of all, never, never, never user 'emerge depclean'. In the future,
> use 'dep-clean -U'. As for fixing your system, try 'emerge -u system'.
> That should probably merge the missing packages.


I take it 'dep-clean -U' is syntax input parameter for emerge command

thanks,

Peter


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] GCC 3.3.1-r4??? A winner?

2003-09-30 Thread Andrew Gaffney
Chris wrote:
I tryed it and this is what it told me:

bash-2.05b# buildpkg =gcc-3.3.1-r1
bash: buildpkg: command not found
Sorry, my mistake. The command is 'quickpkg'.

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


Re: [gentoo-user] emerge depclean

2003-09-30 Thread Andrew Gaffney
Peter van Eck wrote:
Hi,

I have run into the following problem trying to emerge gnome

emerging gnome came to a halt when emerging the package openjade 

My system (Pentium 200 MMX) get exhausted when compiling that package meaning 
I can't login on any of the console tty's and looged in shells seem to be 
stuck.

I aborted the emerge gnome ( CTRL-C)

I tried installing the binary package (gnome)

This failed with error : package gnome masked. Which it isn't on CD .

I took the brave step to run emerge depclean and now the half of my system
has vanished. Most of the basic OS commands are gone like ls, rm.
What should I do ? untar stage 3 is what I think but is that a wise thing to 
do ??

thanks in advance for any helpful reply ...
First of all, never, never, never user 'emerge depclean'. In the future, 
use 'dep-clean -U'. As for fixing your system, try 'emerge -u system'. 
That should probably merge the missing packages.

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


Re: [gentoo-user] Can't Figure Out Mail On Linux

2003-09-30 Thread Stephen Boulet
On Tuesday 30 September 2003 08:15 am, Stroller wrote:
> > # cat file.txt | sendmail -s "mailing from the command line"
> > [EMAIL PROTECTED]
> > sendmail: Cannot open mail.localdomain:25
>
> You almost certainly don't.
>
> Have you actually tried LOOKING at  /etc/ssmtp/ssmtp.conf..?
> It is the most simple configuration file I have ever encountered under
> Unix.

Is this slashdot?

> I suggest you back it up using `cp /etc/ssmtp/ssmtp.conf
> /etc/ssmtp/ssmtp.conf.example` and try messing around with it.
>
> if you call `sendmail` (which, I think you'll find is a sym-link to
> `ssmtp`) with the "-v" flag then it will help you identify what the
> problem is. I think that 30 minutes of this will help you resolve your
> issues better than days of helpless, uninformational postings to this
> group.

 I did read the file and configure 
it. It's simple if you have the right idea about what it does, but I had a 
conceptual misunderstanding. 

Since you can't have ssmtp and postfix installed at the same time, I thought 
ssmtp was like postfix, but simplified and not a full blown sendmail 
replacement. But now I realize that it's more like fetchmail in reverse; you 
still need a smtp server.

I was thinking it provided a service like postfix, so that's why setting 
mailhub to localhost wouldn't work.

Now that I have it working, I'm going to install postfix, since that's the 
kind of thing I wanted in the first place.

-- Stephen


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Can't Figure Out Mail On Linux

2003-09-30 Thread Stroller
On 30 Sep 2003, at 12:22 pm, Stephen Boulet wrote:

On Monday 29 September 2003 02:45 pm, Matthias F. Brandstetter wrote:
If you only want to send mails from the command line, you first have 
to set
up ssmtp (under /etc/ssmtp ... or something like that).

After that, you can send an email via

$ cat /path/to/mail.txt | mail -s  <[EMAIL PROTECTED]>
I probably don't have /etc/ssmtp/ssmtp.conf configured correctly. I 
get this
error:

# cat file.txt | sendmail -s "mailing from the command line"
[EMAIL PROTECTED]
sendmail: Cannot open mail.localdomain:25
You almost certainly don't.

Have you actually tried LOOKING at  /etc/ssmtp/ssmtp.conf..?
It is the most simple configuration file I have ever encountered under 
Unix.

I suggest you back it up using `cp /etc/ssmtp/ssmtp.conf  
/etc/ssmtp/ssmtp.conf.example` and try messing around with it.

if you call `sendmail` (which, I think you'll find is a sym-link to 
`ssmtp`) with the "-v" flag then it will help you identify what the 
problem is. I think that 30 minutes of this will help you resolve your 
issues better than days of helpless, uninformational postings to this 
group.

I suggest you also read 
http://www.catb.org/~esr/faqs/smart-questions.html
If you have any more questions, please provide more informational - the 
contents of your /etc/ssmtp/ssmtp.conf & the full output of `cat 
file.txt | sendmail -v [EMAIL PROTECTED]

Stroller.



--
[EMAIL PROTECTED] mailing list


[gentoo-user] Re: Can't Figure Out Mail On Linux

2003-09-30 Thread mikpolniak
On Mon, 29 Sep 2003 12:14:10 -0700, Jeff Greene wrote:


> Can someone give me a step-by-step on what I need and how to set this up.
> I have nail and mutt emerged and ssmtp emerged also. I'm not really sure
> how to put the two together.

There is a simple How-To : "Quickstart Guide to CLI e-mail Tools"
on the Gentoo web site under user docs that should get you up and running
with mutt and nbsmtp:

http://www.gentoo.org/doc/en/guide-to-mutt.xml


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] GCC 3.3.1-r4??? A winner?

2003-09-30 Thread Chris
I tryed it and this is what it told me:

bash-2.05b# buildpkg =gcc-3.3.1-r1
bash: buildpkg: command not found


On Monday 29 September 2003 10:39 am, Andrew Gaffney wrote:
> Jerry McBride wrote:
> > You guys running the latest release of GCC 3.3.1 having any problems?
> > After having delt with 331-r2... I'm a bit hessitant to upgrade until I
> > hear anything.
>
> This is what I did when going from -r1 to -r3 because of the -r2 thing:
>
> buildpkg =gcc-3.3.1-r1
> emerge -u gcc
>
> This way, you have the old version of gcc backed up in
> /usr/portage/packages/All.

-- 
Chris
[EMAIL PROTECTED]

Science is an atempt to investegate the mirical of life. 

  The Martian Chronicles


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] scanning the installed files

2003-09-30 Thread William Kenworthy
tripwire is a bit of a pain under gentoo: too many temptations to easily
upgrade, so you end up rebuilding the tripwire database all the time!-
lets do a quick emerge sync and see whats new ...

:)

However, on a stable machine where not a lot changes such as a redhat
machine I look after, no probs.  And for your task, its probably ideal!

BillK


On Tue, 2003-09-30 at 19:41, brett holcomb wrote:
> If I remember correctly there is/was an app  called 
> tripwire that checks files for changes.
> 
> On Tue, 30 Sep 2003 05:05:39 +0300
>   Anatoly Vorobey <[EMAIL PROTECTED]> wrote:
> >I apologise if this is a silly question, or a question
> >answered in some standard place I didn't think of 
> >checking. 
> >
> >Is there any easy way to scan my entire tree of files, 
> >starting
> >with /, and to report all files which either do not match 
> >their
> >checksum stored in the package database, or aren't 
> >registered 
> >in the package database? Obviously there should also be 
> >some
> >easy way of excluding whole directories such as /home, 
> >/etc
> >or /var.
> >
> >--
> >avva
> >
> >--
> >[EMAIL PROTECTED] mailing list
> >
> 
> 
> --
> [EMAIL PROTECTED] mailing list
-- 
William Kenworthy <[EMAIL PROTECTED]>


--
[EMAIL PROTECTED] mailing list



[gentoo-user] kde doesn't help

2003-09-30 Thread Bob Barry
I installed all of kde 3.1.2 (as far as I can tell) from a Gentoo 1.4 LiveCD.
Kde generally works fine, except for the help system.

At startup by clicking the help icon, the kde help center  displays:
An error occured while loading help:/khelpcenter/index.html?anchor=welcome:

Could not start process Unable to create io-slave:
klauncher said: Error loading 'kio_help'.

Clicking on any item of the help menu brings up a similar message:
An error occured while loading help:/kcontrol/arts/index.html:

Could not start process Unable to create io-slave:
klauncher said: Error loading 'kio_help'.

If khelpcenter is started from an xterm, the host xterm displays:
ERROR: ERROR 3: couldn't create slave : Unable to create io-slave:
klauncher said: Error loading 'kio_help'.

Running khelpcenter under strace, the relevant lines are:
2919  write(5, "\2\2\2\0\316\0\0\0P\0\0\0", 12) = 12
2919  write(5, 
"\0\0\0\fkhelpcenter\0\0\0\0\nklauncher\0\0\0\0\nklauncher\0\0\0\0&requestSlave(QString,QString,Q
String)\0\0\0\0t", 90) = 90
2919  write(5, 
"\0\0\0\10\0h\0e\0l\0p\377\377\377\377\0\0\0`\0/\0t\0m\0p\0/\0k\0s\0o\0c\0k\0e\0t\0-\0b\0o\0b\0b\

0/\0k\0h\0e\0l\0p\0c\0e\0n\0t\0e\0r\0g\0S\0b\0007\0006\0a\0.\0s\0l\0a\0v\0e\0-\0s\0o\0c\0k\0e\0t",
 116) = 116
2919  read(5, "\2\3\0\2j\0\0\0", 8) = 8
2919  read(5, "P\0\0\0", 4) = 4
2919  read(5, 
"\0\0\0\nklauncher\0\0\0\0\fkhelpcenter\0\0\0\0\10QString\0\0\0\0<\0\0\0\0\0\0\0004\0E\0r\0r\0o\0r
\0 \0l\0o\0a\0d\0i\0n\0g\0 \0\'\0k\0i\0o\0_\0h\0e\0l\0p\0\'\0.\0\n", 106) = 106
2919  close(15) = 0

Running "ldd /usr/kde/3.1/bin/kioslave" shows nothing missing.

Attempting to run kioslave out of context shows nothing amiss:
> /usr/kde/3.1/bin/kioslave
Usage: kioslave

This program is part of KDE.

Running "ldd /usr/kde/3.1/bin/klauncher" shows nothing missing.

After attempting to run kde help, a socket remains in /tmp:
> ls -l /tmp/ksocket-bobb/
srwxr-xr-x1 bobb users   0 Sep 30 12:00 
klauncheru6x4ea.slave-socket

Booting Redhat9 on the same machine, kde help runs fine.  Ldconfig -p shows the same 
kio libraries available on RH9 
and Gentoo.

Can anyone tell me what's missing or unconfigured?

TIA

Bob Barry



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] scanning the installed files

2003-09-30 Thread brett holcomb
If I remember correctly there is/was an app  called 
tripwire that checks files for changes.

On Tue, 30 Sep 2003 05:05:39 +0300
 Anatoly Vorobey <[EMAIL PROTECTED]> wrote:
I apologise if this is a silly question, or a question
answered in some standard place I didn't think of 
checking. 

Is there any easy way to scan my entire tree of files, 
starting
with /, and to report all files which either do not match 
their
checksum stored in the package database, or aren't 
registered 
in the package database? Obviously there should also be 
some
easy way of excluding whole directories such as /home, 
/etc
or /var.

--
avva
--
[EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Can't Figure Out Mail On Linux

2003-09-30 Thread Stephen Boulet
On Monday 29 September 2003 02:45 pm, Matthias F. Brandstetter wrote:
> If you only want to send mails from the command line, you first have to set
> up ssmtp (under /etc/ssmtp ... or something like that).
>
> After that, you can send an email via
>
> $ cat /path/to/mail.txt | mail -s  <[EMAIL PROTECTED]>

I probably don't have /etc/ssmtp/ssmtp.conf configured correctly. I get this 
error:

# cat file.txt | sendmail -s "mailing from the command line" 
[EMAIL PROTECTED]
sendmail: Cannot open mail.localdomain:25

Any hints?

-- 
Stephen  
  From here to there
 and there to here,
   funny things are everywhere.  -- Dr Seuss



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] GCC 3.3.1-r4??? A winner?

2003-09-30 Thread Stephen Boulet
On Monday 29 September 2003 09:00 pm, Stephen Boulet wrote:
> I don't know if my problems are compiler related. Two things that don't
> compile for me are licq, patch, dvipdfm (usingsys-devel/gcc-3.3.1-r4).

"emerge --emptytree patch" failed on coreutils, but I ran a regenworld, 
emerged the a few new things that were added, and then coreutils emerged, as 
did patch.

dvipdfm still does not emerge, however:

<<
checking whether you have kpathsea headers and they whether they know about 
the required file formats... no
configure: error: PS_HEADER and/or VF formats not found in Kpathsea header 
files.

This version of dvipdfm requires that kpathsea and its headers be installed.
If you are sure they are installed and in a standard place, maybe you need a
newer version of kpathsea?  You also might try setting the environment
variable CPPFLAGS (or CFLAGS) with -I pointing to the directory containing
the file tex-file.h
>>

I do have /usr/include/kpathsea/tex-file.h as part of tetex-2.0.2-r1, so ...

Stephen


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] CFLAGS for p3?

2003-09-30 Thread Paul Fraser
I'm using "-march=pentium3 -O3 -pipe -mmmx -msse -fomit-frame-pointer
-fforce-addr -falign-functions=4 -fprefetch-loop-arrays" and I'm yet to
run into any problems.

On Tue, 2003-09-30 at 18:29, Rick [Kitty5] wrote:
> Hi all,
> 
> Any recommendations for system wide CFLAGS for a P3?
> 
> Rick
> 
> Kitty5 NewMedia http://Kitty5.com
> POV-Ray News & Resources http://Povray.co.uk
> TEL : +44 (01270) 501101 - ICQ : 15776037
> 
> PGP Public Key
> http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0x231E1CEA
> 
> --
> [EMAIL PROTECTED] mailing list
-- 
Cheers,

Paul J. Fraser
[EMAIL PROTECTED]


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Installing Webmin

2003-09-30 Thread norm
Andrew Gaffney wrote:

Try 'USE="-ssl" emerge -k webmin' or even just drop the '-k'. Nothing is 
compiled for Webmin anyway. Its all Perl.

Thanks Andrew worked a treat.

Norm.

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] openssl perl script

2003-09-30 Thread Andreas Vinsander
If the goal is to find out what you need to recompile, just follow the 
advice in the ebuild...
For instance: revdep-rebuild --soname libssl.so.0.9.6 -p

Look at the man-page...

/Andreas

Andrew Gaffney wrote:

Brett wrote:

Greetings,
Can somebody help me with the following script, I cannot get it to work
properly. It should output a list of packages which depend on openssl
(As I understand it) but I receive no output at all. I have tried
fiddling with it but that didn't work wither :-)
"http://dev.gentoo.org/~aliz/openssl_update.sh";

#!/bin/bash

#replace this with the currently installed version
openssl_installed="0.9.6"
for i in $(find / -type f -name '*.so*' 2>/dev/null) \
  $(find $(echo $PATH | sed 's/:/ /g') -type f -perm +0111 
2>/dev/null); do
  ldd ${i} 2>&1 | grep -e 
"libcrypto.so.${openssl_installed} => not found" \
  -e "libssl.so.${openssl_installed} => not 
found" - >/dev/null \
  && qpkg -f -nc  -v $i
  done


Thanks for any assistance,
Brett
NB:(yes I have gentoolkit (qpkg) merged)


Ya know, you can just 'qpkg -q -nc -I openssl'



--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Printing in the Gimp?

2003-09-30 Thread Joshua Banks

--- Norbert Kamenicky <[EMAIL PROTECTED]> wrote:
> > I added "cups" to my use variables and remerged gimp, 
> >gimp-print, foomatic and ghostscript. After that and then restarting 
> >cupsd, the print option was there in gimp the next time I started it. 

Thanks Noro.

JBanks

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com

--
[EMAIL PROTECTED] mailing list



[gentoo-user] CFLAGS for p3?

2003-09-30 Thread Rick [Kitty5]
Hi all,

Any recommendations for system wide CFLAGS for a P3?

Rick

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

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

--
[EMAIL PROTECTED] mailing list



[gentoo-user] emerge depclean

2003-09-30 Thread Peter van Eck

Hi,

I have run into the following problem trying to emerge gnome

emerging gnome came to a halt when emerging the package openjade 

My system (Pentium 200 MMX) get exhausted when compiling that package meaning 
I can't login on any of the console tty's and looged in shells seem to be 
stuck.

I aborted the emerge gnome ( CTRL-C)

I tried installing the binary package (gnome)

This failed with error : package gnome masked. Which it isn't on CD .

I took the brave step to run emerge depclean and now the half of my system
has vanished. Most of the basic OS commands are gone like ls, rm.

What should I do ? untar stage 3 is what I think but is that a wise thing to 
do ??

thanks in advance for any helpful reply ...

rgds,

Peter

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Printing in the Gimp?

2003-09-30 Thread Norbert Kamenicky
Ernie Schroder wrote:

I added "cups" to my use variables and remerged gimp, 
gimp-print, foomatic and ghostscript. After that and then restarting 
cupsd, the print option was there in gimp the next time I started it. 
 

I put cups flag to USE vars after passing stage 1 ...
this can do the trick (I didn't look in ebuilds).
noro

--
[EMAIL PROTECTED] mailing list


[gentoo-user] printing mail via command filter in evolution

2003-09-30 Thread Henti Smith
Hi all

I'm trying to setup a client with an automated printing filter for mail coming from 
their ordering system.

Evolution has a command filter option and I'm trying to use that to print the mail as 
it comes in.

I've tried lp lp-cups and lpr to print the mail but can't seem to get it working. 

echo'ing and piping to lp lp-cups and lpr works fine.

Any ideas ? 

-- 
Henti Smith
[EMAIL PROTECTED]
Co-Owner
+27 82 958 2525
http://www.geekware.co.za


-- 
Henti Smith
[EMAIL PROTECTED]
Senior Administrator
The Computer-Smith Networking
http://www.tcsn.co.za

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Installing Gentoo / 2.6.0 Kernel / Hyperthreading / Stuff

2003-09-30 Thread Ulrich Rhein
Andrew Gaffney <[EMAIL PROTECTED]> writes:
> Stroller wrote:
>> On 29 Sep 2003, at 12:10 pm, Ulrich Rhein wrote:

>>> gcc doesn't use SIMD instructions (except in very rare cases), because
>>> it is hard for a compiler to use them. Additionally, gcc doesn't
>>> generate much faster (just bigger) code when compiling with -march=...,
>>> if it does generate different code at all. There is usually no
>>> significiant performance gain with it.
>> Why is Gentoo's ability to set CFLAGS optimisations in make.conf so
>> widely touted, then..?
> I was under the impression that it depended on what the application
> actually does. Any programs that do any kind of video or multimedia
> can typically be greatly speeded up by a -mmmx or -m3dnow which would
> be included by default for any -march=xxx where the processor supports
> it.

Have you benchmarked it? And looked at the code gcc generates?

MMX, 3Dnow!, and SSE(2) are all SIMD extensions. That means that the
processor does the same operations on multiple data. MMX, for instance,
has 64 Bit registers (%mm[0-7]) and instruction which operate with these
registers. The idea behind it is that you have two 32 Bit values, four
16 Bit values or eight 8 Bit values on which you perform the same
operation simultanously. That means that a 'paddd %mm0, %mm1' adds the
two 32 Bit values in %mm0 to the two in %mm1 (paddw does with the 16 Bit
values and paddb with the 8 Bit values respectively). 3Dnow! operates on
the same registers, but adds support for single precision floating point
numbers. SSE is the same stuff on 128 Bit registers (%xmm[0-7]).

If you want to make use of those SIMD operations, you usually need

1) the data structures in a suitable format. gcc can not do this for
   you, as it would interfere with the ABI.
2) an algorithm which can be split up in a way that you can make use of
   these instructions. Note that this code needs to have as few
   conditional jumps as possible.
3) You usually need to write different code for this
   case, and for a compiler, this is *very* hard.

If you want to make use of SIMD instructions, you usually have to
handwrite it yourself. mplayer includes such handwritten assembler code,
for instance.

Uli
-- 
"Or have we eaten on the insane root,
 that takes the reason prisoner?"  -- MacBeth I, 3


--
[EMAIL PROTECTED] mailing list