Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Neil Bothwick
On Fri, 08 Dec 2006 17:08:21 -0600, Michael Sullivan wrote:

   but it keeps griping because I
   don't have the snd-intel8x0m module...  
  
  I guess the next step is to rebuild your kernel with this module.
  

 You don't understand; I don't have the module because I don't have any
 hardware in the system that uses snd-intel8x0m - I have snd-hda-intel.

I do understand. The script is telling you it needs the module; some
winmodems require sound modules; so add the module. You can always
remove it at the next kernel upgrade if it turns out to be unnecessary.


-- 
Neil Bothwick

Always be sincere... whether you mean it or not!


signature.asc
Description: PGP signature


Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Neil Bothwick
On Fri, 08 Dec 2006 21:55:04 -0600, Michael Sullivan wrote:

 I don't use the symlink USE flag - I set the symlink manually.  Should I
 use the symlink flag?

It doesn't matter, as long as the symlink is set correctly. The USE flag
is convenient, but can cause problems when you have emerged a new kernel
but not yet configured it.


-- 
Neil Bothwick

Two is not equal to three, even for large values of two.


signature.asc
Description: PGP signature


Re: [gentoo-user] Gentoo apache2 VirtualHost :443 config

2006-12-09 Thread Thomas Rösner

Grant wrote:

  Ok, knowing that others like it I'm more comfortable trying to get
  used to it.  It's all the IfDefine stuff I don't like.

 Actually that makes it super flexible.

 At the expense of simplicity.

The learning curve may be steeper, adding hosts is easier (IMHO etc of
course).


How does the layout facilitate adding hosts?  I added a 01_vhost.conf
file to be included in httpd.conf.


Adding vhosts = dropping the config in /etc/apache2/vhosts.d/, no need 
to touch other files. Enabling PHP? Just add one -Define in 
/etc/conf.d/apache2.





  domain but not for another, and you need both of the domains to
  function under SSL?  Is multiple IPs the only way?

 YES.
  What would you do if you needed a certain Location block for one

 Or multiple ports.

Or make a certificate for multiple domains.


But the problem is that I need a Location block for one SSL domain and
not for another.  I can't do that on the same IP, domain, and port no
matter what kind of certificates I have right?


Uhhhm, why, yes, you can. I'm not quite sure I understand your problem 
right now, but basically you can do (seen from apache) anything with 
your 443 hosts you can do with the 80 ones. The only problem is

1. You can only use one (1) certificate per IP/port,
2. If you host both domains foo and bar behind one IP/port, and your 
certificate is foo only, visitors of bar will get a validation nag.


Compare your ssl vhosts to your non ssl ones. I think you made some 
little mistake while adapting the gentoo config file copy. See below for 
our (working) config, note the similarity of IP and port... ;-)


Regards,
   Thomas

VirtualHost 88.198.12.136:443
 ServerName issues.serverkommune.de
 DocumentRoot /var/www/www.serverkommune.de/htdocs/trac
IfDefine SSL
  SSLEngine on
  SSLCipherSuite 
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL

  SSLCertificateFile conf/ssl/cacert-signed.crt
  SSLCertificateKeyFile conf/ssl/cacert.key
/IfDefine
 Location /
   SetHandler mod_python
[...]
 /Location
/VirtualHost

VirtualHost 88.198.12.136:443
ServerName www.serverkommune.de
DocumentRoot /var/www/www.serverkommune.de/htdocs
IfDefine PHP5
[...etc pp...]


--
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: OT - Finding my modem

2006-12-09 Thread Mick
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Michael Sullivan wrote:

 On Fri, 2006-12-08 at 23:40 +, Mick wrote:
 On Friday 08 December 2006 23:08, Michael Sullivan wrote:
  On Fri, 2006-12-08 at 22:44 +, Neil Bothwick wrote:
   On Fri, 08 Dec 2006 16:18:24 -0600, Michael Sullivan wrote:

   WARNING: Symbol version
 dump /usr/src/linux-2.6.18-gentoo-r3/Module.symvers
is missing; modules will have no dependencies and
 modversions.

Am I right in thinking that although you may have linked the
linux-2.6.18-gentoo-r3 kernel sources to /usr/src/linux you have not yet
compiled this kernel and built modules for it?

BTW, the linux-2.6.18-gentoo-r4 is on the servers, so you may want to rsync,
copy .config from the last kernel you have compiled properly to the source
directory of /usr/src/linux-2.6.18-gentoo-r4 and, make oldconfig  make 
make modules_install  make install, before you reboot into the new kernel
and emerge slmodem again.

However, I fear that US Robotics are not really Linux friendly.  Unless they
have changed their ways they use winmodem chips which have M$Windows
drivers only.  You may be better off selling your PCI modem and spending a
relatively small amount to buy a PCI modem (from ebay?) which has a Lucent,
Mars, Connexant, or Smart Link Modem chip on it.  Note that the Connexant
(Linmodem drivers) are not free.

Good luck.
- -- 
Regards,
Mick
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFFeocB5Fp0QerLYPcRAjw8AKCrlO5dSHAZi03j00+l58fe2R3ZNwCeK5rZ
LgkoWNWeb89bmKgMzvodZ/A=
=ooSU
-END PGP SIGNATURE-

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: OT - Finding my modem

2006-12-09 Thread Dale
Mick wrote:
  snip 

 However, I fear that US Robotics are not really Linux friendly. 
 Unless they
 have changed their ways they use winmodem chips which have M$Windows
 drivers only.  You may be better off selling your PCI modem and spending a
 relatively small amount to buy a PCI modem (from ebay?) which has a
 Lucent,
 Mars, Connexant, or Smart Link Modem chip on it.  Note that the Connexant
 (Linmodem drivers) are not free.

 Good luck.

Or better yet, just buy a external serial modem and solve a lot of
problems.  I have yet to see a external serial modem that didn't work.

I also posted this earlier in the thread but it didn't make it for some
reason.

Hope that helps.

Dale

:-)  :-)  :-)
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Norberto Bensa
Michael Sullivan wrote:
 Can anyone help me?  Here's my lspci output:

Do:

lspci -n | grep 07..:

This will give you at least one line corresponding to your modem. One like 
this (not exactly the same):

00:07.4 0780: 1106:3057 (rev 40)


1106:3057 is in this case my modem (actually it is not. I don't have a modem) 
It is the PCI-ID for the device.

You can do two things. First, check if you already have the module installed:

for i in $(modprobe -l); do modinfo $i | grep 3057  echo $i; done
(3057 is the last part of the PCIID above. Replace with your own)


In my sistem this gives:

zeddmore nbensa # for i in $(modprobe -l); do modinfo $i | grep 3057  echo 
$i; done
alias:  pci:v1106d3057sv*sd*bc*sc*i*
/lib/modules/2.6.18-gentoo-r3/kernel/drivers/hwmon/via686a.ko
alias:  pci:v1106d3057sv*sd*bc*sc*i*
/lib/modules/2.6.18-gentoo-r3/kernel/drivers/i2c/busses/i2c-viapro.ko


Modules via686a.ko and i2c-viapro.ko provide support for my modem


The second this you can do with the PCIID is: search google.

Some softmodem are very easy to setup. Not sure about yours.

Best regards,
Norberto


pgpZHfUuPTB7b.pgp
Description: PGP signature


Re: [gentoo-user] syslog problem....

2006-12-09 Thread David Corbin
On Friday 08 December 2006 19:58, Richard Fish wrote:
 On 12/8/06, David Corbin [EMAIL PROTECTED] wrote:
  When an initscript says it depends on logger, how does runscript find out
  what tool provides logger?

 AFAIK, the provide settings in the init scripts themselves. 

I understand that's where it's defined, but what I meant was how does it find 
it.  Surely it's not running every script each time somebody depends on 
something.


 Try: 
 grep -E provide.*logger /etc/init.d/*

dcorbin init.d # grep -E provide.*logger /etc/init.d/*
/etc/init.d/syslog-ng:  provide logger

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] GDM: No local X server

2006-12-09 Thread Nico Schümann

Hi,

I've set up a terminal server. Now, it actually works ([xdmcp] is
enabled) and I can connect via X -broadcast, but GDM tries to start a
local X server on the server machine. I don't want an X server to run
on the terminal server. How do I configure GDM not to do this?
--
gentoo-user@gentoo.org mailing list



[gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Dave Oxley

I have a Dell server that runs Gentoo. I have been running kernel
2.6.18-r3 with the third party arcmsr add on driver without any 
problems. I have tried to upgrade to 2.6.19-r1 with the kernels inbuild 
arcmsr driver but I cannot get it to boot. It says that it cannot find 
the root fs on sdc3. I don't know whether its the onboard ICH5 SATA or 
the ARCMSR controller that it cannot find. I have 2 disks on the onboard 
controller (sda and sdb) and 1 raid volume on the ARCMSR (sdc). Can 
anyone help me please?


Cheers,
Dave.

blackadder ~ # fdisk -l

Disk /dev/sda: 250.0 GB, 2500 bytes
255 heads, 63 sectors/track, 30394 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   *   1  63  506016   83  Linux
/dev/sda4 439   30394   240621570   8e  Linux LVM

Disk /dev/sdb: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/sdb1   1   30401   244196001   8e  Linux LVM

Disk /dev/sdc: 1499.9 GB, 149502336 bytes
255 heads, 63 sectors/track, 182364 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

   Device Boot  Start End  Blocks   Id  System
/dev/sdc1   *   1  63  506016   83  Linux
/dev/sdc2  641060 8008402+  82  Linux swap / Solaris
/dev/sdc310611559 4008217+  83  Linux
/dev/sdc41560  182364  1452316162+  8e  Linux LVM


blackadder ~ # cat /etc/fstab
/dev/sda1   /boot   ext2noauto,noatime  1 2
#/dev/sdc1  /boot   ext2noauto,noatime
1 2
/dev/sdc3   /   ext3noatime 0 1
/dev/sdc2   noneswapsw  0 0
/dev/cdroms/cdrom0  /mnt/cdrom  iso9660 noauto,ro   0 0
/dev/fd0/mnt/floppy autonoauto  0 0
proc/proc   procdefaults0 0
shm /dev/shmtmpfs
nodev,nosuid,noexec 0 0
/dev/vga/usr/usrext3noatime 0 0
/dev/vga/home   /home   ext3noatime 0 0
/dev/vga/opt/optext3noatime 0 0
/dev/vga/var/varext3noatime 0 0
/dev/vga/tmp/tmpext3noatime 0 0
/dev/vga/media  /media  xfs noatime 0 0

blackadder ~ # cat /boot/grub/grub.conf
default=0
fallback=1
timeout=3
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title=Gentoo Linux 2.6.19-r1
root (hd0,0)
kernel /vmlinuz-2.6.19-gentoo-r1 root=/dev/sdc3 doscsi quiet
CONSOLE=/dev/tty1

blackadder ~ # lspci
00:00.0 Host bridge: Intel Corporation E7520 Memory Controller Hub (rev 09)
00:00.1 Class ff00: Intel Corporation E7525/E7520 Error Reporting
Registers (rev 09)
00:02.0 PCI bridge: Intel Corporation E7525/E7520/E7320 PCI Express Port
A (rev 09)
00:03.0 PCI bridge: Intel Corporation E7525/E7520/E7320 PCI Express Port
A1 (rev 09)
00:04.0 PCI bridge: Intel Corporation E7525/E7520 PCI Express Port B
(rev 09)
00:1d.0 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB
UHCI Controller #1 (rev 02)
00:1d.1 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB
UHCI Controller #2 (rev 02)
00:1d.2 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB
UHCI Controller #3 (rev 02)
00:1d.3 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB
UHCI Controller #4 (rev 02)
00:1d.7 USB Controller: Intel Corporation 82801EB/ER (ICH5/ICH5R) USB2
EHCI Controller (rev 02)
00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev c2)
00:1f.0 ISA bridge: Intel Corporation 82801EB/ER (ICH5/ICH5R) LPC
Interface Bridge (rev 02)
00:1f.1 IDE interface: Intel Corporation 82801EB/ER (ICH5/ICH5R) IDE
Controller (rev 02)
00:1f.2 IDE interface: Intel Corporation 82801EB (ICH5) SATA Controller
(rev 02)
00:1f.3 SMBus: Intel Corporation 82801EB/ER (ICH5/ICH5R) SMBus
Controller (rev 02)
01:00.0 PCI bridge: Intel Corporation 6700PXH PCI Express-to-PCI Bridge A
01:00.2 PCI bridge: Intel Corporation 6700PXH PCI Express-to-PCI Bridge B
02:0c.0 VGA compatible controller: ATI Technologies Inc Rage XL (rev 27)
03:0c.0 Network controller: Tiger Jet Network Inc. Tiger3XX Modem/ISDN
interface
03:0d.0 Multimedia controller: Philips Semiconductors SAA7146 (rev 01)
03:0e.0 Ethernet controller: Intel Corporation 82545GM Gigabit Ethernet
Controller (rev 04)
05:00.0 PCI bridge: Intel Corporation 80332 [Dobson] I/O processor
(A-Segment Bridge) (rev 07)
05:00.2 PCI bridge: Intel Corporation 80332 [Dobson] I/O processor
(B-Segment Bridge) (rev 07)
06:0e.0 RAID bus 

Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Michael Sullivan
On Sat, 2006-12-09 at 08:33 +, Neil Bothwick wrote:
 On Fri, 08 Dec 2006 17:08:21 -0600, Michael Sullivan wrote:
 
but it keeps griping because I
don't have the snd-intel8x0m module...  
   
   I guess the next step is to rebuild your kernel with this module.
   
 
  You don't understand; I don't have the module because I don't have any
  hardware in the system that uses snd-intel8x0m - I have snd-hda-intel.
 
 I do understand. The script is telling you it needs the module; some
 winmodems require sound modules; so add the module. You can always
 remove it at the next kernel upgrade if it turns out to be unnecessary.
 
 

OK.  I checked my kernel config again and it did have the snd-intel8x0
driver built as a module, but not the snd-intel8x0m.  I rebuilt the
kernel with the snd-intel8x0m module and rebooted.  It modprobes
successfully.  I emerged slmodem successfully this time (I don't know if
I still need it.)  I made the suggested entry in /etc/modules.d/alsa and
ran modules-update.  What's the next step?  Someone said that I should
try to get a dial tone at this point; how do I do that?



-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] syslog problem....

2006-12-09 Thread David Corbin
On Saturday 09 December 2006 06:57, David Corbin wrote:
 On Friday 08 December 2006 19:58, Richard Fish wrote:
  On 12/8/06, David Corbin [EMAIL PROTECTED] wrote:
   When an initscript says it depends on logger, how does runscript find
   out what tool provides logger?
 
  AFAIK, the provide settings in the init scripts themselves.

 I understand that's where it's defined, but what I meant was how does it
 find it.  Surely it's not running every script each time somebody depends
 on something.

  Try:
  grep -E provide.*logger /etc/init.d/*

 dcorbin init.d # grep -E provide.*logger /etc/init.d/*
 /etc/init.d/syslog-ng:  provide logger

I've gone ahead and removed syslog-ng and installed sysklogd.  Working fine 
now, and I'm happy, though it would be nice to understand...
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Douglas Linford

Dave,

This may sound goofy...but do you have any external drives connected to you
box, ie, USB, ieee, or card readers?
When I had my extenal USB hard disk turned on or my internal card readers
connected when I booted Gentoo, boot would stop and it would say the same
thing...cannot find the root fs on sdb3.

Douglas


Re: [gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Dave Oxley

Douglas Linford wrote:

Dave,
 
This may sound goofy...but do you have any external drives connected to 
you box, ie, USB, ieee, or card readers?
When I had my extenal USB hard disk turned on or my internal card 
readers connected when I booted Gentoo, boot would stop and it would say 
the same thing...cannot find the root fs on sdb3.
 
Douglas


No, I don't have any external drives connected. And I can still boot 
into 2.6.18-r3, just not 2.6.19-r1.


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



Re: [gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Douglas Linford

Dave,

So maybe that is a kenel issue...I had 2.6.17 and it would not find the root
fs, and after upgrading to 2.6.18-r3, I could boot just fine with my
external drives powered up.

Douglas


On 12/9/06, Dave Oxley [EMAIL PROTECTED] wrote:


Douglas Linford wrote:
 Dave,

 This may sound goofy...but do you have any external drives connected to
 you box, ie, USB, ieee, or card readers?
 When I had my extenal USB hard disk turned on or my internal card
 readers connected when I booted Gentoo, boot would stop and it would say
 the same thing...cannot find the root fs on sdb3.

 Douglas

No, I don't have any external drives connected. And I can still boot
into 2.6.18-r3, just not 2.6.19-r1.

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




Re: [gentoo-user] Gentoo apache2 VirtualHost :443 config

2006-12-09 Thread Grant

   Ok, knowing that others like it I'm more comfortable trying to get
   used to it.  It's all the IfDefine stuff I don't like.
 
  Actually that makes it super flexible.
 
  At the expense of simplicity.

 The learning curve may be steeper, adding hosts is easier (IMHO etc of
 course).

 How does the layout facilitate adding hosts?  I added a 01_vhost.conf
 file to be included in httpd.conf.

Adding vhosts = dropping the config in /etc/apache2/vhosts.d/, no need
to touch other files. Enabling PHP? Just add one -Define in
/etc/conf.d/apache2.


   domain but not for another, and you need both of the domains to
   function under SSL?  Is multiple IPs the only way?
 
  YES.
   What would you do if you needed a certain Location block for one
 
  Or multiple ports.

 Or make a certificate for multiple domains.

 But the problem is that I need a Location block for one SSL domain and
 not for another.  I can't do that on the same IP, domain, and port no
 matter what kind of certificates I have right?

Uhhhm, why, yes, you can. I'm not quite sure I understand your problem
right now, but basically you can do (seen from apache) anything with
your 443 hosts you can do with the 80 ones. The only problem is
1. You can only use one (1) certificate per IP/port,
2. If you host both domains foo and bar behind one IP/port, and your
certificate is foo only, visitors of bar will get a validation nag.

Compare your ssl vhosts to your non ssl ones. I think you made some
little mistake while adapting the gentoo config file copy. See below for
our (working) config, note the similarity of IP and port... ;-)

Regards,
Thomas

VirtualHost 88.198.12.136:443
  ServerName issues.serverkommune.de
  DocumentRoot /var/www/www.serverkommune.de/htdocs/trac
 IfDefine SSL
   SSLEngine on
   SSLCipherSuite
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
   SSLCertificateFile conf/ssl/cacert-signed.crt
   SSLCertificateKeyFile conf/ssl/cacert.key
 /IfDefine
  Location /
SetHandler mod_python
[...]
  /Location
/VirtualHost

VirtualHost 88.198.12.136:443
 ServerName www.serverkommune.de
 DocumentRoot /var/www/www.serverkommune.de/htdocs
IfDefine PHP5
[...etc pp...]


Did you turn SSL on in the second :443 vhost?  I can't get it to work
when both are SSL.

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



Re: [gentoo-user] Gentoo apache2 VirtualHost :443 config

2006-12-09 Thread Thomas Rösner

Grant wrote:

Compare your ssl vhosts to your non ssl ones. I think you made some
little mistake while adapting the gentoo config file copy. See below for
our (working) config, note the similarity of IP and port... ;-)


Did you turn SSL on in the second :443 vhost?  I can't get it to work
when both are SSL.


Yes. Thats right below the etc pp part :-). Do you have a 
namevirtualhost directive for :443 somewhere in your configs? Do you 
have one for :80?


Regards,
   Thomas
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] browser advice

2006-12-09 Thread Thomas Rösner

Jorge Almeida wrote:

[...] I use KDE, not because I find it perfect
but because AFAIK it's the only DE that has two features that for me are
a must: (1) Several virtual desktops, plus the possibility to switch
desktops via configurable keyboard shortcuts, and (2) the possibility of
setting different background images for different desktops.
The latter is not just a matter of eye candy, it's just how I see which
virtual desktop is the current one.

I don't think Gnome can do this, at least not unless you're a
guru-wizard, which I'm not.


Can do 1 (using it a lot), can't do 2 (yet?). Not to convince you no 
matter what, just for completeness.


Happy surfing,
   Thomas
--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Mick
On Saturday 09 December 2006 14:42, Michael Sullivan wrote:

 OK.  I checked my kernel config again and it did have the snd-intel8x0
 driver built as a module, but not the snd-intel8x0m.  I rebuilt the
 kernel with the snd-intel8x0m module and rebooted.  It modprobes
 successfully.  I emerged slmodem successfully this time (I don't know if
 I still need it.)  I made the suggested entry in /etc/modules.d/alsa and
 ran modules-update.  What's the next step?  Someone said that I should
 try to get a dial tone at this point; how do I do that?

What does the lspci -v  lshw look like.  If what ever modules you installed 
are used by the modem it should be evident now.

Assuming that some module has picked up your hardware device you can use 
either wvdial, or kppp to dialout.
-- 
Regards,
Mick


pgpTTzpcSi1J5.pgp
Description: PGP signature


[gentoo-user] LAN speeds

2006-12-09 Thread Mick
Hi All,

I am scp-ing data between LAN machines both of which have 10/100 ethernet 
cards, going through a 10/100 router.  Using blowfish, I get about say 
55682.80 kbits/sec (as shown in iptraf).

How much should I be getting considering the speed of the cards?
-- 
Regards,
Mick


pgpp5dDmQToM1.pgp
Description: PGP signature


Re: [gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Neil Bothwick
On Sun, 10 Dec 2006 00:46:02 +1100, Dave Oxley wrote:

 I have a Dell server that runs Gentoo. I have been running kernel
 2.6.18-r3 with the third party arcmsr add on driver without any 
 problems. I have tried to upgrade to 2.6.19-r1 with the kernels inbuild 
 arcmsr driver but I cannot get it to boot. It says that it cannot find 
 the root fs on sdc3. I don't know whether its the onboard ICH5 SATA or 
 the ARCMSR controller that it cannot find.

The SATA config moved for 2.6.19, making it possible to turn off all SATA
support with make oldconfig (I found this out the hard way). SATA config
is now set in 

Device Drivers
  Serial ATA (prod) and Parallel ATA (experimental) drivers


-- 
Neil Bothwick

If ignorance is bliss, you must be orgasmic.


signature.asc
Description: PGP signature


Re: [gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Norberto Bensa
Dave Oxley wrote:
 I have a Dell server that runs Gentoo. I have been running kernel
 2.6.18-r3 with the third party arcmsr add on driver without any
 problems. I have tried to upgrade to 2.6.19-r1 with the kernels inbuild

2.6.19 sucks.

Not only it moved CONFIG_SATA_* to CONFIG_ATA_* but also my /dev/sda is 
now /dev/sdb And, when ata_piix loads, there's a delay of 20 seconds at 
least.

After changing every /sda to /sdb in /etc/fstab, I booted the box. dmesg is 
full of timeouts coming from sda, which seems to be my DVD+RW drive (which on 
2.6.18 is on hda)

Someone messed SATA (ICH at least) very badly with 2.6.19. 


I hope this helps someone.

Regards,
Norberto


pgpVEPFw8klim.pgp
Description: PGP signature


Re: [gentoo-user] eix double naming with colon?

2006-12-09 Thread Vaeth
The testign version is better, but sort of strange. For
 gentoo-sources it gave a nice readable list. However for rt-sources it
 didn't.

rt-sources is from some overlay, and probably you are using
OVERLAY_CACHE_METHOD=none
which cannot read SLOT-data calculated in eclasses.
You might set (in /etc/eixrc or in ~/.eixrc or in your environment)
OVERLAY_CACHE_METHOD=ebuild
or
OVERLAY_CACHE_METHOD=ebuild*
before calling update-eix, but please see first man eix about the risks.

Martin


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Michael Sullivan
On Sat, 2006-12-09 at 17:32 +, Mick wrote:
 On Saturday 09 December 2006 14:42, Michael Sullivan wrote:
 
  OK.  I checked my kernel config again and it did have the snd-intel8x0
  driver built as a module, but not the snd-intel8x0m.  I rebuilt the
  kernel with the snd-intel8x0m module and rebooted.  It modprobes
  successfully.  I emerged slmodem successfully this time (I don't know if
  I still need it.)  I made the suggested entry in /etc/modules.d/alsa and
  ran modules-update.  What's the next step?  Someone said that I should
  try to get a dial tone at this point; how do I do that?
 
 What does the lspci -v  lshw look like.  If what ever modules you installed 
 are used by the modem it should be evident now.
 
 Assuming that some module has picked up your hardware device you can use 
 either wvdial, or kppp to dialout.

Here's my lspci -v output:

camille ~ # lspci -v
00:00.0 Host bridge: Intel Corporation 915G/P/GV/GL/PL/910GL Express
Memory Controller Hub
Subsystem: Intel Corporation Unknown device 5647
Flags: bus master, fast devsel, latency 0
Capabilities: [e0] Vendor Specific Information

00:02.0 VGA compatible controller: Intel Corporation 82915G/GV/910GL
Express Chipset Family Graphics Controller (prog-if 00 [VGA])
Subsystem: Intel Corporation Unknown device 5647
Flags: bus master, fast devsel, latency 0, IRQ 17
Memory at ffa0 (32-bit, non-prefetchable) [size=512K]
I/O ports at ec00 [size=8]
Memory at c000 (32-bit, prefetchable) [size=256M]
Memory at ffa8 (32-bit, non-prefetchable) [size=256K]
Capabilities: [d0] Power Management version 2

00:1b.0 Audio device: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6
Family) High Definition Audio Controller (rev 03)
Subsystem: Intel Corporation Unknown device e213
Flags: bus master, fast devsel, latency 0, IRQ 17
Memory at ffac (64-bit, non-prefetchable) [size=16K]
Capabilities: [50] Power Management version 2
Capabilities: [60] Message Signalled Interrupts: 64bit+
Queue=0/0 Enable-
Capabilities: [70] Express Unknown type IRQ 0
Capabilities: [100] Virtual Channel
Capabilities: [130] Unknown (5)

00:1c.0 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6
Family) PCI Express Port 1 (rev 03) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
Memory behind bridge: ff80-ff8f
Prefetchable memory behind bridge:
d430-d430
Capabilities: [40] Express Root Port (Slot+) IRQ 0
Capabilities: [80] Message Signalled Interrupts: 64bit-
Queue=0/0 Enable-
Capabilities: [90] #0d []
Capabilities: [a0] Power Management version 2
Capabilities: [100] Virtual Channel
Capabilities: [180] Unknown (5)

00:1c.1 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6
Family) PCI Express Port 2 (rev 03) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
Memory behind bridge: ff70-ff7f
Prefetchable memory behind bridge:
d420-d420
Capabilities: [40] Express Root Port (Slot+) IRQ 0
Capabilities: [80] Message Signalled Interrupts: 64bit-
Queue=0/0 Enable-
Capabilities: [90] #0d []
Capabilities: [a0] Power Management version 2
Capabilities: [100] Virtual Channel
Capabilities: [180] Unknown (5)

00:1c.2 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6
Family) PCI Express Port 3 (rev 03) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
Memory behind bridge: ff60-ff6f
Prefetchable memory behind bridge:
d410-d410
Capabilities: [40] Express Root Port (Slot+) IRQ 0
Capabilities: [80] Message Signalled Interrupts: 64bit-
Queue=0/0 Enable-
Capabilities: [90] #0d []
Capabilities: [a0] Power Management version 2
Capabilities: [100] Virtual Channel
Capabilities: [180] Unknown (5)

00:1c.3 PCI bridge: Intel Corporation 82801FB/FBM/FR/FW/FRW (ICH6
Family) PCI Express Port 4 (rev 03) (prog-if 00 [Normal decode])
Flags: bus master, fast devsel, latency 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
Memory behind bridge: ff50-ff5f
Prefetchable memory behind bridge:
d400-d400
Capabilities: [40] Express Root Port (Slot+) IRQ 0
Capabilities: [80] Message Signalled Interrupts: 64bit-
Queue=0/0 Enable-
Capabilities: [90] #0d []
Capabilities: [a0] Power Management version 2
Capabilities: [100] Virtual Channel

Re: [gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Richard Fish

On 12/9/06, Dave Oxley [EMAIL PROTECTED] wrote:

I have a Dell server that runs Gentoo. I have been running kernel
2.6.18-r3 with the third party arcmsr add on driver without any
problems. I have tried to upgrade to 2.6.19-r1 with the kernels inbuild
arcmsr driver but I cannot get it to boot. It says that it cannot find
the root fs on sdc3. I don't know whether its the onboard ICH5 SATA or
the ARCMSR controller that it cannot find. I have 2 disks on the onboard
controller (sda and sdb) and 1 raid volume on the ARCMSR (sdc). Can
anyone help me please?


Maybe the devices changed order?  Try root=/dev/sda3.

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



Re: [gentoo-user] LAN speeds

2006-12-09 Thread Richard Fish

On 12/9/06, Mick [EMAIL PROTECTED] wrote:

Hi All,

I am scp-ing data between LAN machines both of which have 10/100 ethernet
cards, going through a 10/100 router.  Using blowfish, I get about say
55682.80 kbits/sec (as shown in iptraf).

How much should I be getting considering the speed of the cards?


What kind of data?  If it is lots of small files, the bottleneck could
be reading them from the hard drive.  But ~7MB/s sounds reasonable to
me...the best I've seen on a 100mbit network is about 10MB/s through
TCP.

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



Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Norberto Bensa
Michael Sullivan wrote:
 05:01.0 Communication controller: U.S. Robotics Unknown device 2f00 (rev
 01)
 Subsystem: U.S. Robotics Unknown device 0113
 Flags: bus master, medium devsel, latency 32, IRQ 11
 Memory at ff90 (32-bit, non-prefetchable) [size=64K]
 I/O ports at bc00 [size=8]
 Capabilities: [40] Power Management version 2

I don't know why you insist on snd-intel8x0m.ko. It won't handle your modem.


You'll need HSF http://www.linuxant.com/drivers/hsf/index.php
PCI ID 16EC:2F00 (U.S. Robotics USR5660A (265660A) 56K PCI Faxmodem)


Always use lspci -n when searching for a driver. Don't trust scanModem.sh.




pgpH53bwya4TK.pgp
Description: PGP signature


[gentoo-user] turning off irrelevant mplayer error

2006-12-09 Thread maxim wexler
Hi group,

When I try to use gmplayer to play audio I get this
ugly error message on my desktop:

[A0 0SS] audio_setup: Can't open audio device
/dev/dsp: Device or resource busy

Doesn't stop gmplayer from working. It uses alsa OK.

Got this on the command line too but it wasn't so in
your face.

Anybody know how to stop it? Using 'artsdsp' keeps
audacity from complaining but it doesn't seem to work
in this instance.

-Maxim


 

Any questions? Get answers on any topic at www.Answers.yahoo.com.  Try it now.
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Pawel Kraszewski
Dnia piątek, 8 grudnia 2006 23:18, Michael Sullivan napisał:

   05:01.0 Communication controller: U.S. Robotics Unknown device 2f00
   (rev 01)
   Subsystem: U.S. Robotics Unknown device 0113
   Flags: bus master, medium devsel, latency 32, IRQ 11
   Memory at ff90 (32-bit, non-prefetchable) [size=64K]
   I/O ports at bc00 [size=8]
   Capabilities: [40] Power Management version 2

Your modem definitely is NOT snd-intel8x0m device. Haven't found exact info 
(down to subsystem), but this _probably_ is HSF/HSFi-comatible modem 
(according to http://www.linuxant.com/drivers/hsf/index.php)

Give net-dialup/hsfmodem a try.

-- 
 Pawel Kraszewski
 www.kraszewscy.net

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] One more time -- KDM 3.5.5 and kdesktop crash

2006-12-09 Thread Steve Brenneis

Richard Fish wrote:

On 12/8/06, Steve Brenneis [EMAIL PROTECTED] wrote:

I've done that twice. I guess it's time to file a bug report.


Seems it's already reported.  Add your info here:

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

-Richard
Thanks again. Looks like they haven't touched it since it was reported 
in November. I guess I'll just sit back and wait.

--
gentoo-user@gentoo.org mailing list



[gentoo-user] MacBook 64bits configs

2006-12-09 Thread KLessou

Can somebody share a configuration for the macbook in 64bits ?

I have the macbook core 2 duo (not pro), If anybody can share also his
xorg.conf, i will appreciate :-D

Thx in advance !

--
~
| klessou |
~


Re: [gentoo-user] syslog problem....

2006-12-09 Thread Neil Bothwick
On Sat, 9 Dec 2006 06:57:14 -0500, David Corbin wrote:

  AFAIK, the provide settings in the init scripts themselves.   
 
 I understand that's where it's defined, but what I meant was how does
 it find it.  Surely it's not running every script each time somebody
 depends on something.

The information is cached, sometimes when you start a service from the
command line you'll see a message like caching service dependencies.


-- 
Neil Bothwick

*Libra*: /(Sept 23--Oct 23)/ An unfortunate typo on your application
results in your being accepted into the Legion Of Superherpes.


signature.asc
Description: PGP signature


[gentoo-user] amd64 install quirk

2006-12-09 Thread James
Hello,

I have install (2) amd64 systems, an amd64 (turion) and
and amd64 in a DX-5150, both HP systems.

I having trouble with a system, pieced together.

I managed to get gparted to reformat the drive
and install XP on sda1. It boots and the machine
is fine.

Now trying to install gentoo(amd64) on the other partitions
is becoming a challenge.

If I use the 2006.1-livecd-amd64 livecd, the sata dvd/cd
(plextor PX-755SA) gives me problems. The cd will work
at the beginning, but then gives this error message:

snip
Keeping default keymap
Determining root device...
The root block device is unspecified or not detected.
Please specify  a device to boot, or shell for a shell...
boot() ::
end/snip

nothing I enter works.

I try the amd64-2006.1.minimum CD and get the same results

OK, so I think huh, just add an IDE cdrom. WEll that solves this
problem but during the install  when you get to the setup/format
the disk, the sata disk is not seen. It's like there is no harddrive 
present.

Ok, so I think ah, just disconnect the sata DVD/cd drive?
That does not help either.

So I then say, what the hell

I use an x86 image and get all the way to actually running the 
installation, to find out that the ethernet driver does not work.
It does boot, See the hard drive and go all the way to the end, but
the ethernet does not get properly set up.

snip
• Dual LAN jacks
• Realtek PCI-E GbLAN controller 8111B
- Integrated Fast Ethernet MAC and PHY in single chip
- Supports 10Mb/s, 100Mb/s and 1000Mb/s
- Compliance with PCI-Express Bus specification v1.0a

• Realtek PCI GbLAN controller 8110S
- Integrated Fast Ethernet MAC and PHY in single chip.
- Supports 10Mb/s, 100Mb/s and 1000Mb/s.
- Compliance with PCI 2.3
end/snip

Maybe  I need to load some special drivers onto a usbstick
or with a custom cd to get the ethernet working?



This is a very new mobo: MSI K9A platium, with dual pci-x slots
just for ATI video cards:

http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php?UID=737

I'm stumped as to how to approach this installation or what to try next?


Maybe a beta copy of 2007.0 live cd, or such?


ideas?

James





-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] amd64 install quirk

2006-12-09 Thread Hemmann, Volker Armin


 This is a very new mobo: MSI K9A platium, with dual pci-x slots
 just for ATI video cards:

no you don't have that. You maybe have dual pci-e slots. Don't confuse the 
two.


 http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php?UID
=737

 I'm stumped as to how to approach this installation or what to try next?

a modern kernel. Have a look into the forums, there are several threads about 
livecds with more up to date kernels.

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Re: amd64 install quirk

2006-12-09 Thread James
Hemmann, Volker Armin volker.armin.hemmann at tu-clausthal.de writes:


  This is a very new mobo: MSI K9A platium, with dual pci-x slots
  just for ATI video cards:

Hello Hemmann,
yea, your right, I'm only using one for the ATI 1900 video card. Both slots
are general purpose, but the mobo is specifically design for dual ATI
cards as in a gaming or 3D modeling system.


 no you don't have that. You maybe have dual pci-e slots. Don't confuse the 
 two.
 again your are correct.


  http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php?UID
 =737

  I'm stumped as to how to approach this installation or what to try next?

 a modern kernel. Have a look into the forums, there are several threads about 
 livecds with more up to date kernels.

http://forums.gentoo.org/index.php   ???
Well 30 minutes of looking at  forum( gentoo install) did not reveal anything.

Can you be more specific?  Is there a way to search forums?


James


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Re: amd64 install quirk

2006-12-09 Thread Hemmann, Volker Armin
On Saturday 09 December 2006 23:26, James wrote:
 Hemmann, Volker Armin volker.armin.hemmann at tu-clausthal.de writes:
   This is a very new mobo: MSI K9A platium, with dual pci-x slots
   just for ATI video cards:

 Hello Hemmann,
 yea, your right, I'm only using one for the ATI 1900 video card. Both slots
 are general purpose, but the mobo is specifically design for dual ATI
 cards as in a gaming or 3D modeling system.

  no you don't have that. You maybe have dual pci-e slots. Don't confuse
  the two.

  again your are correct.

   http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_detail.php
  ?UID =737
  
   I'm stumped as to how to approach this installation or what to try
   next?
 
  a modern kernel. Have a look into the forums, there are several threads
  about livecds with more up to date kernels.

 http://forums.gentoo.org/index.php   ???
 Well 30 minutes of looking at  forum( gentoo install) did not reveal
 anything.

 Can you be more specific?  Is there a way to search forums?



'search' is the second link on the top. Costum livecds are in the 'unsupported 
software' section.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Finding my modem

2006-12-09 Thread Nick Rout
On Fri, 08 Dec 2006 16:18:24 -0600
Michael Sullivan [EMAIL PROTECTED] wrote:

 Can anybody give me any advice as to setting this up?  I went to
 http://tldp.org/HOWTO/html_single/Modem-HOWTO/#s2 and have been trying
 to follow it, but it's not going well.  I downloaded the scanModem
 script, and it's created several files, but it keeps griping because I
 don't have the snd-intel8x0m module...

What DID the file called modemData.txt produced by scanModem actually say?
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] turning off irrelevant mplayer error

2006-12-09 Thread Nick Rout
What output device is gmplayer set to use?

Try explicitly setting it to alsa.

for the command line look at /etc/mplayer.conf (system wide) or per user 
~/.mplayer/config

I think those setting also affect gmplayer, alsthough gmplayer also has a place 
to set such things within its gui - which may possibly be stored in 
~/.mplayer/gui.conf

I think if its not set to anything it may try all of its output drivers.

Cheers.

On Sat, 9 Dec 2006 12:04:42 -0800 (PST)
maxim wexler [EMAIL PROTECTED] wrote:

 Hi group,
 
 When I try to use gmplayer to play audio I get this
 ugly error message on my desktop:
 
 [A0 0SS] audio_setup: Can't open audio device
 /dev/dsp: Device or resource busy
 
 Doesn't stop gmplayer from working. It uses alsa OK.
 
 Got this on the command line too but it wasn't so in
 your face.
 
 Anybody know how to stop it? Using 'artsdsp' keeps
 audacity from complaining but it doesn't seem to work
 in this instance.
 
 -Maxim
 
 
  
 
 Any questions? Get answers on any topic at www.Answers.yahoo.com.  Try it now.
 -- 
 gentoo-user@gentoo.org mailing list
 
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] amsn hangs at startup [solved?]

2006-12-09 Thread b.n.
It seems amsn 0.96 today suddenly begun to hang when starting up. No 
error messages whatsoever.


It also seems to be suddenly working again.
Sorry for wasting your time. I'm still quite uneasy for not knowing what 
happened but...


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



Re: [gentoo-user] turning off irrelevant mplayer errorFIXED

2006-12-09 Thread maxim wexler

--- Nick Rout [EMAIL PROTECTED] wrote:

 What output device is gmplayer set to use?
 
 Try explicitly setting it to alsa.
 
 for the command line look at /etc/mplayer.conf

works for gui too, thanks Nick

Maxim 



 

Want to start your own business?
Learn how on Yahoo! Small Business.
http://smallbusiness.yahoo.com/r-index
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] LAN speeds

2006-12-09 Thread Richard Cox
Hey,

If the machines are older, you may get a little more out of it by turning off 
compression also.

-Rick

On Sat, Dec 09, 2006 at 05:52:40PM +, Mick wrote:
 Hi All,
 
 I am scp-ing data between LAN machines both of which have 10/100 ethernet 
 cards, going through a 10/100 router.  Using blowfish, I get about say 
 55682.80 kbits/sec (as shown in iptraf).
 
 How much should I be getting considering the speed of the cards?
 -- 
 Regards,
 Mick


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Random number generation

2006-12-09 Thread Grant

apache2 is taking a long time generating secret for digest
authentication.  Bryan suggested the following fixes a little while
back:

1. Use a hardware RNG (random number generator), some chipsets provide
that but you need to enable support in the kernel.
2. emerge apr with USE=urandom. This makes apr use /dev/urandom
instead of /dev/random. urandom isn't as strong cryptographically
speaking as random but might be good enough for your use.
3. Disable digest authentication in the apache configuration.
4. Use some entropy gathering daemon like sys-apps/clrngd,
media-sound/sound-entropyd or media-video/video-entropyd.

I emerged and started clrngd and it seems to work nicely.  I'd rather
use a hardware RNG if I have one.  Where in the kernel should I find
RNG support?  Are #1 followed by #4 the preferred options?

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



Re: [gentoo-user] Random number generation

2006-12-09 Thread Petr Uzel
On Sunday 10 December 2006 01:37, Grant wrote:
 apache2 is taking a long time generating secret for digest
 authentication.  Bryan suggested the following fixes a little while
 back:

 1. Use a hardware RNG (random number generator), some chipsets provide
 that but you need to enable support in the kernel.
 2. emerge apr with USE=urandom. This makes apr use /dev/urandom
 instead of /dev/random. urandom isn't as strong cryptographically
 speaking as random but might be good enough for your use.
 3. Disable digest authentication in the apache configuration.
 4. Use some entropy gathering daemon like sys-apps/clrngd,
 media-sound/sound-entropyd or media-video/video-entropyd.

 I emerged and started clrngd and it seems to work nicely.  I'd rather
 use a hardware RNG if I have one.  Where in the kernel should I find
 RNG support?

make menuconfig-Device drivers-Character devices-Hardware Random Number 
Generator Core support

Regards
-- 
Petr Uzel
[EMAIL PROTECTED]
Jabber : [EMAIL PROTECTED]
ICQ : 101606095
Gentoo Linux
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Random number generation

2006-12-09 Thread Randy Barlow
On Saturday 09 December 2006 19:58, Petr Uzel wrote:
 make menuconfig-Device drivers-Character devices-Hardware Random Number
 Generator Core support

How would you know if you had such a device?  Would it show up in lspci 
output?

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



[gentoo-user] OT - Virtual Caller ID with asterisk?

2006-12-09 Thread Michael Sullivan
Now that I've got linux recognizing my modem, I was wondering if I could
somehow set asterisk up to give me caller ID information.  Is this
possible with asterisk?  My modem is only Fax/Data (no voice), but this
shouldn't be a problem if all I want is the caller ID, should it?

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] Problem with PHP4

2006-12-09 Thread Jayson Smith
Hi,
I've been using PHP version 4.  Last night during a normal
emerge -av --nospinner -u world Mysql got updated to version 5, which
messed up Apache, Postfix and Pure-ftpd.  Actually Apache itself wasn't
messed up, but Mod_PHP was since it couldn't load the Mysql library any
more.  It's clear to me that all I really need to do is recompile mod_php
but there isn't an Ebuild for it any more!  I also have not been able to
find it available for download.  I upgraded to PHP 5 by unmerging the
existing mod_php then emerging php.  This works as far as Apache2 is
concerned, but not as far as a PHP form generator I use is concerned.  This
form is a contact form for my website and isn't working properly under PHP5
for some reason.  So what I'm wondering is, if I download and reinstall
PHP4, will that give me my Mod_php I need for Apache?  I don't seem to be
able to emerge PHP4, can't find ebuilds.
Any help would be greatly appreciated!
Jayson.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Random number generation

2006-12-09 Thread Petr Uzel
On Saturday 09 December 2006 21:07, Randy Barlow wrote:
 On Saturday 09 December 2006 19:58, Petr Uzel wrote:
  make menuconfig-Device drivers-Character devices-Hardware Random
  Number Generator Core support

 How would you know if you had such a device?  Would it show up in lspci
 output?

 R

I don't know, because I don't use this device. I only knew where to find it in 
kernel configuration :)
-- 
Petr Uzel
[EMAIL PROTECTED]
Jabber : [EMAIL PROTECTED]
ICQ : 101606095
Gentoo Linux
-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Random number generation

2006-12-09 Thread Grant

 apache2 is taking a long time generating secret for digest
 authentication.  Bryan suggested the following fixes a little while
 back:

 1. Use a hardware RNG (random number generator), some chipsets provide
 that but you need to enable support in the kernel.
 2. emerge apr with USE=urandom. This makes apr use /dev/urandom
 instead of /dev/random. urandom isn't as strong cryptographically
 speaking as random but might be good enough for your use.
 3. Disable digest authentication in the apache configuration.
 4. Use some entropy gathering daemon like sys-apps/clrngd,
 media-sound/sound-entropyd or media-video/video-entropyd.

 I emerged and started clrngd and it seems to work nicely.  I'd rather
 use a hardware RNG if I have one.  Where in the kernel should I find
 RNG support?

make menuconfig-Device drivers-Character devices-Hardware Random Number
Generator Core support


Thanks Petr.  I have this in the menu:

Intel/AMD/VIA HW Random Number Generator support

and it says:

This driver provides kernel-side support for the Random Number
Generator hardware found on Intel i8xx-based motherboards, AMD
76x-based motherboards, and Via Nehemiah CPUs.

lspci shows Intel numbers like these:

82845
82801

The new kernel is compiling now.  Hopefully it will work.

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



Re: [gentoo-user] Problem with PHP4

2006-12-09 Thread kashani

Jayson Smith wrote:

Hi,
I've been using PHP version 4.  Last night during a normal
emerge -av --nospinner -u world Mysql got updated to version 5, which
messed up Apache, Postfix and Pure-ftpd.  Actually Apache itself wasn't
messed up, but Mod_PHP was since it couldn't load the Mysql library any
more.  It's clear to me that all I really need to do is recompile mod_php
but there isn't an Ebuild for it any more!  I also have not been able to
find it available for download.  I upgraded to PHP 5 by unmerging the
existing mod_php then emerging php.  This works as far as Apache2 is
concerned, but not as far as a PHP form generator I use is concerned.  This
form is a contact form for my website and isn't working properly under PHP5
for some reason.  So what I'm wondering is, if I download and reinstall
PHP4, will that give me my Mod_php I need for Apache?  I don't seem to be
able to emerge PHP4, can't find ebuilds.
Any help would be greatly appreciated!
Jayson.



About a year ago they dropped mod_php and php (the cli) and changed it 
all to dev-lang/php +cli +apache2


So trying to install PHP4 using the dev-lang/php package is what you 
need to do. You'll need to echo =dev-lang/php-5  
/etc/portage/package.mask to keep from installing PHP5 or better.


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



Re: [gentoo-user] 2.6.19-r1 won't boot - arcmsr?

2006-12-09 Thread Dave Oxley

Norberto Bensa wrote:

Dave Oxley wrote:

I have a Dell server that runs Gentoo. I have been running kernel
2.6.18-r3 with the third party arcmsr add on driver without any
problems. I have tried to upgrade to 2.6.19-r1 with the kernels inbuild


2.6.19 sucks.

Not only it moved CONFIG_SATA_* to CONFIG_ATA_* but also my /dev/sda is 
now /dev/sdb And, when ata_piix loads, there's a delay of 20 seconds at 
least.


After changing every /sda to /sdb in /etc/fstab, I booted the box. dmesg is 
full of timeouts coming from sda, which seems to be my DVD+RW drive (which on 
2.6.18 is on hda)


Someone messed SATA (ICH at least) very badly with 2.6.19. 



I hope this helps someone.

Regards,
Norberto


Thanks. This solved my problem. My raid controller is now /dev/sda/. It 
used to be /dev/sdc. And my 2 onboard disks are /dev/sdb and /dev/sdc!


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



Re: [gentoo-user] Re: dual boot install advice

2006-12-09 Thread Iain Buchanan
On Fri, 2006-12-08 at 13:26 +0100, Etaoin Shrdlu wrote:
 On Friday 8 December 2006 01:13, James wrote:
 
  That or many other methods never seem to work for me. XP is spread
  out all over the disk and the recovery partition is very difficult to
  deal with too.
 
 Ah ok, that was not clear to me, and also I did not know that you had a 
 recovery partition. In this case, as the others said, you need to defrag 
 before doing anything (although maybe partition magic *might* be able to 
 sort things out by itself, but I'm not sure, and it's commercial 
 software).

Even though Partition Magic is commercial, it is one of the few pieces
of software I'd happily buy.  In my experience, it's had no trouble
resizing WXP partitions to make way for linux.

cya,
-- 
Iain Buchanan iaindb at netspace dot net dot au

senility, n.:
The state of mind of elderly persons with whom one happens to disagree.

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] OT - Virtual Caller ID with asterisk?

2006-12-09 Thread Iain Buchanan
On Sat, 2006-12-09 at 19:17 -0600, Michael Sullivan wrote:
 Now that I've got linux recognizing my modem, I was wondering if I could
 somehow set asterisk up to give me caller ID information.  Is this
 possible with asterisk?  My modem is only Fax/Data (no voice), but this
 shouldn't be a problem if all I want is the caller ID, should it?

I don't know anything about asterisk, but I think caller id is a modem
option.  Have a look at your modem manual for the hayes AT command set,
or search on the internet. (just about every modem understands most of
these).

IIRC, once you give the modem the CID command, the incoming ring
notification changes from RING to RING number.

For the asterisk side of things, once again, the internet is your
friend: http://nerdvittles.com/index.php?p=82

and I'm sure there are more...

HTH,
-- 
Iain Buchanan iaindb at netspace dot net dot au

You lived with a man who wore white belts?  Laura, I'm disappointed in you.
-- Remington Steele

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] Random number generation

2006-12-09 Thread Drew

1. Use a hardware RNG (random number generator), some chipsets provide
that but you need to enable support in the kernel.
2. emerge apr with USE=urandom. This makes apr use /dev/urandom
instead of /dev/random. urandom isn't as strong cryptographically
speaking as random but might be good enough for your use.
3. Disable digest authentication in the apache configuration.
4. Use some entropy gathering daemon like sys-apps/clrngd,
media-sound/sound-entropyd or media-video/video-entropyd.


This may be a stupid question but once the hardware RNG code is
compiled in the kernel, what do I have to do (if anything) to get my
system using it instead of the software RNG?


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