Re: [gentoo-user] Panic at boot time after update kernel to 2.6.20-r8.

2007-05-13 Thread Neil Walker

Graham Murray wrote:

According to the Linux sata site
(http://linux-ata.org/driver-status.html) the AHCI driver supports all
the SATA features such as NCQ (Native Command Queueing) and hotplug but
the PIIX module does not support these.
  


I've been running the PIIX driver for quite some time and everything 
appears to work OK so it hadn't occurred to me to go looking at other 
drivers. ;) Maybe I should take a closer look at AHCI - especially as it 
seems Intel are listed as a sponsor, so it must have their approval. :)



Be lucky,

Neil

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] upload problem in seamonkey

2007-05-13 Thread pat
Randy Barlow wrote:
 pat wrote:
 I have problem with uploading some sorts of the files by seamonkey (e.g. 
 *.pdf,
 
 The folder selection box is opened, so I choose the folder (with rwx 
 permissions
 for the user) click OK, but file is not saved.
 
 Generally, you can't upload a folder using the normal webbrowser upload
 form, only single files.  Is that your problem?
 
 R
 

No, this is not the problem. Single file from the web to selected folder in the
local machine.

Pat
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Nvidia drivers for 8600 GT

2007-05-13 Thread Markus Schönhaber
Markus Schönhaber wrote:

 Daniel Pielmeier wrote:

 You can try to rename the ebuild according to the new version and add it
 to your overlay, maybe it just works.
 
 I'll try it.

A minor change to the ebuild to reflect the different numbering scheme
of the beta driver's package was necessary.
Now the card is working fine.

Regards
  mks
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Nvidia drivers for 8600 GT

2007-05-13 Thread Markus Schönhaber
Aleksandar L. Dimitrov wrote:

 I did something rather dirty today. I downloaded the newest Nvidia Beta
 Drivers and copied it over to /usr/portage/distfiles under the same
 name the in-portage driver had. So while portage thinks the old drivers
 are installed - that's not the case :)

Oh yes, dirty ;-)
I assume you did also change the digest information for driver package,
didn't you?

Anyway, I did as Daniel suggested and created a new ebuild for the beta
driver by copying the old one.

Regards
  mks
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Nvidia drivers for 8600 GT

2007-05-13 Thread Daniel Pielmeier
 I did something rather dirty today. I downloaded the newest Nvidia Beta
 Drivers and copied it over to /usr/portage/distfiles under the same
 name the in-portage driver had. So while portage thinks the old drivers
 are installed - that's not the case :)
 
 Oh yes, dirty ;-)
 I assume you did also change the digest information for driver package,
 didn't you?

The result is the same, but creating an ebuild and putting it an overlay
is a much more cleaner way of doing it.

Regards,

Daniel
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Nvidia drivers for 8600 GT

2007-05-13 Thread Markus Schönhaber
Daniel Pielmeier wrote:

 The result is the same, but creating an ebuild and putting it an overlay
 is a much more cleaner way of doing it.

ACK. I did it that way. I didn't mention in my previous post that I did
put the new ebuild into an overlay, though.

Regards
  mks
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] noatime option is ignored for /

2007-05-13 Thread Robert Cernansky
Hello,

I just found out that 'noatime' mount option is ignored on my system for
/ (root) partition. In /etc/fstab I have entry for /:

/dev/sda6  /   ext3 noatime,usrquota,grpquota

and 'mount' command shows:

/dev/sda6 on / type ext3 (rw,noatime,usrquota,grpquota)

but /proc/mounts does not show noatime option:

/dev/root / ext3 rw,data=ordered,usrquota,grpquota 0 0

When I do 'cat some_file', 'ls -lu' shows that its access time _is_
modified. However I can do 'mount -o remount /' and filesystem is then
remounted correctly (access time is not modified anymore), I want to
ask if this is normal behaviour and remounting / after boot is common
solution.

The root of problem is probably the fact, that /etc/fstab is not
available when / is about to mount. But I did not find it mentioned in
any ext3 tweaking guide or so. Everywhere is just add noatime option
to fstab and you're fine. In Gentoo Handbook is also nothing about
it (and noatime option is used for /).

I think initrd could solve this problem but I do not want it.

Is noatime for / working for you?


Robert


-- 
Robert Cernansky
E-mail: [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] noatime option is ignored for /

2007-05-13 Thread Florian Philipp
Am Sonntag 13 Mai 2007 15:48 schrieb Robert Cernansky:
 Hello,

 I just found out that 'noatime' mount option is ignored on my system for
 / (root) partition. In /etc/fstab I have entry for /:

 /dev/sda6  /   ext3 noatime,usrquota,grpquota

 and 'mount' command shows:

 /dev/sda6 on / type ext3 (rw,noatime,usrquota,grpquota)

 but /proc/mounts does not show noatime option:
[...]
 /dev/root / ext3 rw,data=ordered,usrquota,grpquota 0 0

 Is noatime for / working for you?


 Robert

less /proc/mounts | grep /dev/root
/dev/root / ext3 rw,noatime,data=ordered 0 0

So, it's working for me.


pgpEKF9V1wDDt.pgp
Description: PGP signature


[gentoo-user] iptables configuration problem

2007-05-13 Thread Chuanwen Wu

Hi,guys!
I use iptables to let the PCs in the subnet to connect the internet outside.

And i write a simple script,but it doesn't work:

#!/bin/sh
iptables -F
#Define packets from Internet server to Intranet
iptables -A FORWARD -d 198.168.1.0/24 -i eth0 -j ACCEPT
#Define packets from Intranet to Internet
iptables -A FORWARD -s 198.168.1.0/24 -i eth1 -j ACCEPT


Here is the result of iptables -L:

# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source   destination

Chain FORWARD (policy DROP)
target prot opt source   destination
ACCEPT all  --  anywhere 198.168.1.0/24
ACCEPT all  --  198.168.1.0/24   anywhere

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination


The eth0 here has the real ip,and the eth1 have a subnet ip:192.168.1.21.
How to fix this problem?All I need now is just to let my office
machine to use the internet!
Thanks in advanced!!
--
wcw
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] iptables configuration problem

2007-05-13 Thread Fabio A Correa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello Wu,

Instead of the commands you posted, you should use

echo 1  /proc/sys/net/ipv4/ip_forward
iptables --table nat -A POSTROUTING -s 192.168.8.0/24 -j MASQUERADE

Long explanation:

The first command enables the kernel to _forward_ packets from eth0 to eth1 and 
vice versa. To
do the actual forwarding, the second command is used:

- --table nat : Network address translation table.
- -A POSTROUTING for altering packets as they are about to go out, after it is 
determined that
they are to be forwarded by means of the first instruction.
- -j MASQUERADE Masquerade the addresses of computer in the subnet with the 
address of the routing
computer.

The kernel takes care of the subtle details on masquerading.

I hope this helps!!!

- --
Fabio A. Correa D.

Physics Dept, Universidad Nacional, Bogota, Colombia
[EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
My webpage and OpenPGP key at http://facorread.150m.com
[EMAIL PROTECTED] is not working anymore!!!
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGRyjPYOZCB4zf2uQRAp2eAJwIYrXAQqldgZjRN0u+uDOW8t/aTgCeOQOb
RTmVGHOHQQWUzVxkZomHhHo=
=xvIZ
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Help playing simultaneously splitted videos (sort of)

2007-05-13 Thread Javier Krausbeck
Hi there,

I've been asked something strange. I have to take a video input and split it 
in three parts, sending it to three outputs simultaneously.

The first thing I thought of was creating a pipe, sending there the video and 
trying to read from there. I did my firsts tests with mplayer, but as soon as 
I launched the second instance of the video output, the mplayer which was 
feeding the pipe exited.

Does any of you have any good idea to accomplish this in a simple and elegant 
way?

Probably I should be focusing more on the capturing more than doing this 
rubbish tests, nonetheless, since I still don't have any hardware to do 
anything proper, any feedback will be wellcome ;)


-- 
Javier Krausbeck [EMAIL PROTECTED]
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] remote ssh session does not reflect my keyboard inputs

2007-05-13 Thread Mick
On Tuesday 08 May 2007 12:53, Hans-Werner Hilse wrote:
 Hi,

 On Mon, 7 May 2007 23:12:31 +0100 Mick [EMAIL PROTECTED]

 wrote:
  =
  $ echo $TERM
  rxvt
 
  $ sudo echo $TERM
  rxvt
  =
  which is the same like my Gentoo box.

 That doesn't matter. Question is rather whether the target machine has
 an entry in its terminfo db (/usr/share/terminfo). On ubuntu, this is
 provided by ncurses-base (so I would suspect it might be installed).

 You can also try to set TERM to vt102 or vt100:
 $ export TERM=vt102

 But if it works this way, that would mean /usr/share/terminfo/r/rxvt is
 borked. Note that there might be terminfo databases w/ higher
 precedence in /etc/terminfo and /lib/terminfo.

I've tried bind -p | grep history and it did not work:
==
$ sudo bind -p | grep history
Password:
sudo: bind: command not found
==

I also tried changing the terminal once I logged in to the remote machine, but 
I am getting the same error:
==
$ export TERM=vt100
$ ^[[B^[[B
==

What else could I try?
-- 
Regards,
Mick


pgpStVJIuvneI.pgp
Description: PGP signature


Re: [gentoo-user] Help playing simultaneously splitted videos (sort of)

2007-05-13 Thread YoYo Siska
Javier Krausbeck wrote:
 Hi there,
 
 I've been asked something strange. I have to take a video input and split it 
 in three parts, sending it to three outputs simultaneously.
 
 The first thing I thought of was creating a pipe, sending there the video and 
 trying to read from there. I did my firsts tests with mplayer, but as soon as 
 I launched the second instance of the video output, the mplayer which was 
 feeding the pipe exited.
 
 Does any of you have any good idea to accomplish this in a simple and elegant 
 way?

just expanding your idea with pipes:

mkfifo f1
mkfifo f2
mkfifo f3
mplayer  whatever_options_you_want_and_make_it_write_to_stdout  | tee f1
| tee f2 f3

and then reading from f1, f2, f3 doesn't do the thing you want ?

yoyo


-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] noatime option is ignored for /

2007-05-13 Thread Benno Schulenberg
Robert Cernansky wrote:
 and 'mount' command shows:

 /dev/sda6 on / type ext3 (rw,noatime,usrquota,grpquota)

 but /proc/mounts does not show noatime option:

 /dev/root / ext3 rw,data=ordered,usrquota,grpquota 0 0

Hmm, same thing here:

# grep /  /etc/mtab
/dev/hda9 / reiserfs rw,noatime 0 0

# grep /  /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / reiserfs rw 0 0

# mount -o remount /

# grep /  /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / reiserfs rw,noatime 0 0

During a normal boot an ext2/ext3 root partition gets remounted: 
first it gets mounted read-only in case it needs to be fschecked, 
and then remounted read-write.

I've changed the bootscripts to skip this double step, with the 
unintended effect of not getting all options applied.  (Fixed now.)  
Maybe you did too?

Benno
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] pppconfig can't find internal modem.

2007-05-13 Thread waltdnes
  My ADSL connection had a short outage yesterday.  I discovered, to my
consternation, that my machine's internal modem wasn't being picked up.
This is a 1999 Dell PIII that refuses to die.  The PCI modem has worked
in the past under Redhat and Gentoo.  I am aware that I have to allocate
more than 4 serial ports in make menuconfig.  lspci -v shows...

00:10.0 Serial controller: 3Com Corp, Modem Division 56K FaxModem Model 5610 
(rev 01) (prog-if 02 [16550])
Subsystem: 3Com Corp, Modem Division Unknown device baba
Flags: medium devsel, IRQ 9
I/O ports at 1430 [size=8]
Capabilities: [dc] Power Management version 2

  I'm file-attaching a copy of .config.  Any ideas?


-- 
Walter Dnes [EMAIL PROTECTED] In linux /sbin/init is Job #1
Q. Mr. Ghandi, what do you think of Microsoft security?
A. I think it would be a good idea.
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.20-gentoo-r7
# Sun May 13 15:06:04 2007
#
CONFIG_X86_32=y
CONFIG_GENERIC_TIME=y
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_SEMAPHORE_SLEEPERS=y
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_DMI=y
CONFIG_DEFCONFIG_LIST=/lib/modules/$UNAME_RELEASE/.config

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=
CONFIG_LOCALVERSION_AUTO=y
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_IPC_NS is not set
CONFIG_POSIX_MQUEUE=y
# CONFIG_BSD_PROCESS_ACCT is not set
# CONFIG_TASKSTATS is not set
# CONFIG_UTS_NS is not set
# CONFIG_AUDIT is not set
CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_SYSFS_DEPRECATED is not set
# CONFIG_RELAY is not set
CONFIG_INITRAMFS_SOURCE=
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
# CONFIG_EMBEDDED is not set
CONFIG_UID16=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
# CONFIG_KALLSYMS_EXTRA_PASS is not set
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SHMEM=y
CONFIG_SLAB=y
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_RT_MUTEXES=y
# CONFIG_TINY_SHMEM is not set
CONFIG_BASE_SMALL=0
# CONFIG_SLOB is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_KMOD=y

#
# Block layer
#
CONFIG_BLOCK=y
# CONFIG_LBD is not set
# CONFIG_BLK_DEV_IO_TRACE is not set
# CONFIG_LSF is not set

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_DEFAULT_AS=y
# CONFIG_DEFAULT_DEADLINE is not set
# CONFIG_DEFAULT_CFQ is not set
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED=anticipatory

#
# Processor type and features
#
# CONFIG_SMP is not set
# CONFIG_X86_PC is not set
# CONFIG_X86_ELAN is not set
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
CONFIG_X86_GENERICARCH=y
# CONFIG_X86_ES7000 is not set
# CONFIG_PARAVIRT is not set
CONFIG_X86_CYCLONE_TIMER=y
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
CONFIG_MPENTIUMIII=y
# CONFIG_MPENTIUMM is not set
# CONFIG_MCORE2 is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
# CONFIG_MK7 is not set
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MEFFICEON is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MGEODEGX1 is not set
# CONFIG_MGEODE_LX is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
CONFIG_X86_GENERIC=y
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=7
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
# CONFIG_ARCH_HAS_ILOG2_U32 is not set
# CONFIG_ARCH_HAS_ILOG2_U64 is not set
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_TSC=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_MCE=y
# CONFIG_X86_MCE_NONFATAL is not set
CONFIG_VM86=y
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_X86_REBOOTFIXUPS is not set
CONFIG_MICROCODE=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y

#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_NOHIGHMEM=y
# CONFIG_HIGHMEM4G is not set
# CONFIG_HIGHMEM64G is not set
CONFIG_PAGE_OFFSET=0xC000

Re: [gentoo-user] remote ssh session does not reflect my keyboard inputs

2007-05-13 Thread Etaoin Shrdlu
On Sunday 13 May 2007 21:12, Mick wrote:

 I've tried bind -p | grep history and it did not work:
 ==
 $ sudo bind -p | grep history
 Password:
 sudo: bind: command not found
 ==

bind is a builtin bash command, I'm not sure about how it behaves when 
invoked by sudo. However, it should work fine even when run as a regular 
user.

 I also tried changing the terminal once I logged in to the remote
 machine, but I am getting the same error:
 ==
 $ export TERM=vt100
 $ ^[[B^[[B
 ==

 What else could I try?

Could it possibly be related to the readline library and the inputrc 
file? It seems that some keys are undefined on the machine you are 
sshing to. In the case of the left arrow (but of course this holds for 
any key that is not working as expected), try 

$ bind -q backward-char

on both boxes. On my computer, it outputs 

backward-char can be invoked via \C-b, \eOD, \e[D.

Of these, \e[D is the one that corresponds to the left arrow key.

If your output for the non-working computer is different, then it means 
that the left arrow key is not bound to the same function (or is not 
bound at all). This could be due to a ~/.inputrc file that redefines 
some keys. See man bash, section READLINE to get more info about 
readline. (BTW, there are *lots* of things that can be customized 
regarding readline behavior, and creating your own inputrc file can be a 
great learning experience - or at least, it was for me when I did it for 
LFS). Verify that you are using the same editing mode (usually emacs) on 
both boxes, with the command

set -o | grep '^vi\|^emacs'

Check whether the INPUTRC environment variable points to some file. On 
gentoo, bash does not read /etc/inputrc, but perhaps on ubuntu it does.

As a last resort, you can try to create your own ~/.inputrc on the ubuntu 
box and put there all the key bindings you need (using CTRL+V + key to 
find out the correct values, as suggested in the comments at the 
beginning of gentoo /etc/inputrc, or copying them directly from the 
gentoo output of bind -p).
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] noatime option is ignored for /

2007-05-13 Thread Robert Cernansky
On Sun, 13 May 2007 21:28:41 +0200 Benno Schulenberg [EMAIL PROTECTED] wrote:

 Robert Cernansky wrote:
  and 'mount' command shows:
 
  /dev/sda6 on / type ext3 (rw,noatime,usrquota,grpquota)
 
  but /proc/mounts does not show noatime option:
 
  /dev/root / ext3 rw,data=ordered,usrquota,grpquota 0 0
 
 Hmm, same thing here:
[...]
 During a normal boot an ext2/ext3 root partition gets remounted: 
 first it gets mounted read-only in case it needs to be fschecked, 
 and then remounted read-write.
 
 I've changed the bootscripts to skip this double step, with the 
 unintended effect of not getting all options applied.  (Fixed now.)  
 Maybe you did too?

I didn't modified the init scripts. But now I looked what is starting
at boot and found out that / is remounted also during quotacheck - and
this is the one that causes the problem.

I've booted into single user mode and / was mounted correctly. Then
ran quotacheck and after that it was mounted without noatime. So it is
probably quotacheck bug. For now I added 'mount -o remount /' command
to /etc/local.start as a workaround.

Thank you all for your replies.

Robert


-- 
Robert Cernansky
E-mail: [EMAIL PROTECTED]
Jabber: [EMAIL PROTECTED]

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Panic at boot time after update kernel to 2.6.20-r8.

2007-05-13 Thread Neil Walker

Neil Walker wrote:
Maybe I should take a closer look at AHCI - especially as it seems 
Intel are listed as a sponsor, so it must have their approval. :)


Well, it didn't work - just resulted in a kernel panic. It seems AHCI is 
only supported by SOME  ICH6,7,8  interfaces. :(



Be lucky,


Neil

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Panic at boot time after update kernel to 2.6.20-r8.

2007-05-13 Thread Graham Murray
Neil Walker [EMAIL PROTECTED] writes:

 Well, it didn't work - just resulted in a kernel panic. It seems AHCI
 is only supported by SOME  ICH6,7,8  interfaces. :(

Did you select AHCI mode in the BIOS? On my motherboard (with
ICH6R/IC6RW) there is an option to set SATA mode to IDE, RAID or AHCI.
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] I want to configure an email server

2007-05-13 Thread Dan Cowsill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

But I have no idea where to start.  Frankly, so many possibilities and
incredibly complex setups have deterred me somewhat from embarking on
this venture.  However, I would very much like to have my very own email
server under my own domain name.

So what I'm asking you guys for is documentation, software packages,
recommended setups, anything you can add.  I am not looking for an all
in one HOWTO (and don't really expect to find one with such a
complicated process) and I am willing to RTFM when necessary.

Thanks a lot guys.

- - --
danthehat ;)
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGR4bN5vsIjOKjGzwRAjnWAJsHcgVriudJJtbJ6L04Xi3FEwG2iQCg7U+4
fOd8dzvi14gIcHsLuGRVXzs=
=r01T
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] I want to configure an email server

2007-05-13 Thread blackhawk
Hello !

I advise you to take a look at
http://gentoo-wiki.com/HOWTO_Email:_A_Complete_Virtual_System .
I've used this howto to make my email server and all works fine now.
It's composed of Postfix + Spamassassin + SQLGrey + ClamAV coupled with
MySQL database for me or PGSQL as in the howto.

Regards,

Xavier Parizet
http://www.linuxant.fr/

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 But I have no idea where to start.  Frankly, so many possibilities and
 incredibly complex setups have deterred me somewhat from embarking on
 this venture.  However, I would very much like to have my very own email
 server under my own domain name.

 So what I'm asking you guys for is documentation, software packages,
 recommended setups, anything you can add.  I am not looking for an all
 in one HOWTO (and don't really expect to find one with such a
 complicated process) and I am willing to RTFM when necessary.

 Thanks a lot guys.

 - - --
 danthehat ;)
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

 iD8DBQFGR4bN5vsIjOKjGzwRAjnWAJsHcgVriudJJtbJ6L04Xi3FEwG2iQCg7U+4
 fOd8dzvi14gIcHsLuGRVXzs=
 =r01T
 -END PGP SIGNATURE-
 --
 [EMAIL PROTECTED] mailing list




-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] I want to configure an email server

2007-05-13 Thread Dan Cowsill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hey there, thanks for the tip!  I didn't expect to find a complete
HOWTO, as I said, but then again I've never seen a HOWTO that big.

Question, though.  Do I need to do anything very special to use MySQL
instead of PGSQL?

Thanks again,

- ---
danthehat ;)[EMAIL PROTECTED] wrote:
 Hello !
 
 I advise you to take a look at
 http://gentoo-wiki.com/HOWTO_Email:_A_Complete_Virtual_System .
 I've used this howto to make my email server and all works fine now.
 It's composed of Postfix + Spamassassin + SQLGrey + ClamAV coupled with
 MySQL database for me or PGSQL as in the howto.
 
 Regards,
 
 Xavier Parizet
 http://www.linuxant.fr/
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 But I have no idea where to start.  Frankly, so many possibilities and
 incredibly complex setups have deterred me somewhat from embarking on
 this venture.  However, I would very much like to have my very own email
 server under my own domain name.

 So what I'm asking you guys for is documentation, software packages,
 recommended setups, anything you can add.  I am not looking for an all
 in one HOWTO (and don't really expect to find one with such a
 complicated process) and I am willing to RTFM when necessary.

 Thanks a lot guys.

 - - --
 danthehat ;)
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

 iD8DBQFGR4bN5vsIjOKjGzwRAjnWAJsHcgVriudJJtbJ6L04Xi3FEwG2iQCg7U+4
 fOd8dzvi14gIcHsLuGRVXzs=
 =r01T
 -END PGP SIGNATURE-
 --
 [EMAIL PROTECTED] mailing list


 
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGR5QS5vsIjOKjGzwRAsrfAKCCT0H6mLeY8DfmEv5b0GTs+KWKRACgw+T+
vIj8HqCMNUsa7vK8+DIFNhM=
=kjJq
-END PGP SIGNATURE-
-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] virtualbox shared folder anyone? [SOLVED]

2007-05-13 Thread Daniel Pielmeier
Helmut Jarausch schrieb:
 The following steps were successful (for me)
 
 echo app-emulation/virtualbox-bin additions dvitool  \
 /etc/portage/package.use
 emerge app-emulation/virtualbox-bin# here 1.3.8-r1
 
 create the virtual machine (WinXP in my case) as described
 and install (here) WinXP SP2 and power off (the VM) after the complete
 install.
 
 ### just examples ..v...vvv
 vboxmanage sharedfolder add WinXP -name linux -hostpath /MySharedFolder
 
 Then start virtualbox again,
 
 click on Details  CD/DVD-ROM
 there on Mount CD/DVD
 Some fiddling about ISO Image File leads to
 add 
 /opt/VirtualBox/additions/VBoxGuestAdditions.iso
 Then click on ISO Image File
 
 Now boot the virtual machine.
 There you find VBoxGuestAdditions as an
 additional (CD) drive.
 
 Click on it to start installing the additional
 drivers from Virtualbox.
 
 Restart Windows and then
 
 execute  cmd
 and there
 ### for my example   v
 net use x: \\vboxsvr\linux
 
 and voila, it seems to work!


Hi,

i know i am a bit late, but today i had the same problem with shared
folders under Virtualbox. It seems that shared folders only work with
virtualbox-bin and additions use flag.

I tried it with the source ebuild and installed additions but without
success.

Anyway, this thread points me to the right direction, thanks!

Regards,

Daniel
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Real time video streaming (was: Help playing simultaneously splitted videos (sort of))

2007-05-13 Thread Javier Krausbeck
On Sunday 13 May 2007, YoYo Siska wrote:

  I've been asked something strange. I have to take a video input and split
  it in three parts, sending it to three outputs simultaneously.

  The first thing I thought of was creating a pipe, sending there the video
  and trying to read from there. I did my firsts tests with mplayer, but as
  soon as I launched the second instance of the video output, the mplayer
  which was feeding the pipe exited.

  Does any of you have any good idea to accomplish this in a simple and
  elegant way?

 just expanding your idea with pipes:

 mkfifo f1
 mkfifo f2
 mkfifo f3
 mplayer  whatever_options_you_want_and_make_it_write_to_stdout  | tee f1

 | tee f2 f3

 and then reading from f1, f2, f3 doesn't do the thing you want ?

Just one caveat, mplayer does not do output to stdout, you only have the 
option of using yuv4mpeg as video out, which means a pipe. I tried catting 
this first pipe to multiple ones, but as I guessed, it didn't work.

Anyway, the more I think about it, the less I like it. Let's say it it's not 
elegant at all. Much less nice. I think the best way would be streaming the 
video and do various reads of it, showing different parts of the video on 
each of the clients.

So far I only know of vlc. Is there any other software which can do streaming 
of video only (I don't need sound) to multiple clients (on the same machine)?

Besides, I don't need it to travel multiple routers or anything like that.
My only constraint is that it has to be real time, all the clients need to 
synchronized.


-- 
Javier Krausbeck [EMAIL PROTECTED]
-- 
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: Real time video streaming (was: Help playing simultaneously splitted videos (sort of))

2007-05-13 Thread Grant Edwards
On 2007-05-13, Javier Krausbeck [EMAIL PROTECTED] wrote:

 mkfifo f1
 mkfifo f2
 mkfifo f3
 mplayer  whatever_options_you_want_and_make_it_write_to_stdout  | tee f1

 | tee f2 f3

 and then reading from f1, f2, f3 doesn't do the thing you want ?

 Just one caveat, mplayer does not do output to stdout,

So use another fifo.

-- 
Grant Edwards
[EMAIL PROTECTED]

-- 
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] I want to configure an email server

2007-05-13 Thread Alan
On Sun, May 13, 2007 at 05:44:45PM -0400, Dan Cowsill wrote:
 But I have no idea where to start.  Frankly, so many possibilities and
 incredibly complex setups have deterred me somewhat from embarking on
 this venture.  However, I would very much like to have my very own email
 server under my own domain name.
 
 So what I'm asking you guys for is documentation, software packages,
 recommended setups, anything you can add.  I am not looking for an all
 in one HOWTO (and don't really expect to find one with such a
 complicated process) and I am willing to RTFM when necessary.

The question is more what sort of setup do you want?  Are you setting up
just for one domain, for more than one, doing hosting, etc etc?  A
default postfix install with the /etc/postfix/main.cf edited to make
sure that the domain is correct will give you what you want for an email
system, but won't really do it if you're doing multiple domains, or want
a database backend, etc.   A bit more info would help.  There's all
sorts of info out there, you just need to know what you're looking for
first :)

-- 
Alan [EMAIL PROTECTED] - http://arcterex.net

Beware of computer programmers that carry screwdrivers. -- Unknown


pgpHjoCmUdGJq.pgp
Description: PGP signature


Re: [gentoo-user] Re: Real time video streaming (was: Help playing simultaneously splitted videos (sort of))

2007-05-13 Thread Boyd Stephen Smith Jr.
On Sunday 13 May 2007, Grant Edwards [EMAIL PROTECTED] wrote 
about '[gentoo-user]  Re: Real time video streaming (was: Help playing 
simultaneously splitted videos (sort of))':
 On 2007-05-13, Javier Krausbeck [EMAIL PROTECTED] wrote:
  mkfifo f1
  mkfifo f2
  mkfifo f3
  mplayer  whatever_options_you_want_and_make_it_write_to_stdout  | tee
  f1
 
  | tee f2 f3
 
  Just one caveat, mplayer does not do output to stdout,

 So use another fifo.

To elaborate:

mkfifo queue
mkfifo vo1
mkfifo vo2
mkfifo vo3
mplayer lots_of_options_and_write_output_to queue 
tee vo1  queue | tee vo2  vo3 

or similar.

-- 
Boyd Stephen Smith Jr. ,= ,-_-. =. 
[EMAIL PROTECTED]  ((_/)o o(\_))
ICQ: 514984 YM/AIM: DaTwinkDaddy   `-'(. .)`-' 
http://iguanasuicide.org/  \_/ 


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


Re: [gentoo-user] iptables configuration problem

2007-05-13 Thread Chuanwen Wu

2007/5/13, Fabio A Correa [EMAIL PROTECTED]:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello Wu,

Instead of the commands you posted, you should use

echo 1  /proc/sys/net/ipv4/ip_forward
iptables --table nat -A POSTROUTING -s 192.168.8.0/24 -j MASQUERADE


I have tried.But still not work.
Here is the information after execute your advice:
-
[EMAIL PROTECTED] ~]# echo 1  /proc/sys/net/ipv4/ip_forward
[EMAIL PROTECTED] ~]# iptables --table nat -A POSTROUTING -s
192.168.1.0/24 -j MASQUERADE
[EMAIL PROTECTED] ~]# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source   destination

Chain FORWARD (policy ACCEPT)
target prot opt source   destination

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination
[EMAIL PROTECTED] ~]# iptables -L -t nat
Chain PREROUTING (policy ACCEPT)
target prot opt source   destination

Chain POSTROUTING (policy ACCEPT)
target prot opt source   destination
MASQUERADE  all  --  192.168.1.0/24   anywhere

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination

--
Then in my other PCs,I still can't ping the website outside.
Why?



Long explanation:

The first command enables the kernel to _forward_ packets from eth0 to eth1 and 
vice versa. To
do the actual forwarding, the second command is used:

- --table nat : Network address translation table.
- -A POSTROUTING for altering packets as they are about to go out, after it is 
determined that
they are to be forwarded by means of the first instruction.
- -j MASQUERADE Masquerade the addresses of computer in the subnet with the 
address of the routing
computer.

The kernel takes care of the subtle details on masquerading.

I hope this helps!!!

- --
Fabio A. Correa D.

Physics Dept, Universidad Nacional, Bogota, Colombia
[EMAIL PROTECTED]
[EMAIL PROTECTED] [EMAIL PROTECTED]
My webpage and OpenPGP key at http://facorread.150m.com
[EMAIL PROTECTED] is not working anymore!!!
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFGRyjPYOZCB4zf2uQRAp2eAJwIYrXAQqldgZjRN0u+uDOW8t/aTgCeOQOb
RTmVGHOHQQWUzVxkZomHhHo=
=xvIZ
-END PGP SIGNATURE-
--
[EMAIL PROTECTED] mailing list



Thank you for your details!!!

--
wcw
--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] I want to configure an email server

2007-05-13 Thread Sean Johnson
Dan Cowsill wrote:
 However, I would very much like to have my very own email
 server under my own domain name.

You should really have a static public IP address for that.

 So what I'm asking you guys for is documentation, software packages,
 recommended setups, anything you can add.  I am not looking for an all
 in one HOWTO (and don't really expect to find one with such a
 complicated process) and I am willing to RTFM when necessary.

Personally, I'm a qmail person, and he Life with qmail documentation
is pretty good:

  http://www.lifewithqmail.org/lwq.html

The package name for qmail has changed recently under Gentoo, so you
would emerge netqmail instead of qmail. There are many different mta
softwares out there. I would suggest trying a few of them, and see which
one seems to fit your thought process the best. For me it's qmail, but
you might be more of an exim or postfix or (god forbid) sendmail person.

Good luck!

-Sean



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] iptables configuration problem

2007-05-13 Thread Norberto Bensa
Chuanwen Wu wrote:
 Chain POSTROUTING (policy ACCEPT)
 target prot opt source   destination
 MASQUERADE  all  --  192.168.1.0/24   anywhere

 Chain OUTPUT (policy ACCEPT)
 target prot opt source   destination

 ---
--- Then in my other PCs,I still can't ping the website outside.
 Why?

Have setup a default gateway in those boxes?

-- 
[EMAIL PROTECTED] mailing list