Re: kernel-source-2.6.0-test1?

2003-08-14 Thread Marino Fernandez
On Monday 04 August 2003 4:20 pm, Rich Puhek wrote:

>
> Very handy to compile on one machine, scp kernal_image.servername.1
> servername:/usr/local/src and dpkg -i the image...
>
There is no doubt about the advantages of compiling in one machine for many... 
but if you only have one, then I do not see the point.

Also see my previous post


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: kernel-source-2.6.0-test1?

2003-08-05 Thread Marino Fernandez
On Monday 04 August 2003 3:43 pm, Noah L. Meyerhans wrote:
> On Mon, Aug 04, 2003 at 03:29:51PM -0500, Marino Fernandez wrote:
> > I cannot help you with the debian way... that I found more complex than
> > the regular way.
> >
> > Download a pristine kernel (get 2.6.0-test2)
> > cd /usr/src
> > Untar kernel in /usr/src
> > mv linux linux~
> > ln -s linux-2.6.0-test2 linux
> > make menuconfig or make xconfig
> > make
> > make modules_install
> > Put bzimage in /boot, rename it vmlinuz-2.6.0-test2
> > Update lilo or grub
> > reboot
>
> Please tell me how that is less complex than
>
> $ cd 
> $ fakeroot make-kpkg --config menu kernel_image
> $ sudo dpkg -i ../kernel-image-.deb
> $ sudo reboot
>
> I just don't get it.
>
This discussion if kind of pointless. I've done it both ways, both work, 
but...

It is more lines the stardard way, I give you that. But it is trivial since 
most of the time you spend recompiling your kernel is spent... well, 
compiling.

And then you just have to cut an paste the kernel to wherever it goes, and 
deal with the boot loader, as oposed to installing a large package, ... In my 
case I feel that it takes longer if I do it "the debian way", and also you 
loose track of whats going on.

In conclussion, I think "the standard way" as opposed to "the debian way" 
gives you a clear idea of whats going on, more control over the process, as 
opposed to the "click'n go" approach that debian uses. But Rich is right... 
if you have to install 10 kernels on 10 different machines, having a nice 
package you can just click on and forget about it is more efficient. I am 
just talking from the perspective of the end user with a couple of 
machines... I guess I should have stated that from the begining.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: kernel-source-2.6.0-test1?

2003-08-04 Thread Marino Fernandez
On Monday 04 August 2003 8:57 am, François Chenais wrote:
> doesn't work :-|
>
>
>
> tanna:~/tmp/kernel-image-2.6.0-test1-i386-2.6.0-test1# apt-get build-dep
> kernel-image-2.6.0-test1-i386 Reading Package Lists... Done
> Building Dependency Tree... Done
> E: Build-Depends dependency for kernel-image-2.6.0-test1-i386 cannot be
> satisfied because the package kernel-source-2.6.0-test1 cannot be found
>
>
I cannot help you with the debian way... that I found more complex than the 
regular way.

Download a pristine kernel (get 2.6.0-test2)
cd /usr/src
Untar kernel in /usr/src
mv linux linux~
ln -s linux-2.6.0-test2 linux
make menuconfig or make xconfig
make
make modules_install
Put bzimage in /boot, rename it vmlinuz-2.6.0-test2
Update lilo or grub
reboot

PS
I assume you have the proper entries in fstab (for sysfs) and the new package 
to handle modules (if not to this last one do apt-get instal 
modules-init-tools)

PPS
Check and post your questions to the kernel mailing list... you are more 
likely to get help there.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: 2.6.test02 fails to compile...riscom8.o

2003-08-04 Thread Marino Fernandez
On Monday 04 August 2003 4:05 pm, A. Loonstra wrote:
> I've installed a debian woody system with a gnome2.2 backport. Basically
> it's a fresh install. I wanted to compile 2.6-test02 and created a
> config from config-2.4.18-686-smp config and enabling the 2.6 features
> by hand.
>
> When I run make-kpkg kernel-image I fails around riscom8.o.

It fails to compile a lot of modules, If you do not need them just deselect 
them and keep going... then, if you need one of the, bad luck... My 
impression is that most of those modules are old stuff you may not need.

I compiled this kernel, and works pretty well in my machine, except for some 
bugs with apm/acpi; like they sayd, is a beta version... but let me tell you 
this, it is faster!!!, you can notize the difference playing some games like 
quake2 or the like... not that I play them oftem, what a waste of time!, I 
just do it for benchmarking purposes ;-).


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0-test2 minor issues. Works well!!! [tux/logo fix]

2003-08-02 Thread Marino Fernandez
On Friday 01 August 2003 11:45 pm, Tom White wrote:
> I think that you need to have framebuffer support for your video card
> compiled into the kernel to get the penguin to show up after lilo loads
> the second-stage bootloader.  I'm not sure what other options need to be
> set.
>
I found out what was the problem with the logo in the kernel mail list. 
Aparently is a small error in the code. Here is the solution:

> Logo has dissapeared after 2.6.0-test1-mm2.
Is the missing of fbdev patch.
at line 328 of drivers/video/cfbimgblt.c change

   328  } else if (image->depth == bpp)

to

   328  } else if (image->depth <= bpp)

and it will works again.

I just cut and pasted this from another email. I tried it and it works.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Activating ACPI supend and ACPI Hibernate in klaptop

2003-07-31 Thread Marino Fernandez
Thank you everybody, specially Micha and Mark. OK, this almost worked.

This is my setting. On a Kernel 2.6.0-test2 I have this built-inl:
CONFIG_PM=y
CONFIG_SOFTWARE_SUSPEND=y
CONFIG_ACPI=y
# CONFIG_ACPI_HT_ONLY is not set
CONFIG_ACPI_BOOT=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_SLEEP_PROC_FS=y
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_FAN=y
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_BUS=y
CONFIG_ACPI_INTERPRETER=y
CONFIG_ACPI_EC=y
CONFIG_ACPI_POWER=y
CONFIG_ACPI_PCI=y
CONFIG_ACPI_SYSTEM=y

$ cat /proc/acpi/sleep gives me back:
S0 S3 S4 S5

sudo echo 3 > /proc/acpi/sleep
two beeps, black screen within one second, computer off... The problem is 
waking it up. If I hit the power button (the way I use to wake up the machine 
with APM/suspend and MSWindowsACPI/suspend), the screen lights up (but still 
is black, the fan turns on, and that's it. I have to reset computer (turn it 
off and reboot).

sudo echo 4 > /proc/acpi/sleep
Bunch of processes "entered the refrigerator"
Freeing memory.
Black screen, but still powered up, then after a minute I get this text:

[nosave c040a000] critical section/:done (62163 pages copied)
uhci-hcd :00:1d.0: Resume
uhci-hcd :00:1d.1: Resume
eth0: Setting half-duplex based on auto-negotiated partner ability 
hda: wake up request initiated, waiting for !BSY
hda: start_power_step (step: 1000)
hda: completing PM request, Resume
writting data to swap (62163 pages)

And again thats it, hangs and I have to turn it off and reboot.

Any ideas?

PS. I do not know if acpid is running, when I try to fire it up I get this: 
can't open /proc/acpi/event: No such file or directory




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Activating ACPI supend and ACPI Hibernate in klaptop

2003-07-29 Thread Marino Fernandez
On Tuesday 29 July 2003 11:19 pm, Mark Roach wrote:
> On Tue, 2003-07-29 at 23:43, Marino Fernandez wrote:
> > On Tuesday 29 July 2003 4:05 pm, Mark Roach wrote:
>
> [snip]
>
> > > My laptop only gives:
> > > $ cat /proc/acpi/sleep
> > > S0 S3 S4 S5
> > >
> > > so no acpi sleep for me. If you have a similar situation, try swsusp
> >
> > Thank you Mark
> >
> > I have the same as you do in /proc/acpi/sleep
> >
> > How do you do or try swsusp... how do you suspend the machine?.
>
> I don't personally, I tried it once, didn't work easily, so I just leave
> the thing running :-) Getting versions of acpi and swsusp for the same
> kernel, modifying osl.c to import my modified dsdt, etc. I am lazy.
>
> If you are more ambitious than I, look at swsusp.sf.net or just do like
> I do and wait for the 2.6 series kernels to be released with all the
> hard stuff done for you... well, most of the hard stuff anyway
>
I am running 2.6.0-test2 (with all the acpi stuff compiled into the kernel), 
that is the reason I am perplexed, I though I had everything set, but 
apparently klaptop needs some command to suspend or hibernate my laptop. 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Activating ACPI supend and ACPI Hibernate in klaptop

2003-07-29 Thread Marino Fernandez
On Tuesday 29 July 2003 4:05 pm, Mark Roach wrote:
> On Tue, 2003-07-29 at 09:32, Marino Fernandez wrote:
> > On Tuesday 29 July 2003 6:02 am, Wim De Smet wrote:
> > > On Tue, 29 Jul 2003 01:24:05 -0500
> > >
> > > Marino Fernandez <[EMAIL PROTECTED]> wrote:
>
> [snip]
>my machine to go to sleep!
>
> Look here for starters.
> http://acpi.sourceforge.net/documentation/sleep.html
>
> My laptop only gives:
> $ cat /proc/acpi/sleep
> S0 S3 S4 S5
>
> so no acpi sleep for me. If you have a similar situation, try swsusp
>
Thank you Mark

I have the same as you do in /proc/acpi/sleep

How do you do or try swsusp... how do you suspend the machine?.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Activating ACPI supend and ACPI Hibernate in klaptop

2003-07-29 Thread Marino Fernandez
On Tuesday 29 July 2003 6:02 am, Wim De Smet wrote:
> On Tue, 29 Jul 2003 01:24:05 -0500
>
> Marino Fernandez <[EMAIL PROTECTED]> wrote:
> > Does anybody knows how to do this?
> >
> > I've learned in the net that, for example in Mandrake 9.1 you have to
> > install a package with some scripts (i.e. for suspend
> > suspend-scripts), and that latter you can invoke them from
> > /usr/bin/pmsuspend... again, this in mandrake.
> >
> > In klaptop there is the configure acpi option, and then it ask for you
> > to enter the comands "your system uses for 'standby' (temporary
> > sleep), 'suspend' (suspend-to-RAM) and 'hibernate'
> > (supend-to-disk)"...
> >
> > Anybody knows how to do this in debian?
> >
> > Thanks
>
> AFAIK all you need is the necessary kernel drivers and the acpid
> package. Everything should work then.
> (I don't really know if acpi is available in the stock kernels, since
> it's marked experimental in 2.4.2x)
>
I compiled ACPI support in the kernel on 2.6.0-test2, and I have acpid already 
up... I just do not know how to tell my machine to go to sleep!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Activating ACPI supend and ACPI Hibernate in klaptop

2003-07-28 Thread Marino Fernandez
Does anybody knows how to do this?

I've learned in the net that, for example in Mandrake 9.1 you have to install 
a package with some scripts (i.e. for suspend suspend-scripts), and that 
latter you can invoke them from /usr/bin/pmsuspend... again, this in 
mandrake.

In klaptop there is the configure acpi option, and then it ask for you to 
enter the comands "your system uses for 'standby' (temporary sleep), 
'suspend' (suspend-to-RAM) and 'hibernate' (supend-to-disk)"... 

Anybody knows how to do this in debian?

Thanks


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Kernel 2.6.0-test2 minor issues. Works well!!!

2003-07-27 Thread Marino Fernandez
I've just compiled this kernel, and I am running with it. Some issues I had 
before with test1 are gone (for example I was unable to unmount my ethernet 
card upon reboot).

I have to say that everything seem to be working well, that ACPI seem to work 
(although no thermal monitoring in my machine). My PCMCIA and USB port seem 
to be working OK.

I just have 2 issues:

1) I have not been able to enable the linux (Tux) logo during the initial 
bootup, except in monochomatic (an it is very ugly). Anybody know how to 
enable this (the little penguin on the left upper corner during boot) As 
you see not a life or death issue.

2) The second issue is that, KLaptop lets you configure ACPI, and to enable 
Standby, Suspend and Hibernate (suspend to disk). But apparently you have to 
enter a comand in a little dialog box. Does anybody knows were can I find 
them... or just tell me.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: kernel compilation question

2003-07-27 Thread Marino Fernandez
On Sunday 27 July 2003 9:47 pm, Rodney D. Myers wrote:
> Now that I'm fully moved over to Debian :-), I'm looking at start
> tinkering with kernel compilation.
>
> I would "assume" I'd need the kernel-source package of my choice? But it
> are there any other package(s) I'd need to download to get started?
>
> Thanks
I am not trying to say RTFM but read Debian Reference 
(http://www.debian.org/doc/). There is a chapter about compiling the 
kernel... Really, you need to read this.

Once said that, I do not use Debians packages to compile the kernel... they do 
everything for you... I feel that if you are going to compile your own kernel 
you should be aware of every step, but that's just me... and it is really 
easy either way (Debians way or the manual way).

So the only package I need is the kernel per se, and gcc (2.95 or 3.2, I 
always have problems with 3.3, and I seem to remember that this is a known 
issue).

Also, not relying on Debian packagest allows you to use really up to date 
versions of the kernel. For example I am running with a 2.6.0-test2 kernel, 
released just a few hours!!

In Debian Reference there is an explanation for compiling the kernel "the 
debian way" and for compiling it manually... and to be honest, I think both 
ways are very easy... the "hard" part is not the compilation per se, or 
making the proper changes so your system boots OK (ALWAYS REMEMBER TO UPDATE 
LILO OR GRUB), but to configure the kernel (make menuconfig or however you do 
it) properly... but this, like everything, is a trial an error thing... and 
very instructive about the innards of the kernel.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: 2.6.0-test1 PCMCIA requires two insertions

2003-07-25 Thread Marino Fernandez
On Friday 25 July 2003 10:33 am, Christopher Swingley wrote:
> Greetings
>
> Marino helped me to find what I was doing wrong with my PCMCIA modem and
> 2.4.6-test1.  Thanks!  But something strange is still going on.
>
> When I start up the laptop with an ethernet card in the slot, it doesn't
> recognize it on boot, despite having the driver enabled in the kernel.
> If I remove the card and re-insert it, it finds the device and sets it
> up.  If I remove it and insert the modem card, nothing happens.  Remove
> and insert again and it loads the modem.
>
> In short, to make PCMCIA devices work, it appears I need to insert them
> twice.  The second time it recognizes them and works it's magic.
>
> Anyone know why this is?
>
Why you don't do lsmod when it does not work and then lsmod when it works to 
see which modules are loaded/installed... what are the differences... then 
try to install the module you think you need when the PCMCIA modem does not 
work  with insmod... i.e. insmod themodule... and if that works just add the 
name of that module to /etc/modules.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: books-manuals

2003-07-25 Thread Marino Fernandez
On Friday 25 July 2003 11:30 am, Bret Comstock Waldow wrote:
> On Fri, 2003-07-25 at 12:01, Tiago Cunha wrote:
> > Hy debian users
> >
> > A question from a beginner.
> >
> > Any recomendations on a good Debian-linux guide, with administration
> > tools and basic setups??
>
Go here:
http://www.debian.org/doc/#manuals

Debian Reference is very nice, a must read.
Also User's Guide.

You can download them as PDFs and print them


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Linux 2.6.0-test1, PCMCIA modem

2003-07-24 Thread Marino Fernandez
On Thursday 24 July 2003 10:38 pm, Marino Fernandez wrote:
> On Thursday 24 July 2003 4:29 pm, Christopher Swingley wrote:
> > Greetings!
> >
> > I'm trying to figure out how to get 2.6.0-test1 running on a laptop.
> > I've gotten it to run fine on many desktop systems, but on the laptop I
> > just can't seem to figure out what I'm supposed to do in order to get a
> > PCMCIA modem to work (the laptop has internal eth0, and a Winmodem).
>
> I have a PCMCIA modem and it works with 2.6.0test1
>
> In make menuconfig, look for Bus options, then:
> Support for hotplugable devices   y
>   PCMCIA/Cardbus support
>
>   PCMCIA/CB support   y
>   yenta compatible..  M
>   i82092  y
>   i82365  y
>   Databook TCIC   M
>
Sorry, I missed this:
In character devices, under Serial drivers enable (I choose built in) 
8250/16550 PCMCIA


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Linux 2.6.0-test1, PCMCIA modem

2003-07-24 Thread Marino Fernandez
On Thursday 24 July 2003 4:29 pm, Christopher Swingley wrote:
> Greetings!
>
> I'm trying to figure out how to get 2.6.0-test1 running on a laptop.
> I've gotten it to run fine on many desktop systems, but on the laptop I
> just can't seem to figure out what I'm supposed to do in order to get a
> PCMCIA modem to work (the laptop has internal eth0, and a Winmodem).


I have a PCMCIA modem and it works with 2.6.0test1

In make menuconfig, look for Bus options, then:
Support for hotplugable devices y
PCMCIA/Cardbus support

PCMCIA/CB support   y
yenta compatible..  M
i82092  y
i82365  y
Databook TCIC   M

Now, this is the module tree for my PCMCIA device with 2.4.21
PCMCIA
pcmcia_core
yenta_socket
ds
serial_cs
ds
serial

And this is the one with 2.6.0:

PCMCIA built in (does not show with lsmod)
yenta_socket

Note also that serial_cd and serial are (I think) 2.4.x specific modules; I 
have this in /etc/modules:

#Kernel 2.4.x
rtc
#power management
apm power_off=1

#pcmcia
serial_cs

#usb
usb-uhci

i810_rng
8139too
agpgart
i830

#sound
#snd-intel8x0
i810_audio

#Kernel common
ntfs
nls_iso8859-1
nls_cp437
yenta_socket
af_packet
#autofs4
#irport

#Kernel 2.6.x
usbcore
uhci-hcd   <-- note that this module is the same as usb-uhci, but this is the 
2.6.xs version. I guess the same applies for serial_cs


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel image 2.6.0 test

2003-07-22 Thread Marino Fernandez
On Tuesday 22 July 2003 2:52 pm, Leo Spalteholz wrote:
> On July 22, 2003 12:33 pm, Chris Anderson wrote:
> > On Tue, 2003-07-22 at 13:37, Christopher Swingley wrote:
> > > Leo,
> > >
> > > * Leo Spalteholz <[EMAIL PROTECTED]> [2003-Jul-22 07:42 AKDT]:
> > > > Anyone have experience wrt the reliability of this test kernel?
> > >
> > > I've been running 2.6.0-test1 (custom compiled by me for my
> > > hardware) for 8 days on my workstation.  It does a fair amount of
> > > http / php / mysql stuff, as well as handling my daily tasks.  No
> > > problems (knock wood) so far, and it's interactivity during heavy
> > > disk usage is much better than 2.4.xx.
> > >
> > > Can't say anything about the Debian package or grub since I don't
> > > use either.
> > >
> > > Chris
> > > --
> > > Christopher S. Swingley  email: [EMAIL PROTECTED]
> > > IARC -- Frontier Program Please use encryption.  GPG key
> > > at: University of Alaska Fairbanks
> > > www.frontier.iarc.uaf.edu/~cswingle/
> >
> > I've also been using 2.6.0-test1 since it was released and I have
> > had no problems with it.
>
> sounds good.  It seems the debian package is a little borked for me..
> Its spits out a bunch of messages about /dev/root2 not being a device
> and then can't open /dev/console at which point it panics..
>
> Apparently devfs is a little confused. I'll read up on how to set that
> up properly..
>
> Can't wait to be running this kernel.  It sounds very promising.
>
I posted a mini how to recently about compiling this kernel... you may want to 
take a look. I prefer to compile and install by hand, I feel more in control. 
It is really simple, and even more important, it teaches you a loot about 
your system.
> ~leo


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0test1 Mini-HOWTO

2003-07-22 Thread Marino Fernandez
On Monday 21 July 2003 11:31 pm, arief_mulya wrote:
> Dear Marino,
>
>
> Nice HOWTO.
>
> I like to know, if the change to fstab (sysfs and usbfs) will affect how
> 2.4* kernel works? Have you tried that?

Yes, I already changed fstabs and I do not have any problems using usb devices 
under 2.4.21... I just printed a page on my USB printer a moment ago.

Actually the only error mesages I get is when 2.6 tries to load a module like 
usb-uhci (named UHCI-hcd under 2.6) as per /etc/modules entry... but 
apparently this does not have any impact... I just wonder why they changed 
the module names.

> About ALSA, it's perfectly working the last time I try them. But it
> seems we need some change in the alsa init scripts. For me, the solution
> was just compiled alsa into the kernel.

Sorry, I just forgot to compile support for my graphic card under ALSA... I 
corrected that and now ALSA works

>
> Now ACPI. I think it work. But acpid and acpi package doesn't recognize
> the existance, but I haven't try with /sys enabled yet. And another
> thing, I got hang on resume with ACPI.

OK, I'll try ACPI soon... we'll see.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0test1 Mini-HOWTO

2003-07-22 Thread Marino Fernandez
On Monday 21 July 2003 11:16 pm, Marino Fernandez wrote:
Fixed:
A) ALSA fixed... just forgot to compile supoort for my kernel.
TODO:
A) Enable USB support from startup... I guess adding usbcore and uhci-hcd to 
/et/modules will do...
B) try ACPI


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0test1 Mini-HOWTO

2003-07-22 Thread Marino Fernandez
On Tuesday 22 July 2003 3:50 pm, Micha Feigin wrote:
> The usbfs does matter if you also use usb file system on 2.4 since the
> name has been changed from usbdevfs. There is back support for the old
> name but I don't belive that forward support ;)

I do not think so. I changed /etc/fstab like this:

proc  /proc  proc  defaults  0  0
usbdevfs  /proc/bus/usb  usbdevfs   defaults  0 0
devpts  /dev/pts  devpts mode=0620,gid=5   0 0
sysfs  /sys  sysfs   defaults   0   0
none  /proc/bus/usb  usbfs  defaults  0  0

And as I said, I printed stuff with my USB printer using 2.4.21, I downloaded 
photos from my USB camera in 2.4.21 and 2.6.0... I have not tried to sync my 
palm yet.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Kernel 2.6.0test1 Mini-HOWTO

2003-07-21 Thread Marino Fernandez
After much fiddling, I finally made this kernel work fine with my machine 
(Fujitsu C 7651 lifebook (Laptop)), Pentium III, I830m integrated graphics, 
PCMCIA modem (thanks to shitty winmodem).

1) make a /sys folder
2) enter this in fstab:
sysfs  /sys   sysfs   defaults 00
none  /proc/bus/usb  usbfs  defaults  0  0
3) apt-get instal modules-init-tools
4) Copy .config file from the previous kernel (mine is 2.4.21)... although I
am not 100% sure this is needed.
5) make menuconfig (deselect the many many modules that won't compile; my
previous kernel was based on a Knoppix install, with all sorts of modules
that I don't really need):

Loadable module support
Enable loadable module support  y
Module unloadingy
Kmody
#You can enable ACPI here... I have not tried it
Power Management Options
Power management supporty
APM BIOS supportM
#This section is specific for my machine, to enable my PCMCIA modem
Bus options 
Support for hotplugable devices y
PCMCIA/Cardbus support
PCMCIA/CB support   y
yenta compatible..  M
i82092  y
i82365  y
Databook TCIC   M
Input device support
Input devices   y
Mouse interface y
Legacy /dev/psaux   y
Horizontal screen resol 1024
Vertical screen resol   768
Event interface y
Keyboards   y
AT keyboard support y <-- without this you won't have 
keyboard support
Micey<-- nor mouse support 
(touchpad in my case).
PS/2 mouse  y
Char devices
Virtual teerminal   y
Support for console VT  y
Serial drivers
8250/16550 PCMCIA   y <-- I need this for my PCMCIA card
/dev/agpgart supporty
Intel 440LX/BX/GX, I8xx...  y <-- Specific for my graphic card
DRM y
I810y <-- Specific for my 
graphic card
I830M... 865G   y <-- Specific for my graphic 
card
Graphic support
Support for framebuffer dev y
VESA VGA graph sup  y
Console display driver sup
VGA text consoley
Video mode select support   y
Framebuffer console support y <-- You need this to enable 
framebuffer 
support in the console
Sound   y
ALSA
ALSAy <-- This does not work for 
me, no sound; I only get sound  if I 
enable OSS
OSS API emuly
OSS ? <-- see above. I 
only get sound with OSS
#I need all of the following to be able to use my sony USB digital camera and 
to mount it as /dev/sda1
USB support
support for usb M
USB dev fs  y
EHCI HCDM
OHCI HCDM
UHCI HCDM
USB mass storageM
8) make, make modules_install
9) Change grub/lilo

Notes.
To use USB
load usbcore, uhci-hcd, usb-storage
 mount -t usbfs none /proc/bus/usb

TODO:
A) Fix/enable ALSA
B) Try ACPI



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Kernel 2.6.0. Dealing with modules

2003-07-20 Thread Marino Fernandez
I recently compiled a 2.6 kernel, and it sems to be working.

I noticed that my pcmcia modem and my usb digital cameras are not recognized 
(I used to mount my camera in /dev/sda1 as a removable mass storage device).

The question really is, how do you manage modules with this kernel, to start 
fiddling with things (other than putting them in /etc/modules)... what is 
init-modules-utils for?


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0 compiling problems [almost solved]

2003-07-19 Thread Marino Fernandez
On Saturday 19 July 2003 1:18 pm, Torquil Macdonald Sørensen wrote:
> On Saturday 19 July 2003 17:30, Marino Fernandez wrote:
> > On Saturday 19 July 2003 2:20 am, Marino Fernandez wrote:
> > > On Saturday 19 July 2003 2:16 am, Marino Fernandez wrote:
> > > > On Saturday 19 July 2003 1:59 am, Paul Johnson wrote:
> > > > > On Sat, Jul 19, 2003 at 01:43:19AM -0500, Marino Fernandez wrote:
> > > > > > I used gcc 3.3 and 2.95 to compile a 2.6 kernel.
> >
> > 
For whoever interested in compiling the new kernel, so far this is what I;ve 
done, and works almost perfectly.

1) make a /sys folder, enter this in fstab:
sysfs  /sys  sysfs   defaults   0   0
2) apt-get instal modules-init-tools
3) Copy .config file from the previous kernel (mine is 2.4.21)... although I 
am not 100% sure this is needed.
4) make menuconfig (deselect the many many modules that won't compile; my 
previous kernel was based on a Knoppix install, with all sorts of modules 
that I don't really need), make (no need to do make bzImage or make dep) and 
make modules_install
5) Change grub/lilo
6) boot... shit, black screen, no kernel messages... oh well here is the x 
server ... SHIT!!, no keyboard nor mouse (in my case is actually a touchpad).

7) Add this to the .configure file...
CONFIG_INPUT=y
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_FB=y
CONFIG_FB_VESA=y
CONFIG_FB_3DFX=y
CONFIG_VGA_CONSOLE=y
8) make, make modules_install
9) Change grub/lilo
10) boot... shit, still black screen on bootup, no kernel messages nor 
penguin... here it comes X... OK, now keyboard and touchpad work yeah. 

So, if anybody can tell me how to fix the framebuffer so I can see thge little 
penguin and the kernel messages, I'll appreciate it.






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0 compiling problems [semi solved]

2003-07-19 Thread Marino Fernandez
On Saturday 19 July 2003 2:20 am, Marino Fernandez wrote:
> On Saturday 19 July 2003 2:16 am, Marino Fernandez wrote:
> > On Saturday 19 July 2003 1:59 am, Paul Johnson wrote:
> > > On Sat, Jul 19, 2003 at 01:43:19AM -0500, Marino Fernandez wrote:
> > > > I used gcc 3.3 and 2.95 to compile a 2.6 kernel.
> > >
I kind of solve this problem. I had used a generic .config file from a debian 
install with lost of modules I did'nt need. I had to deselect a lot of 
modules that for whatever reason would'nt compile (almost all gave me similar 
error mesages.

So I finally compiles the modules, placed bzImage --> vmlinuz in /boot, 
changed grug, etc, etc, etc, rebooted, and I got a black screen, with no 
output, the HD was doing somenthing, but I was unable to see anything.

Oh well...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0 compiling problems

2003-07-19 Thread Marino Fernandez
On Saturday 19 July 2003 8:48 am, Roberto Sanchez wrote:
>  --- Marino Fernandez <[EMAIL PROTECTED]> escribió:
> > I already posted this to the kernel mailing list, but I am trying here so
> > see
> >
> > if I am lucky.
> >
> > I have knoppix 3.2/Debian testing/stable.
> >
> > I used gcc 3.3 and 2.95 to compile a 2.6 kernel. I just copied the
> > .config file form my previous kernel and pasted it on the new kernel src
> > folder (my older kernel being a 2.4.21).  I get this at the end of make
> > modules:
>
> Make sure you have this package installed:
>
> module-init-tools - tools for managing Linux kernel modules
>
I have it.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0 compiling problems

2003-07-19 Thread Marino Fernandez
On Saturday 19 July 2003 2:16 am, Marino Fernandez wrote:
> On Saturday 19 July 2003 1:59 am, Paul Johnson wrote:
> > On Sat, Jul 19, 2003 at 01:43:19AM -0500, Marino Fernandez wrote:
> > > I used gcc 3.3 and 2.95 to compile a 2.6 kernel.
> >
> > Check your sources!  2.6 isn't out.
>
> I meant 2.6.0-test1

Try here:

ftp://ftp.kernel.org/pub/linux/kernel/v2.6


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0 compiling problems

2003-07-19 Thread Marino Fernandez
On Saturday 19 July 2003 1:59 am, Paul Johnson wrote:
> On Sat, Jul 19, 2003 at 01:43:19AM -0500, Marino Fernandez wrote:
> > I used gcc 3.3 and 2.95 to compile a 2.6 kernel.
>
> Check your sources!  2.6 isn't out.
>
I meant 2.6.0-test1


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel 2.6.0 compiling problems

2003-07-19 Thread Marino Fernandez
On Saturday 19 July 2003 1:59 am, Paul Johnson wrote:
> On Sat, Jul 19, 2003 at 01:43:19AM -0500, Marino Fernandez wrote:
> > I used gcc 3.3 and 2.95 to compile a 2.6 kernel.
>
> Check your sources!  2.6 isn't out.

I meant 2.6.0-test1


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Kernel 2.6.0 compiling problems

2003-07-18 Thread Marino Fernandez
I already posted this to the kernel mailing list, but I am trying here so see 
if I am lucky.

I have knoppix 3.2/Debian testing/stable.

I used gcc 3.3 and 2.95 to compile a 2.6 kernel. I just copied the .config 
file form my previous kernel and pasted it on the new kernel src folder (my 
older kernel being a 2.4.21).  I get this at the end of make modules:

  CC [M]  drivers/block/ps2esdi.o
drivers/block/ps2esdi.c:182: redefinition of `init_module'
drivers/block/ps2esdi.c:168: `init_module' previously defined here
drivers/block/ps2esdi.c: In function `init_module':
drivers/block/ps2esdi.c:186: warning: initialization from incompatible pointer 
type
drivers/block/ps2esdi.c:189: dereferencing pointer to incomplete type
drivers/block/ps2esdi.c:189: dereferencing pointer to incomplete type
drivers/block/ps2esdi.c:190: dereferencing pointer to incomplete type
drivers/block/ps2esdi.c:193: dereferencing pointer to incomplete type
drivers/block/ps2esdi.c:194: dereferencing pointer to incomplete type
drivers/block/ps2esdi.c:196: dereferencing pointer to incomplete type
drivers/block/ps2esdi.c: In function `cleanup_module':
drivers/block/ps2esdi.c:204: warning: implicit declaration of function 
`mca_mark_as_unused'
drivers/block/ps2esdi.c:212: `i' undeclared (first use in this function)
drivers/block/ps2esdi.c:212: (Each undeclared identifier is reported only once
drivers/block/ps2esdi.c:212: for each function it appears in.)
drivers/block/ps2esdi.c: In function `ps2esdi_geninit':
drivers/block/ps2esdi.c:295: warning: implicit declaration of function 
`mca_find_adapter'
drivers/block/ps2esdi.c:295: `MCA_NOTFOUND' undeclared (first use in this 
function)
drivers/block/ps2esdi.c:306: warning: implicit declaration of function 
`mca_set_adapter_name'
drivers/block/ps2esdi.c:312: warning: implicit declaration of function 
`mca_mark_as_used'
drivers/block/ps2esdi.c:313: warning: passing arg 2 of 
`mca_set_adapter_procfn' from incompatible pointer type
drivers/block/ps2esdi.c:330: warning: implicit declaration of function 
`mca_read_stored_pos'
drivers/block/ps2esdi.c: In function `do_ps2esdi_request':
drivers/block/ps2esdi.c:502: warning: long long unsigned int format, different 
type arg (arg 3)
{standard input}: Assembler messages:
{standard input}:223: Error: symbol `init_module' is already defined
make[2]: *** [drivers/block/ps2esdi.o] Error 1
make[1]: *** [drivers/block] Error 2
make: *** [drivers] Error 2

Luego con make modules_install

  INSTALL fs/adfs/adfs.ko
cp: cannot stat `fs/adfs/adfs.ko': No such file or directory
make[1]: *** [fs/adfs/adfs.ko] Error 1
make: *** [_modinst_] Error 2

Any ideas?.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Mozilla 1.4-2 and bookmark folders

2003-07-18 Thread Marino Fernandez
On Friday 18 July 2003 1:54 am, Shawn Lamson wrote:
> On Fri, July 18 at 12:27 AM EDT
>
> Ron Johnson <[EMAIL PROTECTED]> wrote:
> >Is anyone besides me having trouble creating new folders or moving
> >bookmarks around?
>
> I am on mozilla 1.4-3 and yes.
>
Me too, since 1.3, same with 1.4-1... However if I install Mozilla from a 
tarball they work well. No Idea how to solve this issue.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Un-KDE-ifying myself

2003-07-14 Thread Marino Fernandez

> Is there a way to get KMail to use Navigator as its browser when I click
> links in email?  I've been manually copying the links to Navigator but
> sometimes I forget?
>
I have same problem, no idea how to solve it.

> If KMail can't be changed then should I migrate to a different mail client?
> If so, what clients are KMail-like and uncoupled from KDE?
>
Ximian evolution... there is an article today in Slashdot about the upcomming 
version.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: what plugins i needed?

2003-07-14 Thread Marino Fernandez
On Monday 14 July 2003 1:33 am, Andreas Janssen wrote:
> Hello
>
> Marino Fernandez wrote:
> > Zip zip... shoot I dont know the proper way... let me see
> >
> >> Oh, and please take a look at
> >> http://learn.to/quote
> >> especially part 2.1 "How much should I quote?".
> >
> > uhm!, I do not speak german. Damn!
>
> The text is available in english (and also dutch). Just click on the word
> "English" in line 5 of the main page...
>
Yeah!!!, that did it. Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Cloning a debian system

2003-07-14 Thread Marino Fernandez

> > dpkg --get-selections >> packages
> >
> > and on the new machine
> >
> > cat packages | dpkg --set-selections
>
> Hooray for the useless invocation of cat! =) Why not this one?
>
> dpkg --get-selections | cat > packages?
>
> Personally, I like this:
>
> dpkg --get-selections | ssh new-machine dpkg --set-selections
>
Very interesting. For backing up purposes, can this be used  to "restore" your 
machine to a prior state based on the "packages" file (down to reinstalling 
the same versions of the packages, and removing any new ones).



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: what plugins i needed?

2003-07-13 Thread Marino Fernandez
Zip zip... shoot I dont know the proper way... let me see

>
> Oh, and please take a look at
> http://learn.to/quote
> especially part 2.1 "How much should I quote?".

uhm!, I do not speak german. Damn!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Spamassassin became extemely slow after upgrade to latest version (2.55-2)

2003-07-11 Thread Marino Fernandez
On Saturday 12 July 2003 12:35 am, Steve Lamb wrote:
> On Sat, 12 Jul 2003 00:30:23 -0500
>
> Marino Fernandez <[EMAIL PROTECTED]> wrote:
> > I am not sure about using bayesian filtering.. I think so... can you not
> > use it?, or, is it worth using SA without it?.
> > I have several BAYES_* files in my /home/user/.spamassassin folder, so I
> > guess it is enabled.
>
> Well, SA as of 2.50 included Bayesian filtering into it.  If it is
> enabled for autolearning there might be some delay as the message is
> scanned by the Bayesian filter and the databases updated.
>
> The easiest way to know if you have it up and running is to look at the
> size of the bayes_msgcount file in ~/.spamassassin.  There will be 1 dot
> for every message scanned by the filter so the filesize is the number of
> messages scanned.  If it's more than, say, a few dozen and the datestamp on
> the file is recent then, yeah, you have it running.

I have 1376 characters, and the last time stam is fron yesterday... so I guess 
it has been running.

By the way, I sent a bug report... we'll see...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Spamassassin became extemely slow after upgrade to latest version (2.55-2)

2003-07-11 Thread Marino Fernandez
On Saturday 12 July 2003 12:17 am, Steve Lamb wrote:
> On Sat, 12 Jul 2003 00:09:00 -0500
>
> Marino Fernandez <[EMAIL PROTECTED]> wrote:
> > I get my mail with postfix/kmail... before it wasn't fast, but it was
> > ok... 100 messages in a minute or two. Now it takes one minute just for
> > one message.
>
> As an extra datapoint I, too, am having slow processing with 2.55.  I
> don't know what is causing it.  Are you using the Bayesian filtering at
> all? I just enabled with with autolearn.  However even messages which are
> not withing the autolearn threshold are slow in processing.  I'm averaging
> 30s/message.  Whoops, forgot to mention this is with exim 4.2 and sa-exim
> 3.0.

I am not sure about using bayesian filtering.. I think so... can you not use 
it?, or, is it worth using SA without it?.
I have several BAYES_* files in my /home/user/.spamassassin folder, so I guess 
it is enabled.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Spamassassin became extemely slow after upgrade to latest version (2.55-2)

2003-07-11 Thread Marino Fernandez
I just upgraded spamassassin from 2.53 to 2.55, and now it takes ages to 
download my email...

I get my mail with postfix/kmail... before it wasn't fast, but it was ok... 
100 messages in a minute or two. Now it takes one minute just for one 
message.

I created a filter to select all incoming mail ant pipe it through 
spamassassin or spamc (with spamd running), and a second one to look at the 
headers for x-spam, etc.

I dpkg --purged spamassassin and installed the previous version, but still it 
is too slow.

Thanks.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xine playback is jerky

2003-07-10 Thread Marino Fernandez
On Wednesday 09 July 2003 8:50 pm, Kevin McKinley wrote:
> On Wed, 9 Jul 2003 18:29:37 -0500
>
> Marino Fernandez <[EMAIL PROTECTED]> wrote:
> > Run xine-check again, do you still get those errors?.
>
> Yes, even though I can watch the DVDs.

It must be that you do not have that xine-config script Install 
libxine-dev to get it and then you wont have those errors...

Otherwise it seem to me that you are all set to enjoy your videos in a linux 
box.

Now you should think on getting MPlayer and Freevo... MPlayer has a very nice 
GUI, that pops up form the bottom of the screen if you need it when playing 
in full screen mode... and Freevo is a TiVO/Media center replacement, uses 
MPlayer to play videos, and lets you organize your videos, record TV programs 
watch TV (just like TiVO)... although I have to admit that I havent tried 
those features yet.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: what plugins i needed?

2003-07-10 Thread Marino Fernandez
On Thursday 10 July 2003 8:57 am, Andreas Janssen wrote:
> Hello
>
> Rus Foster wrote:
> > On Thu, 10 Jul 2003, James Ng Yuen Sum wrote:
> >> What plugins i need to download when i viewed a web sites with mozilla
> >> with the following error message?
> >>
> >> "This page contains information of a type (audio/x-pn-realaudio-plugin)
> >> that can only be viewed with teh appropriate Plug-in."
> >
> > You will need the real-audio player from http:///www.real.com or
> >
> > apt-get install realplayer
>
> Mplayer (with the mplayer mozilla plugin) also supports this content type.
> Both packages are available for apt, add the following line to your
> sources.list if you use Woody:
> deb http://marillat.free.fr stable main
>
You can also use gxine, but you have to compile this one. It is a real player 
substitute.

However you still need the real player codecs (same with MPlayer if I am not 
mistaken), like cook3260.dll and others. They go into into /usr/lib/win32 (I 
guess like everything you can specify another location if you want)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xine playback is jerky

2003-07-09 Thread Marino Fernandez
On Wednesday 09 July 2003 1:20 pm, you wrote:
> On Wed, 9 Jul 2003 10:22:02 -0500
>
> Marino Fernandez <[EMAIL PROTECTED]> wrote:
> > Do you have DMA enabled... open a shell and do:
> > xine-check
>
> This results in several "no ___ plugins" messages:
>
> [OUCH!!] There are no input plugins...
> [OUCH!!] There are no demux plugins...
> [OUCH!!] There are no decoder plugins...
> [OUCH!!] There are no video_out plugins...
> [OUCH!!] There are no audio_out plugins...
>
> Each suggested that I reinstall xine-lib. Don't you get these?
>
Now that I remember I used to get these error messages with xine-check... 
apparently it complained about some xine-config file. I solved this 
installing libxine-dev (usntable).

Run xine-check again, do you still get those errors?.

> Debian doesn't have lib-xine; it has xinelib0 and xinelib1.
>
I installed libxine1 and xine-ui (unstable) with apt-get... it installed some 
other files that were needed

> I purged both xine-ui and libxine1 and reinstalled from unstable; this
> fixed the herky-jerky problem.
>
> But now I see beginning "Warning" and "Interviews do not reflect the
> opinions of the studio" screens, which I wasn't seeing before. :(
>
No clue. Can you see your videos?. What codecs so you have?, do you have 
libdvdcss installed?

> Kevin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: How to play CD and video in debian?

2003-07-09 Thread Marino Fernandez
On Monday 07 July 2003 10:45 pm, Roberto Sanchez wrote:
>  --- James Ng Yuen Sum <[EMAIL PROTECTED]> escribió:
> > I am using kde3.1.2, but the system cannot play CD and video CD.
> > when i insert a CD in the cdrom, and doing
> > "mount /dev/cdrom"
> > there is some error,
> > mount: wrong fs type, bad option, bad superblock on /dev/cdrom,
> > or too many mounted file systems
> > and running kscd getting error messages.
> >
AudioCD are not supposed to be mounted. Just play them, use any CD playing 
program... try xmms

> > when i insert video cd, i can mount the video cd, but cannot use xine-ui
> > to see the movie. I can do so when i am using RedHat, therefore, i think
> > that the problem is under my configuraton.
> >
> > Can anyone help me to solve this problem?
> >
Do xine-check... what is the output.
It is possible that your /dev/dvd symlink points to the wrong block device (as 
somebody just mentioned in a prevoius post); check in /dev/dvd... where does 
it point.
Just to be sure, what do you have on fstab for your cd/dvd?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xine playback is jerky

2003-07-09 Thread Marino Fernandez
On Tuesday 08 July 2003 10:10 pm, Kevin McKinley wrote:
> I have been able to play DVDs on my testing-sid system until tonight, when
> I panicked and reinstalled xine:
>
> ii  libxine1   1-beta9-1  the xine video/media player library,
> binary
> ii  xine-ui0.9.21-2   the xine video player, user interface
>
>
> Now the video playback is jerky (although the sound is smooth). These are
> the last messages in the terminal window:
>

Do you have DMA enabled... open a shell and do:
xine-check

I just noticed this is not usefull to check your DMA status... but you can 
check the status of xine; if everything is OK then do this:

cat /proc/ide/piix

I get this:

[EMAIL PROTECTED]:/proc/ide$ cat piix

Controller: 0

Intel PIIX4 Ultra 100 Chipset.
--- Primary Channel  Secondary Channel 
-
 enabled  enabled
--- drive0 - drive1  drive0 -- drive1 
--
DMA enabled:yes  no  yes   no
UDMA enabled:   yes  no  yes   no
UDMA enabled:   5X   2 X
UDMA
DMA
PIO

My CD/DVD is drive0 in the secondary channel (oh, and yes, I have an IDE 
CD/DVD on SCSI emulation); as you can see I have DMA enabled on it... if you 
do not have it enabled do this (as root):

hdparm -d1 /dev/hdc (in my case hdc is my CD/DVD... first drive sec IDE 
channel...)

Then check cat /proc/ide/piix; DMA should be enabled now.

If so you can enable it at boot using /etc/init.d/hwtools script; change this 
part:

# hdparm optimization
# Switches on interrupts during transfers and does multi sector transfers
if command -v hdparm >/dev/null 2>&1; then
   hdparm -d1 /dev/hdc
   true
fi




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: compiling the kernel with GCC 3.3

2003-07-06 Thread Marino Fernandez
On Saturday 05 July 2003 5:09 am, Christophe Courtois wrote:
> Le Samedi 5 Juillet 2003 10:24, Marino Fernandez a déclamé :
> > Yes, that's what it seems. I had the same problem with 2.4.21... GCC
> > 2.95 and 3.2 work, but no 3.3.
>
From a practical standpoint (in other words... have I noticed anything 
different)... I will say... no. 2.95 and 3.2 did the job fine, and the kernel 
runs OK... I am sure there are some esotheric differences, but I am a simple 
Joe, not a kernel guru.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: How "unstable" is unstable?

2003-07-06 Thread Marino Fernandez
On Sunday 06 July 2003 9:10 pm, Steve Lamb wrote:
> On 06 Jul 2003 21:07:42 -0400
>
> Neal Lippman <[EMAIL PROTECTED]> wrote:
> > I'm wondering, from those running sid, just how "unstable" is it at the
> > present time?
> >
> > The reason I am asking is that I would like to move on to KDE 3 and am
> > feeling behind the times, still using KDE 2.1 in woody. I've been
> > reluctant to track sid since I do need my workstation to be up and
> > working pretty well, so I'd be interested in hearing from some who are
> > using unstable regularly.

Sid is doing pretty good for me. I have a knoppix/debian install plus gnome 
2.2 (that is KDE 3.1.2, Mozilla 1.3.2, Evolution 1.4, Openoffice 1.0.3, 
kernel 2.4.21, XFree86 4.3) in my laptop... and what can I say, other that 
some minor bugs (i.e. the pgp plugin for KMail (or any other email client) 
does not work), everything works perfectly... I had it for 2 months now.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: compiling the kernel with GCC 3.3

2003-07-05 Thread Marino Fernandez
On Saturday 05 July 2003 2:49 am, Raffaele Sandrini wrote:
> Hi
>
> I tried to compile a 2.4.20 kernel with GCC 3.3 and failed.
> I searched through several list and the web to find more infos. I found
> some docs about GCC3.1 and its implemetation (wich isnt).
>
> Just to be sure: We still must use GCC 2.95 to compile the kernel, right?
>
This issue has been on the list recently...

Yes, that's what it seems. I had the same problem with 2.4.21... GCC 2.95 and 
3.2 work, but no 3.3.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Cannot mount cdrom if I use GRUB

2003-07-04 Thread Marino Fernandez
On Friday 04 July 2003 5:13 am, [EMAIL PROTECTED] wrote:
> On Thu, 3 Jul 2003, Marino Fernandez wrote:
> > This must be a very simple and dumb problem, but I cannot figure it out.
> >
> > If I boot with LILO, I can mount my CD/DVD w/o any problem.
> > If I boot with GRUB I get an error message that says that my /dev/dvd is
> > not a valid block device (same with /dev/cdrom, /dev/sr0, /dev/scd0, even
> > as root).
> >
> > I have this in fstabs:
> > /dev/cdrom  /cdrom  iso9660  defaults,ro,user,noexec,noauto  0  0
> > I have this in lilo.conf:
> > append="hda=scsi hdb=scsi hdc=scsi hdd=scsi apm=power-off nomce
> > wheelmouse" I have this in /boot/grub/menu.lst:
> > # kopt=root=/dev/hda13 ro vga=791 hdc=scsi
>
> did you try hdc=ide-scsi?


Thank you, that was it!.
Now I have this in /boot/grub/menu.lst:

title   Debian GNU/Linux, kernel 2.4.21-686
root(hd0,12)
kernel  /boot/vmlinuz-2.4.21-686 root=/dev/hda13 ro vga=791 hdc=ide-scsi
savedefault
boot


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Newbie to spamassassin- How to make it learn?

2003-07-04 Thread Marino Fernandez
On Friday 04 July 2003 9:34 am, SRIKANTH NS wrote:
> Hi
> Disgusted with the amount of spam received, I installed
> Spamassassin2.54 and configured it, It works properly for the past one
> month. I use fetchmail to receive mail and invoke sylpheed to read
> them from /var/spool/ mail/ srikanth folder and the spam goes to
> "caughtspam " file in my home directory .
>
> Nowadays I see one or two mails slipping past spamassassin. I saw that
> spamassassin can be trained. man pages did not reveal much. Since the
> mails are read in sylpheed how to point it out to SA?
> sa-learn command also does not work, it says command is not found.
> Can any body give some pointers or some links where tutroials can be
> read.?
> Thanks in advance
>
> N S Srikanth

I do this:

sa-learn --spam --dir /home/Marino/Mail/Spam/cur
sa-learn --ham --dir /home/Marino/Mail/inbox/cur

Note that /home/Marino/Mail/Spam/cur is the directory where I keep spam (I use 
KMail). /home/Marino/Mail/inbox/cur is where my good mail is (ham).



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Cannot mount cdrom if I use GRUB

2003-07-03 Thread Marino Fernandez
This must be a very simple and dumb problem, but I cannot figure it out.

If I boot with LILO, I can mount my CD/DVD w/o any problem.
If I boot with GRUB I get an error message that says that my /dev/dvd is not a 
valid block device (same with /dev/cdrom, /dev/sr0, /dev/scd0, even as root).

I have this in fstabs:
/dev/cdrom  /cdrom  iso9660  defaults,ro,user,noexec,noauto  0  0
I have this in lilo.conf:
append="hda=scsi hdb=scsi hdc=scsi hdd=scsi apm=power-off nomce wheelmouse"
I have this in /boot/grub/menu.lst:
# kopt=root=/dev/hda13 ro vga=791 hdc=scsi

My CD/DVD is a Matshita UJDA 720. Is the primary drive in my second IDE (thus 
hdc), is under scsi emulation.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: How do you creat an alias in postfix.

2003-06-30 Thread Marino Fernandez
On Monday 30 June 2003 2:59 am, Jeffrey L. Taylor wrote:
> Quoting Marino Fernandez <[EMAIL PROTECTED]>:
> > I am trying to configure amavis with postfix. Apparently you have to
> > create an alias named virusalert. I read the man page for alias, but it
> > sounds like chinese to me.
> >
> > Any help would be appreciated

Thank you for your anwers.

I follow both suggestion, this is what I got:

> On Monday 30 June 2003 7:37 am, Derrick 'dman' Hudson wrote:
> Open /etc/aliases with your favorite editor.  Put a line something
> like this in it :
>
> virusalert: root
>
> Then run 'newaliases'.

Did that... is that it. I ask because I also got this other suggestion

> Add following to /etc/postfix/aliases:
>
> virusalert: root
>
> Run "postmap /etc/postfix/aliases" and "postfix reload".
>
An I get this:

[EMAIL PROTECTED]:~$ sudo postmap /etc/postfix/aliases
postmap: warning: /etc/postfix/aliases, line 1: record is in "key: value" 
format; is this an alias file?

This is what I have in /etc/postfix/aliases:

virusalert: root

File that by the way I created with a text editor, since it didn't exist in 
/etc/postfix.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Regenerating /var/spool/cups

2003-06-30 Thread Marino Fernandez
Hi. I have a Compaq IJ600 that was working OK with CUPS and a Lexmark driver 
(Z22). However I sent a pdf file to print and /var/spool/cups got full of 
junk (800 megs), and I guess corrupted (I couldn't even get into it as root), 
so I deleted it... I then created another /var/spool/cups directory, but is 
empty. Now I cannot print anythin, not even tests. Is there a way to 
regenerate this?.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



How do you creat an alias in postfix.

2003-06-29 Thread Marino Fernandez
I am trying to configure amavis with postfix. Apparently you have to create an 
alias named virusalert. I read the man page for alias, but it sounds like 
chinese to me.

Any help would be appreciated


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Backup XP box to Debian system

2003-06-29 Thread Marino Fernandez
On Saturday 28 June 2003 8:15 pm, Carl Fink wrote:
> Question:  I have a Windows-based laptop. (I need to run Windows
> software for business, no harassment please.)  I would like to back
> it up, before converting it to dual boot Debian/XP.
>
> Can anyone recommend a backup package from the Debian (Testing)
> archive that can back up an XP-based system, with provision for a
> full recovery?

Partimage can do that... the only problem is that support for NTFS (the file 
system WinXP most likely uses) is experimental. You should be OK if your 
WinXP partitions are in VFAT (FAT32).

I have the same issue you have. I have WinXP and debian in my laptop. I use 
drive image (Power Quest) to make backups of my WinXP NTFS partitions... 
although it has been a while, and I seem to remember that Drive Image 2002 
does not support ext3, so there were some error messages (not good when you 
are makin backups).

What I did was to put all my data in Fat32 partitions, that can be written to 
w/o any problem from linux, and can be backed up with partimage. Then all my 
WinXP executables are un a NTFS partition... if that one dies I just 
reinstall the whole thing, no big deal... al my data is on different 
partitions.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: How to count actual users?

2003-06-24 Thread Marino Fernandez
On Wednesday 25 June 2003 01:03 am, Paul Wright wrote:
> Hi All,
>
> I've been attempting to estimate how many Linux users there are and I've
> come accross too many differing statistics.


Look at this site:

http://counter.li.org/index.php

135 683 registered users
119 403 registered machines

http://counter.li.org/reports/machines.php

Red Hat 28.71%
Debian  19.17%
Mandrake16.56%
SuSE11.38%
Slackware   11.37%

So, roughtly, for Debian, 135 683 * 19.17% = ~26010.

Not far away from those ~31000




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Going Unstable

2003-06-24 Thread Marino Fernandez
On Wednesday 25 June 2003 04:28 am, Bill Morgan wrote:

> Is this a good time to move to unstable, or is there breakage right now?
>
> Should I watch the mailing lists for 12-18 hours after the mirrors update
> to see if there are problems?  (And what time is that, again?)
>
> Or am I just being paranoid?
>
I switched from SuSE 8.1 to mostly unstable Debian around a month ago... and I 
do not have any major woes yet... there are a few bugs, minor ones so far 
(i.e. KCertManager crashes everytime I try to GPG sign an email with KMail), 
and some very intimidating warnings (i.e. when I use tha administrator tools 
of gnome control center, about this software being unstable, and the bad 
thing that can happen to my machine)... 

A month is a short time to say about major catastrophic bugs, which hit 
unfrequently... but so far so good.

I just try to keep stable or testing versions of essential packages... 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Want to update the kernel

2003-06-24 Thread Marino Fernandez
On Monday 23 June 2003 03:08 pm, Rob Weir wrote:
> On Fri, Jun 20, 2003 at 04:28:44PM +0800, Miranda, Joel Louie M wrote:
> > Im using the default 2.4.18-bf2.4 kernel.
> > I want to add some more modules, w/c I usually does at compiling from
> > source Its actually a kernel patch, how can I do that from a deb package
> > kernel?
>
> Sure.  Go get whatever kernel source you want, patch it, then use
> 'make-kpkg' from the kernel-image package to build a .deb of your new
> kernel.  Install it and read /usr/share/doc/kernel-package/README.gz and
> you'll be right.

Sorry, dumb question. 
You said "go get the kernel source and patch it" like you HAVE TO patch it... 
you meant patch with some security patch... if so, were do you get them.

I ask because I recently compiled my first kernel, a 2.4.21, and I just got it 
and compiled it, no patches... I thought of using the xfs patch but I really 
do not need it... are there other "vital" patches... am I missing something.

Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: dma fails with kernel 2.4.21

2003-06-24 Thread Marino Fernandez
On Monday 23 June 2003 09:30 am, Kristian Peters wrote:
> Marino Fernandez <[EMAIL PROTECTED]> schrieb:
> > [EMAIL PROTECTED]:~$ uname -r
> > 2.4.21
> > [EMAIL PROTECTED]:~$ sudo hdparm -d1 /dev/hdc
> >
> > /dev/hdc:
> >  setting using_dma to 1 (on)
> >  using_dma=  1 (on)
>
> Have you tried to mount a cdrom ? I can safely enable DMA but accessing the
> cdrom won't work.
>

Yes, it works.

>
> If someone is interested, the relevant parts of my config:

Too much data for me, but here is mine (it works):

# IDE, ATA and ATAPI Block devices
#
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
# CONFIG_BLK_DEV_HD is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
CONFIG_IDEDISK_STROKE=y
CONFIG_BLK_DEV_IDECS=m
CONFIG_BLK_DEV_IDECD=y
CONFIG_BLK_DEV_IDETAPE=m
CONFIG_BLK_DEV_IDEFLOPPY=m
CONFIG_BLK_DEV_IDESCSI=y
# CONFIG_IDE_TASK_IOCTL is not set
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
CONFIG_BLK_DEV_ISAPNP=y
CONFIG_BLK_DEV_IDEPCI=y
# CONFIG_BLK_DEV_GENERIC is not set
CONFIG_IDEPCI_SHARE_IRQ=y
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_OFFBOARD is not set
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
# CONFIG_IDEDMA_PCI_AUTO is not set
# CONFIG_IDEDMA_ONLYDISK is not set
CONFIG_BLK_DEV_IDEDMA=y
CONFIG_IDEDMA_PCI_WIP=y
# CONFIG_BLK_DEV_ADMA100 is not set
CONFIG_BLK_DEV_AEC62XX=y
CONFIG_BLK_DEV_ALI15X3=y
# CONFIG_WDC_ALI15X3 is not set
CONFIG_BLK_DEV_AMD74XX=y
# CONFIG_AMD74XX_OVERRIDE is not set
CONFIG_BLK_DEV_CMD64X=y
# CONFIG_BLK_DEV_TRIFLEX is not set
CONFIG_BLK_DEV_CY82C693=y
CONFIG_BLK_DEV_CS5530=y
CONFIG_BLK_DEV_HPT34X=y
# CONFIG_HPT34X_AUTODMA is not set
CONFIG_BLK_DEV_HPT366=y
CONFIG_BLK_DEV_PIIX=y
CONFIG_BLK_DEV_NS87415=y
CONFIG_BLK_DEV_OPTI621=y
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_PDC202XX_BURST is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
CONFIG_BLK_DEV_RZ1000=y
# CONFIG_BLK_DEV_SC1200 is not set
CONFIG_BLK_DEV_SVWKS=y
# CONFIG_BLK_DEV_SIIMAGE is not set
CONFIG_BLK_DEV_SIS5513=y
CONFIG_BLK_DEV_SLC90E66=y
CONFIG_BLK_DEV_TRM290=y
CONFIG_BLK_DEV_VIA82CXXX=y
# CONFIG_IDE_CHIPSETS is not set
# CONFIG_IDEDMA_AUTO is not set
CONFIG_IDEDMA_IVB=y
# CONFIG_DMA_NONPCI is not set
CONFIG_BLK_DEV_IDE_MODES=y
CONFIG_BLK_DEV_ATARAID=y
CONFIG_BLK_DEV_ATARAID_PDC=y
CONFIG_BLK_DEV_ATARAID_HPT=y
# CONFIG_BLK_DEV_ATARAID_SII is not set


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: / is ext3 mounted as ext2

2003-06-24 Thread Marino Fernandez
On Monday 23 June 2003 08:43 pm, Wolfgang Pauli wrote:
> Hi group,
>
> I installed a new kernel (2.4.21) with ext3 included (using make install as
> last step). But when i reboot the rootfs is mounted as ext2. The other
> partitions are mounted as ext3.
> i tried:
> append="rootflags data=journal" but it didn't work.

You are stealing the thread but you made me just realize something very 
important.

You have this problem because you do not have ext3 support built in your 
kernel (you have it as a module). I had the same issue, i got this:

EXT2-fs warning (device ide0(3,8)): ext2_read_super: mounting ext3 filesystem 
as ext2

VFS: Mounted root (ext2 filesystem) readonly.

Not good!.

So I just recompiled my kernel, making sure to include (in filesystems) ext3 
built in the kernel, and now I get this:

kjournald starting.  Commit interval 5 seconds
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.

Thank you man!, you saved me from a lot of pain after my next crash!.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Knoppix

2003-06-24 Thread Marino Fernandez
On Monday 23 June 2003 08:17 pm, David Fokkema wrote:
> Hi group,
>

> 'wheelmouse' which results in my mouse pointer flashing over the screen
> and clicking when I don't even touch buttons. Never had this in Debian,
> unless I just had booted into windows. Hard poweroff always fixed this,
> but not with Knoppix.
>
IF your Knoppix is on your Hardrive (full install) copy the section where your 
mouse settings are in /etc/X11/XF86config-4 from your working debian 
installation into your knoppix one; this is how my entry looks:

Section "InputDevice"
  Driver   "mouse"
  Identifier   "Mouse[1]"
  Option   "ButtonNumber" "3"
  Option   "Device" "/dev/psaux"
  Option   "Emulate3Buttons" "on"
  Option   "Name" "Autodetection"
  Option   "Protocol" "imps/2"
  Option   "Vendor" "Sysp"
  Option   "ZAxisMapping" "4 5"
EndSection

I had some touchpad problems, but this fixed them.

> Furthermore: D*MN, so slw. Luckily, I don't _have_ to use
> KDE.
>

If you run Knoppix from a CD, it loads into a RAM drive... and you have what, 
64 Megs?... I ran Knoppix from a desktop with 128 Megs and was slow, but it 
runs pretty fast on my laptop with 512 megs... and I liked so much that I 
erased my SuSE 8.1 install, and replaced it with a Knoppix-debian install... 
and works great.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Compiling 2.4.20

2003-06-24 Thread Marino Fernandez
On Tuesday 24 June 2003 02:54 pm, [EMAIL PROTECTED] wrote:
> Hi!
>
> On Tue, Jun 24, 2003 at 02:02:48PM +, Vittorio wrote:
> > I've configured my kernel to my hardware but during compilation the
> > following  error pos up:
> >
> > 
> > gcc -D__KERNEL__ -I/usr/src/kernel-source-2.4.20/include -Wall
> > -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common
> > -fomit-frame-pointer -pipe -mpreferred-stack-boundary=2 -march=i686  
> > -nostdinc -iwithprefix include -DKBUILD_BASENAME=super  -c -o super.o
> > super.c super.c: In function `read_super_block':
> > super.c:869: warning: int format, long unsigned int arg (arg 2)
> > super.c:944:14: missing terminating " character
> > super.c: In function `reread_meta_blocks':
> > super.c:945: error: stray '\' in program
> > super.c:945: error: `ld' undeclared (first use in this function)
> > super.c:945: error: (Each undeclared identifier is reported only once
> > super.c:945: error: for each function it appears in.)
> > super.c:945: error: parse error before "n"
> > super.c:945:12: missing terminating " character
> > make[4]: *** [super.o] Error 1
> > make[4]: Leaving directory `/usr/src/kernel-source-2.4.20/fs/reiserfs'
> > make[3]: *** [first_rule] Error 2
> > make[3]: Leaving directory `/usr/src/kernel-source-2.4.20/fs/reiserfs'
> > make[2]: *** [_subdir_reiserfs] Error 2
> > make[2]: Leaving directory `/usr/src/kernel-source-2.4.20/fs'
> > make[1]: *** [_dir_fs] Error 2
> > make[1]: Leaving directory `/usr/src/kernel-source-2.4.20'
> > make: *** [stamp-build] Error 2
>
> It looks like the reiserfs code doesn't compile with your default
> compiler. Try taking out reiserfs support or apply the latest patches
> from www.namesys.com.
>
Or try using a different compiler (2.95, 3.2 or 3.3.3).


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Compiling kernel 2.4.21 and gcc version

2003-06-22 Thread Marino Fernandez
Something unexpected happened to me.

I upgraded gcc to 3.3.3, and afterwards I was unable to compile the 2.4.21 
kernel. I was still able to compile the 2.4.20 version.

However with gcc 3.2.3 and 2.95 I can compile the 2.4.21 kernel.

I do not remember the exact error message, but it was at the very last part of 
the compilation. If somebody is interested I can post that error message 
latter.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: kernel-source-2.4.21

2003-06-22 Thread Marino Fernandez
On Sunday 22 June 2003 11:10 am, Colin Watson wrote:
> On Sat, Jun 21, 2003 at 11:50:57PM -0700, Paul Johnson wrote:
> > Anybody know what the holdup is for 2.4.21 hitting Debian?
>
Honestly, is there any advantage on that kernel compared to the one you get 
from www.kernel.org and compile the clasic way, other than a slight ease of 
installation.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: dma fails with kernel 2.4.21

2003-06-22 Thread Marino Fernandez
On Sunday 22 June 2003 10:17 pm, Kristian Peters wrote:
> Anthony Campbell <[EMAIL PROTECTED]> schrieb:
> > I had dma running with kernel 2.4.20. On 2.4.21 hdparm gives an error:
> >
> > HDIO_SET_DMA failed
> >
> > Anyone know why this is or what has changed between the two kernels?

It must be something on the way you configured things. I just compiled and 
installed 2.4.21 on top or 2.4.20-xfs and dma works fine.

[EMAIL PROTECTED]:~$ uname -r
2.4.21
[EMAIL PROTECTED]:~$ sudo hdparm -d1 /dev/hdc

/dev/hdc:
 setting using_dma to 1 (on)
 using_dma=  1 (on)



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: No 3D support after custom kernel compilation [solved]

2003-06-22 Thread Marino Fernandez
On Saturday 21 June 2003 03:26 am, Marino Fernandez wrote:
> I have debian testing/unstable, gcc 3.2, kernel 2.4.20-xfs from knoppix. 3D
> support works fine (Intel830M).
>
> I compiled a 2.4.21 kernel and noticed no 3D suport; then I compiled a
> 2.4.20 (no xfs patch) and the same problem.. I used exactly the same
> .config file used for the first kernel in both cases.
>
> I then downloaded a tarball from DRI with the src for dri/drm support for
> I830M... ./configure && make && make install... still no 3D support.
>
> lsmod in 2.4.20-xfs (the one with 3D support) shows i830 used 14 times and
> agpgart used 13 times. lsmod with 2.4.21 and 2.4.20 show i830 used 0 times
> and agpgart 7 times. Otherwise the rest of the modules are the same.
>
> The files modules.dep are the same in both cases (with and without 3D
> support).
>
> Any ideas. Thank you.

I just needed to reboot... JUST LIKE IN WINDOWS!!!


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Windows NT/2000/XP related problems

2003-06-21 Thread Marino Fernandez
On Saturday 21 June 2003 04:45 am, Abdul Latip wrote:
> 1. The most simple way to return control to LILO after
>reconfiguring Windows.
Installing ("reconfiguring?") windows replaces the mbr that lilo installed for 
it's own. Just boot with rescue disk, and reinstall lilo in the mbr.

> 2. How to read the linux files systems (ext2,ext3,reiserfs)
>in Windows.
Use partition magic 8. There is an option to browse ext3/ext2 partitons, and 
to copy files to the windows partitions.

> 3. How to resize NTFS with less pain.
From linux... only mandrake's 9.1 diskdrake can do that... although I've heard 
it can mess up things... I do not know that for sure.
From windows, again, Partition Magic 8. I've use it, works like a charm 
(resizing ext3 partitions from windowsXP with NTFS partitions in place).

> 4. Where to find a "md5sum" program for windows (not command
>line).

mdsummer:

http://www.md5summer.org/


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



No 3D support after custom kernel compilation

2003-06-21 Thread Marino Fernandez
I have debian testing/unstable, gcc 3.2, kernel 2.4.20-xfs from knoppix. 3D 
support works fine (Intel830M).

I compiled a 2.4.21 kernel and noticed no 3D suport; then I compiled a 2.4.20 
(no xfs patch) and the same problem.. I used exactly the same .config file 
used for the first kernel in both cases. 

I then downloaded a tarball from DRI with the src for dri/drm support for 
I830M... ./configure && make && make install... still no 3D support.

lsmod in 2.4.20-xfs (the one with 3D support) shows i830 used 14 times and 
agpgart used 13 times. lsmod with 2.4.21 and 2.4.20 show i830 used 0 times 
and agpgart 7 times. Otherwise the rest of the modules are the same.

The files modules.dep are the same in both cases (with and without 3D 
support).

Any ideas. Thank you.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Patching a kernel.

2003-06-20 Thread Marino Fernandez
On Friday 20 June 2003 12:08 pm, Joerg Johannes wrote:
> On Friday 20 June 2003 04:40, Marino Fernandez wrote:
> > I've trying to patch a 2.4.20 kernel with the xfs patch. I've have
> > some commandline argumants, but I get error mesages.
>
> It would be interesting to know
> 1.) What commands did you use
> 2.) What error messages you get
>

Yes, of course.
I got the patches from here. They are gziped files:

ftp://oss.sgi.com/projects/xfs/download/patches/

The kernel with apt-get install kernel-source-2.4.20

Patch: xfs-2.4.20-all-i386...
kernel: kernel-source-s.4.20

[EMAIL PROTECTED]:/usr/src# bzip2 -dc xfs-2.4.20-all-i38620030114.bz2 | patch -p1 
kernel-source-2.4.20.tar.bz2
patching file kernel-source-2.4.20.tar.bz2
Hunk #1 FAILED at 56.
Hunk #2 FAILED at 191.
Hunk #3 FAILED at 339.
3 out of 3 hunks FAILED -- saving rejects to file 
kernel-source-2.4.20.tar.bz2.rej
can't find file to patch at input line 44
Perhaps you used the wrong -p or --strip option?
The text leading up to this was:
--
|diff -urNp 2.4.20/Documentation/Configure.help 
2.4.20-xfs/Documentation/Configure.help
|--- 2.4.20/Documentation/Configure.helpFri Nov 29 11:38:55 2002
|+++ 2.4.20-xfs/Documentation/Configure.helpTue Jan 14 11:44:52 2003
--
@@ -12647,12 +12647,44 @@ CONFIG_VIOCD  <-- Line 44 from patch

I tried to get the patch from www.xfs.og site, but they are down.









-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: debian

2003-06-20 Thread Marino Fernandez
On Friday 20 June 2003 12:03 pm, Paul Johnson wrote:
> On Fri, Jun 20, 2003 at 12:10:08PM +0300, Aryan Ameri wrote:
> > What is the reason that people who are only concerened with x86 and want
> > hardware auto detection, do not use Libranet?
>
> Or Xandros...
>
Or even better, Knoppix It is free, it is only a one CD download, of very 
up to date packages, that you can latter transform in whatever you like (pure 
woody, sarge, sid, with gnome, etc).


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Patching a kernel.

2003-06-20 Thread Marino Fernandez
I've trying to patch a 2.4.20 kernel with the xfs patch. I've have some 
commandline argumants, but I get error mesages.

Can I use kompare?. Any other suggestions.

Thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Compiling kernel 2.4.20/2.4.21 questions.

2003-06-19 Thread Marino Fernandez
I've been thinking on compiling my first own kernel for a while, and since 
2.4.21 stable has just been released  I downloaded it and compiled it It 
went surprisingly smothly, just a few problems with lilo (wrong names for the 
labels, nothing serious).

My only (kind-off) problem was with /boot/initrd.gz. My debian came from a 
knopix cd, is a mixture  of testing and unstable, had a kernel 2.4.20-xfs 
before (and still has in LinuxOld), has GCC 3.3. 

When I booted into the new kernel, and  /boot/initrd.gz kicked in, there was a 
problem with the modules on it (ext3 and jsb?), that were compiled for 
2.4.20, so I got a kernel panic and the bootup stalled. Then I read that I 
really do not need /boot/initrd.gz (Debian Reference page 85), so I comented 
it out in lilo like this:

image=/boot/vmlinuz-2.4.20-xfs
label=Linux
initrd=/boot/initrdold.gz
read-only
#   restricted
#   alias=1

image=/boot/vmlinuz-2.4.21
label=LinuxNew
#   initrd=/boot/initrd.gz
read-only
#   restricted
#   alias=1

So here is my first question. What is /boot/initrd.gz for anyway?. Do I need 
it?.

My second question is about the xfs patch. Before compilation I tried to patch 
another kernel I was playing with, before compilation (2.4.20)... uuuhhh!... 
should I do it after compilation?.  Anyway, I couldn't patch it, I got a 
message stating that the 3 Hunks failed!?!?!. So I left it out for 2.4.21... 
I don't even think there is a patch for 2.4.21, and if there is, somebody let 
me know Do I need that patch. I use ext3 only, and I have no plans to use 
anything else.

My third question is... well, so far everything works, my laptop is in one 
piece... but I really do not notice any difference... So, why should I use 
this kernel?. I only did it because my knoppix CD does not come with the 
kernel source that I need to recompile the kernel and get the Dazuko 
"patch/module" I need for  AVguard antivirus.

Finally, how do I get my kernel customized for 686... just to know!.

Thanks.

PD
I guess I should be doing some more reading and googling, but I am a little 
bit tired, so bear with me. Again, thanks.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Help with amavis-postfix

2003-06-16 Thread Marino Fernandez
I've tried to make amavis work many different ways but no use.

I installed amavis-postfix, enabled my antivirus (Antivir) in 
/etc/amavisd.conf like this:

# H+BEDV AntiVir
$antivir = "antivir";

Then added this to /etc/postfix/main.cf:

content_filter = smtp-amavis:[127.0.0.1]:10024

Then added this to /etc/postfix/master.cf

127.0.0.1:10025 inet n - y - - smtpd
 -o content_filter=
 -o local_recipient_maps=
 -o smtpd_helo_restrictions=
 -o smtpd_client_restrictions=
 -o smtpd_sender_restrictions=
 -o smtpd_recipient_restrictions=permit_mynetworks,reject
 -o mynetworks=127.0.0.0/8

smtp-amavis unix - - y - 2 smtp
 -o smtp_data_done_timeout=1200
 -o disable_dns_lookups=yes

Then I did sudo postfix reload and sudo amavisd reload. But when I try to send 
the EICAR test "string" using telnet, it let's it go through, and gives me 
this message:

250 2.6.0 Ok, id=09917-01, from MTA: 250 Ok: queued as EA5721C41A

However, I have that string saved and Antivir recognices it w/o any problem, 
like this:

Mon Jun 16 10:46:48 2003: AntiVir ALERT: [Eicar-Test-Signatur virus] 
/home/Marino/eicar.com <<< Contains code of the Eicar-Test-Signatur virus

Any ideas!!!, thank you.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Apt-get sources close to Mexico

2003-06-12 Thread Marino Fernandez
Hi. I have Knoppix-debian, and all my apt-get sources are for german sites... 
but I live in Mexico and lately I've found the downloads from those 
sites, and the time from the request until the actual download is too long.

Does anybody have a sources list for servers close to Mexico (USA is OK, 
specially southern USA) could anybody send my such a 
/etc/apt/sources.list

Or, where can I find in the debian site?..


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: dvd slow and slows clock

2003-06-12 Thread Marino Fernandez
On Thursday 12 June 2003 09:39 pm, John Lapeyre wrote:
> I seem to recall  setting the dma. I think there may have
> been some problem with that in relation to the promise controller.
> I'll revisit that.  By the way, the hardware works great if I put in a
> usb-2.0 mass-storage external case. I wonder why not using dma would
> slow the clock down, etc...


DMA is Direct Memory Access... If it is not enabled the CPU uses cycles to 
transfer data from the device to the memory; with DMA enabled the device 
transfers data directly to the memory, bypassing the CPU... that is why if 
you do not have DMA enabled you'll see that the CPU uses more cycles for 
playback.

As for the USB 2 linked device, I am not sure... I know that DMA is disabled 
on CD/DVD for some reason I do not remember, to avoid some problem in some 
systems, but is enableable... I do not know if that apply to other devices 
(firewire/USB2, etc), may be not. 

By the way, How do you use the USB2 device... what kernel do you have... I 
though that USB2 support was available only from kernel 2.5 and above!.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: fstab Mystery

2003-06-10 Thread Marino Fernandez
On Wednesday 11 June 2003 02:15 am, Clive Menzies wrote:
> On (11/06/03 00:37), Carlos Sousa wrote:
> > Date: Wed, 11 Jun 2003 00:37:12 +0100
> > From: Carlos Sousa <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Subject: Re: fstab Mystery
> >
> > On Tue, 10 Jun 2003 16:16:24 -0700 Vineet Kumar wrote:
> > > * Carlos Sousa ([EMAIL PROTECTED]) [030610 15:19]:
> > > > On Tue, 10 Jun 2003 22:05:17 +0200 Mark Annandale wrote:
> > > > > Hi Guys
> > > > >
> > > > > This is an extract from my /etc/fstab -
> > > > >  "/dev/hda1 /mnt/hda1 ntfs,ro,noauto,users,exec,uid=mark,gid=mark 
> > > > > 0 0".
> > > >
> > > >^^^ ^
> > > > 1 - ntfs should be separated by space/tab from whatever follows.
> > > >
> > > > 2- users -> user.
> > >
yep!... this is my ftab entry for my WinXP partition:
/dev/hda1 /mnt/hda1 ntfs noauto,users,exec,ro,uid=Marino,gid=users 0 0


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: lib6c

2003-06-10 Thread Marino Fernandez
On Tuesday 10 June 2003 11:18 pm, Arthur E. Groen wrote:
> Hi, I tryed to upgrade my lib6c so I could use i586-mingw32msvc/3.2.1
> but things got mixed up.
>
> apw # apt-get upgrade
> Reading Package Lists... Done
> Building Dependency Tree... Done
> You might want to run `apt-get -f install' to correct these.
> Sorry, but the following packages have unmet dependencies:
>   libc6: Conflicts: libnss-db (<= 2.2-6.1.1) but 2.2-6 is installed
>   libc6-dev: Depends: libc6 (= 2.2.5-11.5) but 2.3.1-17 is installed
>   locales: Depends: glibc-2.2.5-11.5
> E: Unmet dependencies. Try using -f.
>
Do apt-get -f install


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Inserting Init script

2003-06-10 Thread Marino Fernandez
On Tuesday 10 June 2003 06:37 am, Kevin McKinley wrote:
> On Mon, 9 Jun 2003 22:45:30 +0200
>
> Marino Fernandez <[EMAIL PROTECTED]> wrote:
> > Once I placed a bash script in /etc/init.d, how do I create a link so it
> > is executed during halt (runlevel 0) and reboot (runlevel 6). I tried
> > this:
> >
> > update-rc.d  start 99 runlvl 0
> >
> > But I get this error:
> >
> > expected runlevel [0-9S] (did you forget "." ?)
>
> man update-rc.d

I tried that, but apparently I do not have the man for update-rc.d... how do 
you install it (I have a Knoppix-->debian, maybe some of the man files got 
excluded from the CD)?.

Thank you.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: play mp3 files on xmms

2003-06-10 Thread Marino Fernandez
On Tuesday 10 June 2003 05:11 pm, Paul Johnson wrote:
> On Tue, Jun 10, 2003 at 11:48:29AM -0400, Eduardo Gargiulo wrote:
> > I'm running woody 3.0_r1 and I'm looking for same way to play mp3 files
> > on xmms. Is it possible? Is there any plugin? In case the answer is not,
> > which player do you recommend me to play mp3 files?
>
> Add files to your playlist.
>
> --
>  .''`. Baloo Ursidae <[EMAIL PROTECTED]>
>
> : :'  :proud Debian admin and user
>
> `. `'`
>   `-  Debian - when you have better things to do than fix a system

Or right click on the mp3 file, choose open with XMMS (or other if it is not 
listed, then go to multimedia, audio, and choose XMMS, the check the box that 
says remember application association for this file type, click ok and thats 
it.

I've never had any problems playing mp3 with XMMS (Mandrake/SuSE/Debian), only 
Red Hat has that issue (requiring a plug in).


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Inserting Init script

2003-06-09 Thread Marino Fernandez
Once I placed a bash script in /etc/init.d, how do I create a link so it is 
executed during halt (runlevel 0) and reboot (runlevel 6). I tried this:

update-rc.d  start 99 runlvl 0

But I get this error:

expected runlevel [0-9S] (did you forget "." ?)

Thanks.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Beginers guide to spamassain ?

2003-06-08 Thread Marino Fernandez
By the way, speaking of Spam

The first time I sent you a reply, I sent it directly  to you (I forgot to 
answer to the list) and you bounced it; it came with this notice:

  = BLOCKED EMAIL NOTICE =

Your email, which is attached below, was blocked by my email filter
for one or more of these reasons:

  * Your email came from or via a site whose email servers
(computers which process email) allow "relaying" or are
insecure in some other way, allowing senders of unsolicited
bulk email (usually called spam) to use these servers to hide
who they are and bypass filtering.

  * Your email had headers or body text which my filter thought
might indicate it is spam.

  * Your email came from or via a site on the spam filter's list
of internet sites which allow users to spam, or which do not
take effective action against users which do so.

If you are a bulk mailer, advertiser (commercial or political), or
are sending any kind of "free offer", please remove this address
from your mailing list and do not email me again.

If you are not an advertiser or bulk mailer, you can resend your
mail and get past the filters by including the password listed
below on the Subject: line of your message. It can appear anywhere
on the Subject: line -- it doesn't have to be first, last, or the
only thing on that line.

An easy way to do this is to forward this bounced message back to
me and either change the Subject: line to the password, or add it
to the beginning or end of the Subject: line -- whatever is easier.
That way, I will get your email and be able to add your email
address to my NOBOUNCE list, which means email from you will not
bounce again. :)

Thank you!

I LIKE IT!!! but does it work?... 

I mean, you are telling the spamers that you are there and that your email 
address is good... and also that they need to change their messages so the 
next time your filters do not catch them...


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Beginers guide to spamassain ?

2003-06-08 Thread Marino Fernandez
I just set up spamassassin in my machine, using it with Kmail.

1) apt-get install spamassassin
2) Create 2 filters in KMail (I got this looking for it in the net, do not 
remember where)
2.A) First kmail filter
Filter criteria "  25" 
Filter Action is " spamassassin" or "
spamc" (which needs the spamd daemon runningbut is much faster). The 
command spamassassin had to be called with the parameters "-P -F 0" in 
versions prior to 2.40; these options are now obsolete and produce warnings 
(current ver is 2.53).
Advanced Options, uncheck the "If this filter matches, stop
 
processing here" box. If you keep this filter at the top, it will analyze all 
incoming mail, decide whether it's spam or not, and flag it accordingly.

2.B) Second filter behind it
Looks for "X-Spam-Flag equals YES" and diverts them into a 
specific folder 
called "Probably Spam" (still testing, don't want to delete any false 
positives by mistake); goodbye to all spam.

3) Teach Spamassassin like this: Put your Spam in one folder, and your good 
mail (HAM) in another, and do this:
sa-learn -spam -dir /home/Marino/Mail/Spam/cur
sa-learn -ham -dir /home/Marino/Mail/inbox/cur
Make sure that all the spam is spam, and that all the ham is ham.

Read the man pages and perldoc Mail::SpamAssassin::Conf


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: dvd slow and slows clock

2003-06-06 Thread Marino Fernandez
On Friday 06 June 2003 08:04 am, John Lapeyre wrote:
> This is probably not debian specific, but I have been revisiting this
> problem for a couple of years and searching on the web and am stumped.
>
> Dvd is too slow to view a dvd (I've tried a bunch of programs, am
> using vlc now) I have to copy the files to hard drive. But the
> transfer is slow, about 1MB/s and the desktop has bad very response
> time during this time and the system clock runs very slow. The mouse
> in particular will hang for a second or so at a time. 

You probably don't have DMA activated.

I have my DVD on /dev/hdc, and I do this as root:

hdparm -d1 /dev/hdc

Then, if this works, you can put a script on /etc/init.d and a link to it in 
/etc/rcS.d, so DMA gets activated during boot-up however I am not very 
sure about this last step, I've never done it in debian (only in SuSE), so 
maybe one of the more learned debianites can tell us about it.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]