[gentoo-user] Nvidia fast writing

2003-05-28 Thread Patrick Marquetecken
Hi,

I have followd the 'bughunting tread' and have notist that my fast writing also is not 
working, and its enabled !.

Is this because the host-bridge does not Support fast writing ?

cat /proc/driver/nvidia/agp/status
Status:  Enabled
Driver:  NVIDIA
AGP Rate:8x
Fast Writes: Disabled
SBA: Disabled

cat /proc/driver/nvidia/agp/card
Fast Writes: Supported
SBA: Supported
AGP Rates:   8x 4x
Registers:   0x1f000e1b:0x1f004102

cat /etc/modules.d/nvidia
alias char-major-195 nvidia
alias /dev/nvidiactl char-major-195
options nvidia NVreg_EnableAGPSBA=1 NVreg_EnableAGPFW=1

cat /proc/driver/nvidia/agp/host-bridge
Host Bridge: PCI device 1039:0648 (Silicon Integrated Systems [SiS])
Fast Writes: Not Supported
SBA: Supported
AGP Rates:   8x 4x
Registers:   0x1f004e0b:0x0d02


-- 
 Logic is the beginning of wisdom; not the end. 
  Spock (Star Trek VI) 
 
 PGP Key: http://users.pandora.be/rivendell/marquetp.gpg
 Fingerprint = 2792 057F C445 9486 F932 3AEA D3A3 1B0C 1059 273B
 Registered Linux User #44550
 http://counter.li.org


pgp0.pgp
Description: PGP signature


[gentoo-user] Stopping and continuing an emerge?

2003-05-28 Thread Mats Lidell
Hi,

Is there some way to stop an emerge and then finish it later?

Yours
-- 
%% Mats


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Stopping and continuing an emerge?

2003-05-28 Thread Patrick Börjesson
 Is there some way to stop an emerge and then finish it later?

emerge --resume

Patrick Börjesson

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Stopping and continuing an emerge?

2003-05-28 Thread Tom Wesley
On Wednesday 28 May 2003 08:44, Mats Lidell wrote:
 Hi,

 Is there some way to stop an emerge and then finish it later?


Ctrl+Z will suspend the shell, then typing fgreturn should continue it.

-- 
Tom Wesley
Please encrypt personal replies if possible.


pgp0.pgp
Description: signature


[gentoo-user] PORTDIR_OVERLAY ignored

2003-05-28 Thread Simeon Walker
Hello all,

I have an odd problem. This morning I thought I would try out an
evolution 1.4 rc1 ebuild. I extracted a bunch of files to my
/usr/local/portage and tried 'emerge -s evolution', only the
old one was found.
None of the ebuild I have under /usr/local/portage are
recognised. If I try to emerge one by specifying the ebuild
file it won't be able to emerge any of its dependancies. It's
like I have not set the PORTDIR_OVERLAY in my make.conf, but
I did. I have portage 2.0.48.
Here are my changes to make.conf:

USE=apache2 -apache dga dvd gd -gpm -gtk -alsa -xmms gtk2 gphoto2 ldap imap 
oci8 pda samba tiff -motif
CFLAGS=-march=athlon-xp -O3
CXXFLAGS=${CFLAGS}
ACCEPT_KEYWORDS=~x86
PORTAGE_TMPDIR=/home
PORT_LOGDIR=/var/log/emerge
PORTDIR_OVERLAY=/usr/local/portage
SYNC=rsync://rsync.uk.gentoo.org/gentoo-portage/
PORTAGE_NICENESS=3
GENTOO_MIRRORS=http://www.ibiblio.org/gentoo 
http://www.mirror.ac.uk/sites/www.ibiblio.org/gentoo/ 
rsync://rsync.gentoo.skynet.be/gentoo/ http://ftp.
snt.utwente.nl/pub/os/linux/gentoo http://gentoo.linux.no/;

Does anyone else see this problem? Any suggestions?

Regards,
Simeon
--
Simeon Walker,  email: [EMAIL PROTECTED]
School of Biological Sciences,  phone: +44 (0)1248 383702
University of Wales, Bangor,fax: +44 (0)1248 382569
Gwynedd, LL57 2UW, UK.  www: http://biology.bangor.ac.uk/
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] PORTDIR_OVERLAY ignored

2003-05-28 Thread Paul de Vrieze
On Wednesday 28 May 2003 11:30, Simeon Walker wrote:
 GENTOO_MIRRORS=http://www.ibiblio.org/gentoo
 http://www.mirror.ac.uk/sites/www.ibiblio.org/gentoo/
 rsync://rsync.gentoo.skynet.be/gentoo/ http://ftp.
 snt.utwente.nl/pub/os/linux/gentoo http://gentoo.linux.no/;

Why do you put the slowest mirror first? A mirror such as ftp.snt.utwente.nl 
is a lot faster than the ibiblio mirror, which is overloaded.

Paul

-- 
Paul de Vrieze
Researcher
Mail: [EMAIL PROTECTED]
Homepage: http://www.cs.kun.nl/~pauldv


pgp0.pgp
Description: signature


[gentoo-user] Java error

2003-05-28 Thread bryce verdier
I'm new to the whole java language. Anyway, i'm using kdevelop as my ide, and 
i have this simple java code:

class Main{

public static void main( String[] args ){
System.out.println( Hello, world! );
}
}


and when i try to compile it i get this error:

Exception in thread main java.lang.NoClassDefFoundError: Main

I know this may not be the right place to talk about this... but any help 
would be appreciated.

thanks,
bryce



--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Java error

2003-05-28 Thread Gwendolyn van der Linden
 I'm new to the whole java language. Anyway, i'm using
 kdevelop as my ide, and
 i have this simple java code:

 class Main{

 public static void main( String[] args ){
 System.out.println( Hello, world! );
 }
 }


 and when i try to compile it i get this error:

 Exception in thread main java.lang.NoClassDefFoundError: Main

This is indeed the wrong place to discuss basic java programming, but
anyway.

I suspect you issued:

java Main.java

rather than:

javac Main.java(compile)
java Main  (run)

Gwendolyn.



--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Java error

2003-05-28 Thread Andrew Kirilenko
Hello!

On 03:05 Wed 28 May, bryce verdier wrote:
 I'm new to the whole java language. Anyway, i'm using kdevelop as my ide, and 
 i have this simple java code:
 
 class Main{
 
 public static void main( String[] args ){
 System.out.println( Hello, world! );
 }
 }
 
 
 and when i try to compile it i get this error:
 
 Exception in thread main java.lang.NoClassDefFoundError: Main
 
 I know this may not be the right place to talk about this... but any help 
 would be appreciated.
 

public class Main

Purchace good java book, or better purchace good C++ book - java isn't
good language at all.

Best regards,
Andrew.

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] PORTDIR_OVERLAY ignored

2003-05-28 Thread Simeon Walker
On 28/05/03 10:53, Paul de Vrieze wrote:
On Wednesday 28 May 2003 11:30, Simeon Walker wrote:

GENTOO_MIRRORS=http://www.ibiblio.org/gentoo
http://www.mirror.ac.uk/sites/www.ibiblio.org/gentoo/
rsync://rsync.gentoo.skynet.be/gentoo/ http://ftp.
snt.utwente.nl/pub/os/linux/gentoo http://gentoo.linux.no/;


Why do you put the slowest mirror first? A mirror such as ftp.snt.utwente.nl 
is a lot faster than the ibiblio mirror, which is overloaded.

Paul

I admit I haven't paid attention to that line. I selected them
with mirrorselect but didn't think to edit the order later.
Sim

--
Simeon Walker,  email: [EMAIL PROTECTED]
School of Biological Sciences,  phone: +44 (0)1248 383702
University of Wales, Bangor,fax: +44 (0)1248 382569
Gwynedd, LL57 2UW, UK.  www: http://biology.bangor.ac.uk/
--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Java error

2003-05-28 Thread Ragu
Bryce,

This error occurs, when the classpath is not set properly.
You have to set the classpath before running/compiling your java
files.

export CLASSPATH=$CLASSPATH:current-dir

Hope this helps you out.

Cheers
Ragu

- Original Message -
From: bryce verdier [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, May 28, 2003 3:35 PM
Subject: [gentoo-user] Java error


 I'm new to the whole java language. Anyway, i'm using kdevelop as my ide,
and
 i have this simple java code:

 class Main{

 public static void main( String[] args ){
 System.out.println( Hello, world! );
 }
 }


 and when i try to compile it i get this error:

 Exception in thread main java.lang.NoClassDefFoundError: Main

 I know this may not be the right place to talk about this... but any help
 would be appreciated.

 thanks,
 bryce



 --
 [EMAIL PROTECTED] mailing list


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Java error

2003-05-28 Thread Erik S. Johansen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 28 May 2003 13:17, Andrew Kirilenko wrote:
 Purchace good java book, or better purchace good C++ book - java isn't
 good language at all.

That's bait if I've ever seen it ;)

java *was* a bad language... in it's current state it runs at 70-80% of 
natively compiled code speed, and has features that definitely makes it the 
right choice for a lot of tasks.


- --Erik S. Johansen
http://www.darkfallonline.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE+1JTKds9m9uhAobARAkVZAJ9GLSb5L8Mwy1kh35h+3KqnGg0jvQCdHyVn
CplCPleDWUwZc454Mv/zAT4=
=+pg5
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Java error

2003-05-28 Thread Andrew Kirilenko
Hello!

On 13:51 Wed 28 May, Erik S. Johansen wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On Wednesday 28 May 2003 13:17, Andrew Kirilenko wrote:
  Purchace good java book, or better purchace good C++ book - java isn't
  good language at all.
 
 That's bait if I've ever seen it ;)
 
 java *was* a bad language... in it's current state it runs at 70-80% of 
 natively compiled code speed, and has features that definitely makes it the 
 right choice for a lot of tasks.
 

Can you please paste java code here, which will calc md5 sum? I'd like
to get 5d41402abc4b2a76b9719d911017c592 from hello.

Best regards,
Andrew.

--
[EMAIL PROTECTED] mailing list



[gentoo-user] Re: PORTDIR_OVERLAY ignored

2003-05-28 Thread Einar S. Idsø
On Wed, 28 May 2003 10:30:08 +0100
Simeon Walker [EMAIL PROTECTED] wrote:
 Hello all,
 
 I have an odd problem. This morning I thought I would try out an
 evolution 1.4 rc1 ebuild. I extracted a bunch of files to my
 /usr/local/portage and tried 'emerge -s evolution', only the
 old one was found.

/usr/local/portage should mirror the structure of /usr/portage. So make
a dir called /usr/local/portage/net-mail/evolution and put your
evolution ebuild in there. 

Einar

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Java error

2003-05-28 Thread Erik S. Johansen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Wednesday 28 May 2003 14:01, Andrew Kirilenko wrote:
 Can you please paste java code here, which will calc md5 sum? I'd like
 to get 5d41402abc4b2a76b9719d911017c592 from hello.

I could mock something up, but it's besides the point actually. Any good 
programmer chooses the toolset that best suits the task ahead. I've been 
programming in a multitude of languages over the years, and the one thing 
I've learned is that there simply isn't any best language

Currently I use C++ as a general purpose language, I use borland's delphi or 
kylix if i want a quick GUI, i use java if i want to build something that 
need to run as is on a few platforms. 

At the company where I work (ref. sig), I'm responsible for the networking 
core code, and as such use C++ for most my work due to strong ties to OS 
specifics. The people that work with the high-level logic parts use java, 
avoiding a memory management hell in an extremely complex design. The windows 
launcher for our product's currently a Delphi thing, because it took 30 mins 
to get a decent GUI for it. The core number crunching and graphics engine is 
C++, to squeeze as much performance out of it as possible.

My point is, you can't simply claim that a language is bad. It might be bad 
for your purpose, but that doesn't mean it's a generally bad language. Sure, 
there might be failed languages that doesn't suit any particular task well, 
but most of the languages that're being used today are better than others for 
certain tasks.

Now, back to MD5. If i needed MD5 functionality, I'd use OpenSSL's 
implementation. It's premade, it works. I could ofcourse write a MD5 
implementation using shellscript and e.g. awk, but that would definitely be a 
bad choice of tools. I could write it in java if the main purpose of the 
project at hand was better suited to java. Or, I could write it in C or C++ 
if MD5 functionality was the core of the project, and I didn't want to depend 
on external libraries.


But, let's not make this a flame war. You're just as entitled to your opinion 
as I am to mine, so let's just agree to disagree ;)

- --Erik S. Johansen
http://www.darkfallonline.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE+1Jsods9m9uhAobARAkNHAJ9KdlPQyxhnC2JggIuoscx8z492KgCdH+ot
yZd+/9fcuTvcw1+BmzzbmQU=
=UPEe
-END PGP SIGNATURE-


--
[EMAIL PROTECTED] mailing list



RE: [gentoo-user] Java error

2003-05-28 Thread Gwendolyn van der Linden
 BTW, why are you using outlook express? Don't tell me, you
 are running it under wine :)

I'm running regular Outlook on w2k. Company policy... But, to my
defence, I run fetchmail/pine at home.

Gwendolyn.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] bughunting

2003-05-28 Thread Keppy
On Wednesday, May 28, 2003, at 02:00 AM, Ernie Schroder wrote:

OK so your card will do 4X AGP but your motherboard only 2X. IIRC, 
there
is an option in /etc/modules.d/nvidia where you can force 2X AGP on VIA
chipsets. There may be something similar for AMD. Post the above file
and we might find something there. A quick search on google found
http://gatos.sourceforge.net/livid-ati/2001-October/msg00027.html
which seems to indicate that you mak be locked to AGP 1X due to lockups
experienced with your chipset. You might look to see if there is a line
there that seems to limitAGP. Comment it out and restart X. Do:
cat /proc/driver/nvidia/agp/status again and see if that helps. Then 
run
glxgears for 5 minutes or so to see if you lock up. If it locks, 1X is
going to be your limit, I'm afraid.
Or do what I did and replace my nVidia AGP card with a PCI one. 
Performance seems the same (not much of a gamer) but best of all, no 
more lockups!

100% Microsoft and Intel free
[EMAIL PROTECTED]:~$ cat /usr/src/linux/CREDITS | egrep -i 
'(microsoft.com|intel.com)'
E: [EMAIL PROTECTED]
E: [EMAIL PROTECTED]
E: [EMAIL PROTECTED]

|eppy

--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] List etiquette (Was: Java error)

2003-05-28 Thread MAL
bryce verdier wrote:
I'm new to the whole java language. Anyway, i'm using kdevelop as my ide, and 
i have this simple java code:

class Main{

public static void main( String[] args ){
System.out.println( Hello, world! );
}
}
and when i try to compile it i get this error:

Exception in thread main java.lang.NoClassDefFoundError: Main

I know this may not be the right place to talk about this... but any help 
would be appreciated.

thanks,
bryce
Could you please refrain from replying to other people's messages, to 
start a new thread.  It screws up the threading in most people's 
mailers, (see attached image).

It happens because most decent mailers display threads by using the 
'In-Reply-To' header, which in your case refers to Patrick's mail on 
Nvidia fast writing, because you clicked reply while viewing that mail, 
then proceeded to write a completely new mail.

Hope this doesn't come accross as a whinge, but it's simply bad 
etiquette and makes following threads harder.

Cheers,
MAL
inline: thread_abuse.gif--
[EMAIL PROTECTED] mailing list

Re: [gentoo-user] GCC 3.3

2003-05-28 Thread Dhruba Bandopadhyay
On Wed, 2003-05-28 at 02:16, Brett Campbell wrote:
 Hey thanks a lot for the reply.  I'm currently building 3.2.3 as i write this (gcc 
 is huge!).  I've also modified my cflags to be much more aggressive.  When i rebuild 
 world, this will most likely break things; do you comply/agree?  Even though i'm now 
 using -Os instead of -O3, i've also included some other -fFLAGS.  I'm sure some are 
 redundant (as implied by -march=pentium4).
 
 Basically:
 CFLAGS=-s -march=pentium4 -O2 -pipe -mfpmath=sse -msse -mmmx -fomit-frame-pointer 
 -frerun-cse-after-loop -frerun-loop-opt -fthread-jumps -fforce-addr 
 -falign-functions=4
 Not quite sure what is going to happen, but i'm building gcc 3.2.3 with these flags 
 right now, and all seems well ;-).  Please feel free to 
 comment/flame/threaten-with-death/etc.  Thanks!

I would personally suggest that you go with traditional cflags such as
below or at least cflags that were milder for rebuilding of world to
rule out any adverse effect on base system.

CFLAGS=-march=pentium4 -O3 -pipe -fomit-frame-pointer

Have a look at this quote in the mozilla ebuild.

# Recently there has been a lot of stability problem in Gentoo-land.
# Many
# things can be the cause to this, but I believe that it is due to gcc3
# still having issues with optimizations, or with it not filtering bad
# combinations (protecting the user maybe from himeself) yet.
#
# This can clearly be seen in large builds like glibc, where too
aggressive
# CFLAGS cause the tests to fail miserbly.
#
# Quote from Nick Jones [EMAIL PROTECTED], who in my opinion
# knows what he is talking about:
#
#   People really shouldn't force code-specific options on... It's a
#   bad idea. The -march options aren't just to look pretty. They enable
#   options that are sensible (and include sse,mmx,3dnow when
apropriate).
#
# The next command strips CFLAGS and CXXFLAGS from nearly all flags.  If
# you do not like it, comment it, but do not bugreport if you run into
# problems.

Safe cflags will not only rule out the possibility of compilation
failure and instability due to agressive cflags but will also allow you
to bug report.  Also, with new versions of gcc optimisation options
might change and I'm going to wait until 3.3 is rolled out before I look
at the optimisation manual again.

By the way, I forgot to mention this but I rebuilt base system (emerge
-e system) and upgraded gcc to 3.2.3 with pentium3 flags so there was no
possibility of incorrect code being generated.

Good luck.


--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Nvidia fast writing

2003-05-28 Thread Spider
begin  quote
On Wed, 28 May 2003 09:25:30 +0200
Patrick Marquetecken [EMAIL PROTECTED] wrote:

 Hi,
 
 I have followd the 'bughunting tread' and have notist that my fast
 writing also is not working, and its enabled !.
 
 Is this because the host-bridge does not Support fast writing ?
 

Yes, Fast Writes are known to cause unstabilities in some systems, so
some have it default at off .. Via kt133 based systems would also have
it forced off in the driver because of via chipset troubles.

So, you cannot enable Fast Writes, but you should be able to enable Side
Band Addressing, and I'm not sure why it isn't so.

Since it is on in the nvidia module config,  have you run modules-update
and then restarted the machine?(sorry, unloading the AGP driver and
loading it again isn't enough in most cases)

 cat /proc/driver/nvidia/agp/status
 Status:  Enabled
 Driver:  NVIDIA
 AGP Rate:8x
 Fast Writes: Disabled
 SBA: Disabled
 
 cat /proc/driver/nvidia/agp/card
 Fast Writes: Supported
 SBA: Supported
 AGP Rates:   8x 4x
 Registers:   0x1f000e1b:0x1f004102
 
 cat /proc/driver/nvidia/agp/host-bridge
 Host Bridge: PCI device 1039:0648 (Silicon Integrated Systems
 [SiS]) Fast Writes: Not Supported
 SBA: Supported
 AGP Rates:   8x 4x
 Registers:   0x1f004e0b:0x0d02
 
 


You may also rummage around in your BIOS and see if you can find
FastWrites enable there.



//Spider

-- 
begin  .signature
This is a .signature virus! Please copy me into your .signature!
See Microsoft KB Article Q265230 for more information.
end


pgp0.pgp
Description: PGP signature


[gentoo-user] Apm problems

2003-05-28 Thread Meka[ni]
First, when I boot LiveCD, apm works ok, but when I enable it in kernel and 
boot from
HDD, halt -p doesn't power off. The last message is Power off but nothing happens. 
I've
tried to include the Real BIOS apm call (or something like that) in kernel, but it
doesn't work.
Another problem is console blanking. When it's enabled, my system freezes when 
it spends
some time with blanked conole. Same thing happens if I try to go to console from X. 
Now,
I've rebuilded it as a module, and it still doesn;t work. When apm is off none of this
happens. My box is Celeron (Mendocino) 300A, S3 Savage3D AGP, 224MB SDRAM. What to do?


Meka[ni]

--
[EMAIL PROTECTED] mailing list



Re: [gentoo-user] Nvidia fast writing

2003-05-28 Thread brett holcomb
Was X running while you did the commands below?

On Wed, 28 May 2003 09:25:30 +0200
 Patrick Marquetecken [EMAIL PROTECTED] 
wrote:
Hi,

I have followd the 'bughunting tread' and have notist 
that my fast writing also is not working, and its enabled 
!.

Is this because the host-bridge does not Support fast 
writing ?

cat /proc/driver/nvidia/agp/status
Status:  Enabled
Driver:  NVIDIA
AGP Rate:8x
Fast Writes: Disabled
SBA: Disabled
cat /proc/driver/nvidia/agp/card
Fast Writes: Supported
SBA: Supported
AGP Rates:   8x 4x
Registers:   0x1f000e1b:0x1f004102
cat /etc/modules.d/nvidia
alias char-major-195 nvidia
alias /dev/nvidiactl char-major-195
options nvidia NVreg_EnableAGPSBA=1 NVreg_EnableAGPFW=1
cat /proc/driver/nvidia/agp/host-bridge
Host Bridge: PCI device 1039:0648 (Silicon Integrated 
Systems [SiS])
Fast Writes: Not Supported
SBA: Supported
AGP Rates:   8x 4x
Registers:   0x1f004e0b:0x0d02

--
 Logic is the beginning of wisdom; not the end. 
  Spock (Star Trek VI) 
 
 PGP Key: http://users.pandora.be/rivendell/marquetp.gpg
 Fingerprint = 2792 057F C445 9486 F932 3AEA D3A3 1B0C 
1059 273B
 Registered Linux User #44550
 http://counter.li.org


--
[EMAIL PROTECTED] mailing list


Re: [gentoo-user] Nvidia fast writing

2003-05-28 Thread Patrick Marquetecken
Yes,

from the start i have one wierd thing with my laptop. If i start X and exit it, i can 
see the console text, but a second time starting X and exing it will leave my screen 
always black.
So in my default runlevel i have gmd when i choose shutdown computer in gnome the 
screen goes black and i can't see what is happening.

Patrick


On Wed, 28 May 2003 07:58:38 -0400
brett holcomb [EMAIL PROTECTED] wrote:

 Was X running while you did the commands below?
 
snip
-- 
 Logic is the beginning of wisdom; not the end. 
  Spock (Star Trek VI) 
 
 PGP Key: http://users.pandora.be/rivendell/marquetp.gpg
 Fingerprint = 2792 057F C445 9486 F932 3AEA D3A3 1B0C 1059 273B
 Registered Linux User #44550
 http://counter.li.org


pgp0.pgp
Description: PGP signature


Re: [gentoo-user] Apm problems

2003-05-28 Thread Jesse Jacobs
Hello Meka,

I had a similar problem, no lockup though.
I tried ACPI instead which powers off the boxen.
Yes, It's marked as experimental and will replace APM But my experiences
have been great.

HTH,
j


Meka[ni] said:
   First, when I boot LiveCD, apm works ok, but when I enable it in
 kernel
 and boot from
 HDD, halt -p doesn't power off. The last message is Power off but
 nothing happens. I've tried to include the Real BIOS apm call (or
 something like that) in kernel, but it doesn't work.
   Another problem is console blanking. When it's enabled, my system
 freezes when it spends
 some time with blanked conole. Same thing happens if I try to go to
 console from X. Now, I've rebuilded it as a module, and it still
 doesn;t work. When apm is off none of this happens. My box is Celeron
 (Mendocino) 300A, S3 Savage3D AGP, 224MB SDRAM. What to do?

 
 Meka[ni]

 --
 [EMAIL PROTECTED] mailing list




--
[EMAIL PROTECTED] mailing list



[gentoo-user] Having 2 cablemodems?

2003-05-28 Thread Keith Hamilton
Title: Message



Hi,

 I 
have 2 cable modems and I want to combine them together with Gentoo and have 
Gentoo manage packets between the two nic's and combine the bandwidth for the 
network. Is this possible?

-- 
Keith