Re: lpr problem [Ooops, forgot infos]

1999-12-06 Thread aphro
On Mon, 6 Dec 1999, Jean-Yves BARBIER wrote: jybarb >I can't get my TV card to work well too (it was 4 weeks ago). jybarb >I'll try to exchange it next wednesday to see what will happend. What kind of TV card? I have been using Bt848 based TV cards for ages under linux, no trouble, if its this

Re: lpr problem [Ooops, forgot infos]

1999-12-06 Thread aphro
On Mon, 6 Dec 1999, Jean-Yves BARBIER wrote: jybarb >Hi Nate, Sure I compiled it from the source, and enabled // port. Ok, just want to re verify that you enabled parallel *printer* support, they are different options in kernel config, the one im talking about is in the character devices menu. W

Re: How to apply stylesheets to docbook?

1999-12-06 Thread Jor-el
On Sun, 5 Dec 1999, Aaron Van Couwenberghe wrote: > Hi all - > > I have been trying to figure out how to make something useful out of > docbook documents. I'd like to render to pdf, latex, groff, and html, but > available documentation is archaic and conflicting. > > Where do I start? I'd prev

Using Computer Modern PS fonts with LaTeX?

1999-12-06 Thread Ron Hale-Evans
Apologies if you have received this message twice. I've discovered that the Slink pdflatex doesn't do everything I'd like it to do, so I'm trying to force LaTeX proper to incorporate Computer Modern Type 1 fonts into its PostScript files for conversion to PDF later. I have all the Blue Sky fonts,

Re: Why

1999-12-06 Thread John Hasler
Ethan Benson writes: > MS simply has a `more generic' "server" then we do. But through Microsoft's efforts. Consider the fate of a video card maker whose card does not work with Microsofts "generic" driver. -- John Hasler [EMAIL PROTECTED] Dancing Horse Hill Elmwood, Wisconsin

RE: Trying to install X on top of Linux 2.1

1999-12-06 Thread John Gay
XF86Setup tells me "Congradulations, you now have a working server" and returns me to the prompt. But when I type: startx The following errors are printed to the screen: == (--) SVGA: Revision 0 (--) SVGA: chipset: tvga8900cl (--) SVGA: video

Re: "Get a Potato CD"

1999-12-06 Thread Ethan Benson
On 5/12/99 Rob Mahurin wrote: Can't help you with finding one, but there's a caveat: I think the reason that the potato release date got pushed back was the installer's broken (or nonexistent or something. I'm wrong a lot). Get a bare-bones (ie, bootable and aptable) slink installation and jus

Re: Corel to Slink upgrade

1999-12-06 Thread Randy Edwards
> actually sounds kinda scary. Flashback to when AOL entered the Internet?! :-) I dunno, I'm working up a default reply now that points people to Corel's support newsgroups...or should we instead work to bring those folks away from the dark side? :-) -- Regards,| Debian G

Re: linux.debian.user gatewayed no more?

1999-12-06 Thread Brad
According to a message in the list archives, it's just broken. http://www.debian.org/Lists-Archives/debian-user-9911/msg02286.html -- finger for GPG public key. 29 Nov 1999 - new email address added to gpg key pgpvieGT1X3Zv.pgp Description: PGP signature

Re: An open letter to the debian community

1999-12-06 Thread J C Lawrence
On Sun, 5 Dec 1999 16:53:41 -0800 (PST) George Bonser <[EMAIL PROTECTED]> wrote: > On Sun, 5 Dec 1999, J C Lawrence wrote: >> There are a great many people for whom the only particular value >> Debian brings to the table is apt-get and friends. They have no >> interest in religion, no interest

Re: "Get a Potato CD"

1999-12-06 Thread Rob Mahurin
On Sun, Dec 05, 1999 at 09:48:25PM -0500, John Dalbec wrote: > Where does one do this?? > Or does it require a friend with a fast connection and CD burner? > John Can't help you with finding one, but there's a caveat: I think the reason that the potato release date got pushed back was the install

Re: Why

1999-12-06 Thread Ethan Benson
On 5/12/99 Bart Szyszka wrote: This is exactly what I was thinking. The windows installer uses a generic 16-color, 640x480 mode ("Standard SVGA" or just "Standard VGA"?) and I've never heard of anyone having graphic-card related problems with it. Why can't someone do something similar with Linu

Re: Trying to install X on top of Linux 2.1

1999-12-06 Thread Phil Brutsche
A long time ago, in a galaxy far, far way, someone said... [...] > I've tried all combinations of color depth and display types (600 X > 800, 640 X 480 etc.) > I don't know what the verticl and Horizontal sync rates are for an > EverView monitor. That's what the problem is. What settings did yo

Trying to install X on top of Linux 2.1

1999-12-06 Thread csager
XF86Setup tells me "Congradulations, you now have a working server" and returns me to the prompt. But when I type: startx The following errors are printed to the screen: == (--) SVGA: Revision 0 (--) SVGA: chipset: tvga8900cl (--) SVGA: videoram:

Re: Slink, Redhat, Windows boot from lilo?

1999-12-06 Thread Brad
On Sun, Dec 05, 1999 at 07:36:17PM -0600, ktb wrote: > Brad wrote: > > > > On Sun, Dec 05, 1999 at 06:59:51PM -0600, ktb wrote: > > > Syntax error near line 50 in file /etc/lilo.conf > > > > Could you send me your lilo.conf that's giving this error? > [[[SNIP]]] > > image=/mnt/rh/boot/vmlinuz >

Re: New to gcc: missing sin/cos

1999-12-06 Thread Eric G . Miller
On Sun, Dec 05, 1999 at 09:09:14PM -0600, Brian G. Neal wrote: > I am trying to port some C code from Windows (i.e. no > makefile) and I am using gcc for the first time. > One of the files has some sin() and cos() calls > in it. And yes it includes math.h. If I do a: > > % gcc -o main main.c file1

Re: Using Computer Modern PS fonts with LaTeX?

1999-12-06 Thread Eric G . Miller
If you don't need them to be CMR fonts (which I don't think Acrobat can display well), try '\usepackage{times}'. That'll give you Postscript 1 fonts. Since AcroReader only understands 11 fonts, *only* Times Roman, Helvetica, Courier [New?], and Zapf Dingbats will render well on the display (though

Re: New to gcc: missing sin/cos

1999-12-06 Thread William T Wilson
On Sun, 5 Dec 1999, Brian G. Neal wrote: > I assume I need to include some library that has sin/cos. > I found the -l switch to pass libraries to the linker but > I have no idea what library to use. Am I missing something You need to use -lm (link libm, the math library).

New to gcc: missing sin/cos

1999-12-06 Thread Brian G. Neal
I am trying to port some C code from Windows (i.e. no makefile) and I am using gcc for the first time. One of the files has some sin() and cos() calls in it. And yes it includes math.h. If I do a: % gcc -o main main.c file1.c file2.c I get some error messages about not finding sin and cos. I ass

Re: pppd, named and netscape

1999-12-06 Thread Rob Mahurin
On Sun, Dec 05, 1999 at 11:12:05AM -0700, Douglas Eck wrote: > First, an easy question. Is there a simple way to get -idle to > override -persistent. I want to redial until I get connected, but > if I forget to log off, I want the modem to hang up after 15 minutes. > This seems like a reasonble thi

How to apply stylesheets to docbook?

1999-12-06 Thread Aaron Van Couwenberghe
Hi all - I have been trying to figure out how to make something useful out of docbook documents. I'd like to render to pdf, latex, groff, and html, but available documentation is archaic and conflicting. Where do I start? I'd previously been trying with jade, but I caught wind that sgml-tools g

"Get a Potato CD"

1999-12-06 Thread John Dalbec
Where does one do this?? Or does it require a friend with a fast connection and CD burner? John

Re: lpr problem [Ooops, forgot infos]

1999-12-06 Thread Phil Brutsche
A long time ago, in a galaxy far, far way, someone said... > On Sun, Dec 05, 1999 at 07:33:29PM -0600, Phil Brutsche wrote: > > > When I do 'cat ZZZ.txt >/dev/lp0' it says 'operation not supported' > > > > In that case, are you sure that /dev/lp0 is correct? Have you tried > > /dev/lp1 or /dev/l

streaming audio? (Re: wav <-> conversion utility)

1999-12-06 Thread byoung
thanx for the pointers. i tried to get the LAME, but wasn't able to. i'll try that again. btw, to provide streaming audio (i.e., realaudio, unless there is something else that is easily accessbible by general public), is there an alternative to the tools sold by realaudio? i suspect the answer

Re: lpr problem [Ooops, forgot infos]

1999-12-06 Thread Jean-Yves BARBIER
On Sun, Dec 05, 1999 at 07:33:29PM -0600, Phil Brutsche wrote: > A long time ago, in a galaxy far, far way, someone said... > > > > I also suggest you cat a file directly to the port and see what > > > happens. at least then you know you have communication and later you can > > > work on the lpd/m

Re: linux.debian.user gatewayed no more?

1999-12-06 Thread Colin Watson
[EMAIL PROTECTED] (Carel Fellinger) wrote: >I could switch to the digest of the mailinglist but I prefer news. >I could bridge the mailinglist locally, but I heard that you object. Do they? I have mail2news set up locally; I wouldn't read debian-* if I hadn't. I've been intending to learn to use

Re: lpr problem [Ooops, forgot infos]

1999-12-06 Thread Phil Brutsche
A long time ago, in a galaxy far, far way, someone said... > > I also suggest you cat a file directly to the port and see what > > happens. at least then you know you have communication and later you can > > work on the lpd/magicfilter problems. > > When I do 'cat ZZZ.txt >/dev/lp0' it says 'oper

Re: lpr problem [Ooops, forgot infos]

1999-12-06 Thread Jean-Yves BARBIER
On Sun, Dec 05, 1999 at 04:41:26PM -0800, aphro wrote: > I dont know what exactly is installed when(if) your using a debian binary > kernel but if your compiling from source make sure you enable the Parellel > printer support option in character devices when your making the kernel. Hi Nate, Sure I

Using Computer Modern PS fonts with LaTeX?

1999-12-06 Thread Ron Hale-Evans
I've discovered that the Slink pdflatex doesn't do everything I'd like it to do, so I'm trying to force LaTeX proper to incorporate Computer Modern Type 1 fonts into its PostScript files for conversion to PDF later. I have all the Blue Sky fonts, and pdflatex uses them, but LaTeX still uses the ug

Re: Slink, Redhat, Windows boot from lilo?

1999-12-06 Thread Brad
On Sun, Dec 05, 1999 at 06:25:35PM -0600, ktb wrote: > > Ok I already changed the mbr back to windows default and reran lilo from > Slink and now I boot directly into Slink on startup. I'm not entirely > sure what your getting at here but I've reversed this and did, > "mkdir /mnt/redhat; mount

Re: Slink, Redhat, Windows boot from lilo?

1999-12-06 Thread ktb
ktb wrote: > > Brad wrote: > > > > On Sun, Dec 05, 1999 at 04:57:12PM -0600, ktb wrote: > > > > > > Brad wrote: > > > > > > > > On Sun, Dec 05, 1999 at 11:46:46AM -0600, ktb wrote: > > [[[SNIP]]] > > > > > > > > > > As it is I can boot to all three os's but the kernel I have compiled > > > > > fo

Re: An open letter to the debian community

1999-12-06 Thread Brad
On Sun, Dec 05, 1999 at 04:11:03PM -0500, David Blackman wrote: > Debian is a wonderful development model. Anyone can > contribute to it. Remember this statement ;) > And everything must be Free Software, Free Software in the sense that > it must be both open source, and modifiable. Open so

Re: kpathsea/metafont/docbook and fonts

1999-12-06 Thread Colin Marquardt
* Aaron Van Couwenberghe <[EMAIL PROTECTED]> writes: > I was recently trying to render a pdf from docbook, but the farthest I got > was TeX. Upon calling jadetex on jade's output, metafont dumped a bunch of > complaints about missing files. Well, I cannot answer your question exactly, but to ge

Re: MySql and C

1999-12-06 Thread Shao Zhang
Hi, Raphaƫl Barbate [EMAIL PROTECTED] wrote: > That's why I ask you if you could send me an > example (.c), which connects to mysql and performs > some queries. Here are some examples: // Extablish a tcp connection with the SQL database int connectSQL() { MYS

Re: lpr problem [Ooops, forgot infos]

1999-12-06 Thread aphro
I dont know what exactly is installed when(if) your using a debian binary kernel but if your compiling from source make sure you enable the Parellel printer support option in character devices when your making the kernel. I also suggest you cat a file directly to the port and see what happens. at

Re: Accelerated X

1999-12-06 Thread aphro
try apt-get install termcap-compat nate On Sun, 5 Dec 1999, Rick Knebel wrote: rknebe >Hi, rknebe > rknebe >I went to the Xig.com web site and they say to use Accelaerated X with rknebe >debian i have to load the termcomp package. rknebe >I have looked all through the cd's for this . rknebe >

Re: Why

1999-12-06 Thread aphro
Sounds right.. most all cards are at least VESA1.0 compliant right? And I'm sure it isnt hard to achieve 640x480x256 colors with a VESA 1 driver. Something along the lines of SVGALIB maybe but svgalib isnt supported by much. The problem I think is companies trying to use X for the install just b

Re: lpr

1999-12-06 Thread Daniel Mashao
On Sun, 5 Dec 1999, Eric Hagglund wrote: > I have not been able to get my printer to print. I > What printer package are you using? Are you using something like apsfilter or magicfilter? The problem you are describing seems to have somthing to do with dos vs linuix termination. I remember reading

Re: Why

1999-12-06 Thread aphro
On Sun, 5 Dec 1999, Colin Watson wrote: cjw44 >The GPL is not a complicated document. Even I can understand it. And, as cjw44 >far as I can tell, it *is* legally valid. If you have a suspicion of how cjw44 >it could be legally broken - particularly in the current climate - I'd cjw44 >be interested

Re: An open letter to the debian community

1999-12-06 Thread J C Lawrence
On Mon, 06 Dec 1999 08:51:31 +1100 Frank Copeland <[EMAIL PROTECTED]> wrote: > David Blackman wrote: >> Lately I've been thinking about forking Debian, into DWA, meaning >> Debian Without Attitude. We'll drop the attitude, and the >> pretenses, about what Free means, and get licensing deals with

Re: An open letter to the debian community

1999-12-06 Thread aphro
On Sun, 5 Dec 1999, David Blackman wrote: david >Slackware is just too much of a hassle. Plus, they were drawn to apt-get. i was drawn to debian about a year and a half ago, never touched apt-get till about 2 weeks ago! doh heheh david > No it's not. i like the idea of that, with debian's stand

Re: Slink, Redhat, Windows boot from lilo?

1999-12-06 Thread ktb
Brad wrote: > > On Sun, Dec 05, 1999 at 04:57:12PM -0600, ktb wrote: > > > > Brad wrote: > > > > > > On Sun, Dec 05, 1999 at 11:46:46AM -0600, ktb wrote: > [[[SNIP]]] > > > > > > > > As it is I can boot to all three os's but the kernel I have compiled for > > > > Slink is 2.0.36. When I boot from

Re: Why

1999-12-06 Thread John Hasler
Colin writes: > It seems to me that there are two plausible routes to breaking the GPL. > The first is to demonstrate that the licence is not binding. No > commercial software organization is going to go down that route; it would > be suicide. I assume that by "not binding" you mean "legally equiv

Re: system logs management

1999-12-06 Thread J C Lawrence
On Sun, 5 Dec 99 20:33:06 GMT John <[EMAIL PROTECTED]> wrote: > What steps do users take to keep logs down to reasonable sizes? I > have seen nothing on this aspect of management and so have been > using 'rm' and then creating a new file. Look into the logrotate package. > If it is possible,

lpr

1999-12-06 Thread Eric Hagglund
I have not been able to get my printer to print. I spent an hour on Saturday with a local Linux Users Group, and none of them had any familiarity with Debian. They were able to get the program to run, but the best they could do was to get the word "hi" to print once. Any other output was returned a

<    1   2