[gentoo-user] Laptop fails boot on battery

2008-06-23 Thread dexters84
I have an Asus Z92F laptop - a modification of Asus A6F model ICH7 chipset CoreDuo T2250 1,5GB DDR2 Intel 950 graphics ATA100 HD 80GB My problem with it is that it fails to boot into linux when working only on battery. When I plug the power supply and do a fresh boot kernel loads properly.

Re: [gentoo-user] Batch audio converter?

2008-04-27 Thread dexters84
Tweak below script a little and it should do the trick - should work the way it is - but I haven't tested it, it's a port of mine video encoder for multiple directories. #!/bin/bash new_files=$(find /path/to/input/ -iname *.ogg) inc=1 for x in $new_files do filename[$inc]=$x

Re: [gentoo-user] Batch audio converter?

2008-04-27 Thread dexters84
There was a bug in my pervious script #!/bin/bash new_files=$(find /path/to/input/ -iname *.ogg) inc=1 for x in $new_files do filename[$inc]=$x char_count=$(stat $filename[$inc]|wc -c) name_end=$(($char_count - 6)) out_name[$inc]=$(*stat*

Re: [gentoo-user] Why does emerge ignore APACHE2_MPMS?

2008-04-21 Thread dexters84
AFAIK only one mpm at once is valid regards dexter [EMAIL PROTECTED] pisze: My make.conf has this line: APACHE2_MPMS=mpm-prefork mpm-worker which used to be good enough, but now emerge ignores it: emerge -ptuvDN world | grep apache [ebuild R ] www-servers/apache-2.2.8-r2

Re: [gentoo-user] Bluetooth-Hotspot

2008-04-15 Thread dexters84
I've did this thing a while ago. Bluetooth router is a cool thing, unfortunatelly only in theory. To solve Your problem, look in /etc/bluetooth directory and check the manual of bluez - there are a couple of pre-up and post-up scritps that solve the problem. I did manage to get bt router

Re: [gentoo-user]

2008-04-04 Thread dexters84
Neil Bothwick pisze: On Fri, 04 Apr 2008 01:37:10 -0500, Dale wrote: Maybe it was in braille? o_O No, my screen was still smooth as well as blank :) I'd say the answer is a definite maybe. There is nothing to laugh about - it's M$'s new mail filtering system. if [ $user =

[gentoo-user] ffmpeg ffserver problems

2008-03-29 Thread dexters84
I'm trying to create a streaming server using ffmpeg, and I'm stuck, so please advise if You can. I've tested : * *ffmpeg-0.4.9_p20080326* * *ffmpeg-0.4.9_p20070616* Both versions behave the same way. This is my emerge -pv ffmpeg /media-video/ffmpeg-0.4.9_p20080326 USE=a52 aac amr

Re: [gentoo-user] Re: jffs2 on gentoo

2008-03-18 Thread dexters84
Hi In my system I didn't bother with any of embedded file systems - I've created 1 GB ext2 partition (journalising in ext3 increases read/write count), and it worked just like any other hard drive. Bios detected correct capacity - I was lucky with that, but in case where BIOS doesn't detect

Re: [gentoo-user] jffs2 on gentoo

2008-03-15 Thread dexters84
Florian Philipp pisze: On Fri, 2008-03-14 at 18:27 +, James wrote: Hello, I have a firewall that is built pretty minimally on a P3 and and old 4 gig ide disk: /dev/hda3 2068348 1668104400244 81% / /dev/hda1 100728 40452 60276 41% /boot I have

Re: [gentoo-user] Re: jffs2 on gentoo

2008-03-15 Thread dexters84
Stroller pisze: On 15 Mar 2008, at 20:17, James wrote: dexters84 dexters84 at gmail.com writes: Other things you have to remeber concern file system usage, you musn't create swap partition, disable local syslog, log rotation, turn everything except desired daemons etc. Where did

[gentoo-user] Apache 2 + portage

2008-03-02 Thread dexters84
Hi I'm a little confused as long as new Apache use flags are concerned. With old Apache versions ( pre 2.2.6) all valid flags shown in *emerge -pv Apache* could have been set in /etc/portage/package.use in following format *www-servers/apache flag flag -foo -bar flag* and life was great :)