Re: Making PDF document in KWord

2003-03-19 Thread Jan Krupa
 --- Nathan E Norman [EMAIL PROTECTED] wrote:  On
Wed, Mar 19, 2003 at 11:06:47AM +0200, Aryan
 Ameri wrote:
  Hi There:
  
  When I want to make a PDF document with KWord
 (Using print menu), KWord is 
  able to make a pdf file, but the result is crappy,
 many words are not in 
  their original position, and all in all, it is
 unreadable. However, making 
  PostScript files works fine, but anyway, windoze
 users can't view PS files.
  
  Is there any reason why the resulted PDF files are
 like this? Any way I can 
  repair this?
  
  BTW, I am using KOffice 1.2.1, on KDE 3.1.0 RC 5
 
 I don't use KWord, but I have some experience
 creating PDF documents
 using TeX.  You can create a PS document with TeX
 and then convert it
 to PDF using 'ps2pdf'; the result is usually poor. 
Perhaps better is to use pdflatex or pdftex (for
plain)

Jan

 Perhaps KWord is
 merely creating a PS document and then converting it
 using 'ps2pdf'?
 
 BTW, using 'texi2pdf' to create a PDF using TeX
 works really well for
 me thus far.  I don't create really advanced PDFs
 with hyperlinks and
 all the extras, I just create PDFs so windows people
 feel useful.
 
 -- 
 Nathan Norman - Incanus Networking
 mailto:[EMAIL PROTECTED]
   Good judgement comes from experience.
   Experience comes from bad judgement.
   -- Unattributed
 
 
 -- 
 To UNSUBSCRIBE, email to
 [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]
  

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


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



Re: java from sun: installation problem

2002-12-12 Thread Jan Krupa


On Tue, 10 Dec 2002, Colin Watson wrote:

 On Tue, Dec 10, 2002 at 11:28:19AM -0500, Dragan Cvetkovic wrote:
  Does this one gives you a clue? Your system can't find
  libstdc++-libc6.1-1.so.2
  
  What I did on my system was to create a symlink from whatever current
  libstdc++-libc6 so library in /usr/lib is to
  $HOME/lib/libstdc++-libc6.1-1.so.2 and add $HOME/lib to my LD_LIBRARY_PATH
  env. variable.
  
  Not really a solution in a Debian way(tm), but works.
 
 Rodrigo has the right answer here. It's not so much that your solution

Which distribution do you mean is better?
from sun j2sdk1.4.1_01 (j2sdk1.3.1) or from blackdown 
 j2sdk-1.4.1-beta-linux-i586.bin (j2sdk1.3.1-linux...) or from something
else?
Which is the most complete? What is the difference between j2sdk1.4.1_01
and  j2sdk-1.4.1-beta-linux-i586.bin?

What is jre for?

 Cheers,
 
 -- 
 Colin Watson  [[EMAIL PROTECTED]]
 
 


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




java from sun: installation problem

2002-12-10 Thread Jan Krupa

I have debian3.0 (woody) installed).

I run gnome.

I tried to install j2se from
 http://java.sun.com/j2se/1.4/download.htmdownloaded the Linux self-extracting file:
 j2sdk-1_4_0_01-linux-i586.bin


then (as root) cd /usr/local/java/
and  run ./j2sdk-1_4_0_01-linux-i586.

then I run:
update-alternatives --install /usr/bin/java java /usr/local/java/j2sdk1.1_01/bin/java 
120
update-alternatives --install /usr/bin/javac javac 
/usr/local/java/j2sdk1.4.1_01/bin/javac 120

I also put in /etc/profile:
export JAVA_HOME=/usr/local/java/j2sdk1.4.1_01
export PATH=$PATH:/usr/local/java/j2sdk1.4.1_01/bin
export 
CLASSPATH=.:/usr/local/java/j2sdk1.4.1_01/lib:/usr/local/java/j2sdk1.4.1_01/jre/lib



Now I tested the installation:

/* Name of file HelloWorldApp.java
 * T HelloWorldApp class implements an application that
 * simply displays Hello World! to the standard output.
 */
class HelloWorldApp {
public static void main(String[] args) {
System.out.println(Hello World!); //Display the string.
}
}

javac HelloWorldApp.java
then
java HelloWorldApp  
Hello World!

Soit seems to work but:

another test:
I created one file:
/*Name of file:
* HelloWorld.java
*/
import java.applet.Applet;
import java.awt.Graphics;

public class Herld extends Applet {
public void paint(Graphics g) {
g.drawString(Hello world!, 50, 25);
}
}


and another Hello.html
--

HTML
HEAD
TITLEThe Hello World Applet/TITLE
/HEAD
BODY
APPLET CODE=HelloWorld.class WIDTH=150 HEIGHT=25
/APPLET
/BODY
HTML


I run
javac HelloWorld.java 
then
appletviewer Hello.html 
and got the following messages:

Exception in thread main java.lang.UnsatisfiedLinkError: 
/usr/local/java/j2sdk1.4.1_01/jre/lib/i386/libfontmanager.so: 
libstdc++-libc6.1-1.so.2: cannot open shared object file: No such file or directory
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1473)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1389)
at java.lang.Runtime.loadLibrary0(Runtime.java:788)
at java.lang.System.loadLibrary(System.java:832)
at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
at java.security.AccessController.doPrivileged(Native Method)
at sun.awt.font.NativeFontWrapper.clinit(NativeFontWrapper.java:42)
at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
at sun.awt.X11GraphicsEnvironment.clinit(X11GraphicsEnvironment.java:125)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:140)
at 
java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:62)
at java.awt.Window.init(Window.java:223)
at java.awt.Window.init(Window.java:267)
at java.awt.Frame.init(Frame.java:398)
at java.awt.Frame.init(Frame.java:363)
at sun.applet.AppletViewer.init(AppletViewer.java:139)
at sun.applet.StdAppletViewerFactory.createAppletViewer(AppletViewer.java:80)
at sun.applet.AppletViewer.parse(AppletViewer.java:1062)
at sun.applet.AppletViewer.parse(AppletViewer.java:996)
at sun.applet.Main.run(Main.java:138)
at sun.applet.Main.main(Main.java:80)


Could someone please  help to set up the j2sdk under debian?
Maybe j2re would be enough?

Jan


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




Re: java from sun: installation problem

2002-12-10 Thread Jan Krupa


On Tue, 10 Dec 2002, Colin Watson wrote:

 On Tue, Dec 10, 2002 at 11:28:19AM -0500, Dragan Cvetkovic wrote:
  Does this one gives you a clue? Your system can't find
  libstdc++-libc6.1-1.so.2
  
  What I did on my system was to create a symlink from whatever current
  libstdc++-libc6 so library in /usr/lib is to
  $HOME/lib/libstdc++-libc6.1-1.so.2 and add $HOME/lib to my LD_LIBRARY_PATH
  env. variable.
  
  Not really a solution in a Debian way(tm), but works.
 
 Rodrigo has the right answer here. It's not so much that your solution
 isn't the Debian way, it's that it's potentially unreliable. The
 soname of a library changes because something changed in the library to
 render it incompatible with previous versions; it might not be anything
 you'll notice right away, but it's better to avoid the chance that
 something will inexplicably fall over three months from now when you've
 forgotten what you did.
 
 This is why, especially in the case of things like libstdc++, Debian
 tries to provide older versions of libraries and make sure that they can
 be installed at the same time as the newer versions.
I tried the symlinks before and then installed the older library
(libstdc++-2-libc6.1-1-2.9.0
In both cases when I try to run the following program:

---
/*
Hello.java
*/
import java.awt.*;

public class Hello extends Frame {
  public static void main(String argv[])
  {
new Hello();
  }
  Hello() {
Label hello =
 new Label(Hello World);
add(hello, Center);
setSize(200, 200);
setVisible(true);
  }
}
---
javac Hello.java
java Hello

Then
the box with Hello World appears but I got the following message:

''
2002-12-10 18:19:48 java.util.prefs.FileSystemPreferences$3 run
WARNING: Could not create system preferences directory. System preferences
are unusable.''

The same message appears when I run 'appletviewer something.html'.

Any clue?




 
 Cheers,
 
 -- 
 Colin Watson  [[EMAIL PROTECTED]]
 
 
 -- 
 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: kernel recompile

2002-11-26 Thread Jan Krupa


On Tue, 26 Nov 2002, Chris Lale wrote:

 Craig Jackson wrote:
   Just installed woody but I forgot to install UFS driver. Being 
 somewhat new
   to Debian (I have in the past recompiled the kernel on Gentoo and 
 Redhat)
   what is the standard procedure for recompiling the kernel under 
 Debian? I
   need the source kernel. My present kernel is vmlinuz-2.4.18-bf2.4
 
 
 There is an article at http://newbiedoc.sourceforge.net/
 that worked for me.

or 
http://www.debian.org/doc/manuals/reference/reference.en.html

especially

http://www.debian.org/doc/manuals/reference/ch-kernel.en.html#s-kernel-compile

Jan
 
 -- 
 :  ___   Chris Lale   [EMAIL PROTECTED]  :


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




Re: AGP support for GeForce 2MX 400 64MB AGP (Inside TNC)

2002-11-25 Thread Jan Krupa


On Mon, 25 Nov 2002, Rob Weir wrote:

 On Sun, Nov 24, 2002 at 07:21:21PM +0100, Jan Krupa wrote:
  
  I have debian3.0 installed, kernel-2.4.18 on Pentium IV with
  GeForce 2MX 400 64MB AGP (Inside TNC).
  
  What should I compile into kernel to support the AGP for the graphic card?
  
  I use make menuconfig and
  in section ''Character devices''
  I tried to choose:
  [M] /dev/agpgart (AGP Support)
  and do not know what else should I choose?:
  []/Intel 440LX/BX/GX and ..
  []Intel I810/I815/...
  []via chipset support
  .
  .
  .
  []serverwarks LE/HE Support
  
  [*] Direct Rendering Manager (XFree86 DRM support)
  DRM 4.1 Drivers
  ... (which one to choose?).
 
 Yep.

Do you mean it is enough to compile only:
[M] /dev/agpgart (AGP Support)
or
[*] /dev/agpgart (AGP Support)
and none of
[*]/Intel 440LX/BX/GX and ..
[*]Intel I810/I815/...
[*]via chipset support
.
.
.
[*]serverwarks LE/HE Support

and
[*] Direct Rendering Manager (XFree86 DRM support)
and none of 
* 3dfx Banshee/Voodoo3+
* ATI Rage 128
* ATI Radeon 
* Intel I810
* Matrox..
* SIS
?


 
  Maybe I should compile nividia-kernel-src.tar.gz?
 
 Only if you want accelerated 3d.  If not, then X's Free nv driver works
 great.  If you do want the non-Free drivers, then use the
 nvidia-kernel-src and nvidia-glx-src packages to make it much easier.
How it can be done?


Jan
 
 -rob
 


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




AGP support for GeForce 2MX 400 64MB AGP (Inside TNC)

2002-11-24 Thread Jan Krupa

I have debian3.0 installed, kernel-2.4.18 on Pentium IV with
GeForce 2MX 400 64MB AGP (Inside TNC).

What should I compile into kernel to support the AGP for the graphic card?

I use make menuconfig and
in section ''Character devices''
I tried to choose:
[M] /dev/agpgart (AGP Support)
and do not know what else should I choose?:
[]/Intel 440LX/BX/GX and ..
[]Intel I810/I815/...
[]via chipset support
.
.
.
[]serverwarks LE/HE Support

[*] Direct Rendering Manager (XFree86 DRM support)
DRM 4.1 Drivers
... (which one to choose?).


Maybe I should compile nividia-kernel-src.tar.gz?

Jan


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




Re: HP Laserjet 1200 series (print copy scan) problem

2002-11-23 Thread Jan Krupa


On Fri, 22 Nov 2002, Hendrik Sattler wrote:

 Am Freitag, 22. November 2002 16:50 schrieben Sie:
   The PPD from HP and a printing system that accepts such PPD file (e.g.
   cups). Download the windows postscript driver and unzip it and then you
 
   have the PPD file :)

I installed CUPS system.

Which model/driver to choose?

During the configuration (http://localhost:631/admin)
I cannot find proper model/driver for HP Laserjet 1200 series (se?).
I tried the driver for  HP Laserjet 1100A and it works but
I can only print  at maximum 600dpi. Also I tried
HP Laserjet 2100M, Foomatic+Postscript and it works too but
when I configure the printer I do not understand the option
in extra section: Ghostscript Resolution: 1200 DPI.
This is an postscript printer so why it uses ghostscript?

( 
Choose default options for HP_Laserjet_1200.
Extra
Density:
Economy mode:
Ghostscript Resolution:
Memory Booster Technology:
REt Setting:
)

I copied the hp1200_7.ppd file from original CD (which I got
with the printer) and it also works. I have also on that CD 
hp1220_7.ppd file. Which one to choose: hp1200_7.ppd or hp1220_7.ppd
or to stay with the one generated by CUPS system (but I could not find
driver for exactly HP Laserjet 1200 so I chose the one for
HP Laserjet 2100M, Foomatic+Postscript)?

How one can scan with the machine (it's  print copy scan)?

Jan

 [...]
  and it works, but how one can use properties (e.g. dpi =1200,...)
  of the printer with the above printcap? Is it possible?
 
 As I told you: use Cups or another PPD-capable printer daemon. Plain lpr 
 is...well...old.
 
 HS
 
 -- 
 Mein GPG-Key ist auf meiner Homepage verfgbar: http://www.hendrik-sattler.de
 oder ber pgp.net


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




Re: HP Laserjet 1200 series (print copy scan) problem

2002-11-22 Thread Jan Krupa


Thanks for answer.

On Fri, 22 Nov 2002, Hendrik Sattler wrote:

 Jan Krupa wrote:
  Q1.
  Which filter is the best for HP Laserjet 1200?
  (ljet4, ljet4ml or ...?)
 
 The PPD from HP and a printing system that accepts such PPD file (e.g. 
 cups). Download the windows postscript driver and unzip it and then you 
 have the PPD file :)
  
  Q2.
  How one can print in 1200 dpi on this HP Laserjet 1200?
 
 see Q1
 
  Q3. How one can use it to scan? (it's print copy and scan machine)
 
 http://hpoj.sourceforge.net/suplist.shtml

I'll try.

 
  Q4. Is it a postscript printer?
 YES

I tried the following printcap (for ''row postscript''?)
without any filter:

# Generic printer:
lp:lp=/dev/lp0:sd=/var/spool/lpd/postscript:mx#0:xt@:sh:

and it works, but how one can use properties (e.g. dpi =1200,...)
of the printer with the above printcap? Is it possible?

Jan

 
 HS
 
 



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




HP Laserjet 1200 series (print copy scan) problem

2002-11-21 Thread Jan Krupa

I have installed Debian 3.0 (woody) on PC Pentium IV.
I cannot get HP Laserjet 1200 series (print copy scan) working.
I installed lpd (parallel printer support), lprng.
I then run magicfilterconfig choose ljet4 filter, devise: /dev/lp0
(tried also /dev/lp1, /dev/lp2) and I cannot print anything.
 It works under W2k (on the same machine).

Any clue?

Jan 

P.S. My printcap

#   @(#)etc.printcap5.2 (Berkeley) 5/5/88
#
# This file was generated by /usr/sbin/magicfilterconfig.
#
lp|hplj1200|HP Laserjet1200:\
:lp=/dev/lp0:sd=/var/spool/lpd/hplj1200:\
:sh:pw#80:pl#72:px#1440:mx#0:\
:if=/etc/magicfilter/ljet4-filter:\
:af=/var/log/lp-acct:lf=/var/log/lp-errs:


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




Re: HP Laserjet 1200 series (print copy scan) problem

2002-11-21 Thread Jan Krupa

Thanks for answer.

On Thu, 21 Nov 2002, Matthew Weier O'Phinney wrote:

 -- Jan Krupa [EMAIL PROTECTED] wrote
 (on Thursday, 21 November 2002, 06:19 PM +0100):
  
  I have installed Debian 3.0 (woody) on PC Pentium IV.
  I cannot get HP Laserjet 1200 series (print copy scan) working.
  I installed lpd (parallel printer support), lprng.
  I then run magicfilterconfig choose ljet4 filter, devise: /dev/lp0
  (tried also /dev/lp1, /dev/lp2) and I cannot print anything.
   It works under W2k (on the same machine).
 Are you sure you connected it to the parallel port, and not the USB
 port? Most of these print/copy/scan combos are USB, so you'll need the
I think I connected it to the parallel port (parallel plug is with
many pins and much bigger than the USB one which are also without
pins)

Any more suggestion?

Jan

 -- 
 Matthew Weier O'Phinney
 [EMAIL PROTECTED]
 


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




Re: HP Laserjet 1200 series (print copy scan) problem

2002-11-21 Thread Jan Krupa


On Thu, 21 Nov 2002, Matthew Weier O'Phinney wrote:

 -- Jan Krupa [EMAIL PROTECTED] wrote
 (on Thursday, 21 November 2002, 09:25 PM +0100):
  
  Thanks for answer.
 No problem.
 
  On Thu, 21 Nov 2002, Matthew Weier O'Phinney wrote:
  
   -- Jan Krupa [EMAIL PROTECTED] wrote
   (on Thursday, 21 November 2002, 06:19 PM +0100):

I have installed Debian 3.0 (woody) on PC Pentium IV.
I cannot get HP Laserjet 1200 series (print copy scan) working.
I installed lpd (parallel printer support), lprng.
I then run magicfilterconfig choose ljet4 filter, devise: /dev/lp0
(tried also /dev/lp1, /dev/lp2) and I cannot print anything.
 It works under W2k (on the same machine).
   Are you sure you connected it to the parallel port, and not the USB
   port? Most of these print/copy/scan combos are USB, so you'll need the
  I think I connected it to the parallel port (parallel plug is with
  many pins and much bigger than the USB one which are also without
  pins)
 Yep, you've got it on your parallel port. As root, do an 'lsmod', and
 see if a module named parport and/or a parport_pc are present -- if
 not, it means that your parallel port isn't being picked up. Executing a
 modprobe parport parport_pc should activate them -- if no errors
 occur, place each of these modules in your /etc/modules file so they're
 present at boot.
 
 If this still doesn't work, what messages do you get when you print?

Thanks. I compiled parport_pc into the kernel and now it seems to work.

Two more questions:

Q1.
Which filter is the best for HP Laserjet 1200?
(ljet4, ljet4ml or ...?)

Q2.
How one can print in 1200 dpi on this HP Laserjet 1200?

Q3. How one can use it to scan? (it's print copy and scan machine)

Q4. Is it a postscript printer?

Jan

 
 -- 
 Matthew Weier O'Phinney
 [EMAIL PROTECTED]
 
 


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




Re: Debian3.0, Win2000 and LILO problem

2002-11-18 Thread Jan Krupa


On Sun, 17 Nov 2002, Elimar Riesebieter wrote:

 On Sun, 17 Nov 2002 the mental interface of 
 Jan Krupa told:
 
  
  Thanks for answer.
  
  On Sun, 17 Nov 2002, Elimar Riesebieter wrote:
  
   Hi Jan,
   
   On Sun, 17 Nov 2002 the mental interface of 
   Jan Krupa told:
   
   [...]
   
# Boot up Linux by default.
   
#
default=Win2000(hda1)
 ^
 What do you want as your default?
  
  I want win2k to be deafault so I put default=Win2000(hda1)
  
   
   So everything you need in your lilo.conf is:
   
   boot = /dev/hda
  This line causes to remove the W2k loader doesn't it?
  If so how to recover it not to install W2k again?
 
 With lilo. man lilo
 # lilo -u /dev/hda
 
 Or repair the bootsektor with your W2K CD.
 
 Installing lilo in the mbr is not a problem. I a running one
 maschine with deb suse and w2k booting from mbr with lilo ;)
 
  First I had: boot = /dev/hda3 
  it worked for two days but when it finished to work I tried:
  boot=/dev/hda3
 
 Can't see a diffrence?
I am sorry I made mistake.
There should be:
it worked for two days but when it finished to work I tried:
boot=/dev/hda
It's a little bit better but still not enough well (see below).

 
  It's a little bit better but still not enough well (see below).
 
 What is better boot=/dev/hda3 or boot=/dev/hda3. lilo.conf accepts
 blanks or not. That is not the point and makes no different ;-)
I am sorry agian for my mistake.
When I put boot=/dev/hda3 
and then the command lilo the following message appeared
boot=/dev/hda3
lilo
mel219:~# lilo
Warning: Int 0x13 function 8 and function 0x48 return different
head/sector geometries for BIOS drive 0x80
Added Linux
Added Win2000(hda1) *

After rebooting the system
the following happens during booting process:
---
Verifying DMI Pool Data ...
After one day when I switch on the computer I saw the following:
Verifying DMI Pool Data
Boot from CD:
MBR 3FA:
---
and computer hanged.
Then when I push  enter the coloured LILO's menu appears and then 
the booting process goes correctly.

Another strange thinks: when I try to load Linux from booting floppy
first the kernel is not loading. Instead 'boot:0000...so on'
appears (the zeros after 3 lines finish to appear).
Then when I push enter the booting process goes correctly.

Any clue?

Jan


 
 See man lilo.conf
 
 Uff
 
 
 -- 
   The way to source is always uphill!
 -unknown-
 



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




Debian3.0, Win2000 and LILO problem

2002-11-17 Thread Jan Krupa

I have Pentium IV, HD  40 GB. 
First Windows2000 professional was installed on first 30 GB of the HD
(on hda1).
Then on hda3 (10GB ) I installed Debian3.0 (current stable) 
using compact floppies and then via ftp.
I chose (in the end of the installation process) to use 
menu version of LILO and  to install it (LILO's boot block) in /dev/hda3.
Linux was loaded default and Win2000 as other. I changed it manually
editing lilo.conf so Win200 was loaded default and Linux as other.
It worked fine. I compiled the kernel-2.4.18 ( from resources )
and run lilo and still it worked fine (I mean Win2000 and Linux
was loaded properly).

After one day when I switch on the computer I saw the following:
Verifying DMI Pool Data
Boot from CD:
MBR 3FA:
and computer hanged.
(in BIOS the sequence boot is: floppy, CD, HH0).

I tried to use the boot floppy to load linux but it did not
work, instead sequence of zeros appeared: 0000...so on.
The rescue floppy did not work either (the same behavior as in case
of boot floppy, boot: 0...so on). But when I used Backspace to delete
the appeared zeros they did not appeared again and 
boot: rescue root=/dev/hda3 worked and the linux kernel was loaded.
When I tried to run lilo I got the following message:
--
Warning: Int 0x13 function 8 and function 0x48 return different
head/sector geometries for BIOS drive 0x80
Added Linux
Added Win2000(hda1) *
--

But it changed nothing. So I run: 'lilo -u' to uninstall LILO
and change in lilo.conf the line
boot=/dev/hda3 to be boot=/dev/hda.

I run lilo (got the message as above: Warning: Int 0x13 function 8 and
...)
but now something changed: The coloured LILO menu appeared,
after the line (on the screen) boot: 
sequence of zeros appeared: 0000...so on 
but  when I used Backspace to delete the appeared zeros they did not 
appeared again and  I could choose which OS to load and they 
both seem to load properly.

Question: Could someone please to help to configure LILO properly
and get rid off the ''problem of zeros'' and to make happy LILO
not to complain:   Warning: Int 0x13 function 8 and ...?

TIA
Jan


P.S. My lilo.conf without most comments.

# /etc/lilo.conf - See: `lilo(8)' and `lilo.conf(5)',
# ---   `install-mbr(8)', `/usr/share/doc/lilo/',
#   and `/usr/share/doc/mbr/'.

# +---+
# |!! Reminder !! |
# |   |
# | Don't forget to run `lilo' after you make changes to this |
# | conffile, `/boot/bootmess.txt', or install a new kernel.  The |
# | computer will most likely fail to boot if a kernel-image  |
# | post-install script or you don't remember to run `lilo'.  |
# |   |
# +---+

# Support LBA for large hard disks.
lba32

# Overrides the default mapping between harddisk names and the BIOS'
# harddisk order. Use with caution.
#disk=/dev/hde
#bios=0x81

#disk=/dev/sda
#bios=0x80

# Specifies the boot device.  This is where Lilo installs its boot
# block.  It can be either a partition, or the raw device, in which
# case it installs in the MBR, and will overwrite the current MBR.
#
boot=/dev/hda

# Specifies the device that should be mounted as root. (`/')
#
# root=/dev/hda3


install=/boot/boot-menu.b

# Specifies the location of the map file
#
# map=/boot/map


# delay=20


prompt
# timeout=150
#   prompt
#   single-key
#   delay=100
#   timeout=100

# Specifies the VGA text mode at boot time. (normal, extended, ask,
mode)
#
# vga=ask
# vga=9
#
vga=normal


# append=

# Boot up Linux by default.
#
default=Win2000(hda1)

image=/vmlinuz
label=Linux
root=/dev/hda3
read-only
#   restricted
#   alias=1

# image=/vmlinuz.old
#   label=LinuxOLD
#   read-only
#   optional
#   restricted
#   alias=2

# If you have another OS on this machine to boot, you can uncomment the
# following lines, changing the device name on the `other' line to
# where your other OS' partition is.
#
# other=/dev/hda4
#   label=HURD
#   restricted
#   alias=3
other=/dev/hda1
  label=Win2000(hda1)


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




Re: Debian3.0 and KeyMouse (PS/2) problem

2002-11-17 Thread Jan Krupa

Thanks for answer.

On Sun, 17 Nov 2002, Shawn Lamson wrote:

 
 --- Jan Krupa [EMAIL PROTECTED] wrote:
  
  My KeyMouse (two buttons and one wheel in the middle ) works
  under Win2000 as PS/2 compatible (6 pins) but I cannot force it
  to work under Linux Debian3.0 (PC Pentium IV). It does not work 
  neither on the console nor under X Window 4. 
  On the console gpm does not recognize the mice.
  gpm-mouse-test hangs with message: Ambiguous try it again and
  tries Baud rate: 1200 then 2400,..,9600 and then starts again
  1200,...
  
  Under X Window I tried in XF86Config-4 in Option Protocol the
  following:
  PS/2  IMPS/2 IntelliMouse   MouseManPlusPS/2   Auto
  None of the Options do not work, I mean that when X Window with e.g.
  Gnome
  is
  loaded I can use only keyboard keys and when I move the mouse or
  click
  some button only cursor is blanking  but I cannot control the
  mouse.
  When I click the right button the pull down menu appears but I cannot
  force the mouse to choose some item from it. I cannot drag window,
  put cursor active neither in xterm nor in other window.  
  
  Section InputDevice
  
  # Identifier and driver
  
  Identifier  Mouse1
  Driver  mouse
  Option Protocol   PS/2
  Option Device  /dev/mouse
  #Option   ClearDTR
  
  
  Could someone please help me (suggest how to make the mouse to work
  under
  X Window and on the console).
  
 I don't know about console, but to go step by step I would kill gpm and
 see if you can get the mouse working in X without gpm... then move on
 from there.
 here is my relevant mouse portiong from XF86Config-4Section 
 #
 InputDevice
 Identifier  Configured Mouse
 Driver  mouse
 Option  CorePointer
 Option  Device/dev/psaux
 Option  Protocol  ImPS/2
 Option  Emulate3Buttons   true
 Option  ZAxisMapping  4 5
 EndSection
 #

I tried again IMPS/2 and it started working under X. Then I got your
answer. I do not know why it did not work earlier. But I have
 Emulate3Buttons   off. 
The wheel works also as the third button.

But on the console the mouse still does not work
though I changed the configuration of gpm to imps2.

Does anybody have any clue?

 
Many thanks

Jan

 for me the Intellimouse driver didnt work right even though it is an
 Intellimouse! (optical).
 HTH
 Shawn
 
 
 
 =
 Shawn Lamson
 Debian Gnu\Linux Sid
 Kernel 2.4.19-custom
 XFree86 Version 4.2.1
 
 __
 Do you Yahoo!?
 Yahoo! Web Hosting - Let the expert host your site
 http://webhosting.yahoo.com
 
 
 -- 
 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: Debian2.2 and XFree86 version 4

2001-05-25 Thread Jan Krupa


  There are packages for XFree86 4.0.3 under potato. Just add the
  following lines to your sources.list:
 
  # Debian GNU/Linux 2.2 - XFree86 Version 4.0.3
  deb http://people.debian.org/~cpbotha/ xf403_potato/all/
  deb http://people.debian.org/~cpbotha/ xf403_potato/i386/
 
  Just run apt-get update / apt-get dist-upgrade to upgrade your
  installation of version 3.x. You can also use dselect with apt as
  access method to install it, if you didn't have an existing XFree86
  installation. You have to configure XFree86 Version 4.0.3 with
  xf86config (in text mode) because there is no graphical setup program
  like in version 3.x.
 
  For me there were no problems with the upgrade (I used apt-get to
  upgrade an existing installation). But I think at the moment not every
  graphic card that is supported in version 3.x is already supported in
  version 4.0.3. So better check if your card is supported on
  http://www.xfree86.org before making the upgrade.

I have got S3_ViRGE and Matrox Millennium.
It seems (from the xfree site) that XFree86 version 4 support these
two video card but I cannot find SVGA server. 
Has the SVGA server replaced by many different servers e.g.
Matrox Millennium server, S3_ViRGE sever and so on?  

Jan





Debian2.2 and XFree86 version 4

2001-05-24 Thread Jan Krupa

Does XFree86 version 4.x work well under debian2.2 (potato)?
Do you advise to install it instead version 3.x?
Does there exist debian package which installs XFree86 4.x
under debian2.2 ?

Jan



Re: opengl (mesa) compiling problem.

2001-05-23 Thread Jan Krupa


On 19 May 2001, Felix Natter wrote:

 Jan Krupa [EMAIL PROTECTED] writes:
 
  I would like to use the mesa (opengl) library in C or C++.
  
  I installed (debian2.2 potato) 
  mesa-glide2 3.1-17
  mesa-widget 3.1-17
  mesademos
  
  or tried (instead)
  mesa-dev
  mesag3
  
  I tried to compile some example of using opengl (mesa) library
  with the following heather:
  
  #include GL/glut.h
  
  and using the following command:
  
   gcc  -lglut -lMesaGLU -lMesaGL -lXi -lXmu -lX11 -lXext -lm -o 
  triangle triangle.c
 
 the Mesa-prefixes have been dropped to make it easier to port
 applications to MesaGL.
 I compile with, for example:
 gcc -Wall -o gluttest gluttest.c -lGLU -lglut -lGL -lm -L/usr/X11R6/lib -lXi 
 -lXext -lX11 -lXmu

Thanks. It works. But how to configure Linux to be able compiling
without -L/usr/X11R6/lib ?

 
 you might have to install a glut-package as well.
 

Which of the following set of  components would you think is better to
install?:

 mesa-glide2 3.1-17
 mesa-widget 3.1-17
 mesademos
...? (what else?)
 
 or (instead)
 mesa-dev
  mesag3
 ...(what else?)
  
Jan



Re: opengl (mesa) compiling problem.

2001-05-19 Thread Jan Krupa


On 19 May 2001, Felix Natter wrote:

 Jan Krupa [EMAIL PROTECTED] writes:
 
  I would like to use the mesa (opengl) library in C or C++.
  
  I installed (debian2.2 potato) 
  mesa-glide2 3.1-17
  mesa-widget 3.1-17
  mesademos
  
  or tried (instead)
  mesa-dev
  mesag3
  
  I tried to compile some example of using opengl (mesa) library
  with the following heather:
  
  #include GL/glut.h
  
  and using the following command:
  
   gcc  -lglut -lMesaGLU -lMesaGL -lXi -lXmu -lX11 -lXext -lm -o 
  triangle triangle.c
 
 the Mesa-prefixes have been dropped to make it easier to port
 applications to MesaGL.
 I compile with, for example:
 gcc -Wall -o gluttest gluttest.c -lGLU -lglut -lGL -lm -L/usr/X11R6/lib -lXi 
 -lXext -lX11 -lXmu

Thanks. It works. But how to configure Linux to be able compiling
without -L/usr/X11R6/lib ?
When I tried:
  triangle triangle.c
  
 the Mesa-prefixes have been dropped to make it easier to port
 applications to MesaGL.
 I compile with, for example:
 gcc -Wall -o gluttest gluttest.c -lGLU -lglut -lGL -lm -L/usr/X11R6/lib
-lXi $
  
Thanks. It works. But how to configure Linux to be able compiling
without -L/usr/X11R6/lib ?
When I tried:
  triangle triangle.c
  
 the Mesa-prefixes have been dropped to make it easier to port
 applications to MesaGL.
 I compile with, for example:
 gcc -Wall -o gluttest gluttest.c -lGLU -lglut -lGL -lm -L/usr/X11R6/lib
-lXi $
  
Thanks. It works. But how to configure Linux to be able compiling
without -L/usr/X11R6/lib ?
When I tried:
 gcc  -lglut -lGLU -lGL -lXi -lXmu -lX11 -lXext -lm -o triangle triangle.c

I got:
/usr/bin/ld: cannot find -lXi
collect2: ld returned 1 exit status

Which of the following componets would you think is better to install?:

When I tried:
 gcc  -lglut -lGLU -lGL -lXi -lXmu -lX11 -lXext -lm -o triangle triangle.c

I got:
/usr/bin/ld: cannot find -lXi 
collect2: ld returned 1 exit status

Which of the following componets would you think is better to install?:
   
 
 you might have to install a glut-package as well.
I've done.

Which of the following set of  components would you think is better to
install?:

 mesa-glide2 3.1-17
 mesa-widget 3.1-17
 mesademos
...? (what else?)
 
 or (instead)
 mesa-dev
  mesag3
 ...(what else?)
  
Jan


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



smc-ultra problem (loading problem)

2001-05-18 Thread Jan Krupa

I have tried to install (via html or ftp) the latest debian2.2 on my
pentium machine (32MB RAM, 75MHz), smc-ultra card.

I prepared three disc floppies:
rescue.bin, root.bin, driver-1.bin.
When I tried to install(load) the smc-ultra module
I got the following message:

/lib/modules/2.2.19pre17-compact/net/smc-ultra.o: init-module: Device or 
resource busy
Hints: this error can be caused by incorrect module parameters, 
including invalid IO or IRQ parameters.

/lib/modules/2.2.19pre17-compact/.../insmod/lib/.../smc-ultra.o: failed

/lib/modules/2.2.19pre17-compac/.../smc-ultra.o: insmod-ultra failed
Installation failed.

On the same computer with debian2.0 the smc-ultra worked:
eth0: SMC EtherEZ at 0x300, 00 00 C0 EEPROM IRQ10 F1 F5 D8, 
programmed-I/O mode

Could someone suggest how to get the smc-ultra loaded form
the driver-1.bin?

Jan



opengl (mesa) compiling problem.

2001-05-18 Thread Jan Krupa

I would like to use the mesa (opengl) library in C or C++.

I installed (debian2.2 potato) 
mesa-glide2 3.1-17
mesa-widget 3.1-17
mesademos

or tried (instead)
mesa-dev
mesag3

I tried to compile some example of using opengl (mesa) library
with the following heather:

#include GL/glut.h

and using the following command:

 gcc  -lglut -lMesaGLU -lMesaGL -lXi -lXmu -lX11 -lXext -lm -o 
triangle triangle.c

and got the following message:

/usr/bin/ld: cannot find -lMesaGLU
collect2: ld returned 1 exit status

What debian packages (debian2.2 potato) should I install to
be able to use the mesa library?


Jan



plotutils2.2 under debian2.0

2000-02-28 Thread Jan Krupa

I use debian2.0 and plotutils2.0 but I would like to
upgrade to plotutils2.2. Is it save to use plotutils2.2 
under debian2.0 or should I first upgrade to debian2.1 ?
 Does plotutils2.2 work under debian2.0?

Jan


delete does not work properly under X Window

1999-12-08 Thread Jan Krupa

I debian2.0 on Pentium. 

The key delete works (under X Window) the same way as backspace does I
mean
both keys erase a letter on the left side of cursor.
The key delete works O.K. on the console
(it erases a letter on right side of cursor).

I have tried to put in .Xmodemap the following

keycode 22 = BackSpace
keycode 107 = Delete

or 

keycode 0x16 = BackSpace
keycode 0x6B = Delete

but it does not help, the keys work as before.

Could someone please suggest how can I achieve the
delete key work properly (I would like delete key
to erase a letter on right side of cursor).

Jan


looking for ssh debian2.0 package

1999-06-25 Thread Jan Krupa


Is there shh binary debian2.0 ( kernel-2.0.36) package? 
If so, where I could find it?
Please send the answer to [EMAIL PROTECTED]

Thanks in advance,

Jan


lpq:Queue: no printable jobs in queue

1999-05-14 Thread Jan Krupa

I have two printers installed on my Debian2.0 machine (the name of it say A):
local lp and remote p17 which is installed on other debian2.0 machine (say B).

When I first tried to print from machine A using the remote printer
on machine B (using command 'lpr -Pp17 name.ps') I made probably 
some mistake. The file name.ps was not printed and I got the following
message on machine B (where the printer is installed and plugged to
machine B):
$ lpq
Printer: [EMAIL PROTECTED] 
 Queue: no printable jobs in queue
 Status: server finished at 15:55:33

Then I change the configuration of the printer p17 (printcap, hosts, hosts.lpd)
and I got the printer p17 working but I get the message (with different time):

$ lpq
Printer: [EMAIL PROTECTED] 
 Queue: no printable jobs in queue
 Status: server finished at 15:55:33

again and again (although p17 prints fine)

How can I get rid of the annoying message?

Jan


lpq:cannot open connection to `lp@localhost' - Connection refused

1999-05-13 Thread Jan Krupa

I have two printer installed on my Debian2.0 machine (the name of it say A):
local lp and remote p22 which is installed on other debian2.0 machine (say B).

When I print from machine A using p22 printer to printer on machine B
it seems work fine but after the printing is finished the lpq command
gives the following message: 
cannot open connection to [EMAIL PROTECTED]' - Connection refused
and I cannot print on local printer.

lpc start lp
gives the same message.

It seems that lpd is stopped but

lpd
gives no result.

Rebooting the machine starts lpd and again printing on remote printer
and then  

Does anybody have some idea what is going wrong and how to
get the printers to work properly?


Jan

Part of my /etc/printcap on machine A
# Local printer hplj4mp :
lp|hplj4mp:\
:lp=/dev/lp1:\
:sd=/var/spool/lpd/hplj4mp:\
:mx#0:\
:lf=/var/spool/lpd/hpj4mp/lp-error.log:\
:sh:\
:sf:
# Remote printer hplj5p 
p22|hplj5p:\
:lp=:\
:sd=/var/spool/lpd/p22:\
:lf=/var/spool/lpd/p22/p22-error.log:\
:rm=B.name1.waw.pl:\
:rp=lp:\
:mx#0:\
:sh:\
:sf:


an entry from /etc/hosts on machine B

ip_number_of_machine_A   A.name1.waw.pl A


---

an entry from /etc/hosts.lpd on machine B

A

---


mimedecode problem

1999-04-29 Thread Jan Krupa
I use debian2.0 and I cannot get mimedecode working.
How it could be used?
I tried 'mimedecode encoded_message' but it does not work.

Any suggestions?

Jan

Please send the answer to [EMAIL PROTECTED] 


how to set up the delete key under X Window ?

1999-03-02 Thread Jan Krupa
Under X Window
backspace works in the standard way but delete works exactly
the same way as backspace.

How can I achieve the  key delete working under
X Window in all applications (e.g. xterm, emacs, mathematica, netscape, 
vim,..) in the standard way (erasing the sign after cursor not
before, like backspace does) ?   


On the console (without X Window) delete works in the
standard way (erases signs after cursor).
I use Debian2.0.

Please send the answer to [EMAIL PROTECTED]

Jan


anonymous ftp in Debian2.0

1999-02-18 Thread Jan Krupa


I use debian2.0 and I do not have the directory /home/ftp so
there is no access to the machine via anonymous ftp.
 What debian package should I install to get the directory /home/ftp
and access to  machine via anonymous ftp.


Jan

Please send the answer to [EMAIL PROTECTED]


Using kernel-2.2.0 with debian2.0?

1999-02-01 Thread Jan Krupa

Is there somebody using the kernel 2.2.0 with debian2.0 ?


It seems that the compilation process is finished successfully.
I copied the new zImage and System.map to /boot/vmlinuz-2.2.0 and 
System.map-2.2.0
and changed the link of /vmlinuz to /boot/vmlinuz-2.2.0.
Next invoked 'lilo' but when I rebooted my computer when the system (kernel) is
loading  the message 'Loading Linux...' appears and it seems that nothing more
is loaded I mean the computer (the process of loading the kernel) hangs and
I have to reboot my machine. 

Does anybody have any idea how it is possible to use the new kernel 2.2.0
with debian2.0 ?


Jan

Here is my .config:
#
# Automatically generated by make menuconfig: don't edit
#

#
# Code maturity level options
#
# CONFIG_EXPERIMENTAL is not set

#
# Processor type and features
#
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
CONFIG_M686=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_TSC=y
CONFIG_X86_GOOD_APIC=y
# CONFIG_MATH_EMULATION is not set
# CONFIG_MTRR is not set
# CONFIG_SMP is not set

#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y

#
# General setup
#
CONFIG_NET=y
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
# CONFIG_PCI_QUIRKS is not set
CONFIG_PCI_OLD_PROC=y
# CONFIG_MCA is not set
# CONFIG_VISWS is not set
CONFIG_SYSVIPC=y
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
# CONFIG_BINFMT_AOUT is not set
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_MISC=y
CONFIG_PARPORT=y
CONFIG_PARPORT_PC=y
# CONFIG_PARPORT_OTHER is not set
CONFIG_APM=y
# CONFIG_APM_IGNORE_USER_SUSPEND is not set
# CONFIG_APM_DO_ENABLE is not set
# CONFIG_APM_CPU_IDLE is not set
# CONFIG_APM_DISPLAY_BLANK is not set
# CONFIG_APM_POWER_OFF is not set
# CONFIG_APM_IGNORE_MULTIPLE_SUSPEND is not set
# CONFIG_APM_IGNORE_SUSPEND_BOUNCE is not set
# CONFIG_APM_RTC_IS_GMT is not set
# CONFIG_APM_ALLOW_INTS is not set

#
# Plug and Play support
#
# CONFIG_PNP is not set

#
# Block devices
#
CONFIG_BLK_DEV_FD=y
CONFIG_BLK_DEV_IDE=y
# CONFIG_BLK_DEV_HD_IDE is not set
# CONFIG_BLK_DEV_IDEDISK is not set
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
# CONFIG_BLK_DEV_IDESCSI is not set
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
# CONFIG_BLK_DEV_RZ1000 is not set
# CONFIG_BLK_DEV_IDEPCI is not set
# CONFIG_IDE_CHIPSETS is not set
# CONFIG_BLK_DEV_LOOP is not set
CONFIG_BLK_DEV_NBD=y
# CONFIG_BLK_DEV_MD is not set
CONFIG_BLK_DEV_RAM=y
# CONFIG_BLK_DEV_INITRD is not set
# CONFIG_BLK_DEV_XD is not set
CONFIG_PARIDE_PARPORT=y
CONFIG_PARIDE=y
# CONFIG_PARIDE_PD is not set
# CONFIG_PARIDE_PCD is not set
# CONFIG_PARIDE_PF is not set
# CONFIG_PARIDE_PT is not set
# CONFIG_PARIDE_PG is not set
# CONFIG_PARIDE_ATEN is not set
# CONFIG_PARIDE_BPCK is not set
# CONFIG_PARIDE_COMM is not set
# CONFIG_PARIDE_DSTR is not set
# CONFIG_PARIDE_FIT2 is not set
# CONFIG_PARIDE_FIT3 is not set
# CONFIG_PARIDE_EPAT is not set
# CONFIG_PARIDE_EPIA is not set
# CONFIG_PARIDE_FRIQ is not set
# CONFIG_PARIDE_FRPW is not set
# CONFIG_PARIDE_KBIC is not set
# CONFIG_PARIDE_KTTI is not set
# CONFIG_PARIDE_ON20 is not set
# CONFIG_PARIDE_ON26 is not set
# CONFIG_BLK_DEV_HD is not set

#
# Networking options
#
CONFIG_PACKET=m
# CONFIG_NETLINK is not set
# CONFIG_FIREWALL is not set
# CONFIG_NET_ALIAS is not set
# CONFIG_FILTER is not set
CONFIG_UNIX=y
CONFIG_INET=y
# CONFIG_IP_MULTICAST is not set
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_IP_ROUTER is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_ALIAS is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_RARP is not set
CONFIG_IP_NOSR=y
CONFIG_SKB_LARGE=y
# CONFIG_IPX is not set
# CONFIG_ATALK is not set

#
# SCSI support
#
# CONFIG_SCSI is not set

#
# Network device support
#
CONFIG_NETDEVICES=y
# CONFIG_ARCNET is not set
CONFIG_DUMMY=y
# CONFIG_EQUALIZER is not set
CONFIG_NET_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_EL1 is not set
# CONFIG_EL2 is not set
# CONFIG_ELPLUS is not set
# CONFIG_EL3 is not set
# CONFIG_3C515 is not set
CONFIG_VORTEX=y
# CONFIG_LANCE is not set
# CONFIG_NET_VENDOR_SMC is not set
# CONFIG_NET_VENDOR_RACAL is not set
# CONFIG_NET_ISA is not set
# CONFIG_NET_EISA is not set
# CONFIG_NET_POCKET is not set
# CONFIG_FDDI is not set
# CONFIG_DLCI is not set
CONFIG_PLIP=y
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
# CONFIG_NET_RADIO is not set
# CONFIG_TR is not set
# CONFIG_HOSTESS_SV11 is not set
# CONFIG_COSA is not set
# CONFIG_RCPCI is not set
# CONFIG_WAN_DRIVERS is not set
# CONFIG_LAPBETHER is not set
# CONFIG_X25_ASY is not set

#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set

#
# ISDN subsystem
#
# CONFIG_ISDN is not set

#
# CD-ROM drivers (not for SCSI or 

how to set up delete and Num_Lock under X Window ?

1998-12-13 Thread Jan Krupa

I.
Under X Window
backspace works in the standard way but delete works exactly
the same way as backspace.

How can I achieve the two keys named delete working under
X Window in all applications (e.g. xterm, emacs, mathematica, netscape, 
vim,..) in the standard way (erasing the sign after cursor not
before, like backspace does) ?   


On the console (without X Window) delete works in the
standard way (erases signs after cursor).

II.

In many applications (e.g.:netscape, mathematica)
the keys from the numeric keyboard does not work
(when push some key it is heard bip).
Pushing Num Lock does not give anything ?


To be more precisely I have quite big mess.

In Mathematica3.0, netscape4.5 any of the keys from numeric keyboard
does not work. Under Netscape the standard delete (not the one
from the numeric keyboard) works in the standard way (erases
signs after cursor) but in Mathematica front end
delete works exactly the same way as backspace.


I have read in keyboard-howto that it is rather needed to
define for each applications separately the keymap to get delete
and numeric keyboard working in the standard way under X Window. 


If anybody has the keyboard (delete and numeric keyboard) working
in the standard way, please help me (e.g. some input code
for .inputrc, .Xmodmap, .emacs,...). 

I use debian2.0, kernel-2.0.36, xserver-3.3.2.3-2.

Thanks in advance

Please send the answer to [EMAIL PROTECTED]
because the mailing list is too busy for me so I could miss the answer.

Jan Krupa


Re: 512MB RAM, 860MB swap and out of memory ?

1998-12-07 Thread Jan Krupa


On Mon, 7 Dec 1998 [EMAIL PROTECTED] wrote:

 -BEGIN PGP SIGNED MESSAGE-
 
 Hi Krupa!
 
 On Thu, 3 Dec 1998, Jan Krupa wrote:
 
  
  My Debian Linux 2.0 cannot use more than 460MB sawp :(
 
 that's very extrange :-(
You're right. Linux can use my 860MB of swap ( I gave some
applications very big task so they used all of my swap).

It seems that mathematica3.02 under Linux cannot use 
more than 460MB of swap :.
I do not have access to mathematica3.0 under other platforms
(e.g. solaris, Win95/NT) so I do not know whether it is
limitation of mathematica only under Linux or under
other platforms too.

 
 
 I hope this helps,
Thanks.

 
   Ulisses


Linux cannot use swap bigger then 460Mb ?

1998-12-03 Thread Jan Krupa
I have Pentium II, 512 Mb RAM, Linux debian 2.0,
kernel 2.0.36
I need quite big swap, so I created 7 swap partitions
hda3,hda5,...,hda10, as seen below:

/dev/hda1   *11  420  3175168+   7  OS/2 HPFS
/dev/hda2  421  421  438   1360806  DOS 16-bit =32M
/dev/hda3  439  439  456   136080   82  Linux swap
/dev/hda4  457  457  556   7560005  Extended
/dev/hda5  457  457  474   136048+  82  Linux swap
/dev/hda6  475  475  492   136048+  82  Linux swap
/dev/hda7  493  493  510   136048+  82  Linux swap
/dev/hda8  511  511  528   136048+  82  Linux swap
/dev/hda9  529  529  546   136048+  82  Linux swap
/dev/hda10 547  547  55675568+  82  Linux swap

When the system is loading it prints that the 7 (seven)
sawp partitions are activating, and that's mean that I have
860Mb of swap.


Unfortunately when the mathematica3.0 is running,
after using (consuming) all RAM memory it can only 
use up to 460Mb of swap and then it prints message:
'out of memory' and exits the calculations
(stop running the calculation) but it does not crush,
the front end of it and its kernel can be used further.
It is normal ? How can be the total swap amount (860Mb) used?
Does anybody have some idea, where could be reason
for such behaviour of Mathematica, Linux and swap?
(fault in kernel, my configurations of Linux, in Mathematica,
in my hard disk swap?) 

Here are some additional information
$ free
 total   used   free sharedbuffers cached
Mem:515772  57200 458572  32108   2444  32272
-/+ buffers/cache:  22484 493288
Swap:   860052   1300 858752

 fstab:
# /etc/fstab: static file system information.
#
# file system mount point type options  dump pass
/dev/hdc1 /  ext2 defaults,errors=remount-ro   0  1
/dev/hda3   noneswapsw  0   0
/dev/hda5   noneswapsw  0   0
/dev/hda6   noneswapsw  0   0
/dev/hda7   noneswapsw  0   0
/dev/hda8   noneswapsw  0   0
/dev/hda9   noneswapsw  0   0
/dev/hda10   noneswapsw  0   0
proc/proc   procdefaults0   0

I have tried to use kernel 2.1.126 but I could not compile
it although its configurations was  the same as
for the kernel 2.0.36 which was compiled successfully.

ps aux prints:
USER   PID %CPU %MEM  SIZE   RSS TTY STAT START   TIME COMMAND
daemon 111  0.0  0.0   792 0  ?  SW   11:42   0:00 (portmap)
daemon 134  0.0  0.0   84820  ?  S11:42   0:00 (atd)
krupa  148  0.0  0.2  1964  1268   3 S11:42   0:00 -bash
krupa  251  0.1  0.7  6100  3964   3 S12:19   0:00 emacs swap1
math   146  0.0  0.1  1936   712   1 S11:42   0:00 -bash
math   258  0.0  0.1   916   536   1 R12:29   0:00 ps aux
root 1  0.1  0.0   76896  ?  S11:42   0:03 init
root 2  0.0  0.0 0 0  ?  SW   11:42   0:00 (kflushd)
root 3  0.4  0.0 0 0  ?  SW  11:42   0:12 (kswapd)
root 4  0.0  0.0 0 0  ?  SW   11:42   0:00 (nfsiod)
root 5  0.0  0.0 0 0  ?  SW   11:42   0:00 (nfsiod)
root 6  0.0  0.0 0 0  ?  SW   11:42   0:00 (nfsiod)
root 7  0.0  0.0 0 0  ?  SW   11:42   0:00 (nfsiod)
root16  0.0  0.0   73228  ?  S11:42   0:00 update
root98  0.0  0.0   900   200  ?  S11:42   0:00 /sbin/syslogd
root   100  0.0  0.0   91272  ?  S11:42   0:00 (klogd)
root   107  0.0  0.0   75264  ?  S11:42   0:00 /sbin/kerneld
root   113  0.0  0.0   86816  ?  S11:42   0:00 (inetd)
root   117  0.0  0.0   760   132  ?  S11:42   
0:00 /usr/sbin/gpm -m /devroot   122  0.0  0.0   91224  ?  S
11:42   0:00 (lpd)
root   137  0.0  0.0   860   172  ?  S11:42   0:00 /usr/sbin/cron
root   147  0.0  0.2  1948  1248   2 S11:42   0:00 -bash
root   149  0.0  0.0   84444   4 S11:42   0:00 (getty)
root   150  0.0  0.0   844 8   5 S11:42   0:00 (getty)
root   151  0.0  0.0   84412   6 S11:42   0:00 (getty)


Please send the answer to '[EMAIL PROTECTED]'
because the mailing list is too busy to me so I could miss the answer.

Thanks in advance,

Jan Krupa


512MB RAM, 860MB swap and out of memory ?

1998-12-03 Thread Jan Krupa
16764

but it haven't helped.

Still after consuming almost all RAM and
about half of swap stops computing and prints message:
out of memory.
I am getting desperate, please help.

Please send the answer to '[EMAIL PROTECTED]'
because the mailing list is too busy to me so I could miss the answer.

Thanks in advance,

Jan Krupa


lj5P and remote printing problem

1998-11-28 Thread Jan Krupa
I cannot get my local printer laserjet5P to print.
I have installed magicfilter and I chose lj4lp filter
and it does not work I mean that the command
'lpr foo.ps' prints strange code 
(e.g.:roun exch round exch...
F000FC14...)

Which filter should I choose.

Also I have postricpt  printer HP Laserjet 4MP.
How can I set up it ? I mean is there an
obvious printcap entry for such printer or
is there some tool for automatic generating printcap
for postscript printer or should I create
it manually studying printcap manual?

Another question I have a printer working
on remote Linux machine.
Is there a tool for automatic generation
of printcap for such printer ? 

Say I have printcap entry for remote printer:

lp0:\
:sd=/var/spool/lpd/lp0:\
:mx#0:\
:sh:\
:rm=mel222.sggw.waw.pl:\
:rp=lpd:\
:if=/var/spool/lpd/lp0/filter:

How can use it for printing ? (I am not sure whether the
printcap entry is proper).

lpr foo.ps ...?

Thanks in advance

Jan Krupa

Please send the answer to [EMAIL PROTECTED]
because the mailing list is too busy for me
so I could miss the answer.


lj5P and remote printing problem

1998-11-28 Thread Jan Krupa
I cannot get my local printer laserjet5P to print.
I have installed magicfilter and I chose lj4lp filter
and it does not work I mean that the command
'lpr foo.ps' prints strange code 
(e.g.:roun exch round exch...
F000FC14...)

Which filter should I choose?

Also I have a postricpt  printer HP Laserjet 4MP.
How can I set up it ? I mean is there an
obvious printcap entry for such printer or
is there some tool for automatic generating printcap
for postscript printer or should I create
it manually studying printcap manual?

Another question I have a printer working
on remote Linux machine.
Is there a tool for automatic generation
of printcap for such printer ? 

Say I have printcap entry for remote printer:

lp0:\
:sd=/var/spool/lpd/lp0:\
:mx#0:\
:sh:\
:rm=mel222.sggw.waw.pl:\
:rp=lpd:\
:if=/var/spool/lpd/lp0/filter:

How can use it for printing ? (I am not sure whether the
printcap entry is proper).

lpr foo.ps ...?

Thanks in advance

Jan Krupa

Please send the answer to [EMAIL PROTECTED]
because the mailing list is too busy for me
so I could miss the answer.


How to calculate the proper modeline? (DCF?

1998-11-24 Thread Jan Krupa
I am reading XFree86 Video Timings HOWTO and I would like to
compute DCF/HSF but I do not know what DCF (dot clock frequency)
is ? I mean I do not know where it comes from?

Here are some information of my OS nd hardware:
I use debian2.0. I have Matrox Millenium || AGP, 8Mgb videoRAM,
monitor Bridge OSD 17 (17inch).

1.
The data from Monitor User's Manual

Resolution 1280x1024 Non-Interlaced (Max.)

Synchronization :Horizontal: 30KHz-70KHz (Automatically)
:Vertical: 50Hz-160Hz (Automatically)

Video Bandwidth  : 100MHz at-3db


So I think I can put HSF = 7 and VSF = 160 but what about
DCF ? Is DCF = 100 proper? How can I get it ?

So shown below the  Maximum allowed dot-clock: 250.000 MHz
Is it connected to DCF ?

2. X -probeonly gives the following messages:

Free86 Version 3.3.2.3 / X Window System
(protocol Version 11, revision 0, vendor release 6300)
Release Date: July 15 1998
XF86Config: /etc/X11/XF86Config
(**) stands for supplied, (--) stands for probed/default values
(**) XKB: rules: xfree86
(**) XKB: model: pc101
(**) XKB: layout: us
(**) Mouse: type: PS/2, device: /dev/mouse, resolution: 100
(**) Mouse: buttons: 3, 3 button emulation (timeout: 50ms)
(**) SVGA: Graphics device ID: Primary Card
(**) SVGA: Monitor ID: Primary Monitor
Warning: The directory /usr/X11R6/lib/X11/fonts/Type1 does not exist.
 Entry deleted from font path.
Warning: The directory /usr/X11R6/lib/X11/fonts/Speedo does not exist.

 Entry deleted from font path.
(**) FontPath set to
/usr/X11R6/lib/X11/fonts/misc:unscaled,
/usr/X11R6/lib/X11/fonts/75dpi:unscaled,
/usr/X11R6/lib/X11/fonts/100dpi:unscaled,
/usr/X11R6/lib/X11/fonts/misc,/usr/X11R6/lib/X11/fonts/75dpi,
/usr/X11R6/lib/X11/fonts/100dpi

(--) SVGA: PCI: Matrox MGA 2164W AGP rev 0, Memory @ 0xe800,
0xe400
(--) SVGA: Linear framebuffer at 0xE800
(--) SVGA: MMIO registers at 0xE400
(--) SVGA: Video BIOS info block at 0x000c7dc0
(--) SVGA: Found and verified enhanced Video BIOS info block
(--) SVGA: chipset:  mga2164w AGP
(--) SVGA: videoram: 8192k
(**) SVGA: Option dac_8_bit
(**) SVGA: Using 16 bpp, Depth 16, Color weight: 565
(--) SVGA: Maximum allowed dot-clock: 250.000 MHz
(**) SVGA: Mode 1024x768: mode clock =  85.000
(**) SVGA: Mode 800x600: mode clock =  60.750
(**) SVGA: Mode 640x480: mode clock =  36.000
(**) SVGA: Virtual resolution set to 1152x950
(--) SVGA: SpeedUp code selection modified because virtualX != 1024
(--) SVGA: MCLK set to 62.000 MHz
(--) SVGA: Using hardware cursor
(--) SVGA: Using XAA (XFree86 Acceleration Architecture)
(--) SVGA: XAA: Solid filled rectangles
(--) SVGA: XAA: Screen-to-screen copy
(--) SVGA: XAA: 8x8 color expand pattern fill
(--) SVGA: XAA: CPU to screen color expansion (TE/NonTE imagetext,
TE/NonTE polytext)
(--) SVGA: XAA: Using 9 128x128 areas for pixmap caching
(--) SVGA: XAA: Caching tiles and stipples
(--) SVGA: XAA: General lines and segments
(--) SVGA: XAA: Dashed lines and segments


Thanks in advance

Please send the answer to [EMAIL PROTECTED]
because the mailing list is too busy for me so I could miss
the answer.

Jan Krupa


ModeLine for Matrox Millenium II AGP

1998-11-22 Thread Jan Krupa
1Q.

I use debian2.0. I have Matrox Millenium II AGP (8Mgb Video Ram) 
and Color Monitor Bridge 17 OSD (17 inches).

I cannot find proper Modeline for that hardware.

Does anybody have the same configuration of hardware ?
If so could you send me your XF86Config file
or at least the Modelines for 1024x768 800x600 640x480 
1280x1024 please ?

For now I use the following (16bpp):
 
 Modeline  1024x768  85 1024 1108 1184 1400 768 770 776 811 -hsync -vsync  

and it works quite fine (similar to NT) but I am not sure whether it is 
the best Modeline for my card and monitor. The vertical border
of the screen are not lines but they are a little bit convex.
Although the screen is identical as under NT on the same computer
I would like to have better look of the screen.   

Section Screen
   Driver  SVGA
   Device  Primary Card
   Monitor Primary Monitor
   DefaultColorDepth 16
   SubSection Display
  Depth8
  Modes1024x768 800x600 640x480
   EndSubSection
   SubSection Display
  Depth15
  Modes1024x768 800x600 640x480
   EndSubSection
   SubSection Display
  Depth16
  Modes1024x768 800x600 640x480
  ViewPort  0 0
  Virtual  1280 1024 
   EndSubSection
   SubSection Display
  Depth24
  Modes1024x768 800x600 640x480
   EndSubSection
   SubSection Display
  Depth32
  Modes1024x768 800x600 640x480
   EndSubSection
EndSection

2Q.
 Which xserver is the best for Matrox Millenium II AGP ?
Is there a SUSE xserver for that card ?

Please send the answer to [EMAIL PROTECTED] because
the mailing list is too busy for me so I can miss the answer.

Thanks in advance

Jan Krupa


.deb package maxima

1998-11-12 Thread Jan Krupa
Is there a .deb package for maxima the program for
symbolical math calculations or do I have to compile
it from resources ?

Could you please send the answer to [EMAIL PROTECTED] because
the mailing list too busy for me (I read the archives).
Jan Krupa


building maxima problem

1998-11-12 Thread Jan Krupa
I use debian2.0.
I could not find binary .deb package for maxima so 
I would like to build maxima from resources but I do not know
how to edit properly the ./configure file.
Could someone please give me a hand ?


From README
BUILDING:


For GCL (GNU Common Lisp) version 2.0 and later, edit the file ./configure
putting the correct
directories in these.  It presupposes your having the .o files from
the GCL available, since a large link will be done to produce a new
image containing maxima.

Then in the main maxima directory,

% ./configure
% make


# begining of configure file
#!/bin/sh
# edit next 2 lines to say where GCL was built, and where the current directory 
is.
GCLDIR=/usr/lib/gcl
## I do not know what directory should I put here (above) as GCLDIR
## I have /usr/lib/gcl directory but it does not work
MAXDIR=/home/krupa/maxima-5.2
## I got the uncopressed maxima files in the above directory
# determines where to install: eg /usr/local/maxima-5.0/ /usr/local/bin ...etc.
PREFIX_DIR=/usr/local/maxima/


if [ -f ${GCLDIR}/makedefs ] ;then
cat ${GCLDIR}/makedefs  makedefs
else echo  makedefs
echo '${GCLDIR}/makedefs' (${GCLDIR}/makedefs) not found.. so leaving blank..

fi

echo GCLDIR=${GCLDIR} makedefs
echo MAXDIR=${MAXDIR} makedefs
echo '# end maxmakedefs'  makedefs

echo inserting makedefs  in ..
for v in makefile src/makefile info/makefile elisp/makefile
 do
echo  $v,
 ${GCLDIR}/xbin/file-sub makedefs $v # begin makedefs '# end maxmakedefs'
 mv tmpx $v
 done

# end of configure file


 I cannot find the /xbin/file-sub file or directory. ***


When I type (as root) ./configure I got the following:
${GCLDIR}/makedefs (/usr/lib/gcl/makedefs) not found.. so leaving blank..
inserting makedefs in ..
 makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory
 src/makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory
 info/makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory
 elisp/makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory

Could someone please help me ?

Thanks in advance

Jan Krupa


building maxima problem

1998-11-12 Thread Jan Krupa

I use debian2.0.
I could not find binary .deb package for maxima so 
I would like to build maxima from resources but I do not know
how to edit properly the ./configure file.
Could someone please give me a hand ?


From README
BUILDING:


For GCL (GNU Common Lisp) version 2.0 and later, edit the file ./configure
putting the correct
directories in these.  It presupposes your having the .o files from
the GCL available, since a large link will be done to produce a new
image containing maxima.

Then in the main maxima directory,

% ./configure
% make


# begining of configure file
#!/bin/sh
# edit next 2 lines to say where GCL was built, and where the current directory 
is.
GCLDIR=/usr/lib/gcl
## I do not know what directory should I put here (above) as GCLDIR
## I have /usr/lib/gcl directory but it does not work
MAXDIR=/home/krupa/maxima-5.2
## I got the uncopressed maxima files in the above directory
# determines where to install: eg /usr/local/maxima-5.0/ /usr/local/bin ...etc.
PREFIX_DIR=/usr/local/maxima/


if [ -f ${GCLDIR}/makedefs ] ;then
cat ${GCLDIR}/makedefs  makedefs
else echo  makedefs
echo '${GCLDIR}/makedefs' (${GCLDIR}/makedefs) not found.. so leaving blank..

fi

echo GCLDIR=${GCLDIR} makedefs
echo MAXDIR=${MAXDIR} makedefs
echo '# end maxmakedefs'  makedefs

echo inserting makedefs  in ..
for v in makefile src/makefile info/makefile elisp/makefile
 do
echo  $v,
 ${GCLDIR}/xbin/file-sub makedefs $v # begin makedefs '# end maxmakedefs'
 mv tmpx $v
 done

# end of configure file


 I cannot find the /xbin/file-sub file or directory. ***


When I type (as root) ./configure I got the following:
${GCLDIR}/makedefs (/usr/lib/gcl/makedefs) not found.. so leaving blank..
inserting makedefs in ..
 makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory
 src/makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory
 info/makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory
 elisp/makefile,
./configure: /usr/lib/gcl/xbin/file-sub: No such file or directory
mv: tmpx: No such file or directory

Could someone please help me ?


Could you please send the answer to [EMAIL PROTECTED] because
the mailing list is too busy for me (I read the archives).
Thanks in advance

Jan Krupa


MuPAD window problem (copy and past)

1998-11-04 Thread Jan Krupa
I use MuPAD (xmupad) under debian2.0 and have the following
problem with copy and past).

Usually when I mark some text e.g. in emacs using the left key
of mouse then I can past e.g. in  vim, netscape, ... using the 
third key of mouse (actually the emulation of it by pushing at the
same time both keys of mouse) 
but I can not do that in the xview MuPAD window, that means
I cannot copy anything to MuPAD window from anywhere and even from
MuPAD window to the same MuPAD window using  mouse.

It is normal behavior of xview MuPAD window (very poor editor)
or does anyone know how to achieve select (mouse left key)
and past (emulation of the third mouse key) ?

Thanks in advance,

Could you please send the answer to [EMAIL PROTECTED] because
the mailing list too busy for me (I read the archives).

Jan Krupa


Re: netscape4.x cannot read debian-user list archives

1998-10-17 Thread Jan Krupa


On Sat, 17 Oct 1998, Christopher Barry wrote:

 I had this problem to with an earlier Netscape. I'm using 4.06 right now
 (though there is 4.07) and it seems to work okay. By the way, the 4.5
 final came out just today. The only time I've ever had Linux *really*
 crash hard was with a 4.5 beta and it crashed anyways whenever I did a
 lot of rapid fire email deleating.
 I've installed already the 4.5 final and I have the same problem:
it cannot read the big archives debian-user (sept, august,...).
 May be I'll try 4.06 (but I've probably tried it, I don't remember).
 Of course I can use lynx, it works, but I am used to netscape.

 Christopher
 
 
 
 Jan Krupa wrote:
  
  I have installed netscape4.5b2 under debian2.0.
   When I try to read debian-user mailing list archives
  (e.g. from September, august) first
  time it's O.K. but next times on the same month archives
  netscape just hangs I have to kill it (the archives are very big).
  
   When I try to read much smaller archives (e.g. debian-changes,
  September) it's all right.
  
  I had the same behavior using netscape4.x, but netscape3.x
The final 4.5 also cannot read debian-user archives.
  reads the archives well.
  
  Jan Krupa


Jan


netscape4.x cannot read debian-user list archives

1998-10-16 Thread Jan Krupa
I have installed netscape4.5b2 under debian2.0.
 When I try to read debian-user mailing list archives 
(e.g. from September, august) first
time it's O.K. but next times on the same month archives
netscape just hangs I have to kill it (the archives are very big).

 When I try to read much smaller archives (e.g. debian-changes,
September) it's all right.

I had the same behavior using netscape4.x, but netscape3.x
reads the archives well. 
 
Does anybody have any idea  what causes such behavior of netscape ?
 May be I have configured netscape wrong. 
 My be I some hint what change in preferences?
 

Jan Krupa


Re: netscape4.x cannot read debian-user list archives

1998-10-16 Thread Jan Krupa


On 16 Oct 1998, Rene Hojbjerg Larsen wrote:

 Jan Krupa wrote:
  I have installed netscape4.5b2 under debian2.0.
   When I try to read debian-user mailing list archives 
  (e.g. from September, august) first
  time it's O.K. but next times on the same month archives
  netscape just hangs I have to kill it (the archives are very big).
  
   When I try to read much smaller archives (e.g. debian-changes,
  September) it's all right.
  
  I had the same behavior using netscape4.x, but netscape3.x
  reads the archives well. 
   
  Does anybody have any idea  what causes such behavior of netscape ?
   May be I have configured netscape wrong. 
   My be I some hint what change in preferences?
 
 I think this is a cache related bug, as turning off the (disk) cache in
 Netscape will prevent this from happening (at least for me).
 
 Another workaround is to follow links from the main article index using
 the middle mouse button.  This will tell Netscape to open the link in a
 new window so that you never have to reload the index from cache in the
 first window.

Unfortunely that way works only first time, I mean when I exit
netscape and then after some time I start it again I cannot
read the debian-user archives (e.g. September) even one time:
netscape hangs again and I have to kill it.

 YMMV.
 -- 
   ( - - )   | http://home1.inet.tele.dk/renehl/

Jan


bash: fdesign: command not found

1998-10-08 Thread Jan Krupa

I have installed xforms   (libforms0.88, the debian2.0 stable package) and
I cannot find fdesign.

When I type fdesign
 bash: fdesign: command not found

fd (TAB) does not show fdesign.

Is fdesign separate package ?
I cannot find it in ftp site /debian/dists/stable/..

Thanks in advance for help

Jan


pgplot examples for c ?

1998-10-06 Thread Jan Krupa
I have installed the debian package pgplot*.deb,
but there are available in that package only examples
for fortran (f77). I cannot find such examples for c.
 It is possible to get the needed examples for c without
rebuilding (recompiling) the package from resources ?

Thanks in advance,

Jan


kde problem and wmanager question

1998-10-05 Thread Jan Krupa
Q1.
I have installed kde from the stable distribution (debian2.0),
I mean I just did:

dpkg -i kdesupport*.deb
dpkg -i kdelibs*.deb and so on (kdebase, utils, graphics.)

Now I start usually (startx) with fvwm95 and then from the debian menu
I choose WindowManagers/kde where the entry in menudefs.hook is:
+ kde Restart /usr/X11R6/bin/kde

Of course I can start the kde script in startx or
change the order in the file /etc/window-managers

What happens ? After some time when I use kde (it works after
loading) I just
cannot start any program. I mean when choose something
from the the kde or debian menu.

What is going on ?
Should I put some environmental variable (e.g. in profile
something like KDEDIR= ?) ?

Q2.
I would like type startx and have possibility interactively to
choose before X Window is loaded which window manager I would like
to start. It is possible? How ?

Thanks in advance,

Jan


configuration of teTeX (v. 9)

1998-10-05 Thread Jan Krupa

I have noticed that I do not have any PATH and MANPATH in profile
for teTeX (for teTeX4.* I had to put PATH an MANPATH).

It seemed to work until I tried to use dvips.
For some quite small document (4 very simple pages without graphics)
'dvips file_name.dvi -o file_name.ps' starts metafont (or kpse*) 
to make fonts but with strange effects: my screen becomes white
and I cannot control my mouse. I decided to kill X Window (ctr alt backspace).
 However xdvi file_name.dvi works fine.

Could someone please explain what's going on ?
Should I configure teTeX somehow ?

Jan 


looking for c library for simple graphics (in .deb)

1998-10-02 Thread Jan Krupa

Could someone please recommend some graphic library for c (or c++ but
more important for c) ?
Something which can give postscript output or other format which
can be easily printed under debian2.0  and I could use this way 
(similar to this):

#include...
#includegraphics.h

here goes some code for computing 
and graphics.


Thanks in advance

Jan




how to insert EOF from keyboard ?

1998-10-01 Thread Jan Krupa

Could someone please tell how can I insert under
Linux (debian2.0) EOF (end of file) sign (in C lang.) from keyboard?
I mean what sequence of keys ?

Thanks

Jan


Installation from Win95-Fat32 HD partition?

1998-09-16 Thread Jan Krupa

It is possible to install debian2.0 from Win95 (Fat32) HD partition?
If so, could someone explain how to do it?
I have not found information in The 

Can I after having installed the base system from 5 floppies
just on the other console 'mount -t vfat /dev/hda1 /win95' ?

Which module  have I to install from the base system to 
be able to mount Win95-Fat32 partition ?

Thanks in advance

Jan Krupa 


Emacs20-mule and problem using latin2 under X Window

1998-09-16 Thread Jan Krupa

I have installed debian2.0. I would like to use emacs20.2-mule under
X Window and polish (latin-2) signs (e.g. ogonek) typing them
using right-alt+sign but I have the following problem
(on the console without X Window I have polish signs in emacs, pine,...;
under X Window so far only I can see and type polish signs in netscape):

I choose from  menu 'mule':

Set Language Environment, European, latin-2

Then:

Select input method: latin-2-alt-postfix

and I got the following message:
Quail package latin-2-alt-postfix can't be activated
  because library quail/latin-alt is not in `load-path'.

quail.el (as well ogonek.el) is in /usr/share/emacs/lisp/international/

but I cannot find: latin-2-alt-postfix and latin-alt

Could someone please explain how to get the
latin-2-alt-postfix input method?


Jan Krupa


scilab demos crash whole scilab

1998-09-16 Thread Jan Krupa

I have installed scilab-2.4 (binaries form ftp.inria.fr)
and when I start it, it works but when I choose from menu 
demos scilab crashes with the following messages: 

[1] 410
$ Scilab:  warning, error event receieved:
X Error of failed request:  BadPixmap (invalid Pixmap parameter)
  Major opcode of failed request:  54 (X_FreePixmap)
  Resource id in failed request:  0x0
  Serial number of failed request:  1920
  Current serial number in output stream:  1985

How can I get scilab demos  runnig properly under debian2.0 ?


Jan Krupa


Re: scilab demos crash whole scilab

1998-09-16 Thread Jan Krupa
On Wed, Sep 16, 1998 at 03:46:51PM +0200, Jan Krupa wrote:
 $ Scilab:  warning, error event receieved:
 X Error of failed request:  BadPixmap (invalid Pixmap parameter)
   Major opcode of failed request:  54 (X_FreePixmap)
   Resource id in failed request:  0x0
   Serial number of failed request:  1920
   Current serial number in output stream:  1985

 This is just a wild guess, but are you using an Athena variant library (e.g.
 Xaw3D, Xaw95 or NeXtAw instead of plain Xaw)? Some binaries fail with a
 message very similar to the one you report then. Uncomment the Athena

Thanks. I used Xaw95. Now I switched to Xaw3d and scilab works well.


 HTH,
 Ray

Greetings

Jan 


are there (X)emacs20-no-mule debian packages

1998-09-16 Thread Jan Krupa

I have problem using emacs20-mule and Xemacs20-mule with
using polish (latin-2) signs.

Are there just emacs20 and Xemacs20 debian packages 
(I would prefer them) or I just have to install them manually?

Oops. I thing that there is xmeacs20-no-mule debian package
but I prefer to use emacs20-no-mule.



Jan  


Re: Debian and two more OS's

1998-09-16 Thread Jan Krupa

Adrian wrote:

 The partition table has been altered!
 
 Calling ioctl() to re-read partition table.
 Syncing disks.
 Re-read table failed with error 16: Device or resource busy.
 Reboot your system to ensure the partition table is updated.

 Did you reboot before trying mke2fs /dev/hda3??

After rebooting 'mke2fs' created /dev/hda3 linux native partition.

Thanks

Jan


Strange behavior of magicfilter configurator

1998-09-16 Thread Jan Krupa

I tried installed magicfilter under debian2.0
and could not configure it. Namely when I choose
the option to create a configure file (printcap) it asked me for
one printer name,...,filter and then for second, third and so on.
I could not to stop the configuration script  and to
create printcap. So I created manually but I think there
should be a way to force the script to create printcap.

It is a common behavior of magicfilter configuration script
or only on my machine ?

Is there a tools under debian2.0 to automatically generate
printcap?


Jan 


Debian and two more OS's

1998-09-14 Thread Jan Krupa

I created on 4G hard disk, using msdos fdisk 1600Mg primary partition 
and installed there Win95 (Fat32). The rest of the HD was left
untouched by msdos fdisk.

Then during the debian2.0 installation I created primary partition
hda2 as a native linux (1400Mg) and hda3 (100MG) as a swap.
On rest part of HD I would like to install some other OS
e.g. some other distribution of Linux (rethat) or NT.

I would like also redhat to use the  hda3 partition as a swap
(which name I changed to hda4).

Now I would like to create primary partition hda3 as a native linux,
which I'll mount under already installed debian2.0 or
on which I'll install redhat. 
 
Using fdisk (linux) I got the following partition table:

   Device Boot   BeginStart  End   Blocks   Id  System
/dev/hda111  204  1638598+   b  Unknown
/dev/hda2  205  205  382  1429785   83  Linux native
/dev/hda3  383  383  510  1028160   83  Linux native
/dev/hda4  511  511  523   104422+  82  Linux swap

Unfortunately after the command 'w'

Command (m for help): w

I got the message:

The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.
Re-read table failed with error 16: Device or resource busy.
Reboot your system to ensure the partition table is updated.

WARNING: If you have created or modified any DOS 6.x
partitions, please see the fdisk manual page for additional
information.

The command:
mkfs.ext2 /dev/hda3

gives information

mke2fs 1.10, 24-Apr-97 for EXT2 FS 0.5b, 95/08/09
/dev/hda3: Not enough space to build proposed filesystem while setting up 
superblock


I am sorry for such long description.
Could someone please explain to me how I can create the
partition hda3 on which I would like to install redhat (or NT)
or just mount it under debian.

For now when I boot.bat under Win95 (msdos mode) from redhat CD-ROM,
redhat refuses to create and initiate hda3 as root file  system,
and only suggests hda2 to mount as a root file system.


If I have to reinstall all systems could someone tell how
make a partitioning of the the HD to be able to install
the three OS's Win95, debian, redhat (or NT).


Thanks in advance

Jan Krupa


How to install via nfs, ftp?

1998-09-05 Thread Jan Krupa
I have on one partition (1G) Win95, Fat32. I would like to install
Debian on the rest part of hard disk (2G) but the problem is that
I do not have CD-ROM with the distribution and AFIK there is no way
to install debian from Win95 FAT32 partition so I need to install
debian via internet (ftp, fns). How it is possible?

I used rawrite2 to prepare two 1440 floppies: resc1440.bin
and drv1440.bin (from Linux/debian/dists/stable/main/disks-i386/current/).
I booted compter from floppy resc1440.bin and then installed modules and
drivers from floppy drv1440.bin then configured modules and drivers
(installed support for nfs, eth0, network card) then configured 
network( host name, domain name computer's IP address,...).
After that I chose to install *the base system* via nfs but did not know
how to type the  name of nfs server. e.g. I tried
to type 'debian.org/dist but it did not work.

Could someone please explain to me how to install debian
via nfs or ftp ? I mean which floppies should I prepare and
how to type the name of the nfs server ?

Of course I have other possibility to install the base system
from 5 floppies but what then ? The file basecont.txt shows that
the 5 floppies do not contain e.g. ftp.

For now the only way I see to install debian on my computer is
to buy distribution on CD-ROM but it would be faster(earlier) to install
via ftp.

Thanks in advance

Jan Krupa 


How to install via nfs, ftp?

1998-09-05 Thread Jan Krupa
I have on one partition (1G) Win95, Fat32. I would like to install
Debian on the rest part of hard disk (2G) but the problem is that
I do not have CD-ROM with the distribution and AFIK there is no way
to install debian from Win95 FAT32 partition so I need to install
debian via internet (ftp, fns). How it is possible?

I used rawrite2 to prepare two 1440 floppies: resc1440.bin
and drv1440.bin (from Linux/debian/dists/stable/main/disks-i386/current/).
I booted compter from floppy resc1440.bin and then installed modules and
drivers from floppy drv1440.bin then configured modules and drivers
(installed support for nfs, eth0, network card) then configured 
network( host name, domain name computer's IP address,...).
After that I chose to install *the base system* via nfs but did not know
how to type the  name of nfs server. e.g. I tried
to type 'debian.org/dist but it did not work.

Could someone please explain to me how to install debian
via nfs or ftp ? I mean which floppies should I prepare and
how to type the name of the nfs server ?

Of course I have other possibility to install the base system
from 5 floppies but what then ? The file basecont.txt shows that
the 5 floppies do not contain e.g. ftp.

For now the only way I see to install debian on my computer is
to buy distribution on CD-ROM but it would be faster(earlier) to install
via ftp.

Thanks in advance

Jan Krupa 


emacs and Read Net News problem

1998-06-16 Thread Jan Krupa

I have installed debian 1.3.1 and I would like to use 
emacs to read news groups but I have problem to configure 
(nntp, gnus, sendmail, ?).

I have put the following in my .emacs file:
setenv NNTPSERVER=news.icm.edu.pl
(setq gnus-select-method '(nntp news.icm.edu.pl))

and also in file
/etc/nntpserver
news.icm.edu.pl

and in file
/etc/news/server
news.icm.edu.pl

but it does not work (It works under my old Linux distribution Slackware 3.2). 

When I choose from the emacs menu Tools/Read_Net_News

I got the following message:

Gnus: *Group* {nntp:mel222.sggw.waw.pl} 

but it should be (according to my configuration):
Gnus: *Group* {nntp:news.icm.edu.pl}
My nntp server is NOT mel222.sggw.waw.pl, is my hostname
but not nntp server.  

Could someone please explain what might be going on ?
How to get nntp server working?

Thanks in advance,

Jan Krupa








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


I cannot install nntp, cnews under debian1.3.1 :(

1998-06-12 Thread Jan Krupa

  I have installed debian 1.3.1 (stable) on my Pentium machine.
I cannot install 'nntp' server.

I have tried:
#dpkg -i nntp_1.5.12.1-1.deb
Selecting previously deselected package nntp.
(Reading database ... 81776 files and directories currently installed.)
Unpacking nntp (from nntp_1.5.12.1-1.deb) ...
dpkg: dependency problems prevent configuration of nntp:
 nntp depends on cnews; however:
  Package cnews is not configured yet.
dpkg: error processing nntp (--install):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 nntp

So I have tried to install cnews but it failed:

# dpkg -i cnews_cr.g7-4.deb
(Reading database ... 81795 files and directories currently installed.)
Preparing to replace  cnews cr.g7-4 (using cnews_cr.g7-4.deb) ...
removed crontab.
Unpacking replacement cnews ...
/var/lib/dpkg/info/cnews.postrm: newaliases: command not found
newaliases command not available
Setting up cnews (cr.g7-4) ...
Using existing cnews configuration.
dpkg: error processing cnews (--install):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 cnews

I've Tried smail (or sendmail) to install first:

dpkg -i smail_3.2-3.deb
(Reading database ... 78820 files and directories currently installed.)
Preparing to replace smail 3.2-3 (using smail_3.2-3.deb) ...
perl: warning: Setting locale failed for the categories:
LC_CTYPE LC_COLLATE 
perl: warning: Please check that your locale settings:
LC_ALL = (unset),

   LC_CTYPE = (unset),
LC_COLLATE = (unset),
LANG = us
are supported and installed on your system.
perl: warning: Falling back to the C locale.
Unpacking replacement smail ...
Setting up smail (3.2-3) ...
perl: warning: Setting locale failed for the categories:
LC_CTYPE LC_COLLATE 
perl: warning: Please check that your locale settings:
LC_ALL = (unset),
LC_CTYPE = (unset),
LC_COLLATE = (unset),
LANG = us
are supported and installed on your system.
perl: warning: Falling back to the C locale.

Similarly dpkg -i sendmail...deb 

Does anybody have some idea what's wrong with my debian (nntp, cnews) ?

Thanks in advance,

Jan Krupa


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


gcc: libs/scicos.a: No such file or directory

1998-06-12 Thread Jan Krupa

I would like to compile scilab-2.3.1 under Linux machine,
Debian-1.3.1, kernel 2.0.34 (32).

I unziped and and untared the file scilab2.3.1-src.tar.gz
(tar xzvf scilab*.tzr.gz).

Then typed './configure -with-gnu' and next 'make all'.

The compiling process failed with the following message:

--
sc.c -o x_misc.o
cc -O -Dlinux -D_POSIX_SOURCE -fwritable-strings -I/usr/X11R6/include-c 
x_screen.c -o x_screen.o
cc -O -Dlinux -D_POSIX_SOURCE -fwritable-strings -I/usr/X11R6/include-c 
x_scrollbar.c -o x_scrollbar.o
cc -O -Dlinux -D_POSIX_SOURCE -fwritable-strings -I/usr/X11R6/include-c 
x_tabs.c -o x_tabs.o
cc -O -Dlinux -D_POSIX_SOURCE -fwritable-strings -I/usr/X11R6/include-c 
x_util.c -o x_util.o
cc -O -Dlinux -D_POSIX_SOURCE -fwritable-strings -I/usr/X11R6/include-c 
x_VTPrsTbl.c -o x_VTPrsTbl.o
cc -O -Dlinux -D_POSIX_SOURCE -fwritable-strings -I/usr/X11R6/include-c 
x_zzledt.c -o x_zzledt.o
cc -O -Dlinux -D_POSIX_SOURCE -fwritable-strings -I/usr/X11R6/include-c 
h_help.c -o h_help.o
Creation of ../../libs/xsci.a
rm -f ../../X11_defaults/Xscilab
cp Xscilab.ad ../../X11_defaults/Xscilab
make[2]: Leaving directory `/usr/local/scilab-2.3/routines/xsci'
make[1]: Leaving directory `/usr/local/scilab-2.3/routines'
linking
gcc: libs/scicos.a: No such file or directory
make: *** [bin/scilex] Error 1


Could someone give me please  some hint how to manage to compile scilab ?
Does anybody successfully compiled scilab-.2.3-1 under debian1.3.1 ?

I have also tried to use binary distr. of scilab but after
when I untared, unziped and type 'make' I tried to invoke
'scilab'. I've got the following message:
/usr/local/scilab-2.3/bin/scilex: can't load library 'libf2c.so.0'

but I cannot find anywhere (in the debian1.3.1 distribution) the libf2c.so.0.
I have only found  'f2c_960717-0.deb' but it cannot be installed
without libf2c.so. 




Thanks in advance,

Jan Krupa

P.S. I have compiled scilab-2.3 under slackware3.2, kernel 2.0.0 and
for my friend under redhat4.2, kernel 2.0.28 without any problem, but
now I have upgrade my slackware3.2 to debian1.3.1.






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


can't load library 'libf2c.so.0'

1998-06-12 Thread Jan Krupa

When I invoke 'scilab' I got the warning:
 can't load library 'libf2c.so.0' , but the library libf2c.so.2 exists
but does not exist libf2c.so.0.

When I tried to install f2c:
  dpkg -i f2c_960717-0.deb
(Reading database ... 78820 files and directories currently installed.)
Preparing to replace f2c 960717-0 (using f2c_960717-0.deb) ...
Unpacking replacement f2c ...
Setting up f2c (960717-0) ...
/sbin/ldconfig: warning: can't open /usr/lib/libf2c.so.2 (No such file or 
directory), skipping
/sbin/ldconfig: warning: can't open /usr/lib/libf2c_i2.so.2 (No such file or 
directory), skipping
-

but the libreries libf2c.so.2, libf2c_i2.so.2 exist.

Could someone please explain to me what is going on?


Greetings

Jan Krupa





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