Cannot find modules : xxxxxxx

2003-12-26 Thread Yuen Sum Ng
Sorry, GCS,
 
I may get something wrong. I have asked a wrong question. I would check my machine carefully to see the real problem and ask for help later. I am sorry for you to waste your time in my wrong question.
 
Regards,
James NgShining Friends、好心好報、歲月如歌...
浪漫鈴聲  情心連繫
http://ringtone.yahoo.com.hk/

David Grudek/COR/AXE is out of the office.

2003-12-26 Thread David . Grudek
I will be out of the office starting  12/26/2003 and will not return until
01/04/2004.

I will respond to your message when I return. I will Not have access to
email or voicemail.



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



Re: bash scripts misrepresenting white space

2003-12-26 Thread Dan Lenski
On Thu, 2003-12-25 at 21:32, Johann Koenig wrote:
> I tried reading the man page and the BASH Programming HOWTO, but I
> couldn't really get what I needed out of either. Oh well, with you're
> example to guide me, I got it right. If anybodies willing, please look
> over the attached script and give any comments that come to mind.
> 
> About the script: It runs in the current directory and converts all
> flacs to mp3s. I'm figuring I could wrap it in another script to
> transverse my directory tree, running the conversion script in each one.
> I tried to make it as modular as possible, but I may have gone a little
> overboard.

You might be better off doing this in a scripting language like Perl.  Your script 
would be a lot simpler and you wouldn't have to worry about such annoyances as 
quoting.  There are a zillion modules to easily parse filenames and such...
Dan

--- E.g.: ---

#!/usr/bin/perl
open(FLACS, "find . -name '*.flac' |");
while (  ) { push @FLACS, $_; }
close FLACS;

foreach (@FLACS) {
&decode($_);
}

sub decode
{
my $file = shift;
system('flac', '-dc', $file);
}


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



Re: pon dsl-provider

2003-12-26 Thread Robert Storey
Dear Rafael,

For normal users to be able to start "pon dsl-provider", /usr/sbin/pppoe
has to be suid root. You can set that like this:

chmod +s /usr/sbin/pppoe

After you've done that, permission levels should look like this:

[EMAIL PROTECTED]:~> ls -l /usr/sbin/pppoe
-rwsr-xr--1 root dip 31020 Sep 17 03:13 /usr/sbin/pppoe

Note that this would also be true of /usr/sbin/pppd if you were using a
dial-up modem (rather than adsl).

regards,
Robert


On Thu, 25 Dec 2003 23:56:10 -0200
Rafael Alexandre Schmitt <[EMAIL PROTECTED]> wrote:

> Hi ,
> 
> Is it possible start 'pon dsl-provider' as a normal user(not root)?
> I'm already on dialout and dip groups .
> 
> Thanks for any tip.
> -- 
> Rafael Alexandre Schmitt


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



Re:Wine - Does it actually work?

2003-12-26 Thread David Baron
Wine is a very pesky utility.

OK, stuff like windows solitaire and freecell run perfectly. MVP-Bridge hangs 
up. So did a sound-card editing program but it did get my installed MIDI 
devices correctly which nothing "native" has done so far. Once these hangup, 
one must log out to get rid of their windows. Copernic web search which runs 
off the IE com object hung the system. Big red switch and a real scarey fsck 
session to recover--I mean heavy duty.

Just as Windows requires a "pid" file to describe how to run a DOS program, 
Wine needs such a descriptor to correctly run Windows programs in Linux. ... 
and this might well vary from flavor to flavor and release to release.


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



Re: Installing module for KNE20 NIC

2003-12-26 Thread Shaul Karl
On Thu, Dec 25, 2003 at 09:49:17PM -0500, Russ Schneider wrote:
> Which module would I use for a KNE20 NIC?  I see plenty of 3com and Intel 
> modules, but...
> 


  For an ISA one I would try the ne module. The LDP's Ethernet-HOWTO is
a great source of information.

-- 
"If you have an apple and I have  an apple and we  exchange apples then
you and I will still each have  one apple. But  if you have an idea and I
have an idea and we exchange these ideas, then each of us will have two
ideas." -- George Bernard Shaw (sent by  shaulk @ actcom . net . il)


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



Re: Re: Synching volumes on logout -- tune2fs

2003-12-26 Thread David Baron
Should I so choose to convert to ext3:
What options do I give this program? I have one big-linux partition (as 
opposed to separates /etc, /usr, etc.) and the swap partition. I do not quite 
undersatnd the options in the -h listing.


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



Re: Default size for fonts in X?

2003-12-26 Thread Anthony Campbell
On 25 Dec 2003, GCS wrote:
> On Thu, Dec 25, 2003 at 09:48:41AM +, Anthony Campbell <[EMAIL PROTECTED]> wrote:
> > Interesting suggestion; thanks, but it doesn't have any visible effect here.
> > Perhaps laptops are different? I'm wondering if xfs might help.
>  Hmmm. Can't you just increase it in your WM? A lot of them support it
> imho, at least I think I could do it in Enlightenment, and in Gnome 2.4
> it's 'Gnome foot'->Applications->Desktop preferences->Fonts. I am sure
> KDE has it as well, but I brrr by only hearing the word KDE. :-)
> 
> Cheers,
> GCS

I don't use either KDE or gnome; I keep trying other WMs but always come
back to icewm in the end. I do of course use suitable fonts for all
those apps that work via xterm but the problem is with the others.

However, I had a helpful suggestion from someone on alt.os.slackware,
viz to do startx -- -dpi 110 (or whatever). Should have thought of this
myself, I suppose...

A.


-- 
[EMAIL PROTECTED]||  http://www.acampbell.org.uk
using Linux GNU/Debian ||  for book reviews, electronic 
Windows-free zone  ||  books and skeptical articles


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



Re: Realtek rtl8139 nic and 2.4.20 kernel

2003-12-26 Thread Charles Muller
s. keeling wrote:

> Ummm, what?  What seems to indicate they are not using the same IRQ?
> The fact that they're both recognized?  I believe this says nothing
> other than they're both there; it's up to you to say what to do with
> what was found.
> 
> Barring *really* strange circumstances, 2.4.x _should_ be able to
> handle anything you throw at it.  2.6.x is way too young for a newbie
> to start slavering after.
> 
> cat /proc/ioports
>  " "  interrupts
> lsmod
> grep $blah /var/log/messages

I did these, but I must confess, I don't understand them well
enough to know if there is an IRQ conflict. I do notice in the ioports
report that the realtek driver is reported twice.

I also removed 2.4.20 and installed 2.4.18, because some fellow said
that did the trick for him, but no dice.

debian:/home/chuck# cat /proc/ioports

-001f : dma1
0020-003f : pic1
0040-005f : timer
0060-006f : keyboard
0080-008f : dma page reg
00a0-00bf : pic2
00c0-00df : dma2
00f0-00ff : fpu
01f0-01f7 : ide0
02f8-02ff : serial(set)
03c0-03df : vga+
03f6-03f6 : ide0
03f8-03ff : serial(set)
0cf8-0cff : PCI conf1
1000-100f : Silicon Integrated Systems [SiS] 5513 [IDE]
  1000-1007 : ide0
  1008-100f : ide1
1080-10ff : PCI device 1039:7013 (Silicon Integrated Systems [SiS])
1400-14ff : PCI device 1039:7013 (Silicon Integrated Systems [SiS])
1800-187f : Silicon Integrated Systems [SiS] SiS7012 PCI Audio Accelerator
1c00-1cff : Silicon Integrated Systems [SiS] SiS7012 PCI Audio Accelerator
2000-20ff : Realtek Semiconductor Co., Ltd. RTL-8139
  2000-20ff : 8139too
9000-9fff : PCI Bus #01
  9000-907f : PCI device 1039:6325 (Silicon Integrated Systems [SiS])


debian:/home/chuck# cat /proc/interrupts
   CPU0   
  0:  37205  XT-PIC  timer
  1:661  XT-PIC  keyboard
  2:  0  XT-PIC  cascade
  9: 24  XT-PIC  usb-ohci, usb-ohci
 11:  9  XT-PIC  usb-ohci, eth0
 12:  14282  XT-PIC  PS/2 Mouse
 14:   5864  XT-PIC  ide0
NMI:  0 
LOC:  0 
ERR:  0
MIS:  0

debian:/home/chuck# lsmod
Module  Size  Used byNot tainted

debian:/home/chuck# cd /var/log/message

debian:/home/chuck# grep $chuck /var/log/messages

Dec 26 17:53:01 debian syslogd 1.4.1#10: restart.
Dec 26 17:53:01 debian kernel: klogd 1.4.1#10, log source = /proc/kmsg started.
Dec 26 17:53:01 debian kernel: Inspecting /boot/System.map-2.4.18
Dec 26 17:53:02 debian kernel: Loaded 18696 symbols from /boot/System.map-2.4.18.
Dec 26 17:53:02 debian kernel: Symbols match kernel version 2.4.18.
Dec 26 17:53:02 debian kernel: No module symbols loaded.
Dec 26 17:53:02 debian kernel: Linux version 2.4.18 ([EMAIL PROTECTED]) (gcc version 
2.95.4 20011002 (Debian prerelease)) #1 SMP Fri Dec 26 17:46:25 JST 2003
Dec 26 17:53:02 debian kernel: BIOS-provided physical RAM map:
Dec 26 17:53:02 debian kernel:  BIOS-e820:  - 0009f400 (usable)
Dec 26 17:53:02 debian kernel:  BIOS-e820: 0009f400 - 000a 
(reserved)
Dec 26 17:53:02 debian kernel:  BIOS-e820: 000d - 000d4000 
(reserved)
Dec 26 17:53:02 debian kernel:  BIOS-e820: 000e4000 - 0010 
(reserved)
Dec 26 17:53:02 debian kernel:  BIOS-e820: 0010 - 1bdf (usable)
Dec 26 17:53:02 debian kernel:  BIOS-e820: 1bdf - 1bdfb000 (ACPI 
data)
Dec 26 17:53:02 debian kernel:  BIOS-e820: 1bdfb000 - 1be0 (ACPI 
NVS)
Dec 26 17:53:02 debian kernel:  BIOS-e820: 1be0 - 1c00 
(reserved)
Dec 26 17:53:02 debian kernel:  BIOS-e820: fff8 - 0001 
(reserved)
Dec 26 17:53:02 debian kernel: On node 0 totalpages: 114160
Dec 26 17:53:02 debian kernel: zone(0): 4096 pages.
Dec 26 17:53:02 debian kernel: zone(1): 110064 pages.
Dec 26 17:53:02 debian kernel: zone(2): 0 pages.
Dec 26 17:53:02 debian kernel: No local APIC present or hardware disabled
Dec 26 17:53:02 debian kernel: Kernel command line: BOOT_IMAGE=Linux ro root=306
Dec 26 17:53:02 debian kernel: Initializing CPU#0
Dec 26 17:53:02 debian kernel: Detected 2533.461 MHz processor.
Dec 26 17:53:02 debian kernel: Console: colour VGA+ 80x25
Dec 26 17:53:02 debian kernel: Calibrating delay loop... 5059.37 BogoMIPS
Dec 26 17:53:02 debian kernel: Memory: 445920k/456640k available (1582k kernel code, 
10332k reserved, 940k data, 240k init, 0k highmem)
Dec 26 17:53:02 debian kernel: Dentry-cache hash table entries: 65536 (order: 7, 
524288 bytes)
Dec 26 17:53:02 debian kernel: Inode-cache hash table entries: 32768 (order: 6, 262144 
bytes)
Dec 26 17:53:02 debian kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 
bytes)
Dec 26 17:53:02 debian kernel: Buffer-cache hash table entries: 32768 (order: 5, 
131072 bytes)
Dec 26 17:53:02 debian kernel: Page-cache hash table entries: 131072 (order: 7, 524288 
bytes)
Dec 26 17:53:02 debian kernel: CPU: L1 I cache: 12K, L1 D cache: 

Re: debootstrap

2003-12-26 Thread Shaul Karl
On Wed, Dec 24, 2003 at 11:50:28AM -0500, Ian Brandt wrote:
> 
> Does anyone know of another location from where I could download this 
> utility?  Also, is there a particular version that I should use?
> 


  You might try any Debian mirror, for example
http://http.us.debian.org/pool/main/d/debootstrap. However there seems
to me many different debootstrap packages. I don't know which of them is
suited for you.

-- 
"If you have an apple and I have  an apple and we  exchange apples then
you and I will still each have  one apple. But  if you have an idea and I
have an idea and we exchange these ideas, then each of us will have two
ideas." -- George Bernard Shaw (sent by  shaulk @ actcom . net . il)


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



Re: Realtek rtl8139 nic and 2.4.20 kernel

2003-12-26 Thread Charles Muller

Wayne Topa wrote:

>  Charles Muller([EMAIL PROTECTED]) is reported to have said:
> > I upgraded my 2.2* Woody kernel to 2.4.20 to get support for my external
> > USB drive. I succeeded, but in the process lost my network connection
> > via my rtl8139 nic. The driver (8139too) was compiled, but it won't
>  
>  Had the same problem until I ras lspci and noticed the USB controller
>  was using the same IRQ as my NIC.  Changing IRQ's fixed it.

So, following Mr. Keeling's advice,

I ran
> 
> cat /proc/ioports
>  " "  interrupts
> lsmod
> grep $blah /var/log/messages

and now I see this

debian:/home/chuck# cat /proc/interrupts
   CPU0   
  0:  37205  XT-PIC  timer
  1:661  XT-PIC  keyboard
  2:  0  XT-PIC  cascade
  9: 24  XT-PIC  usb-ohci, usb-ohci
 11:  9  XT-PIC  usb-ohci, eth0

And also this:

debian:/home/chuck# grep $chuck /var/log/messages

Dec 26 17:53:02 debian kernel: 8139too Fast Ethernet driver 0.9.24
Dec 26 17:53:02 debian kernel: PCI: Enabling device 00:0a.0 ( -> 0003)
Dec 26 17:53:02 debian kernel: PCI: Found IRQ 11 for device 00:0a.0
Dec 26 17:53:02 debian kernel: eth0: RealTek RTL8139 Fast Ethernet at 0x2000, 
00:90:f5:1f:3b:ba, IRQ 11
[...]
Dec 26 17:53:02 debian kernel: usb.c: registered new driver hub
Dec 26 17:53:02 debian kernel: uhci.c: USB Universal Host Controller Interface driver 
v1.1
Dec 26 17:53:02 debian kernel: SiS router pirq escape (96)
Dec 26 17:53:02 debian kernel: SiS router pirq escape (96)
Dec 26 17:53:02 debian kernel: PCI: Guessed IRQ 11 for device 00:03.0
Dec 26 17:53:02 debian kernel: usb-ohci.c: USB OHCI at membase 0xdc816000, IRQ 11
Dec 26 17:53:02 debian kernel: usb-ohci.c: usb-00:03.0, Silicon Integrated Systems 
[SiS] 7001
Dec 26 17:53:02 debian kernel: usb.c: new USB bus registered, assigned bus number 1


... and so I am guessing that I am having the same problem.

I will look around to see how one changes IRQ addresses, but if anyone
can give me a pointer here, I'd appreciate it.

Chuck


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



Dec 25 2003 netinst-iso integrity testing is failure

2003-12-26 Thread Lightning
I have choose the 'check the cd-rom(s) integrity' item from debian
installation menu, it reports the follow error messages to me.
" The ./dists/sarge/main/binary-i386/Release file failed the MD5
checksum verification. Your cdrom or this file may have been corrupted."
I have downloaded this iso from http://people.debian.org/~manty/testing/netinst/
completely, and don't burn it . I just install the sarge in a vmware by
directly load the iso file. 
anynone have got the same problem ?
-- 
Lightning <[EMAIL PROTECTED]>


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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread Patrick Lesslie
On Thu, Dec 25, 2003 at 09:40:14PM -0800, Scarletdown wrote:
> 
> Leaving the system unattended for a few hours, the / partition on my 
> hard drive mysteriously fills up.  When I open up KDiskfree, the 
> partition in question shows as 100% used (red line all the way across.)
> 
> This has happened twice now.  The first time was after I went to bed 
> last night.  When I got up this morning, the drive was full.  Then, it 
> happened again while we were out doing Christmas dinner and movies.  We 
> left around 11:30 this morning, and when we returned just about a half 
> hour ago, it was full again.  Both times, I was able to clear it by 
> logging out and back in again.
 
I saw a problem a bit like this once on a potato machine running kde.
I can't remember the details, but there was a huge file of zeros
in a .kde directory or similar.

I found it by doing du -sh * from the top directory and following
down through the biggest ones until I found the file.  Finding the
file will give you some clue as to its origin.  Someone might
suggest a find command to find all the really large files in one go.

> I'm suspecting that the culprit is ipmasq.  I noticed that when I'm 
> logged in to any text console, I occasionally get various firewall 
> status lines, such as:
> 
> IN= OUT=eth0 SRC=68.113.22.3 DST=68.111.54.95 LEN=40 TOS=0x00 PREC=0x00 
> TTL=64 ID=0 DF PROTO=TCP SP
> 
> I'm guessing that this stuff is also going into some sort of temporary 
> log file, which gets rather full after a few hours.  What can I do to 
> stop this?  At the very least, I would like to set things up so ipmasq 
> either creates no log file, or limits the size of the file to something 
> reasonable.  I'd also like to set it so those messages don't come up on 
> the screen as well, as it gets rather annoying when I'm working from a 
> console.

On my system they are logged into /var/log/kern.log*
I don't think they are likely to be the problem unless you either have
a tiny amount of free space or a _really_ busy site.  These log files
normally amount to just a few megabytes.

There are a couple of ways to stop the logging to the console.
The only one I know off hand is a bit dirty - that is:

# echo "1 4 1 6" > /proc/sys/kernel/printk

to adjust the kernel logging levels.  You could put it in a startup
script or just run it when you feel like it.  Have a look at that file
to see what it is now.

There are much nicer ways though!  It would be better for instance to
redirect all that stuff to one virtual console.

Patrick Lesslie


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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread Micha Feigin
On Thu, Dec 25, 2003 at 09:40:14PM -0800, Scarletdown wrote:
> Okay, this is my weirdest Linux problem yet.
> 
> Leaving the system unattended for a few hours, the / partition on my 
> hard drive mysteriously fills up.  When I open up KDiskfree, the 
> partition in question shows as 100% used (red line all the way across.)
> 
> This has happened twice now.  The first time was after I went to bed 
> last night.  When I got up this morning, the drive was full.  Then, it 
> happened again while we were out doing Christmas dinner and movies.  We 
> left around 11:30 this morning, and when we returned just about a half 
> hour ago, it was full again.  Both times, I was able to clear it by 
> logging out and back in again.
> 
> I'm suspecting that the culprit is ipmasq.  I noticed that when I'm 
> logged in to any text console, I occasionally get various firewall 
> status lines, such as:
> 
> IN= OUT=eth0 SRC=68.113.22.3 DST=68.111.54.95 LEN=40 TOS=0x00 PREC=0x00 
> TTL=64 ID=0 DF PROTO=TCP SP
> 

That is going into your /var/log/(syslog|messages|kern.log).
du --max-depth=0 on /var/log and on /tmp or du --max-depth=1 on / to
see where the data is hiding. Since it clears when you log out
(reboot?) its probably a temp file. If only logout then I would guess
something related to you window manager or session.

> I'm guessing that this stuff is also going into some sort of temporary 
> log file, which gets rather full after a few hours.  What can I do to 
> stop this?  At the very least, I would like to set things up so ipmasq 
> either creates no log file, or limits the size of the file to something 
> reasonable.  I'd also like to set it so those messages don't come up on 
> the screen as well, as it gets rather annoying when I'm working from a 
> console.
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact 
> [EMAIL PROTECTED]
> 


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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread André Carezia
Scarletdown wrote:

Okay, this is my weirdest Linux problem yet.

Leaving the system unattended for a few hours, the / partition on my 
hard drive mysteriously fills up.  When I open up KDiskfree, the 
partition in question shows as 100% used (red line all the way across.) 
What's the output of command below?

du -S / |sort -n |tail
 

--
André Carezia
Eng. de Telecomunicações
Carezia Consultoria - www.carezia.eng.br


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



David Grudek/COR/AXE is out of the office.

2003-12-26 Thread David . Grudek
I will be out of the office starting  12/26/2003 and will not return until
01/04/2004.

I will respond to your message when I return. I will Not have access to
email or voicemail.



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



Re: Strange error in syslog

2003-12-26 Thread GCS
On Thu, Dec 25, 2003 at 10:44:32PM -0500, Roberto Sanchez <[EMAIL PROTECTED]> wrote:
> Sid with a 2.6.0-mm1 kernel.
 Ah, Google is your friend:
http://lists.freebsd.org/pipermail/freebsd-questions/2003-May/005061.html
Cheers,
GCS


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



Re: Default size for fonts in X?

2003-12-26 Thread Robert Storey
On Fri, 26 Dec 2003 09:15:52 +
Anthony Campbell <[EMAIL PROTECTED]> wrote:

> However, I had a helpful suggestion from someone on alt.os.slackware,
> viz to do startx -- -dpi 110 (or whatever). Should have thought of
> this myself, I suppose...

Dear Anthony,

I also saw that suggestion on alt.os.slackware, and it's great - I've
been using it. Hats off to the person who made the original suggestion.

You can also expand on it a little bit just to make things more slick.
For one thing, to avoid typing those parameters every time, you can make
it into an alias (put in .bashrc file):

alias startx='startx -- -dpi 110'

If you (or any user on your system) finds that typing "startx" is too
traumatic, you can get rid of gdm login (not a bad idea in itself) and
put the "startx -- -dpi 110" command in your/their .bash_profile.

regards,
Robert


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



Re: pon dsl-provider

2003-12-26 Thread Rafael Alexandre Schmitt
Em Sex 26 Dez 2003 03:40, s. keeling escreveu:
> Incoming from Rafael Alexandre Schmitt:
> > Is it possible start 'pon dsl-provider' as a normal user(not root)?
> > I'm already on dialout and dip groups .
>
> Yes, as Paul mentions, pppconfig should fix it.  Become familiar with
> /etc/ppp/...

Hi,

I thought pppconfig was only for dial-up conections.

-- 
Rafael Alexandre Schmitt


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Kevin Mark
On Thu, Dec 25, 2003 at 11:44:24PM +0800, Uwe Dippel wrote:
> On Thu, 25 Dec 2003 23:28:34 +0800, Stephen Liu wrote:
> 
> > # apt-cache search Ximian Evolutuon
> > # apt-cache search Evolution
> 
> Probably depends on the version. I also found it missing in Testing.
> Finally made me switch to Thunderbird, which I haven't regretted.
> 
> On another box, earlier, I used the method to install a mixed system, with
> Evo coming from Unstable. Also works.
> 
> Personally I'd prefer not to install from Ximian, because you'd miss
> upgrades and patches.
> 
> 
Hi All,
all packages are lowercase, one word with no space.
so,
apt-get install evolution

HTH,
-Kev


signature.asc
Description: Digital signature


Woody: TaskSel - XWindows; startx fails

2003-12-26 Thread J N
When installing woody, after getting to the tasksel screen, I noticed 
that choosing "XWindowServer" option by itself did not resolve enough 
dependencies to be able to run the server.  I also tried apt-get install 
kdm, suspecting that I just needed to choose a window manager, however, 
kdm wouldn't resolve either.

My (rather blunt) solution to the problem was to choose the "desktop" 
option in tasksel as well -- that appears to resolve whatever 
dependencies need resolving.  I know just (not) enough about 
XWindowServer theory to suspect that this may be by design -- that I 
need to make some sort of 'choice' about my environment that is made by 
selecting the "desktop" option.

Does anyone know why this is, or if it is just specific to laptops, or 
if it is just that something failed that should have worked?

I'm interested in theory.  I don't have the specific error messages on 
hand (to get them, I would need to do a fair amount of work) -- but I'm 
learning how to compile kernels, and the process has resulting in 
needing to reinstall debian woody about 6 times so far... (yes, I'm 
doing things terribly wrong and I'm aware of it)... I figure 
reinstallation will go faster if I don't install all of XWindowsServer 
and the desktop each time...

Thanks!

-Jason.

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



Re: hardware compatability

2003-12-26 Thread Kevin Mark
On Thu, Dec 25, 2003 at 08:23:18PM -0800, George kelly wrote:
> I just purchased a Thinkpad R40, with a 1.4 ghz m processor, and an 
> ultra-bay, which allows multiple devices to be swaped out, my first 
> question is: is debian 3.0 r2 compatible with this device?  One of the 
> drives for it is a multi-burner, which is a cd/dvd burner, my second 
> question is: is debian 3.0 r2 compatible with this device? I have found no 
> information ANYWHERE concerning linux and the multi-burner, so ANY 
> information concerning these topics would be of immense help to me, thank 
> you.
> 
> My email: [EMAIL PROTECTED]
> 
Hi George,
I would recommend that you contact IBM and tell them that you would like
to if your lapton is becuase IBM is now using linux. And that you would appreciate a 
list
of linux compatible laptops. Also, you can check google,
linux-laptop.net or tuxmobile.org.
HTH
-Kev


signature.asc
Description: Digital signature


Re: Is Evolution available for net-installation

2003-12-26 Thread Paul Morgan
On Thu, 25 Dec 2003 23:44:24 +0800, Uwe Dippel wrote:

> On Thu, 25 Dec 2003 23:28:34 +0800, Stephen Liu wrote:
> 
>> # apt-cache search Ximian Evolutuon
>> # apt-cache search Evolution
> 
> Probably depends on the version. I also found it missing in Testing.
> Finally made me switch to Thunderbird, which I haven't regretted.
> 
> On another box, earlier, I used the method to install a mixed system, with
> Evo coming from Unstable. Also works.
> 
> Personally I'd prefer not to install from Ximian, because you'd miss
> upgrades and patches.

Evolution was in sarge a couple months ago, but it was uninstallable due
to broken or conflicting dependencies, which is why, I assume, that it was
removed.

-- 
paul



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



Re: Is Evolution available for net-installation

2003-12-26 Thread Paul Morgan
On Thu, 25 Dec 2003 08:00:04 -0800, Karsten M. Self wrote:

> 
> What debian release are you using?  I'm on testing/unstable.
> Double-check your /etc/apt/sources.list file, and try running 'atp-get
> update' again.
> 

It's not in sarge.

$ cat /etc/debian_version
testing/unstable
$ apt-cache show evolution
W: Unable to locate package evolution
E: No packages found
$ apt-cache search evolution|grep -i evolution
achilles - An artificial life and evolution simulator

-- 
paul



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



Re: booting to serial console

2003-12-26 Thread Miquel van Smoorenburg
In article <[EMAIL PROTECTED]>,
Alexey Koptsevich  <[EMAIL PROTECTED]> wrote:
>
>Hello,
>
>I am trying to figure out how to boot Linux with serial console. The
>kernel switches console to serial, outputs something unreadable and then
>switches back to regular console. I guess that the problem is the penguin
>image which appears during the boot process. I have looked through boot
>mans (such as lilo.conf) but have not found any way to disable it. How to
>make Linux boot in text only mode, without fancy stuuf like images and
>colored text?

The kernel source comes with a document called
linux/Documentation/serial-console.txt . You need to follow the
directions in that document.

If you don't have an unpacked kernel source handy, look at for example
http://linux.bkbits.net:8080/linux-2.5/anno/Documentation/[EMAIL PROTECTED]

Mike.
-- 
When life hands you lemons, grab the salt and pass the tequila.


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



Re: Woody: TaskSel - XWindows; startx fails

2003-12-26 Thread Paul Morgan
On Fri, 26 Dec 2003 06:21:02 -0600, J N wrote:

> When installing woody, after getting to the tasksel screen, I noticed 
> that choosing "XWindowServer" option by itself did not resolve enough 
> dependencies to be able to run the server.  I also tried apt-get install 
> kdm, suspecting that I just needed to choose a window manager, however, 
> kdm wouldn't resolve either.
> 
> My (rather blunt) solution to the problem was to choose the "desktop" 
> option in tasksel as well -- that appears to resolve whatever 
> dependencies need resolving.  I know just (not) enough about 
> XWindowServer theory to suspect that this may be by design -- that I 
> need to make some sort of 'choice' about my environment that is made by 
> selecting the "desktop" option.
> 
> Does anyone know why this is, or if it is just specific to laptops, or 
> if it is just that something failed that should have worked?
> 
> I'm interested in theory.  I don't have the specific error messages on 
> hand (to get them, I would need to do a fair amount of work) -- but I'm 
> learning how to compile kernels, and the process has resulting in 
> needing to reinstall debian woody about 6 times so far... (yes, I'm 
> doing things terribly wrong and I'm aware of it)... I figure 
> reinstallation will go faster if I don't install all of XWindowsServer 
> and the desktop each time...
> 
> Thanks!
> 
> -Jason.

If one is setting up a server, one may only want to run an X server
(XFree86, for example) on that machine, and not an X client.  Other
machines on the network would be running X clients and connecting with the
server's X server.  One doesn't need stuff like window managers running on
the server.

As you evidently wish to run both server and client, then you need the
desktop setup.  A window manager is part of the client, not the server.

BTW, startx starts a client X session.

Try man startx, man Xserver, man XFree86, etc.

This is necessarily very brief and incomplete, but I hope it gives you the
picture.

-- 
paul



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



Re: Wine - Does it actually work?

2003-12-26 Thread David Goodenough
On Friday 26 December 2003 08:58, David Baron wrote:
> Wine is a very pesky utility.
>
> OK, stuff like windows solitaire and freecell run perfectly. MVP-Bridge
> hangs up. So did a sound-card editing program but it did get my installed
> MIDI devices correctly which nothing "native" has done so far. Once these
> hangup, one must log out to get rid of their windows. Copernic web search
> which runs off the IE com object hung the system. Big red switch and a real
> scarey fsck session to recover--I mean heavy duty.
>
> Just as Windows requires a "pid" file to describe how to run a DOS program,
> Wine needs such a descriptor to correctly run Windows programs in Linux.
> ... and this might well vary from flavor to flavor and release to release.

Well I have no such descriptors for running Lotus Notes (the only Windows
program I use) under Wine.  I might add that I have been running Notes
under Wine successfully on an otherwise Linux only laptop since september
2001.  There are a few (very few) oddities, but nothing serious.

David


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



David Grudek/COR/AXE is out of the office.

2003-12-26 Thread David . Grudek
I will be out of the office starting  12/26/2003 and will not return until
01/04/2004.

I will respond to your message when I return. I will Not have access to
email or voicemail.



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



Re: Realtek rtl8139 nic and 2.4.20 kernel

2003-12-26 Thread Bill Kalebaugh
s. keeling wrote:

Incoming from Charles Muller:
 

Wayne Topa wrote:

   

Charles Muller([EMAIL PROTECTED]) is reported to have said:
 

I upgraded my 2.2* Woody kernel to 2.4.20 to get support for my external
USB drive. I succeeded, but in the process lost my network connection
via my rtl8139 nic. The driver (8139too) was compiled, but it won't
   

Had the same problem until I ras lspci and noticed the USB controller
was using the same IRQ as my NIC.  Changing IRQ's fixed it.
 

When I run lspci I get this:

bash-2.05a$ lspci
  00:00.0 Host bridge: Silicon Integrated Systems [SiS]: Unknown device 0650 (rev 11)
  00:01.0 PCI bridge: Silicon Integrated Systems [SiS] 5591/5592 AGP
  00:02.0 ISA bridge: Silicon Integrated Systems [SiS] 85C503/5513 (rev 04)
  00:02.3 FireWire (IEEE 1394): Silicon Integrated Systems [SiS] OHCI Compliant FireWire Controller
  00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE]
  00:02.6 Modem: Silicon Integrated Systems [SiS]: Unknown device 7013 (rev a0)
  00:02.7 Multimedia audio controller: Silicon Integrated Systems [SiS] SiS7012 PCI Audio Accelerator (rev a0)
  00:03.0 USB Controller: Silicon Integrated Systems [SiS] 7001 (rev 0f)
  00:03.1 USB Controller: Silicon Integrated Systems [SiS] 7001 (rev 0f)
  00:03.2 USB Controller: Silicon Integrated Systems [SiS] 7001 (rev 0f)
  00:03.3 USB Controller: Silicon Integrated Systems [SiS]: Unknown device 7002
  00:0a.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139 (rev 10)
  00:0c.0 CardBus bridge: ENE Technology Inc: Unknown device 1410
  01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS]: Unknown device 6325
bash-2.05a$ 

...which seems to indicate that they are not using the same IRQ
(right?).
   

Ummm, what?  What seems to indicate they are not using the same IRQ?
The fact that they're both recognized?  I believe this says nothing
other than they're both there; it's up to you to say what to do with
what was found.
Barring *really* strange circumstances, 2.4.x _should_ be able to
handle anything you throw at it.  2.6.x is way too young for a newbie
to start slavering after.
cat /proc/ioports
" "  interrupts
lsmod
grep $blah /var/log/messages
[Hey Chuck!  Que pasa?]

 

I have the same problem, my video card (NVIDIA Gforce4 MX440) and my 
Ethernet controller have the same IRQ 16.
So how do you change one of them



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



sendmail logging

2003-12-26 Thread saravanan
Hai,
   I am using sendmail 8.12 on debian 3.0. The mail logs are stored in 
/var/log/mail/maillog as well as /var/log/syslog

I 've configured in my /etc/syslogd.conf as
mail.*  /var/log/mail/maillog
I want to store only in /var/log/mail/maillog. How to avoid to store in 
syslog?

Sarav

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



Finding I/O For ISA NIC Card?

2003-12-26 Thread Russ Schneider
I have a KNE20 card in my machine.  I'm pretty sure I need (thanks to the 
help I've found here) the ne module to use it.

However, it requires I enter it's I/O with io=0xNNN.

Problem is, I can't determine what the I/O is?  lspci -vvv doesn't give it 
to me, nor does /proc/pci.

How do I determine the I/O?

-- 
[ Russ Schneider (a.k.a. Sugapablo) ]
[ http://www.sugapablo.com <--music ]
[ http://www.sugapablo.net <--personal  ]
[ [EMAIL PROTECTED]   <--jabber IM ]


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Uwe Dippel
On Fri, 26 Dec 2003 12:44:13 +0800, Stephen Liu wrote:

> Now in my new Debian 3.0 box I resume thinking of "Ximian Evolution' 1.4
> which I also have been using for a prolonged time.  But its spam filter
> is not strong compared with "thunderbird"

AFAIK, it doesn't have any !?
 
> Have you ever encountered the problem of the file 'XUL.mfasl'.  If YES,
> kindly advise about your solution.

No, never encountered this problem; neither on Thunderbird 0.3 (Testing)
nor Sid (Thunderbird 0.4)

Woody comes with 1.0.5, once again AFAIK. So go mixed systems, then !?

Or try Thunderbird, nevertheless. Contrary to Evo, which depends on half
of the worldwide accessible libraries, Thunderbird is much more lean. Try
both and decide for yourself !


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



Re: Realtek rtl8139 nic and 2.4.20 kernel

2003-12-26 Thread Uwe Dippel
On Fri, 26 Dec 2003 19:36:17 +0900, Charles Muller wrote:

> and now I see this
> 
> debian:/home/chuck# cat /proc/interrupts
>CPU0   
>   0:  37205  XT-PIC  timer
>   1:661  XT-PIC  keyboard
>   2:  0  XT-PIC  cascade
>   9: 24  XT-PIC  usb-ohci, usb-ohci
>  11:  9  XT-PIC  usb-ohci, eth0
> 
> And also this:
> 
> debian:/home/chuck# grep $chuck /var/log/messages
> 
> Dec 26 17:53:02 debian kernel: 8139too Fast Ethernet driver 0.9.24
> Dec 26 17:53:02 debian kernel: PCI: Enabling device 00:0a.0 ( -> 0003)
> Dec 26 17:53:02 debian kernel: PCI: Found IRQ 11 for device 00:0a.0
> Dec 26 17:53:02 debian kernel: eth0: RealTek RTL8139 Fast Ethernet at 0x2000, 
> 00:90:f5:1f:3b:ba, IRQ 11
> [...]

> ... and so I am guessing that I am having the same problem.

You don't 

> I will look around to see how one changes IRQ addresses, but if anyone
> can give me a pointer here, I'd appreciate it.

Don't fall for this. The Linux-Kernel has been having IRQ-sharing for
quite some time now.

Look at mine; and I'm happily writing through this 'mess':

PCI: Found IRQ 10 for device 02:06.0
PCI: Sharing IRQ 10 with 00:1f.2
PCI: Sharing IRQ 10 with 02:06.1
PCI: Sharing IRQ 10 with 02:0f.0
PCI: Sharing IRQ 10 with 02:0f.1
PCI: Sharing IRQ 10 with 02:0f.2
3c59x: Donald Becker and others. www.scyld.com/network/vortex.html
See Documentation/networking/vortex.txt
02:06.0: 3Com PCI 3c556 Laptop Tornado at 0xe800. Vers LK1.1.18-ac
 00:04:76:48:14:2e, IRQ 10
  product code  rev 00.0 date 03-01-00
02:06.0: CardBus functions mapped f8ffd800->d0866800
  Internal config register is 8060, transceivers 0x40.
  8K byte-wide RAM 5:3 Rx:Tx split, MII interface.
  MII transceiver found at address 0, status 7809.
  Enabling bus-master transmits and whole-frame receives.
02:06.0: scatter/gather enabled. h/w checksums enabled

Look how 'loaded' the IRQ 10 is here !

/# cat /proc/interrupts
   CPU0
  0:8662315  XT-PIC  timer
  1:   4556  XT-PIC  keyboard
  2:  0  XT-PIC  cascade
  5:   3193  XT-PIC  Maestro3(i)
  8:  4  XT-PIC  rtc
 10: 187289  XT-PIC  Texas Instruments PCI4451 PC card Cardbus Controller, 
Texas Instruments PCI4451 PC card Cardbus Controller (#2), usb-uhci, eth0 
 12: 25  XT-PIC  PS/2 Mouse
 14:  89462  XT-PIC  ide0
NMI:  0
LOC:  0
ERR:  0
MIS:  0


How about showing us your cat /etc/modules and ifconfig for a change
to the better ?


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



Re: pon dsl-provider

2003-12-26 Thread Paul Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, Dec 26, 2003 at 10:15:58AM -0200, Rafael Alexandre Schmitt wrote:
> I thought pppconfig was only for dial-up conections.

Well, that's what PPP in general is for.  Some DSL providers have
decided it's great for DSL as well (it isn't), because it allows them
to oversell their network badly and kick off users who have been on
the longest.

- -- 
 .''`. Paul Johnson <[EMAIL PROTECTED]>
: :'  :
`. `'` proud Debian admin and user
  `-  Debian - when you have better things to do than fix a system
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/7E/fUzgNqloQMwcRAnmiAJ9F1J0uFrNnj69dbAjMDmVsStj9RACg4d2o
PNnS8dTzgxkjZTTBnvasMLM=
=+ug5
-END PGP SIGNATURE-


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



Re: Finding I/O For ISA NIC Card?

2003-12-26 Thread Matthias Hentges
Am Fre, 2003-12-26 um 15.48 schrieb Russ Schneider:
> I have a KNE20 card in my machine.  I'm pretty sure I need (thanks to the 
> help I've found here) the ne module to use it.
> 
> However, it requires I enter it's I/O with io=0xNNN.
> 
> Problem is, I can't determine what the I/O is?  lspci -vvv doesn't give it 
> to me, nor does /proc/pci.
> 
> How do I determine the I/O?

Either the i/o and IRQ settings are "jumpered" on the card or
you need the vendors' DOS app to view / configure the settings.

HTH
-- 

Matthias Hentges 
Cologne / Germany

[www.hentges.net] -> PGP welcome, HTML tolerated
ICQ: 97 26 97 4   -> No files, no URL's

My OS: Debian Woody. Geek by Nature, Linux by Choice


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



Re: jdk and jikes depend on xfree86-common in stable?

2003-12-26 Thread Uwe Dippel
On Thu, 25 Dec 2003 19:30:50 -0500, Carl Fink wrote:

> Fighting further with my server, I note that removing xfree86-common would
> also remove everything Java-related.  Um, why?  I have (and need) Java on
> the system so my organization's web developer can use JSP.  JSP do not
> require a graphical interface.

Surely not. But this is a common occurrence in many distros and
situations. Not only on Linux, but also *BSDs. There are minimum 2
philosophies to it. Before I adhered to the strict one: remove the
dependencies, if required forcibly. Now I tend to look at the sizes of
harddisks and ask: why does it bother if you have a few 10s of MB lying
around dead. Does it really bother as long as you never start X ? These
days I tend to say 'no'.

Up to you to make up your mind.


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



Re: Finding I/O For ISA NIC Card?

2003-12-26 Thread Johann Koenig
On Friday December 26 at 09:48am
Russ Schneider <[EMAIL PROTECTED]> wrote:

> How do I determine the I/O?

Try the isapnp tools.
-- 
-johann koenig
Now Playing: Social Distortion - Down Here (W/ The Rest Of Us) : White
Light White Heat White Trash
Today is Setting Orange, the 68th day of The Aftermath in the YOLD 3169
My public pgp key: http://mental-graffiti.com/pgp/johannkoenig.pgp


pgp0.pgp
Description: PGP signature


Warning at booting

2003-12-26 Thread Stephen Liu
Hi folks,

Debian testing/unstabler
=

At booting following warning popup
..
modprobe: modprobe: Can't locate module block-major-114
modprobe: modprobe: Can't locate module block-major-114
modprobe: modprobe: Can't locate module block-major-114
.
.


Kindly advise what does it indicate and how to fix it.

Thanks in advance.

Merry Xmas and B.R.
Stephen Liu


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



Re: Wish to network my home computers but don't know Jack about it

2003-12-26 Thread BruceG

> I kept waiting for someone to answer this who actually knows what
> they're doing, but I haven't seen a reply, so I'll take a stab at it.
>
>   --- router ---
snip

Kent - great job! You hit it exactly.

Router: a device that connects your home network to other networks. It knows
the way (the route) to networks outside your own. You would use a router
when you have more than one home network, or when you connect to the outside
world.

Hub: you got that one, too! It's a device that connects PCs on the same
local network. Bandwidth is shared, and every PC "sees" every packet on the
network. It's suitable for smaller networks.

(note for sneaky-type guys: if you have a hub and run Etherpeak, you can see
every packet on the network destined for every PC. Reading and understanding
those packets is an entirely different thing.)

Switch: also connects devices on the same local area network, but can also
support virtual LANS with the help of a router. Each PC only sees the
packets destined for itself.

WAP: this is a wireless access point. It has 2 connections. One is typically
a wired ethernet connection, the other is wireless. You use it to allow
wireless devices to connect to your LAN. Wireless devices can be wireless
PCs or wireless bridges. You can also get wireless game cards for your PS2!

To confuse the matter, some routers have built in switches or hubs. Some
routers have built in WAPS. Linksys has a book out 'splaining the various
products in THEIR product set. If you don't mind being vendor-specific, that
might be a good start.


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Stephen Liu
Hi Paul,

- snip -
> Evolution was in sarge a couple months ago, but it was uninstallable due
> to broken or conflicting dependencies, which is why, I assume, that it was
> removed.

Noted with thanks

B.R.
Stephen Liu


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



Good front end for small postgress dtabases?

2003-12-26 Thread stan
I need to create some small databses in postgress (christmas card list,
household inventory). What choices do I have for creating user input forms,
and reports in Debian?

-- 
"They that would give up essential liberty for temporary safety deserve
neither liberty nor safety."
-- Benjamin Franklin


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



Re: Warning at booting

2003-12-26 Thread Matthias Hentges
Am Fre, 2003-12-26 um 16.40 schrieb Stephen Liu:
> Hi folks,
> 
> Debian testing/unstabler
> =
> 
> At booting following warning popup
> ..
> modprobe: modprobe: Can't locate module block-major-114
> modprobe: modprobe: Can't locate module block-major-114
> modprobe: modprobe: Can't locate module block-major-114
> .
> .
> 
> 
> Kindly advise what does it indicate and how to fix it.

http://www.google.com/search?q=block-major-114

Takes about 20 seconds to find an answer...

-- 

Matthias Hentges 
Cologne / Germany

[www.hentges.net] -> PGP welcome, HTML tolerated
ICQ: 97 26 97 4   -> No files, no URL's

My OS: Debian Woody. Geek by Nature, Linux by Choice


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Stephen Liu
Hi Uwe,

å ææä 26 åäæ 2003 22:21ïUwe Dippel åé:
> On Fri, 26 Dec 2003 12:44:13 +0800, Stephen Liu wrote:
> > Now in my new Debian 3.0 box I resume thinking of "Ximian Evolution' 1.4
> > which I also have been using for a prolonged time.  But its spam filter
> > is not strong compared with "thunderbird"
>
> AFAIK, it doesn't have any !?
>
> > Have you ever encountered the problem of the file 'XUL.mfasl'.  If YES,
> > kindly advise about your solution.
>
> No, never encountered this problem; neither on Thunderbird 0.3 (Testing)
> nor Sid (Thunderbird 0.4)

Above noted with thanks

> Woody comes with 1.0.5, once again AFAIK. So go mixed systems, then !?
>
> Or try Thunderbird, nevertheless. Contrary to Evo, which depends on half
> of the worldwide accessible libraries, Thunderbird is much more lean. Try
> both and decide for yourself !

$ cat /etc/debian_version
testing/unstable

I made a mistake.  I am running 'Debian testing'

$ apt-cache show thunderbird
W: Unable to locate package thunderbird

$ apt-cache search thunderbird
mozilla-thunderbird - Mozilla Thunderbird standalone mail client
mozilla-thunderbird-enigmail - Enigmail - GPG support for Mozilla Thunderbird

What is the version of Mozilla Thunderbird available on Debian site for 
download?  How to find it?

Thanks

B.R.
Stephen



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



Re: Finding I/O For ISA NIC Card?

2003-12-26 Thread Paul Morgan
On Fri, 26 Dec 2003 09:48:20 -0500, Russ Schneider wrote:

> I have a KNE20 card in my machine.  I'm pretty sure I need (thanks to the 
> help I've found here) the ne module to use it.
> 
> However, it requires I enter it's I/O with io=0xNNN.
> 
> Problem is, I can't determine what the I/O is?  lspci -vvv doesn't give it 
> to me, nor does /proc/pci.
> 
> How do I determine the I/O?

If you are dual booting with a Microsoft OS, boot up Windows and take a
look at the card in device manager.  You should be able to see the
resources it's using including the I/O addresses.

I know that's kind of cheating, but, hey, whatever it takes :)

-- 
paul



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



Re: Is Evolution available for net-installation

2003-12-26 Thread Stephen Liu
Hi Kevin

- snip -
> Hi All,
> all packages are lowercase, one word with no space.
> so,
> apt-get install evolution

$ apt-cache search evolution|grep -i evolution
achilles - An artificial life and evolution simulator
$ apt-cache show evolution
W: Unable to locate package evolution
E: No packages found

Could not find it.

B.R.
Stephen Liu


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



Re: Realtek rtl8139 nic and 2.4.20 kernel

2003-12-26 Thread Charles Muller
Uwe Dippel wrote:

> How about showing us your cat /etc/modules and ifconfig for a change
> to the better ?

These are as follows:


debian:/home/chuck# cat /etc/modules
# /etc/modules: kernel modules to load at boot time.
#
# This file should contain the names of kernel modules that are
# to be loaded at boot time, one per line.  Comments begin with
# a "#", and everything on the line after them are ignored.

unix
af_packet
8139too
vfat
usb-storage
scanner
dc2xx

debian:/home/chuck# ifconfig
eth0  Link encap:Ethernet  HWaddr 00:90:F5:1F:3B:BA  
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
  RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:100 
  RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
  Interrupt:11 Base address:0x2000 

loLink encap:Local Loopback  
  inet addr:127.0.0.1  Mask:255.0.0.0
  UP LOOPBACK RUNNING  MTU:16436  Metric:1
  RX packets:338 errors:0 dropped:0 overruns:0 frame:0
  TX packets:338 errors:0 dropped:0 overruns:0 carrier:0
  collisions:0 txqueuelen:0 
  RX bytes:17668 (17.2 KiB)  TX bytes:17668 (17.2 KiB)

debian:/home/chuck# 


Thanks for helping.

Chuck



Charles Muller
Toyo Gakuen University
Faculty of Humanities
1660 Hiregasaki, Nagareyama-shi
Chiba 270-0161, JAPAN

Web Resources for East Asian Language and Thought
http://www.acmuller.net


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



Re: Finding I/O For ISA NIC Card?

2003-12-26 Thread Russ Schneider
On Fri, 26 Dec 2003, Paul Morgan wrote:

> If you are dual booting with a Microsoft OS, boot up Windows and take a
> look at the card in device manager.  You should be able to see the
> resources it's using including the I/O addresses.
> 
> I know that's kind of cheating, but, hey, whatever it takes :)

I would if I could, but this is an old "Frankenstein" machine and it 
currently only has Debian on it.

I'm trying to see if I can use an MS-DOS bootdisk.  Anyone know how to use 
a .img file to get the image to a floppy in linux?

-- 
[ Russ Schneider (a.k.a. Sugapablo) ]
[ http://www.sugapablo.com <--music ]
[ http://www.sugapablo.net <--personal  ]
[ [EMAIL PROTECTED]   <--jabber IM ]


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



Re: New to Debian Install Problems

2003-12-26 Thread Russ Schneider
On Thu, 25 Dec 2003, Kent West wrote:

> I've seen this several times; it's usually caused by a bad floppy or a 
> bad CDROM; 

Actually, it was a bad hard drive. :) 

-- 
[ Russ Schneider (a.k.a. Sugapablo) ]
[ http://www.sugapablo.com <--music ]
[ http://www.sugapablo.net <--personal  ]
[ [EMAIL PROTECTED]   <--jabber IM ]


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



vim and syntax configuration line in file

2003-12-26 Thread Jerome BENOIT
Hello List,

since while I have noticed that my vim editors
no more recognize my vim configuration line such
%% vim:syntax=tex
## vim:syntax=maple
in my file.

I can not figure out what is wrong:
any idea.
Thanks,
Jerome BENOIT
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Is Evolution available for net-installation

2003-12-26 Thread Colin Watson
On Fri, Dec 26, 2003 at 06:39:59AM -0500, Paul Morgan wrote:
> Evolution was in sarge a couple months ago, but it was uninstallable due
> to broken or conflicting dependencies, which is why, I assume, that it was
> removed.

With any luck it'll return before release, but:

  evolution (- to 1.4.5-3)
  Maintainer: Takuo KITAME
  58 days old (needed 2 days)
  evolution (source, alpha, arm, hppa, i386, ia64, m68k, powerpc, s390, sparc) is 
buggy! (2 > 0)
  Not considered
  Depends: evolution gtkhtml3.0 (not considered)
  Depends: evolution heimdal (not considered)
  Depends: evolution gnome-pilot (not considered)
  Depends: evolution krb4
  Depends: evolution pilot-link
  Depends: evolution mozilla (not considered)
  Depends: evolution zlib (not considered)

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: New "unstable" system, problems isntalling Gnome

2003-12-26 Thread Colin Watson
On Thu, Dec 25, 2003 at 05:26:56PM -0500, stan wrote:
> I'm trying to help a friend build a new Debian machine. Since it's for
> MythTV, it needs to be an "unstabe" machine.

Is it impossible to backport the relevant bits?

> When I try to istall teh gnome meta package I egt unmet dependencies:
> 
> Depends: gnome-office (= 42) but it is not going to be installed
> Depends: rhythmbox but it is not going to be installed
> 
> What can I do to resolve this?

It's probably just not installable at the moment. Look at gnome's
Depends: line and install everything in it apart from the above
individually.

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: jdk and jikes depend on xfree86-common in stable?

2003-12-26 Thread Colin Watson
On Thu, Dec 25, 2003 at 07:30:50PM -0500, Carl Fink wrote:
> Fighting further with my server, I note that removing xfree86-common
> would also remove everything Java-related.  Um, why?  I have (and
> need) Java on the system so my organization's web developer can use
> JSP.  JSP do not require a graphical interface.

Look at what's in xfree86-common ...

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: bash scripts misrepresenting white space

2003-12-26 Thread Colin Watson
On Thu, Dec 25, 2003 at 09:32:05PM -0500, Johann Koenig wrote:
> I tried reading the man page and the BASH Programming HOWTO, but I
> couldn't really get what I needed out of either.

A friend of mine wrote an article on common mistakes in shell
programming, which may help you:

  http://www.greenend.org.uk/rjk/2001/04/shell.html

> Oh well, with you're example to guide me, I got it right. If anybodies
> willing, please look over the attached script and give any comments
> that come to mind.

I haven't had a chance to look in detail, but the tool you want to strip
extensions is basename. Alternatively, look at the ${parameter%word}
syntax under "Parameter Expansion" in bash(1).

Cheers,

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: Need zlib1g (>= 1:1.2.1)

2003-12-26 Thread Colin Watson
On Thu, Dec 25, 2003 at 09:14:55PM -0500, stan wrote:
> I'm trying to install mythtv on an "unstab;e" system, and it seesm to need
> a later zlib. Where can I get this?

How about the one in unstable? Update. Unstable currently has 1:1.2.1-3.

Cheers,

-- 
Colin Watson  [EMAIL PROTECTED]


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



Advice on usb pendrive purchase

2003-12-26 Thread Hugo S. Carrer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi list,

I'm looking for a usb pendrive - keychain,(or whatever the name is) but
don't know jack about'em. Of course I want to buy the most Linux-Debian
friendly one I can afford. I've been browsing through linux-usb.org but not
much luck with actual brand-names. So pointers and links to some Doc is
welcome.


- - -- 
Ing. Hugo S. Carrer
Laboratorio de Comunicaciones Digitales UNC
Tel./Fax: +54 351-4334147 Int.105
http://lcd.efn.uncor.edu

-BEGIN PGP SIGNATURE-

iD8DBQE/7G3pQs83SACVjQQRAoK8AJ9u/l0eX3QfaO0TqnL64GB8eJB+4wCfTvGT
u0nN4PmyeMY5lb+WEquTKb8=
=tA8W
-END PGP SIGNATURE-


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



Re: vim and syntax configuration line in file

2003-12-26 Thread Colin Watson
On Fri, Dec 26, 2003 at 04:53:08PM +0200, Jerome BENOIT wrote:
> Hello List,
> 
> since while I have noticed that my vim editors
> no more recognize my vim configuration line such
> 
> %% vim:syntax=tex
> ## vim:syntax=maple
> 
> in my file.
> 
> I can not figure out what is wrong:
> any idea.

You probably have the modelines option set to 0, which appears to be the
default in /etc/vim/vimrc in some recent Debian vim packages. You can
override that in ~/.vimrc if you want.

I'm not sure I agree with the default; if hazardous modelines are
possible then that in itself is a bug which needs to be fixed by more
than just changing the default, but you may want to read about it for
yourself.

Cheers,

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Uwe Dippel
On Sat, 27 Dec 2003 00:07:48 +0800, Stephen Liu wrote:

> What is the version of Mozilla Thunderbird available on Debian site for 
> download?  How to find it?

It is available for Unstable; 0.4. Read the doc for mixed versions, add
the unstable sources to sources.list, update your sources and apt-cache
show evolution will bring 1.4.5. or so.

But: start by reading the doc about the settings for mixed. See debian
documentation therefore. It needs a few steps to work well; you have to
indicate your base version, which program should follow unstable, etc. Too
much for in here.

Good luck,

Uwe





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



Re: Spamassassin on Debian HOWTO?

2003-12-26 Thread Lucas Albers

Carl Fink said:
> Thanks.  I will try it this weekend

I just use procmail to remove duplicate messages when I am cc'ed.

I have not backported spamassassin to stable from testing.
Is their a backport of spamassassin for stable?


I generally use the testing mimedefang/spamassassin becuase it uses the
newer perl version 5.8.
You can pin it so you only need to upgrade perl, and 17 perl modules to
use the newer perl on a woody system.


-- 
--Luke CS Sysadmin, Montana State University-Bozeman


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



X11 error

2003-12-26 Thread Marco
I installed Debian Woody but kdm doesn't start and this message appear:

Fatal server error:
AddScreen/ScreenInit failed for driver 0

i already configured the screen but nothing changes.


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Colin Watson
On Sat, Dec 27, 2003 at 12:38:36AM +0800, Uwe Dippel wrote:
> On Sat, 27 Dec 2003 00:07:48 +0800, Stephen Liu wrote:
> > What is the version of Mozilla Thunderbird available on Debian site for 
> > download?  How to find it?
> 
> It is available for Unstable; 0.4. Read the doc for mixed versions, add
> the unstable sources to sources.list, update your sources and apt-cache
> show evolution will bring 1.4.5. or so.
> 
> But: start by reading the doc about the settings for mixed.

Or seriously consider avoiding it altogether and backporting instead; it
seems to cause much confusion.

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Brad Sims
On Friday 26 December 2003 8:21 am, Uwe Dippel wrote:
> Or try Thunderbird, nevertheless. Contrary to Evo, which depends on half
> of the worldwide accessible libraries, Thunderbird is much more lean.

Of course Evolution depends on every library known to man (CVS versions 
required on 1/4 of them); it's a Gnome app isn't it.   (I am a KDE zealot,
can't you tell )

I say that as a happy Kmail user, I use POPFile for my spam sorting needs
and I have KMail set to filter on the spam headers and to place email 
in the approriate folder for my mailing lists. 

POPFile is a good baynesian filtering proxy that works anywhere perl
does . My particular install is running 99.68% accurate. 
-- 
Today is the first day of the rest of your sentence


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Colin Watson
On Fri, Dec 26, 2003 at 11:46:40AM -0600, Brad Sims wrote:
> On Friday 26 December 2003 8:21 am, Uwe Dippel wrote:
> > Or try Thunderbird, nevertheless. Contrary to Evo, which depends on
> > half of the worldwide accessible libraries, Thunderbird is much more
> > lean.
> 
> Of course Evolution depends on every library known to man (CVS
> versions required on 1/4 of them); it's a Gnome app isn't it.   (I
> am a KDE zealot, can't you tell )

Bah. KDE isn't really all that much better; they just put all the
libraries into one massive lump instead of splitting them out. There
isn't much to choose between them on that front, really.

-- 
Colin Watson  [EMAIL PROTECTED]


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



Re: Wish to network my home computers but don't know Jack about it

2003-12-26 Thread Cybe R. Wizard
On Thu, 25 Dec 2003 23:27:50 -0600
Kent West <[EMAIL PROTECTED]> wrote:

> I kept waiting for someone to answer this who actually knows what 
> they're doing, but I haven't seen a reply, so I'll take a stab at it.

Thanks, Kent, I think you've stabbed it through the heart of the matter.
Understanding increases.

Rusty Smith, GNUbie
AKA (in non-Linux fora)
Cybe R. Wizard


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



Re: Realtek rtl8139 nic and 2.4.20 kernel

2003-12-26 Thread Uwe Dippel
On Sat, 27 Dec 2003 01:15:05 +0900, Charles Muller wrote:

> debian:/home/chuck# cat /etc/modules
> # /etc/modules: kernel modules to load at boot time.
> #
> # This file should contain the names of kernel modules that are
> # to be loaded at boot time, one per line.  Comments begin with
> # a "#", and everything on the line after them are ignored.
> 
> unix
> af_packet
> 8139too

module is here, good ! (Does it need mii, maybe someone could help if
necessary !?)

> debian:/home/chuck# ifconfig
> eth0  Link encap:Ethernet  HWaddr 00:90:F5:1F:3B:BA
>   UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 RX
>   packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0
>   errors:0 dropped:0 overruns:0 carrier:0 collisions:0
>   txqueuelen:100
>   RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b) Interrupt:11 Base
>   address:0x2000
> 
> loLink encap:Local Loopback
>   inet addr:127.0.0.1  Mask:255.0.0.0
>   UP LOOPBACK RUNNING  MTU:16436  Metric:1 RX packets:338
>   errors:0 dropped:0 overruns:0 frame:0 TX packets:338 errors:0
>   dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX
>   bytes:17668 (17.2 KiB)  TX bytes:17668 (17.2 KiB)
> 

eth0 doesn't have an address, just as I thought. And hasn't passed a
single packet so far.

Let's try giving it an address:

ifconfig eth0 192.168.1.200

for a starter. Probably you know which one you need ? Instead of that
192.168.1.200 ??

But even if not, you can then always 

ping 192.168.1.200

, should give you some result like

64 bytes from 192.168.1.200: icmp_seq=1 ttl=255 time=2.2 ms
64 bytes from 192.168.1.200: icmp_seq=2 ttl=255 time=0.7 ms,

and show some bytes under eth0 (ifconfig, see above); not 0 0 0 0 0

Then you'd know that everything is fine (except its address, eventually)


HTH,


Uwe




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



Re: America's Army - OpenGL Error

2003-12-26 Thread Arnt Karlsen
On Thu, 25 Dec 2003 22:01:08 -0800, 
Paul Johnson <[EMAIL PROTECTED]> wrote in message 
<[EMAIL PROTECTED]>:

> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> On Thu, Dec 25, 2003 at 09:31:41PM -0800, Scarletdown wrote:
> > XFree86 is version 4 point somethingorother (from the Knoppix 3.3
> > CD). My video card is an nVidia GeForce FX 5600 (256MB)
> 
> Oh.  Another fellow nVidia victim.  Good luck, I'm not sure how I got
> it working.  easy way is switch to ATI.

..meanwhile, check the [F2] button and the boot options list over at
http://knoppix.net/ ,  chances are "nv" or somesuch in the X modules
options, might help.

-- 
..med vennlig hilsen = with Kind Regards from Arnt... ;-)
...with a number of polar bear hunters in his ancestry...
  Scenarios always come in sets of three: 
  best case, worst case, and just in case.



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



Re: Sound Blaster Audigy 2 in Debian Sarge

2003-12-26 Thread Axel Burwitz
Axel Burwitz wrote:

> Scott C. Linnenbringer wrote:
> 
> 
>> The process is rather simple: just read the README in the emu10k1-cvs
>> archive, and make sure you have the kernel headers/source for your
>> kernel. Otherwise it's a straight compile, install and then module load.
>> 
>> http://sourceforge.net/cvs/?group_id=44773
>> 
>> 
> 

Scot,
 my next try was:

made a dir "build" in the dir "2.4.22-bf2.4" (renamed kernel-source-dir with
copied kernel-headers into "include") and ran "make" in emu10k1-dir again.

Result was:

debian-sarge:~# cd /home/axel/emu10k1
debian-sarge:/home/axel/emu10k1# make
make -Cscripts
make[1]: Entering directory `/home/axel/emu10k1/scripts'
cc -I/usr/src/`uname -r`/build/include get_version.c -o get_version
get_version.c:2:19: stdio.h: No such file or directory
make[1]: *** [get_version] Error 1
make[1]: Leaving directory `/home/axel/emu10k1/scripts'
make: *** [opts] Error 2


??

Regards
Axel


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



Re: Finding I/O For ISA NIC Card?

2003-12-26 Thread Uwe Dippel
On Fri, 26 Dec 2003 11:24:16 -0500, Russ Schneider wrote:

> I'm trying to see if I can use an MS-DOS bootdisk.  Anyone know how to use 
> a .img file to get the image to a floppy in linux?

Ah, an ex-windows-add ?

dd if=filename.img of=/dev/fd0


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



David Grudek/COR/AXE is out of the office.

2003-12-26 Thread David . Grudek
I will be out of the office starting  12/26/2003 and will not return until
01/04/2004.

I will respond to your message when I return. I will Not have access to
email or voicemail.



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



Re: vim and syntax configuration line in file

2003-12-26 Thread Jerome BENOIT


Colin Watson wrote:
On Fri, Dec 26, 2003 at 04:53:08PM +0200, Jerome BENOIT wrote:

Hello List,

since while I have noticed that my vim editors
no more recognize my vim configuration line such
%% vim:syntax=tex
## vim:syntax=maple
in my file.

I can not figure out what is wrong:
any idea.


You probably have the modelines option set to 0,
Indeed !

which appears to be the
default in /etc/vim/vimrc in some recent Debian vim packages. You can
override that in ~/.vimrc if you want.
I'm not sure I agree with the default; if hazardous modelines are
possible then that in itself is a bug which needs to be fixed by more
than just changing the default, but you may want to read about it for
yourself.
Thanks,
Jerome


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



Re: Advice on usb pendrive purchase

2003-12-26 Thread Karsten M. Self
on Fri, Dec 26, 2003 at 02:21:17PM -0300, Hugo S. Carrer ([EMAIL PROTECTED]) wrote:

> I'm looking for a usb pendrive - keychain,(or whatever the name is) but
> don't know jack about'em. Of course I want to buy the most Linux-Debian
> friendly one I can afford. I've been browsing through linux-usb.org but not
> much luck with actual brand-names. So pointers and links to some Doc is
> welcome.

Virtually all of them work.

For more info:

http://www.nytimes.com/2003/12/26/business/26soft.html
Floppies for the New Millennium
Posted on Monday, December 01, 2003 by Rick Moen


Peace.

-- 
Karsten M. Self <[EMAIL PROTECTED]>http://kmself.home.netcom.com/
 What Part of "Gestalt" don't you understand?
   Microsoft Trustworthy Computing:
   http://www.aaxnet.com/editor/edit033.html


pgp0.pgp
Description: PGP signature


can not ping other hosts with VT6105 Rhine-III on 2.4

2003-12-26 Thread Bill Kalebaugh
I have two computers running through a hub.  Computer Bills will ping 
the other computer OK with
2.2.20 woody running but if I try to upgrade to 2.4.xx I can not ping 
anything but its self.
I have tried 2.4.18, 2.4.20, 2.4.21 & 2.4.23.
Suse 8.2 works and pings hosts with 2.4.xx on this same computer.

I upgrade the other computer Bill2 from 2.2.20 to 2.4.xx and it works 
just fine.

I have tried ever thing I can think of with no luck.

Any body have any Ideas???

Host NameBills
DomainPOGO
ProcessorAMD Athlon Xp 2000+ (K7) speed 1.67GHz 256kB
MainbboardSOYO KT400 Ultra (KT400-8235)
   BusesISA, AGP, PCI, i2c/SM Bus
   BiosPhoenix Technologies, LTD 6.00 PG
   ChipsetVIA Technologies VT8377 Apollo KT400 CPU to PCI Bridge
   VIA 8235 South Bridge
   KT400 North Bridge
VideoADPMSI MS-StarForce4 MX440  (NVIDIA GeForce4 MX440)
   MonitorEMC PRO-VIEW 19" PX-998 9JL-SCY-HP182 MPR II
   SER# FEBL8A070768U  SU PX988
   Horizontal 30-98KHz   Vertical 50-150Hz
Hard DiskMaxtor 5T030H 30 GB
CD-ROMLG CD-ROM CRD-8521B
DVDPioneer DVD-RW DVR-106D
FloppyNEC 3.5" 1.44MB
USBVIA Technologies 3038
KeyboardIBM Standard 101
MouseMicrosoft Wheel Mouse PS/2
SoundCreative SB Live  (WDM)
MultimediaAverDVD EZMAKER WDM Video Capture BT-848
PrinterHP LaserJet 4Si MX
NetworkADPVIA VT6102 Rhine-II  PCI FAST ETHERNET 100 Mbit
   Debian   
Xfree864.2.1
make3.77
size2.95
insmod2.1.121
proc2.2.12

Host NameBill2
DomainPOGO
ProcessorIntel Pentium4 2 Ghz 512 on board Cache
MainbboardP4PB400
   BusesISA, AGP, PCI, Firewire/1394, i2c/SM Bus
   BiosAward 6.00 PG
   Memory512 MB
   ChipsetVIA 8235 South Bridge
   VIA P4X400 / P4X266E North Bridge
VideoADPMatrox MGA Mystique 220  4 MB
   MonitorEMC PRO-VIEW 19" PX-998 9JL-SCY-HP182 MPR II
   SER# FEBL8A070768U  SU PX988
   Horizontal 30-98KHz   Vertical 50-150Hz
Hard DiskMaxtor 20 GB
CD-ROMHP CD-Writer+9100
USBVIA Technologies 3038
FireWire/1394 C/HPCI OHCI
KeyboardCompaq Standard 101
MouseMicrosoft Wheel Mouse PS/2
SoundVIA AC`97 Enhanced Audio Controller (WDM)
Multimedia1394 from ADVC100
PrinterHP LaserJet 4Si MX
NetworkADPVIA VT6105 Rhine-III  PCI FAST ETHERNET 100 Mbit
   Debian
Xfree864.0.1
GCC2.91.66 or 2.7.2.3
make3.77
size2.95
insmod2.1.121
proc2.2.12
Thanks Bill K





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



Any d-u equivalent for Mac OS X?

2003-12-26 Thread Mariano Kamp
Hi,

  I recently bought an Apple pb and now I realize with horror that d-u
is not the right place for my questions anymore ;-) At least not for the
pb related ones. 

  Anyway, any good suggestion for a good list on OS X related stuff?

Cheers,
Mariano


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Paul Morgan
On Sat, 27 Dec 2003 00:07:48 +0800, Stephen Liu wrote:


> $ cat /etc/debian_version
> testing/unstable
> 
> I made a mistake.  I am running 'Debian testing'
> 
> $ apt-cache show thunderbird
> W: Unable to locate package thunderbird
> 
> $ apt-cache search thunderbird
> mozilla-thunderbird - Mozilla Thunderbird standalone mail client
> mozilla-thunderbird-enigmail - Enigmail - GPG support for Mozilla Thunderbird
> 
> What is the version of Mozilla Thunderbird available on Debian site for 
> download?  How to find it?
> 

I am also running testing.  The version in testing is 0.3.  I
personally would strongly suggest that you keep your distribution unmixed
and use 0.3, upgrading when 0.4 makes it to testing.  As Colin Watson
pointed out, mixing distributions can be confusing, and it adds a
level of complication to system admin.  IMHO, it's just not worth mixing
stuff up just for a minor release.

You could have used apt-cache to discover the version:

$ apt-cache show mozilla-thunderbird
Package: mozilla-thunderbird
Priority: optional
Section: mail
Installed-Size: 33044
Maintainer: Alexander Sack <[EMAIL PROTECTED]>
Architecture: i386
Version: 0.3-6
[...]

-- 
paul



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



Re: Any d-u equivalent for Mac OS X?

2003-12-26 Thread Scott C. Linnenbringer
On Fri, Dec 26, 2003, at 19:56 +0100, Mariano Kamp wrote: 

> Hi,
> 
>   I recently bought an Apple pb and now I realize with horror that d-u
> is not the right place for my questions anymore ;-) At least not for
> the pb related ones. 
> 
>   Anyway, any good suggestion for a good list on OS X related stuff?

If you're planning on installing Debian on your Apple PowerBook,
debian-powerpc is a great mailing list. Apple is well regarded in making
good Linux notebooks ... just as Debian is well regarded in making good
PowerPC operating systems.

But as for MacOS X, I don't know. macosxhints is a great website for
lots of miscellaneous information. And if you use Fink or DarwinPorts, I
believe there are plenty of mailing lists specific to that.

http://www.macosxhints.com/


-- 
scott c. linnenbringer|   [EMAIL PROTECTED]
http://www.panix.com/~sl  |  [EMAIL PROTECTED]



pgp0.pgp
Description: PGP signature


Re: Good front end for small postgress dtabases?

2003-12-26 Thread Paul Morgan
On Fri, 26 Dec 2003 10:57:15 -0500, stan wrote:

> I need to create some small databses in postgress (christmas card list,
> household inventory). What choices do I have for creating user input forms,
> and reports in Debian?

pgaccess

$ apt-cache show pgaccess
Package: pgaccess
Priority: optional
Section: misc
Installed-Size: 4196
Maintainer: Oliver Elphick <[EMAIL PROTECTED]>
Architecture: all
Version: 1:0.98.8.20030520-1
Replaces: pgmonitor
Depends: tcl8.3 | tcl8.4, tk8.3 | tk8.4, libpgtcl (>= 7.3), tcllib
Suggests: postgresql
Conflicts: pgmonitor
Filename: pool/main/p/pgaccess/pgaccess_0.98.8.20030520-1_all.deb
Size: 968886
MD5sum: 49f8db17b750db9ca704a0b22fa4b356
Description: Tk/Tcl interface to PostgreSQL
 A Tk/Tcl program for X that provides a front-end to PostgreSQL.  It can be
 used to generate and store queries, views, reports and forms.
 .
 The PostgreSQL database may be local or on a remote machine.
Task: database-server


-- 
paul



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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread Karsten M. Self
on Thu, Dec 25, 2003 at 09:40:14PM -0800, Scarletdown ([EMAIL PROTECTED]) wrote:

> Leaving the system unattended for a few hours, the / partition on my 
> hard drive mysteriously fills up.  When I open up KDiskfree, the 
> partition in question shows as 100% used (red line all the way across.)
> 
> This has happened twice now.  The first time was after I went to bed 
> last night.  When I got up this morning, the drive was full.  Then, it 
> happened again while we were out doing Christmas dinner and movies.  We 
> left around 11:30 this morning, and when we returned just about a half 
> hour ago, it was full again.  Both times, I was able to clear it by 
> logging out and back in again.
> 
> I'm suspecting that the culprit is ipmasq.  I noticed that when I'm 
> logged in to any text console, I occasionally get various firewall 
> status lines, such as:
> 
> IN= OUT=eth0 SRC=68.113.22.3 DST=68.111.54.95 LEN=40 TOS=0x00 PREC=0x00 
> TTL=64 ID=0 DF PROTO=TCP SP
> 
> I'm guessing that this stuff is also going into some sort of temporary 
> log file, which gets rather full after a few hours.  What can I do to 
> stop this?  At the very least, I would like to set things up so ipmasq 
> either creates no log file, or limits the size of the file to something 
> reasonable.  I'd also like to set it so those messages don't come up on 
> the screen as well, as it gets rather annoying when I'm working from a 
> console.

Questions to trace this problem:

  - How have you partitioned your system?  What filesystems do you have,
and how large are they?  Output of:

   $ df 
   $ df -h
   # fdisk -l /dev/hd[a-z]

...is useful here (note that '#' indicates commands to run as root,
'$' as root or nonprivileged user).

For general partitioning guidelines, including what partitions to
create, and recommended sizes, see:

http://twiki.iwethey.org/Main/NixPartitioning


  - What files do you have in your root filesystem?

  # ls -A /

  - What is disk utilization of these files?

  # du -s $( ls -A / )

...note that this will also show the disk utilization of any mounted
filesystems on /, which are _not_ contributing to your root FS
useage.

  - Are you running user apps as root?  Particularly X?


Peace.

-- 
Karsten M. Self <[EMAIL PROTECTED]>http://kmself.home.netcom.com/
 What Part of "Gestalt" don't you understand?
   If spam is the question, Spamassassin is the answer.
 http://spamassassin.taint.org/


pgp0.pgp
Description: PGP signature


Re: X11 error

2003-12-26 Thread Scott C. Linnenbringer
On Fri, Dec 26, 2003, at 18:36 +0100, Marco wrote: 

> I installed Debian Woody but kdm doesn't start and this message
> appear:
> 
> Fatal server error:
> AddScreen/ScreenInit failed for driver 0
> 
> i already configured the screen but nothing changes.

Give us some more information.

What driver are you using? What video card? And what monitor are you
using at what resolution? Perhaps uploading some portions of
/etc/X11/XF86Config-4 will help, too.


-- 
scott c. linnenbringer|   [EMAIL PROTECTED]
http://www.panix.com/~sl  |  [EMAIL PROTECTED]



pgp0.pgp
Description: PGP signature


Re: visit a web site that uses ASP

2003-12-26 Thread s. keeling
Incoming from j smith:
> 
> > Incoming from j smith:
> > > i want to visit a web site that uses ASP which
> > > contains Java applet. i found mozilla in Debian
> > 3.0
> > > can't do that. which browser can do it?
> > 
> > Yes, it can.  apt-get install j2re1.3
> > 
> > The upside is, this provides a jada development
> > environment too.
> 
> i have downloaded jre 1.2 from sun.com, but can't
> figure out how to config it to work with mozilla.
> 
> BTW where is j2re1.3,
> 
> j2re1.3 has development environment?

(0) keeling /home/keeling_ apt-cache show j2re1.3
Package: j2re1.3
Priority: optional
Section: non-free/libs
Installed-Size: 34312
Maintainer: Stephen Zander <[EMAIL PROTECTED]>
Architecture: i386
Source: j2se1.3-i386
Version: 1.3.1.02b-2
Replaces: j2sdk1.3 (<< 1.3.1-1.1)
Provides: java-virtual-machine, java2-runtime
Depends: java-common, j2se-common (>> 1), gsfonts-x11, locales, libc6 (>= 2.2.4-4), 
xlibs (>> 4.1.0)
Suggests: mozilla (>= 0.9.1) | netscape
Conflicts: j2sdk1.3 (<< 1.3.1-1.1)
Filename: pool/non-free/j/j2se1.3-i386/j2re1.3_1.3.1.02b-2_i386.deb
Size: 13722526
MD5sum: 68b7da1bb71a4ae5ff7df4ad235f89f0
Description: Blackdown Java(TM) 2 Runtime Environment, Standard Edition
 The Blackdown Java-Linux Java 2 Runtime Environment contains the Java
 virtual machine, runtime class libraries, and Java application
 launcher that are necessary to run programs written in the Java
 progamming language (this includes the Java 2 Plug-In for Netscape
 and Mozilla browsers).  It is not a development environment and
.^^^
 doesn't contain development tools such as compilers or debuggers.
.^
 For development tools, see the Java 2 SDK, Standard Edition (package
 j2sdk1.3)
 .
 NOTE: You must accept Sun's EULA prior to successfully installing
 this package


So, apparently I'm mistaken on that part.  Drat.

# blackdown.org j2re1.3
deb ftp://metalab.unc.edu/pub/linux/devel/lang/java/blackdown.org/debian woody main 
non-free


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)   http://www.spots.ab.ca/~keeling 
- -


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



Re: Advice on usb pendrive purchase

2003-12-26 Thread Scott C. Linnenbringer
On Fri, Dec 26, 2003, at 14:21 -0300, Hugo S. Carrer wrote: 

> Hi list,
> 
> I'm looking for a usb pendrive - keychain,(or whatever the name is)
> but don't know jack about'em. Of course I want to buy the most
> Linux-Debian friendly one I can afford. I've been browsing through
> linux-usb.org but not much luck with actual brand-names. So pointers
> and links to some Doc is welcome.

The Linux kernel has excellent support for USB mass storage devices.
IIRC, all of these standard USB 'pendrives' should work.

I, myself, recently got a Lexar Media JumpDrive from someone for the
holidays. I haven't actually tested it out yet on Debian, but it should
just be able to mount as a USB mass stoarge device and be written to
like any normal block device (i.e., like a hard disk.)

Make sure you add the USB mass stoarage device support and any other USB
support to your kernel.


-- 
scott c. linnenbringer|   [EMAIL PROTECTED]
http://www.panix.com/~sl  |  [EMAIL PROTECTED]



pgp0.pgp
Description: PGP signature


Re: Sound Blaster Audigy 2 in Debian Sarge

2003-12-26 Thread Scott C. Linnenbringer
On Thu, Dec 25, 2003, at 14:22 +0100, Axel Burwitz wrote: 

> Scott C. Linnenbringer wrote:
> 
> > The process is rather simple: just read the README in the
> > emu10k1-cvs archive, and make sure you have the kernel
> > headers/source for your kernel. Otherwise it's a straight compile,
> > install and then module load.
> > 
> > http://sourceforge.net/cvs/?group_id=44773
> 
> Scott,
> 
> I have loaded the emu10k1-cvs , installed the kernel sources and
> headers for my kernel version from the install-DVD, and tried to
> follow the process in the README inside the emu10k1-dir, but following
> things happened:

[...]

> /lib/modules/2.4.22-bf2.4/build directory does not exist. Please edit
> the file 'config'
> in this directory and set KERNEL_SOURCE to the correct location of
> your kernel source.

build/ should just be a symlink to the kernel source, but maybe Debian
kernels leave it out.

I've compiled my own kernel, and build/ is just a symlink to the kernel
source root.

Run this command (one line):

ln -s /usr/src/kernel-headers-2.4.22-bf2.4/
 /lib/modules/2.4.22-bf2.4/build

(N.B., make sure kernel-headers-2.4.22-bf2.4 is installed)

> You are currently running kernel version 2.4.22-bf2.4, the source code
> should
> be for this version.
> 
> make[1]: *** [get_version] Error 1
> make[1]: Leaving directory `/home/axel/emu10k1/scripts'
> make: *** [opts] Error 2
> debian-sarge:/home/axel/emu10k1#
> 
> 
> 
> OK, I have set /usr/src/ for I have it there as:
> "kernel-source-2.4.22":

Undo this.

set KERNEL_SOURCE to /lib/modules/2.4.22-bf2.4/build

That *should* set you up to compile. :)


-- 
scott c. linnenbringer|   [EMAIL PROTECTED]
http://www.panix.com/~sl  |  [EMAIL PROTECTED]



pgp0.pgp
Description: PGP signature


Re: web page -> ps problems

2003-12-26 Thread Ross Boylan
On Fri, Dec 26, 2003 at 12:18:40PM +1100, Parsons, Drew wrote:
> > From: Ross Boylan [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, 25 December 2003 5:19 PM
> > 
> > This is very odd, since several people with other distros also report
> > no problem with the bug Drew filed at xprt-xprintorg
> > (http://xprint.mozdev.org/bugs/show_bug.cgi?id=2417).  Unfortunately,
> > I have no problem reproducing it, even with the 0.0.9beta version.
> 
> Indeed, several other people using *Debian* had no problem with it...
> Maybe it only affects x86 architectures or something? (I don't know what the
> others used)
Time to list some more variables:
xfree 4.2.1-12.1
gv -v gives gv 3.5.8 (debian)
printing is lpr2000.05.07-5
ps printer
testing/unstable mixed distribution (mostly testing, though mozilla
itself is from unstable)
Athlon, with custom 2.4.21 kernel
See below for more on xprt setup
Running under KDE 2.2
At one point I had xprt (not xprt-xprintorg) installed.  It's now
purged.

Fonts are generally somewhat messed up on this system, for reasons
I've been unable to fathom.

ggv (gnome ghostview, still running under KDE) 2.4.0.1-1 shows 4 blank
pages for the file. 

I think I tried this on a CUPS system with the same results, but I'll
double check.

> 
> > 
> > The bug does not seem specific to gv.  ImageMagick's display program
> > will show the file (unlike gv), but it shows only the enlarged upper
> > left hand corner.  When hylafax faxes the ps file, it too sends only
> > the enlarged upper left corner (I think ps2fax is the program/script
> > it uses, but I'm not sure).
> 
> We'd have to check if they all use the same underlying library or not.
> imagemagick uses libmagick5.5.7, but hylafax seems to use gs. This again
> suggests it's the postscript file.
> 
> > > 
> > > The only suggestion I can make is to use another of 
> > v0.0.9's new features:
> > > printing to a PDF file, rather than postscript. You want to print to
> > > "printer", selecting the pdf_spool "printer". You'll find 
> > the pdf output
> > > in /tmp/Xprintjobs.  I don't know the best way to go from 
> > there to hylafax,
> > > but conversion to PS via pdf2ps works under gv.
> > 
> > I don't see that one; perhaps I need to restart mozilla?
> > 
> 
> No, mozilla should update automatically. Stupid question, did you upgrade
> xprt-common? The PDF printer is in /etc/Xprint/.../printer.
> 
No, I didn't upgrade xprt-common.  I have since done so; the problem
persists.  While installing the new setup files, I noticed two
non-standard features of my C/document file:
*default-medium: na-letter
*default-printer-resolution: 600

In particular, this is twice the usual resolution.  However, I am
getting much more than a 2x (or 4x in area) enlargement).

Once I did this the pdf printer option came up in mozilla.  I have 4
options; here are the results:
1) lp@:64  that's what I've been using.  gv barfs, other programs show
enlarged upper left corner only.
2) xp_ps_spooldir_tmp_Xprintjobs@:64 same as above
3) xp_pdf_spooldir_tmp_Xprintjobs@:64 unreadable by acroread, xpdf, gv
(another bug?)

  acroread says  Warning: charset of fontList
  (XDCCC_GRAY_CORRECTION-ISO8859) does not match locale (ISO8859-1)

xpdf says
Error: May not be a PDF file (continuing anyway)
Error (0): PDF file is damaged - attempting to reconstruct xref table...
Error: Couldn't find trailer dictionary
Error: Couldn't read xref table
Warning: XtRemoveGrab asked to remove a widget not on the list
Warning: XtRemoveGrab asked to remove a widget not on the list
Warning: XtRemoveGrab asked to remove a widget not on the list
Warning: XtRemoveGrab asked to remove a widget not on the list
Warning: XtRemoveGrab asked to remove a widget not on the list
Warning: XtRemoveGrab asked to remove a widget not on the list

gv gives the usual Error: PostScript interpreter failed in main
window.

4) PostScript/default (which I think someone said  doesn't use xprt) works

P.S. For the BTS, if you haven't been following this thread: the
problem is not specific to gv.  display (form ImageMagick) and
whatever hylafax uses (ps2fax?) both show the enormously enlarged
upper-left hand portion of the image only.  gs also shows it
enlarged. 


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



Samba share problem

2003-12-26 Thread Stefan Drees
Hello,
hope someone can help me. I´m using debian 3.0 with latest service packs.
Since i switched my workstation to w2k, my network drives get regulary
disconnected. I can´t find out why. I´m using samba as PDC.
I´m using Shorewall 1.4.2 with so needed rules to access samba shares on it.
The firewall has 3 interfaces, eth0 for pppoe, eth1 for lan and ippp1 for
isdn.
eth0 = 192.168.0.254
eth1 = 192.168.100.254
ippp1 = 10.0.0.1

I tried to also "interfaces = eth1 or 192.168.100.0/24" (local lan), to only
allow
my local network and "bind interfaces = yes" without success.

I found these entries in /var/log/samba/nmbd.log.

[2003/12/26 20:18:55, 0] libsmb/nmblib.c:send_udp(756)
  Packet send failed to 192.168.0.1(137) ERRNO=Operation not permitted
[2003/12/26 20:18:55, 0] nmbd/nmbd_packets.c:reply_netbios_packet(987)
  reply_netbios_packet: send_packet to IP 192.168.0.1 port 137 failed
[2003/12/26 20:18:57, 3]
nmbd/nmbd_incomingrequests.c:process_node_status_request(342)
  process_node_status_request: status request for name *<00> from IP
192.168.0.1 on subnet REMOTE_BROADCAST_SUBNET.
[2003/12/26 20:18:57, 0] libsmb/nmblib.c:send_udp(756)
  Packet send failed to 192.168.0.1(137) ERRNO=Operation not permitted
[2003/12/26 20:18:57, 0] nmbd/nmbd_packets.c:reply_netbios_packet(987)
  reply_netbios_packet: send_packet to IP 192.168.0.1 port 137 failed

I don´t have an workstation with 192.168.0.1

Hope someone can help.

Thanks in advance.

P.S. Here is my smb.conf:

[global]
   server string = %h server (Samba %v
   netbios name = borg
   netbios aliases = unimatrix01
   time server = yes
   message command = /usr/bin/mail -s 'Winpopup Nachricht von %f auf %m '
root < %s; rm %s
   printer driver file = /etc/samba/prndrv/printers.def
   printing = cups
   guest account = nobody
   invalid users = root
   interfaces = eth1
   bind interfaces only = yes
   domain admin group = user administrator

   log file = /var/log/samba/log.%m
   max log size = 1000

   syslog = 0
   security = user
   encrypt passwords = true
   socket options = TCP_NODELAY, SO_KEEPALIVE
   local master = yes
   os level = 20
   domain master = yes
   preferred master = yes
   wins support = yes
   dns proxy = no
   passwd program = /usr/bin/passwd %u
   passwd chat = *Enter\snew\sUNIX\spassword:* %n\n
*Retype\snew\sUNIX\spassword:* %n\n .
   obey pam restrictions = yes

   logon script = netlogon.bat
   domain logons = yes
   domain master = yes
; %L = Rechnername, profiles = Share Profiles, %U = Username
   logon path = \\%L\profiles\%U

  add user script = /usr/sbin/useradd -d /dev/null -g 100 -s /bin/false -M
%u

[homes]
   comment = Home Directories
   path = /home/samba/%u
   browseable = yes
   writable = yes
   create mask = 0700
   directory mask = 0700

[netlogon]
   comment = Network Logon Service
   path = /etc/samba/netlogon
   guest ok = yes
   writable = no
   share modes = no

[DATA]
  comment = DATA
  path = /home/data
  browseable = yes
  read only = no
  create mode = 0740
  directory mode = 0750

[cdrom]
   comment = CD-ROM
   writable = no
   locking = no
   path = /cdrom
   public = yes
   preexec = /bin/mount /cdrom
   postexec = /bin/umount /cdrom


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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread Scarletdown
André Carezia wrote:
Scarletdown wrote:

Okay, this is my weirdest Linux problem yet.

Leaving the system unattended for a few hours, the / partition on my 
hard drive mysteriously fills up.  When I open up KDiskfree, the 
partition in question shows as 100% used (red line all the way across.) 


What's the output of command below?

du -S / |sort -n |tail


I did that command twice.  Here's the output from both...

382540  /usr/games/armyops/Maps
437924  /mnt/sunblossom/workspace/CDRW-Work/SecretaryBird-Support-Disk
457080  /mnt/sunblossom/workspace/Outbound
466284  /mnt/sunblossom/workspace/Inbound
535480  /usr/games/armyops/Textures
550788  /mnt/sunblossom/workspace/Temp
560808  /mnt/sunblossom/workspace/Inbound/Lanya-Archive
688072  /workspace-native
716256  /mnt/sunblossom/win-native/Knoppix-ISO
1310872 /home/scarletdown
382540  /usr/games/armyops/Maps
437924  /mnt/sunblossom/workspace/CDRW-Work/SecretaryBird-Support-Disk
457080  /mnt/sunblossom/workspace/Outbound
466284  /mnt/sunblossom/workspace/Inbound
535480  /usr/games/armyops/Textures
550788  /mnt/sunblossom/workspace/Temp
560808  /mnt/sunblossom/workspace/Inbound/Lanya-Archive
688072  /workspace-native
716256  /mnt/sunblossom/win-native/Knoppix-ISO
3664968 /home/scarletdown
So, it looks like the problem child is somewhere in my home directory, 
considering that is the only line that is different between the two.



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



Re: Why doesn't pon execute in xterm window

2003-12-26 Thread paul

Sorry about the thread but this is the first time I'm sending mail from my 
Debian box, and clicking the reply to at the bottom of the message in the 
Konqueror display didn't bring anything with it.

I have followed the earlier suggestions; adding the dialout group really 
helped, but ...

As shown in the log excerpts below the non-root user can execute pon 
successfully only when plog is running in another window.  I have no idea!

syslog from execution by paul w/o plog running in other window

Dec 26 12:39:00 paulsbox pppd[1891]: pppd 2.4.1 started by paul, uid 1000
Dec 26 12:39:01 paulsbox chat[1892]: abort on (BUSY)
Dec 26 12:39:01 paulsbox chat[1892]: abort on (NO CARRIER)
Dec 26 12:39:01 paulsbox chat[1892]: abort on (VOICE)
Dec 26 12:39:01 paulsbox chat[1892]: abort on (NO DIALTONE)
Dec 26 12:39:01 paulsbox chat[1892]: abort on (NO DIAL TONE)
Dec 26 12:39:01 paulsbox chat[1892]: abort on (NO ANSWER)
Dec 26 12:39:01 paulsbox chat[1892]: abort on (DELAYED)
Dec 26 12:39:01 paulsbox chat[1892]: send (ATZ^M)
Dec 26 12:39:01 paulsbox chat[1892]: expect (OK)
Dec 26 12:39:01 paulsbox chat[1892]: ^M
Dec 26 12:39:01 paulsbox chat[1892]: OK
Dec 26 12:39:01 paulsbox chat[1892]:  -- got it
Dec 26 12:39:01 paulsbox chat[1892]: send (ATDT3039544492^M)
Dec 26 12:39:02 paulsbox chat[1892]: expect (CONNECT)
Dec 26 12:39:02 paulsbox chat[1892]: ^M
Dec 26 12:39:02 paulsbox chat[1892]: ATZ^M^M
Dec 26 12:39:02 paulsbox chat[1892]: OK^M
Dec 26 12:39:47 paulsbox chat[1892]: alarm
Dec 26 12:39:47 paulsbox chat[1892]: Failed
Dec 26 12:39:47 paulsbox pppd[1891]: Connect script failed
Dec 26 12:39:48 paulsbox pppd[1891]: Exit.

syslog from execution by paul with plog running in other window

Dec 26 12:46:53 paulsbox pppd[1939]: pppd 2.4.1 started by paul, uid 1000
Dec 26 12:46:54 paulsbox chat[1940]: abort on (BUSY)
Dec 26 12:46:54 paulsbox chat[1940]: abort on (NO CARRIER)
Dec 26 12:46:54 paulsbox chat[1940]: abort on (VOICE)
Dec 26 12:46:54 paulsbox chat[1940]: abort on (NO DIALTONE)
Dec 26 12:46:54 paulsbox chat[1940]: abort on (NO DIAL TONE)
Dec 26 12:46:54 paulsbox chat[1940]: abort on (NO ANSWER)
Dec 26 12:46:54 paulsbox chat[1940]: abort on (DELAYED)
Dec 26 12:46:54 paulsbox chat[1940]: send (ATZ^M)
Dec 26 12:46:55 paulsbox chat[1940]: expect (OK)
Dec 26 12:46:55 paulsbox chat[1940]: ATZ^M^M
Dec 26 12:46:55 paulsbox chat[1940]: OK
Dec 26 12:46:55 paulsbox chat[1940]:  -- got it
Dec 26 12:46:55 paulsbox chat[1940]: send (ATDT3039544492^M)
Dec 26 12:46:55 paulsbox chat[1940]: expect (CONNECT)
Dec 26 12:46:55 paulsbox chat[1940]: ^M
Dec 26 12:47:20 paulsbox chat[1940]: ATDT3039544492^M^M
Dec 26 12:47:20 paulsbox chat[1940]: CONNECT
Dec 26 12:47:20 paulsbox chat[1940]:  -- got it
Dec 26 12:47:20 paulsbox chat[1940]: send (\d)
Dec 26 12:47:21 paulsbox pppd[1939]: Serial connection established.
Dec 26 12:47:21 paulsbox pppd[1939]: using channel 5
Dec 26 12:47:21 paulsbox pppd[1939]: Using interface ppp0
Dec 26 12:47:21 paulsbox pppd[1939]: Connect: ppp0 <--> /dev/ttyS0
Dec 26 12:47:22 paulsbox pppd[1939]: sent [LCP ConfReq id=0x1  
  ]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [LCP ConfReq id=0x1 < 00 04 00 00> 
  
 < 1b 04 02 02>]
Dec 26 12:47:23 paulsbox pppd[1939]: sent [LCP ConfRej id=0x1 < 00 04 00 00> 
 < 1b 04 02 02>]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [LCP ConfAck id=0x1  
  ]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [LCP ConfReq id=0x2  
]
Dec 26 12:47:23 paulsbox pppd[1939]: sent [LCP ConfAck id=0x2  
]
Dec 26 12:47:23 paulsbox pppd[1939]: sent [LCP EchoReq id=0x0 
magic=0xf28ae703]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [CHAP Challenge id=0x1 
, name = "nas38.den1.Level3.net"]
Dec 26 12:47:23 paulsbox pppd[1939]: sent [CHAP Response id=0x1 
<1e1f8cbba236e4e1fd2ea3d5e16a3915>, name = "ELN/brpms"]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [LCP EchoRep id=0x0 magic=0x0]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [CHAP Success id=0x1 "\000"]
Dec 26 12:47:23 paulsbox pppd[1939]: Remote message: ^@
Dec 26 12:47:23 paulsbox pppd[1939]: sent [IPCP ConfReq id=0x1  
]
Dec 26 12:47:23 paulsbox pppd[1939]: sent [CCP ConfReq id=0x1  
 ]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [IPCP ConfReq id=0x1  ]
Dec 26 12:47:23 paulsbox pppd[1939]: sent [IPCP ConfAck id=0x1  ]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [LCP ProtRej id=0x3 80 fd 01 01 00 
0f 1a 04 78 00 18 04 78 00 15 03 2f]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [IPCP ConfNak id=0x1 ]
Dec 26 12:47:23 paulsbox pppd[1939]: sent [IPCP ConfReq id=0x2  ]
Dec 26 12:47:23 paulsbox pppd[1939]: rcvd [IPCP ConfAck id=0x2  ]
Dec 26 12:47:23 paulsbox pppd[1939]: Cannot determine ethernet address for 
proxy ARP
Dec 26 12:47:23 paulsbox pppd[1939]: local  IP address 67.31.146.249
Dec 26 12:47:23 paulsbox pppd[1939]: remote IP address 209.247.23.200
Dec 26 12:47:23 paulsbox pppd[1939]: Script /etc/ppp/ip-up started (pid 1942)
Dec 26 12:47:23 paulsbox wwwoffled[493]: WWWOFFLE Connection from host 
paulsbox (127.0.0.1).
Dec 26 12:47:23 paulsbox wwwoffled[493]: WW

Re: Synching volumes on logout -- tune2fs

2003-12-26 Thread Monique Y. Herman
On Fri, 26 Dec 2003 at 09:15 GMT, David Baron penned:
> Should I so choose to convert to ext3: What options do I give this
> program? I have one big-linux partition (as opposed to separates /etc,
> /usr, etc.) and the swap partition. I do not quite undersatnd the
> options in the -h listing.
> 

I'm not sure I understand your question, but if I do, you want to run
tune2fs -j on your big linux partition.  Swap is a totally different
"filesystem" whose format you do not want to change.

The one kicker is that you can't have the partition mounted while you're
converting it.  The easiest solution is probably to boot into knoppix,
run the command from there, and then boot back into your normal
configuration.

Also, to actually use ext3, your kernel needs to be able to handle ext3,
and your fstab needs to explicitly be set to use it.

Ooh, here *I* have a question.  Just noticed that I have my ext3 root
partition mounting as 'auto' in my fstab.  My other ext3 partitions are
mounting as 'ext3,ext2' (in case the kernel isn't ext3-aware, I can
still mount them as ext2).  What is 'auto's behavior in this situation?
Will it choose ext3 or ext2?

-- 
monique


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



Re: Good front end for small postgress dtabases?

2003-12-26 Thread Monique Y. Herman
On Fri, 26 Dec 2003 at 15:57 GMT, stan penned:
> I need to create some small databses in postgress (christmas card
> list, household inventory). What choices do I have for creating user
> input forms, and reports in Debian?

You could always use php's postgres features =)  That's what I tend to
do, if only because it's what I'm used to.

-- 
monique


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



Webcam

2003-12-26 Thread Damon L. Chesser
I would like to buy a digital cam that can also be a web cam.  Nothing 
to fancy, just a decent camera.  Any sugestions?  I use Libranet (deb 
based) and debian, testing.

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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread Scarletdown
Scarletdown wrote:


1310872 /home/scarletdown

3664968 /home/scarletdown

So, it looks like the problem child is somewhere in my home directory, 
considering that is the only line that is different between the two.

After looking at my home directory in Konqueror and switching to 
Detailed List View and selecting Show Hidden Files, I found the source 
of my frustration.

There is a hidden file called kde3-errors; which at this moment is 
73.8GB in size.  I will now hit Reload...

It has increased to 75.3GB

So until I can take some time out to troubleshoot what these errors are, 
I need to know how to stop this file from being created each time I log 
back into KDE.



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



Re: visit a web site that uses ASP

2003-12-26 Thread s. keeling
(attribution lost):
> i have the first 2 CDs of Debian 3.0, could you tell
> me j2re1.3 is on which CD so that i can download from
> mirror site (these sites only have CD images, not
> lists of files in each CD).

Add the following to your /etc/apt/sources.list:

# blackdown.org j2re1.3
deb ftp://metalab.unc.edu/pub/linux/devel/lang/java/blackdown.org/debian woody main 
non-free

Then do "apt-get update ; apt-get install j2re1.3"


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)   http://www.spots.ab.ca/~keeling 
- -


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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread s. keeling
Incoming from Scarletdown:
> Scarletdown wrote:
> 
> There is a hidden file called kde3-errors; which at this moment is 
> 73.8GB in size.  I will now hit Reload...
> 
> It has increased to 75.3GB

rm -f kde3-errors ; ln -s /dev/null kde3-errors


-- 
Any technology distinguishable from magic is insufficiently advanced.
(*)   http://www.spots.ab.ca/~keeling 
- -


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



Re: start_configlet error

2003-12-26 Thread Jason Stechschulte
On Thu, Dec 25, 2003 at 11:10:16PM -0500, Jason Stechschulte wrote:
> Setting up xserver-xfree86 (4.3.0-0pre1v5) ...
> start_configlet: configlet in path /usr/share/configlets/xserver-common is bad

I'm replying to myself in case I run into this again, my answer is right
here.  The error isn't really debconf, but rather a front end for
debconf.  I'm not sure why that was installed since I don't need them
anyway, so I simply removed python2.3-configlet.

Running dpkg-reconfigure xserver-xfree86 still didn't create a
XF86Config-4 file though.  So I tried dexconf xserver-xfree86, and a
XF86Config-4 file was finally created.  Now I can't wait to get back
home and try restarting X to see if I'm getting any closer to getting
hardware acceleration working.

-- 
Jason Stechschulte
[EMAIL PROTECTED]


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



exim4 and queue_list_requires_admin option

2003-12-26 Thread Vincent Lefevre
I've just upgraded to exim4 and I'm trying to make it work correctly.
The man page mentions the queue_list_requires_admin option, but this
option isn't in any file from the /etc/exim4/conf.d directory (even
commented out). Is there any reason or is it a bug? What should I do?

IMHO, all the options should be in one of the configuration files.
That way, the user knows what file he should modify exactly.

TIA for any information,

-- 
Vincent Lefèvre <[EMAIL PROTECTED]> - Web:  - 100%
validated (X)HTML - Acorn Risc PC, Yellow Pig 17, Championnat International
des Jeux Mathématiques et Logiques, TETRHEX, etc.
Work: CR INRIA - computer arithmetic / SPACES project at LORIA


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



RE: web page -> ps problems

2003-12-26 Thread Ross Boylan
Even the old version of xprt-xprintorg seems to work fine on this CUPS
based system, which is also a little more "unstable" and less "testing"
than the other one.

There's also an outside chance the difference stems from using different
web pages, but that hasn't seemed to matter so far.

xprt-xprintorg   0.0.8.cvs20030508-6
xfree86-common 4.2.1-12.1
mozilla-browser  1.4-2  (hmm... maybe 1.5 at home, but see below)
cupsys   1.1.20candidate6-6
cupsys-driver-gimppr 4.2.5-6  (not sure if this is used)
gv   3.5.8-30.2
Athlon chip, 2.4.22 custom kernel

document config file at default:
*default-medium: iso-a4
*default-printer-resolution: 300
Changing to na-letter/600 and restarting xprint made no difference.

Changing to mozilla 1.5-3 still works.
Upgrading xprt-xprintorg and common to 0.0.9.cvs20031220-1 still works.

pdf doesn't work on this machine either (using xpdf).
-- 
Ross Boylan  wk:  (415) 502-4031
530 Parnassus Avenue (Library) rm 115-4  [EMAIL PROTECTED]
Dept of Epidemiology and Biostatistics   fax: (415) 476-9856
University of California, San Francisco
San Francisco, CA 94143-0840 hm:  (415) 550-1062


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



Re: Synching volumes on logout -- tune2fs

2003-12-26 Thread Paul Morgan
On Fri, 26 Dec 2003 12:23:23 -0700, Monique Y. Herman wrote:

> On Fri, 26 Dec 2003 at 09:15 GMT, David Baron penned:
>> Should I so choose to convert to ext3: What options do I give this
>> program? I have one big-linux partition (as opposed to separates /etc,
>> /usr, etc.) and the swap partition. I do not quite undersatnd the
>> options in the -h listing.
>> 
> 
> I'm not sure I understand your question, but if I do, you want to run
> tune2fs -j on your big linux partition.  Swap is a totally different
> "filesystem" whose format you do not want to change.
> 
> The one kicker is that you can't have the partition mounted while you're
> converting it.  The easiest solution is probably to boot into knoppix,
> run the command from there, and then boot back into your normal
> configuration.
> 
> Also, to actually use ext3, your kernel needs to be able to handle ext3,
> and your fstab needs to explicitly be set to use it.
> 
> Ooh, here *I* have a question.  Just noticed that I have my ext3 root
> partition mounting as 'auto' in my fstab.  My other ext3 partitions are
> mounting as 'ext3,ext2' (in case the kernel isn't ext3-aware, I can
> still mount them as ext2).  What is 'auto's behavior in this situation?
> Will it choose ext3 or ext2?

With "auto", mount will probe the superblock to get the filesystem type.
cf. "man mount"

-- 
paul



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



Re: Root Partition Fills Up Completely After a Few Hours

2003-12-26 Thread Scarletdown
Bruce Sass wrote:
On Fri, 26 Dec 2003, Scarletdown wrote:

After looking at my home directory in Konqueror and switching to
Detailed List View and selecting Show Hidden Files, I found the source
of my frustration.
There is a hidden file called kde3-errors; which at this moment is
73.8GB in size.  I will now hit Reload...
It has increased to 75.3GB

So until I can take some time out to troubleshoot what these errors are,
I need to know how to stop this file from being created each time I log
back into KDE.


Which KDE3 are you using?  I've been using KDE3 since .debs were
available and have never seen a "$HOME/.kde3-errors" file.  I do have
This one came from the unstable Debian archives, because I did my Debian 
install using Knoppix.  Anyway, I screwed up my original KDE 
configuration a while back while trying to clean up the hard drive 
(removing unwanted packages).  One of the removes caused a whole bunch 
of stuff to be deleted;so I had to do an apt-get install kde to 
reinstall KDE (files were pulled in from the unstable archives). 
Fortunately, all my settings remained intact.

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



Re: Finding I/O For ISA NIC Card?

2003-12-26 Thread Dave Thayer
On Fri, Dec 26, 2003 at 04:25:14PM +0100, Matthias Hentges wrote:
> Am Fre, 2003-12-26 um 15.48 schrieb Russ Schneider:
> > I have a KNE20 card in my machine.  I'm pretty sure I need (thanks to the 
> > help I've found here) the ne module to use it.
> > 
> > However, it requires I enter it's I/O with io=0xNNN.
> > 
> > Problem is, I can't determine what the I/O is?  lspci -vvv doesn't give it 
> > to me, nor does /proc/pci.
> > 
> > How do I determine the I/O?
> 
> Either the i/o and IRQ settings are "jumpered" on the card or
> you need the vendors' DOS app to view / configure the settings.
> 

It might be an ISA-PNP board. Try looking at /proc/isapnp if you have
isapnp support compiled into your kernel. Otherwise install isapnptools as 
recommended upthread.

HTH

-- 
Dave Thayer   | WARNING: Persons denying the existence of 
Denver, Colorado USA  | robots may be robots themselves.
[EMAIL PROTECTED] | 


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



Getting the penguin on linux 2.6

2003-12-26 Thread csj
After three days of browsing various leads posted here[1], I
managed to get my spare computer running on linux 2.6 and
nVidia's binary-only video drivers (installed with the help of
the non-free "nvidia-graphics-drivers" packages).

Everything seems to be functional, including chromium, tuxracer
and armagetron.  My only remaining problem is getting the
framebuffer console to work.  I can get the console to work if I
don't enable framebuffer at boot time, i.e. if I boot without the
penguin mascot;-).

Any pointers?  FWIW I built my 2.6 kernel using a
framebuffer-capable /boot/config-2.4* saved (with no user-addled
changes) thru "make gconfig".

[1]e.g. http://www.minion.de/nvidia.html
http://home.comcast.net/~andrex/nvidia-2.6-Debian/index.html


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



Re: Is Evolution available for net-installation

2003-12-26 Thread Kevin Mark
On Sat, Dec 27, 2003 at 12:14:48AM +0800, Stephen Liu wrote:
> Hi Kevin
> 
> - snip -
> > Hi All,
> > all packages are lowercase, one word with no space.
> > so,
> > apt-get install evolution
> 
> $ apt-cache search evolution|grep -i evolution
> achilles - An artificial life and evolution simulator
> $ apt-cache show evolution
> W: Unable to locate package evolution
> E: No packages found
> 
> Could not find it.
> 
> B.R.
> Stephen Liu
> 
Hi Stephen,

debian:/home/kevin# apt-get install evolution/stable
Reading Package Lists... Done
Building Dependency Tree... Done
Selected version 1.0.5-1 (Debian:3.0r2/stable) for evolution
The following extra packages will be installed:
bonobo bonobo-conf evolution gconf gdk-imlib1 gnome-bin
gnome-libs-data gtkhtml imlib-base libart2 libbonobo-conf0 libbonobo2
libcamel0 libcapplet1 libefs1 libgal19 libgal23 libgconf11
libgdk-pixbuf-gnome2 libghttp1 libglade-gnome0 libglade0
libgnome-pilot1 libgnome-vfs-common libgnome-vfs0 libgnome32 
libgnomeprint-bin libgnomeprint-data
libgnomeprint15 libgnomesupport0 libgnomeui32 libgnorba27
libgnorbagtk0
libgtkhtml-data libgtkhtml20 liboaf0 liborbit0 libpisock4
libxml1 oaf
Suggested packages:
imlib-progs gnome-core
Recommended packages:
gnome-desktop-data imlib2 libgal-data
The following NEW packages will be installed:
bonobo bonobo-conf evolution gconf gdk-imlib1 gnome-bin
gnome-libs-data gtkhtml imlib-base libart2 libbonobo-conf0
libbonobo2 libcamel0
libcapplet1 libefs1 libgal19 libgal23 libgconf11
libgdk-pixbuf-gnome2 libghttp1 libglade-gnome0 libglade0
libgnome-pilot1 libgnome-vfs-common
libgnome-vfs0 libgnome32 libgnomeprint-bin
libgnomeprint-data libgnomeprint15 libgnomesupport0
libgnomeui32 libgnorba27 libgnorbagtk0
libgtkhtml-data libgtkhtml20 liboaf0 liborbit0
libpisock4 libxml1 oaf
0 upgraded, 40 newly installed, 0 to remove and 0
not upgraded.
1 not fully installed or removed.
Need to get 9955kB/15.1MB of archives.
After unpacking 47.2MB of additional disk space will
be used.
Do you want to continue? [Y/n] n
Abort.
debian:/home/kevin# apt-get install
evolution/testing
Reading Package Lists... Done
Building Dependency Tree... Done
E: Release 'testing' for 'evolution' was not found
debian:/home/kevin# apt-get install
evolution/unstable
Reading Package Lists... Done
Building Dependency Tree... Done
Selected version 1.4.5-3 (Debian:unstable) for
evolution
The following extra packages will be installed:
evolution gtkhtml3.0 libasn1-6-heimdal
libbonoboui2-0 libbonoboui2-common libgail-common
libgail17 libgal2.0-5 libgal2.0-common libglade2-0
libgnome-pilot2 libgnome2-0 libgnome2-common
libgnomecanvas2-0 libgnomecanvas2-common
libgnomeprint2.2-0 libgnomeprint2.2-data
libgnomeprintui2.2-0 libgnomeprintui2.2-common
libgnomeui-0 libgnomeui-common
libgssapi1-heimdal libgtkhtml3.0-2
libkrb5-17-heimdal
libpisync0 libscrollkeeper0 libsoup2.0-0
scrollkeeper
Suggested packages:
gnome-icon-theme gnome-pilot
Recommended packages:
gnome-desktop-data
The following NEW packages will be
installed:
evolution gtkhtml3.0 libasn1-6-heimdal
libbonoboui2-0 libbonoboui2-common
libgail-common libgail17 libgal2.0-5
libgal2.0-common libglade2-0
libgnome-pilot2 libgnome2-0
libgnome2-common libgnomecanvas2-0
libgnomecanvas2-common
libgnomeprint2.2-0
libgnomeprint2.2-data
libgnomeprintui2.2-0
libgnomeprintui2.2-common
libgnomeui-0 libgnomeui-common
libgssapi1-heimdal libgtkhtml3.0-2
libkrb5-17-heimdal
libpisync0 libscrollkeeper0
libsoup2.0-0 scrollkeeper
0 upgraded, 28 newly installed,
0 to remove and 0 not upgraded.
1 not fully installed or
removed.
Need to get 13.1MB/14.9MB of
archives.
After unpacking 50.8MB of
additional disk space will be
used.
Do you want to continue? [Y/n] n
Abort.

As you can see, it depends on you sources.list and how you ask for it
and other fun factors. 
-Kev


signature.asc
Description: Digital signature


How does the superblock/mount -t auto work? (was: Synching volumes on logout -- tune2fs)

2003-12-26 Thread Monique Y. Herman
On Fri, 26 Dec 2003 at 21:15 GMT, Paul Morgan penned:
> On Fri, 26 Dec 2003 12:23:23 -0700, Monique Y. Herman wrote:
>> 
>> Ooh, here *I* have a question.  Just noticed that I have my ext3 root
>> partition mounting as 'auto' in my fstab.  My other ext3 partitions
>> are mounting as 'ext3,ext2' (in case the kernel isn't ext3-aware, I
>> can still mount them as ext2).  What is 'auto's behavior in this
>> situation?  Will it choose ext3 or ext2?
> 
> With "auto", mount will probe the superblock to get the filesystem
> type.  cf. "man mount"
> 

I'm not sure how to take a peek at the superblock myself, but the
relevant output of tune2fs -l is:

Filesystem magic number:  0xEF53
Filesystem features:  has_journal filetype needs_recovery
sparse_super

Now, here's what I wonder about.  As I understand it, ext3 is really
just ext2 with some added features.  So then, is the magic number for
both the same, and is the fact that I have has_journal under "filesystem
features" the same as saying that it's actually *using* the journal?

Or in other words, is the superblock actually going to look any
different between ext2 and ext3?  My naive guess is that the superblock
would be the same, and therefore that 'auto' would mount an ext3
partition as ext2, but I just don't know.

I've been trying to come up with a good google search that would
demistify this stuff for me, but so far most searches just come up with
superblock/magic number *errors*, not explanations.

`man mount` does say this:

The auto type may be useful for user-mounted floppies.  Creating
a file /etc/filesystems can be useful to change the probe  order
(e.g.,  to  try vfat before msdos) or if you use a kernel module
autoloader.  Warning: the probing uses a heuristic (the presence
of  appropriate `magic'), and could recognize the wrong filesys-
tem type, possibly with catastrophic consequences. If your  data
is valuable, don't ask mount to guess.

So it appears that, if I knew for sure that a filesystem could be seen
as more than one type, I could give mount hints.  More importantly, I
should really explicitly set it to 'ext3,ext2' for the root partition
(and will, when I get home).  But I'd really like to understand how all
of this filesystem stuff works.

-- 
monique


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



Not replying to list with kmail 1.5.4

2003-12-26 Thread Gavin Henry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all,
It appears that with some of my mailing list subscriptions, when I click 
'reply', they reply to the originator, not the list. Why is this?

Is it in correct headers from this list? Or most likely my settings?

Gavin.

- -- 
Regards

http://www.magicfx.co.uk
http://www.suretecsystems.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (GNU/Linux)

iD8DBQE/7MaWgNqd7Kng8UoRAsIAAJoCBY4Y/Kc4z/K7hIkN7T5cwD9/8wCggkQw
O9hqN5rg5fr5sViWJ7YSzPc=
=YeXU
-END PGP SIGNATURE-


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



  1   2   >