Re: Incomprehensible CGI error
Dave Neuer <[EMAIL PROTECTED]> wrote: : I am trying to get a CGI script written in Perl running, and I keep : getting a wierd error that I don't understand: : : "access to /usr/lib/cgi-bin/testscript.pl failed for *machine name*, : reason: Premature end of script headers" : : Anyone know what this means? Other Perl scripts with similar : construction seem to be working OK, can't seem to pin this one down. Sure, you are not sending the Content-type header before sending your data. Try putting this before you send any data: print("Content-type: text/html\n\n"); This should solve your problem. E.- -- Eloy A. Paris Information Technology Department Rockwell Automation de Venezuela Telephone: +58-2-9432311 Fax: +58-2-9431645 -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Incomprehensible CGI error
Dave Neuer wrote: > I am trying to get a CGI script written in Perl running, and I keep > getting a wierd error that I don't understand: > > "access to /usr/lib/cgi-bin/testscript.pl failed for *machine name*, > reason: Premature end of script headers" > > Anyone know what this means? Other Perl scripts with similar > construction seem to be working OK, can't seem to pin this one down. This is typically a CGI script that is dying before it gets around to printing out the Content-type: text/html\n\n header. Try running the script from your shell and see if it gets that far. -- see shy jo -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
compiling debian packages (was Re: number of problems...)
On Mon, 15 Sep 1997, David wrote: > Is there a window maker package for the stable release? for most packages in unstable, you can easily compile them for stable. i don't actually know of any exceptions, but i expect that there would be a few programs which absolutely depend on libc6 development tools. so, to compile an unstable package for stable you do: 1. make sure you have all the development tools installed - compiler and dev libraries, dpkg-dev, debmake, and others. remember, you need to install the -dev packages for any libraries which the package is dependant upon. e.g. libc5-dev for all packages, xlib6-dev for X programs (many X progs also require xpm-dev), etc. in your case, you'd want to set up one of your machines as a complete development system - install every development package you're ever likely to need and do your compiling on that. 2. mkdir /usr/src/foo cd /usr/src/foo 3. download the source files. for the hypothetical package foo version X.X, that would be: foo_X.X-1.diff.gz foo_X.X-1.dsc foo_X.X.orig.tar.gz 4. extract the debianised source code with: dpkg-source -x foo_X.X-1.dsc 5. cd foo-X.X 6. edit the source and Makefile(s) if required. 7. compile the program and build a package by typing: build 8. if all goes well, you can install the package with dpkg as normal. cd .. dpkg -i foo_X.X-1_i386.deb be warned: the above is mostly accurate but quite simplified. for simple packages it will be as straightforward as this. more complex packages will be harder...start with something simple for practice. > Otherwise I imaging this is annother of those I'm using the unstable > stuff and really shouldn't be... yeah. you don't want to run unstable at the momentespecially X stuff. X just got released re-compiled for libc6 recently. wait until it settles down a bit before trying it. in general, however, it is quite safe to follow the HOWTO that was posted here recently on upgrading to libc6/unstablethen you can run select packages from unstable - just don't do a full upgrade to unstable at the moment! craig PS: hunt around for more info on compiling debian packages before trying this. somebody (i forget who at the moment) is maintaining a FAQ/web page which is much better than the notes above. i can't remember the URL right now...search through the debian-user archives, there was some discussion on it within the last few weeks. -- craig sanders networking consultant Available for casual or contract temporary autonomous zone system administration tasks. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Incomprehensible CGI error
I am trying to get a CGI script written in Perl running, and I keep getting a wierd error that I don't understand: "access to /usr/lib/cgi-bin/testscript.pl failed for *machine name*, reason: Premature end of script headers" Anyone know what this means? Other Perl scripts with similar construction seem to be working OK, can't seem to pin this one down. Thanks, Dave -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: re-attaching a terminal to a disconnected process
On Mon, 15 Sep 1997, Frank Sergeant wrote: > Is there a way to tell the process to keep running even if > its terminal is disconnected, and then later re-attach a > terminal to it, perhaps the same terminal from the remote > office or perhaps the system administrator's terminal at > the central office so he could inspect the status of the > process and close it down gracefully? You might take a look at screen. Package: screen Description: A screen manager with VT100/ANSI terminal emulation. screen is a terminal multiplexor that runs several separate "screens" on a single physical character-based terminal. Each virtual terminal emulates a DEC VT100 plus several ANSI X3.64 and ISO 2022 functions. Arbitrary keyboard input translation is also available. Sessions can be detached and resumed later on a different terminal. Greg -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root access via telnet?
-BEGIN PGP SIGNED MESSAGE- On Mon, 15 Sep 1997, Michael Legart wrote: > > Option 1, the usual way to do this: just telnet as an ordinary user, > > and then "su" to root. > > Great! It was just something like that I was looking for ... I just Actually, I recommend "sudo" ... since I started using it I haven't once logged in as root .. it lets you run commands as root on a per-command basis, so I like it because it reduces the risk of accidentally running a destructive command because you have to type "sudo" before everything ... Will [EMAIL PROTECTED] [EMAIL PROTECTED] http://www.cis.udel.edu/~lowe/ * Good Idea: Feeding Stray Cats in the Park. Bad Idea: Feeding Stray Cats in the park ... to a bear. * -BEGIN PGP SIGNATURE- Version: 2.6.3a Charset: noconv iQCVAwUBNB2z9n2vcvpqPzRdAQHWlAP/WZz88OINXY0uSZQj8Iy/BUrvl33QWuYs GY/NplicYMSzDi0rhBRq6uy95/aG+5kMpFTFGohSV0B6Hs+3jcJLihSSYas9uuBW SORKjQx4+I8ZZR3DKEtVDrN394P/c29SPqhpecMHfjkKaOBAlHjQtQfr0/tTFxhb eiCmbTXoeFU= =5QqA -END PGP SIGNATURE- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Debian + PC with multi RS... port -> n x (text dumb t
One device only... the Wyse's have _two_ serial ports, but maybe to just switch from one host to another, don't know whether or not the second port can just be used as auxiliary input... but why not keybord "emulation" as done by most barcode scanners I saw? Do credit card scanners have more complex or interactive tasks...? Yes there is only one device. I also do not know if the second port on a terminal can be used as an aux input. The actually workings of the barcode and credit card scanners are out of my league at the moment, wait until I finish school :) A. Paul -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
re-attaching a terminal to a disconnected process
I'm thinking about a setup like this: our application would run on a Linux box at the central office, one instance (process) for each user. Some users would be connected over the central office's ethernet. Other users would be at remote offices connected perhaps directly over a modem to the central office's Linux box. The remote machines might be running Linux or just a terminal program. What happens to the remote user's process on the central Linux box if the connection between the remote machine and the central office's Linux box is broken? This could happen by a telephone line glitch or someone turning off the remote machine or power failure, etc. I suppose the process would be killed, right? Is there a way to tell the process to keep running even if its terminal is disconnected, and then later re-attach a terminal to it, perhaps the same terminal from the remote office or perhaps the system administrator's terminal at the central office so he could inspect the status of the process and close it down gracefully? -- Frank [EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
decoding base64
Hi I keep getting e-mail through Juno from my boyfriend who is on an aircraft carrier. The last time, I used uuencode. This time it says base64. Can you tell my why they are coming to me encoded. Also, is there an easy way for me to decode this message. The uuencode doesn't work. Maybe it is just me, I am not familiar with this stuff. Thanks for your help My e-mail address is [EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
atd and nfs mounted var partition
Hello. I seem to have a problem with atd and its pid file (/var/run/atd.pid). I have a client that mounts all directories from a server. I can't find any differences except that at's pid file seems to be empty on the client, while for example crond's pid file does contain something. Does anybody have a clue? Let me know if more inforamtion is neccessary. Package: at Version: 3.1.7-3 On the server: descartes:~> ls -la /var/run/{crond,atd}.pid -rw-r--r-- 1 root root4 Sep 13 18:06 /var/run/atd.pid -rw-r--r-- 1 root root4 Sep 13 02:01 /var/run/crond.pid descartes:~> ps -agux|grep atd daemon 789 0.0 0.5 820 320 ? SSep 13 0:00 /usr/sbin/atd martin 10384 0.0 0.4 908 312 p0 S 22:520:00 grep atd descartes:~> at now + 1 min at> warning: commands will be executed using /bin/sh job 8 at 1997-09-15 22:54 descartes# ls -la /var/spool/cron/atjobs/ total 3 drwx-- 2 daemon daemon 1024 Sep 15 22:54 . drwxr-xr-x 5 root root 1024 Nov 2 1996 .. -rw--- 1 daemon daemon 6 Sep 15 22:53 .SEQ On the client: kant:~> ls -la /var/run/{crond,atd}.pid -rw-r--r-- 1 root root0 Sep 15 22:01 /var/run/atd.pid -rw-r--r-- 1 root root4 Sep 15 22:01 /var/run/crond.pid kant:~> ps -agux|grep atd daemon 110 0.0 1.0 828 336 ? S 00:02 0:00 /usr/sbin/atd martin 199 0.0 1.0 908 312 p6 S 00:54 0:00 grep atd kant:~> at now + 1 min Cannot access /var/spool/cron/atjobs: Permission denied kant# ls -la /var/spool/cron/atjobs/ total 3 drwx-- 2 daemon daemon 1024 Sep 15 22:01 . drwxr-xr-x 5 root root 1024 Feb 19 1997 .. -rw--- 1 daemon daemon 6 Sep 15 22:53 .SEQ Right, MartinS -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
ISO-8859-9 Question
Folks, I got returned mail on this posting, so forgive me if it got to the list anyway! Does anyone know of an xemacs mode for iso-8859-9 similar to iso-accents-mode? I need the Latin-5 characters for Turkish. TIA, Glenn -- Glenn R. Williams Senior Consultant Advanced Decisions Inc. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root access via telnet?
Hi! > Option 1, the usual way to do this: just telnet as an ordinary user, > and then "su" to root. Great! It was just something like that I was looking for ... I just needed to do root stuff via telnet. Thanks! Regards, [EMAIL PROTECTED] NEW icq uin -> 2565176 -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root access via telnet?
On Mon, 15 Sep 1997, Michael Legart wrote: > Is it possible to allow root access via telnet? > It is supposed to be used for remote administration. The server is > *not* connected to the Internet and contains no sensitive/important > data, so security would not be a problem. The server is (right now) > only for playing with... :-) For security reasons, I won't test this on my system. Some have already mentioned ssh, /etc/securetty, and su (sudo is also possible). I'll just mention /etc/login.defs. I believe commenting out the CONSOLE line may do the trick (at least that's what the man page says). Not commenting it out allows root logins from all devices. You have to specify individual devices in /etc/securetty (probably not very fun in your situation). HTH, Brandon - Brandon Mitchell E-mail: [EMAIL PROTECTED] Homepage: http://www.geocities.com/SiliconValley/7877/home.html PGP: finger -l [EMAIL PROTECTED] "We all know Linux is great...it does infinite loops in 5 seconds." --Linus Torvalds -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root access via telnet?
> Hi! > > Is it possible to allow root access via telnet? > It is supposed to be used for remote administration. The server is > *not* connected to the Internet and contains no sensitive/important > data, so security would not be a problem. The server is (right now) > only for playing with... :-) > Dear Michael, what's the problem with loging in as a normal user and then executing "su"? Alex Y. > > Regards, > > [EMAIL PROTECTED] > > NEW icq uin -> 2565176 > -- > > > -- > TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to > [EMAIL PROTECTED] . > Trouble? e-mail to [EMAIL PROTECTED] . > > > -- _ _( )_ ( (o___ +---+ | _ 7 |Alexander Yukhimets| \(")| http://pages.nyu.edu/~aqy6633/ | / \ \ +---+ -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root access via telnet?
> "Michael" == Michael Legart <[EMAIL PROTECTED]> writes: Michael> Hi! Is it possible to allow root access via telnet? Edit "/etc/securetty" and add entries for the /dev/ttypN's that telnet uses. To see what I mean, log on with telnet, and run `w' or `who', and look at the TTY names. -- mailto:[EMAIL PROTECTED] (Karl M. Hegbloom) http://www.inetarena.com/~karlheg Portland, OR USA Debian GNU 1.3.1+hamm Linux pre-2.0.31-9+select+QNX AMD K5 PR-133 -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
cdda2wav - cannot that deice sgb
Hi! I have a little problem getting "cdda2wav" to work... when i start the program, i'm just told that it "cannot stat device sgb" ... Howcome? Regards, [EMAIL PROTECTED] NEW icq uin -> 2565176 -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Best Ethernet Card
On Mon, Sep 15, 1997 at 01:02:55PM -0400, Raymond A. Ingles wrote: > How does one determine from minimal catalog info what cards are > Tulip-based? I've been trying to figure that out for a while... They use the DEC 2104x (10 Mb/s) or 2114x (100 Mb/s) chips. Just look at the card or the specs on the box. DEC, Linksys, Kingston, Cogent, Zynx, SMC, and many others sell cards using these chips. Note that these manufacturers also offer cards using other chips, so be careful. The best thing to do (as always!) is to look at the source code for the driver and read the comments. Don't be afraid of source code! In this case, there are two drivers for "Tulip" chips: /usr/src/linux/drivers/net/de4x5.c - lists several compatible model numbers /usr/src/linux/drivers/net/tulip.c Even using the pictures in the catalog (assuming they are showing the correct product), one can often see the "digital" chip on the card. You can also call and ask... It should be part of the specs they have. Good luck, Jeff -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root access via telnet?
Michael Legart wrote: > > Hi! > > Is it possible to allow root access via telnet? > It is supposed to be used for remote administration. The server is > *not* connected to the Internet and contains no sensitive/important > data, so security would not be a problem. The server is (right now) > only for playing with... :-) > > Regards, > > [EMAIL PROTECTED] Only terminals listed in /etc/securetty will allow root login. You'd need to include all the ttypX devices as well (since telnet uses these pseudo-tty's) in order to allow root login over telnet. -- Jens B. Jorgensen [EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: number of problems...
On Mon, Sep 15, 1997 at 10:24:03AM +0200, E.L. Meijer (Eric) wrote: > Justin Honold wrote: > > > > i'm running debian 1.3.1 and i need whatever help i can get on all these > > problems! > > > [ ... ] > > problem 6: mpeg_play > > this isn't necessarily a problem, because i switched to mtv, but i was > > unable to run mpeg_play because i was missing libm.so.4 (with libc > > installed). shouldn't a module dependency notification come up if i > > need something? > > Yes, a dependency should show up. But the real problem is that > mpeg_play is still aout. It is the aout libc that you need which is in > the libc4 pacakge. What is this mtv program you mention? I'm trying > to make some movies myself with the mpeg package, but the documentation > is rather puzzling. I do get results, but don't quite understand why. Me too. Just took the hello.param file from the examples directory and put my pictures (from xmorph, coolt package) in it. Don't know how mpeg works, but it does its job with mpeg_encode hello.param then. Marcus -- "Rhubarb is no Egyptian god." Marcus Brinkmann [EMAIL PROTECTED] http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/ -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Re[4]: Debian + PC with multi RS... port -> n x (text d
On 15 Sep 1997, TENCC01.LEWIS01 wrote: > My experience is with hp terminals using enq-ack protocol. When you > send stuff to one of the "devices" (screen, printer port, mini-tape, > etc.) (does each of those terminals have that lot of ports?) > the keyboard gets locked for the duration of that transfer. > Usually, this is not very long. If the line is fast, you don't have > much time to do anything between transfers. Yes, apart from what's been added on the topic... draw open, change being done, nothing but wait for the receipt to give away. > The program I wrote used > binary transfers so we could dump raster graphics to the terminal > printer. [snip] > If you limit the data to simple ascii print, you have a much better > chance. If the stuff you write is really short (less than 2k) then the > time you can't type is going to be pretty short. (I suppose it would really just be simple ascii print.) > You have to know a *LOT* about the terminal > you are going to use. There are always some tricks that you have to > learn that aren't in the manuals. (These days, there isn't much in > manuals anyway.) > > jim lewis M, about those Wyse terminals, I really hope the job could be done with just the documented control codes :-) Thank you so much for nice info. Nicola Bernardelli <[EMAIL PROTECTED]> --- Please use <[EMAIL PROTECTED]> for messages from any kind of robot, such as mailing lists. From that address no autoresponse messages will return even when I'm not at home. --- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root access via telnet?
> Hi! > > Is it possible to allow root access via telnet? > It is supposed to be used for remote administration. The server is > *not* connected to the Internet and contains no sensitive/important > data, so security would not be a problem. The server is (right now) > only for playing with... :-) You can add some entries to /etc/securetty, ie.: ttypa ttypb ttypc ttypd But this is bad practice. It's better to use ssh instead. ssh is nicer anyways, since you can avoid passwords completely. The only problem with ssh is that it isn't free for commercial use. Cheers, - Jim pgp6AhHhzxzXG.pgp Description: PGP signature
Re: root access via telnet?
> Hi! > > Is it possible to allow root access via telnet? > It is supposed to be used for remote administration. The server is > *not* connected to the Internet and contains no sensitive/important > data, so security would not be a problem. The server is (right now) > only for playing with... :-) Option 1, the usual way to do this: just telnet as an ordinary user, and then "su" to root. Option 2: man securetty (add the tty's to /etc/securetty) -- joost witteveen, [EMAIL PROTECTED] #!/usr/bin/perl -sp0777ihttp://www.dcs.ex.ac.uk/~aba/rsa/ -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Problems with dependencies
I have the package e2compr_1.06-2 installed providing the package e2fsprogs (replacing it). If I now try to install a package (say mc) depending on e2fsprogs (>=1.06-1) it tells me this package is not installed even though it is provided by e2compr. What happens here? Thanks, Torsten -- "What a depressingly stupid machine" The Restaurant at the End of the Universe PGP Public Key is available -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Token Ring
Hello, I've read the mini-FAQ on token ring and they don't talk about Debian. What are the steps to successful tr0 ? Thanx -- Greg. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Debian & Adaptec AHA 2840VL/2842VL
hi everybody, I'm trying to install Debian 1.3.1 with an Adaptec AHA 2840VL/2842VL SCSI card; while the RESC1440 disk is beeing loaded I get a lot of error messages; some of them are: - encountered spurious interrupt - failed to initialize module ? - In swapper task - not syncing ..and it hangs! is there a way I can save/print the output of the loading process? I'd like to take a closer look at it or even post it here.. I've read in the SCSI-HOWTO that 90% of SCSI problems are related to cables; I can boot MSDOS w/o a problem; does this mean that cables are ok? is Linux more sensitive to cable problems than MSDOS? I booted with my RedHat 4.12 boot floppy and it looks like RedHat would have no problem with this SCSI card; is this kind of hardware support distribuition-specific? TIA! hlp: I'm using Win95 to write this -- Otavio Exel /<\oo/>\ [EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Xemacs and cperl-mode
[EMAIL PROTECTED] (Karl M. Hegbloom) writes: > > "Carl" == Carl Johnson <[EMAIL PROTECTED]> writes: > > Carl> I have recently been trying to edit some perl scripts using > Carl> xemacs, so I tried using the cperl-mode instead of > Carl> perl-mode. > > Try (require 'cperl-mode) and see if that brings it in. That didn't work, so it turned out was much more basic. My .emacs file wasn't being executed at all, because of an error earlier in it. I had assumed that the program would warn me of errors. Silly me, I thought that was why they had a 'Warning' buffer. Thanks for your help. -- Carl Johnson[EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root and .rhosts file
On Mon, 15 Sep 1997 16:13:43 +0200 Martin Schulze ([EMAIL PROTECTED] ual.net) wrote: > On Sep 15, Jeppe Buk wrote > > > > Try adding "-h" after rshd in your /etc/inetd.conf. This flag allows > > > your in.rshd to use the root .rhosts file. Without it /root/.rhosts > > > will be silently ignored. > > > > That did it! The option isn't mentioned in the man page. How was I > > supposed to have found this out myself? > > Please send an appropriate bug report against netstd. Not necessary. From `man rshd': 8. Rshd then validates the user using ruserok(3), which uses the file /etc/hosts.equiv and the .rhosts file found in the user's home di rectory. The -l option prevents ruserok(3) from doing any validation based on the user's ``.rhosts'' file (unless the user is the supe ruser and the -h option is used.) If the -h option is not used, su peruser accounts may not be accessed via this service at all. Phil. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Problems with X-programs
On Sep 06, Karsten Bolding wrote > Hi > > Got my new machine (orca) and started to migrate programs from the old > (dolphin). So far I've run into two problems - maybe unrelated - but both has > to du with > X. > > 1: ncview is a very nice utility to browse netcdf-files > (cirrus.ucsd.edu:/pub/ncview). I'm able to compile, although I've to do a > little with the Makefile produced by xmkmf (Xaw header files not found). When > I try to run ncview I get to see a glimse of the main menu and then the > following is written: > > X Error of failed request: BadMatch (invalid parameter attributes) > Major opcode of failed request: 1 (X_CreateWindow) > Serial number of failed request: 169 > Current serial number in output stream: 254 > > If I move the executable to dolphin then it works and if I take the > executable from dolphin and moves to orca I get the same error. Whenever I get an error like this, I try running in "the other mode" - if I am using 16-bit colour, I try using 8-bit mode; or vice versa. This might be your problem - from your post: > % Unsupported X Windows visual (class: PseudoColor, depth: 8). > Substituting default (class: TrueColor, Depth: 16). Adrian -- .signature in post -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
root access via telnet?
Hi! Is it possible to allow root access via telnet? It is supposed to be used for remote administration. The server is *not* connected to the Internet and contains no sensitive/important data, so security would not be a problem. The server is (right now) only for playing with... :-) Regards, [EMAIL PROTECTED] NEW icq uin -> 2565176 -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Best Ethernet Card
On Fri, 12 Sep 1997, Jeff Noxon wrote: > On Fri, Sep 12, 1997 at 01:09:24PM -0400, Dale Martin wrote: > > The current wisdom says to avoid the 3com 3c905, and go with a DEC > > "Tulip" based card. I do know from personal experience that the 3c905 > > has problems - haven't tried a Tulip card yet, but will be using one > > very soon. > > The Tulip cards seem to suffer from minimal braindamage. They are cheap > and fast. Some people have driver problems which seem to be related to > the way different models implement the SROM. I've 10-T cards from DEC, > Kingston, and Linksys without any trouble at all. I would expect similar > results from the 100Mb stuff. How does one determine from minimal catalog info what cards are Tulip-based? I've been trying to figure that out for a while... Sincerely, Ray Ingles (248) 377-7735 [EMAIL PROTECTED] Modern deductive method: 1) Devise hypothesis. 2) Apply for grant. 3) Perform experiments. 4) Revise hypothesis. 5) Backdate revised hypothesis. 6) Publish. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
rxvt Backspace key doesn't delete anymore
After my vacation, I came back to a special root login that looked like I needed to do some repairs. This was not the normal login prompt. The disks look fine (did e2fsck on them) but now XFree-3.3 wouldn't recognise my [Windows] keys as Meta keys in X, and the Backspace key enters a ~ character and beeps instead of deleting. I fixed the Meta keys with xmodmap (even reinstalling XFree and reconfiguring wouldn't help get back the default behaviour) but I don't know how to fix the backspace key. BTW, it works fine for root, and I can't find anything nasty in any dot file. `xev' says the backspace key is keycode 22, so I tried stty erase 0x22 It doesn't help. Any ideas? -- Peter Galbraith, research scientist <[EMAIL PROTECTED]> Maurice-Lamontagne Institute, Department of Fisheries and Oceans Canada P.O. Box 1000, Mont-Joli Qc, G5H 3Z4 Canada 418-775-0852 - FAX 418-775-0546 -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Setting X mouse responsiveness
On Mon, Sep 15, 1997 at 10:03:24AM -0400, Brian White wrote: > As I suspected, if X reads the mouse directly (and it does unless you are > using it with GPM's "repeater" mode, the settings made via GPM won't affect > X. I didn't know about this mode. I had an interesting problem where X would die if I switched from a text console to X and moved the mouse... Using the gpm repeater mode solved it. Otherwise I had to be careful not to move the mouse for about 2 seconds after switching to X. This is with a PS/2 mouse. Fascinating. Thanks, Jeff -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Installation Problem
I tried to install Debian 1.3.1. I got "cannot initialize swap partition" error and it stopped the installation. I've already tried 3 rescue disks. I don't know what went wrong. Can anybody help? I'm using Adaptec AHA-2940 SCSI card, Quantum Viking 4.3G HD. Marlet "Nobody can be exactly like me, sometimes even I have trouble doing it." -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root and .rhosts file
On Wed, Sep 10, 1997 at 03:53:42PM +0200, Jeppe Buk wrote: > Hi > > I'm a student programmer at the Dept. of Mathematics and Computer Science, > Odense University in Denmark. > > I've installed Debian 1.2 on one of our PC's in the Unix network. This > works great (not surprisingly). > > Now I've installed Debian 1.3.1 on another PC, and I can't get this new > machine to accept root rsh requests from our primary server (running > SunOS), or any other machine, for that matter. Both Debian machines have > the same .rhosts file in the root homedir, but the 1.3.1 host gives > permission denied replies. > Try adding "-h" after rshd in your /etc/inetd.conf. This flag allows your in.rshd to use the root .rhosts file. Without it /root/.rhosts will be silently ignored. I think I saw a mail on this list a while ago about that flag being removed. BTW, rlogin works the same. > BTW: I'm not using shadow passwords on any of the systems. > > I'm lost, and if I don't solve the problem my system manager will not let > me install Debian on new PCs in the department (Not Good!). > That would be awful!! I hope things work out for you. Let me now how it turns out. Cheers, Bengt-Ove! -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
xfishtank
Has anyone else had a problem with this? It utterly hangs X, beyond restarting X. I can still telnet in, but halting the xdm daemon & restarting isn't enough to recover the keyboard. For that matter, it requires an actual power down (but there are some strange hardware problems on this beast). rick -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
LPD and macigfilter help please.
I read carefully the Printing HOWTO, and have installed Magicfilter according to its docs. I have an HP 4L, but there appears to be 3 versions of the 4L filter in the filters directory. One is very large, the others not. So, I need this: What is the exact name of the filter to put in /usr/local/bin for my 2 year old 4L. And would somebody kindly send me their printcap entry for this guy. Lastly, do I really need ghostscript if I am only printing ascii to this printer? Thanks. -Pat *-* * Pat Masterson B38-01, Northrop Grumman, * Ham:KE2LJ * Plant 1, South Oyster Bay Rd.,* Packet: [EMAIL PROTECTED] * Bethpage, NY 11714* President Grumman Amateur * email: [EMAIL PROTECTED] Fone: 516-346-6316 * Radio Club WA2LQO *-* -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root and .rhosts file
On Mon, 15 Sep 1997, Bengt-Ove Johansson wrote: > > I'm a student programmer at the Dept. of Mathematics and Computer Science, > > Odense University in Denmark. > > > > I've installed Debian 1.2 on one of our PC's in the Unix network. This > > works great (not surprisingly). > > > > Now I've installed Debian 1.3.1 on another PC, and I can't get this new > > machine to accept root rsh requests from our primary server (running > > SunOS), or any other machine, for that matter. Both Debian machines have > > the same .rhosts file in the root homedir, but the 1.3.1 host gives > > permission denied replies. > > Try adding "-h" after rshd in your /etc/inetd.conf. This flag allows > your in.rshd to use the root .rhosts file. Without it /root/.rhosts > will be silently ignored. That did it! The option isn't mentioned in the man page. How was I supposed to have found this out myself? > I think I saw a mail on this list a while ago about that flag being > removed. It isn't used on the 1.2 host. The first thing I did was compare their inetd.conf :-) > > I'm lost, and if I don't solve the problem my system manager will not let > > me install Debian on new PCs in the department (Not Good!). > > That would be awful!! My thought exactly! > I hope things work out for you. Let me now how it turns out. They did. Regards, --- Jeppe Buk, student of computer science Phone: +45 6557 2347 IMADA, Odense University Email: [EMAIL PROTECTED] Campusvej 55 WWW: http://www.imada.ou.dk/~buk/ DK-5230 Odense M, Denmark SMS (subject only): [EMAIL PROTECTED] --- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: root and .rhosts file
On Sep 15, Jeppe Buk wrote > > Try adding "-h" after rshd in your /etc/inetd.conf. This flag allows > > your in.rshd to use the root .rhosts file. Without it /root/.rhosts > > will be silently ignored. > > That did it! The option isn't mentioned in the man page. How was I > supposed to have found this out myself? Please send an appropriate bug report against netstd. Regards, Joey -- Individual Network e.V. _/ 27./28.9.97: Kongress des IN e.V. [EMAIL PROTECTED] _/http://www.individual.net/congress/ Tel: (0441) 98347-15 _/ Highlights: Richard Stallmann, Bruce Perens -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: UNSUBSCRIBE
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Sunday, September 14, 1997 1:52 PM Subject: debian-user-digest Digest V97 #741 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: UNSUBSCRIBE
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Sunday, September 14, 1997 2:48 PM Subject: debian-user-digest Digest V97 #742 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: UNSUBSCRIBE
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Sunday, September 14, 1997 3:34 PM Subject: debian-user-digest Digest V97 #743 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: UNSUBSCRIBE
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Sunday, September 14, 1997 6:57 PM Subject: debian-user-digest Digest V97 #744 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Interface to the vacation program?
Hi, we use a SMTP/POP3 mail solution running in a Debian box. I find the vacation program very useful when users are out of the office. However, my users do not even know there is a Unix box behind the scenes because all they is a nice mail program like Eudora with a nice Windows user interface. It is just impossible to expect my users to log into the Unix box and run the vacation program. Not to mention they have to use vi to edit the vacation message. So, my question is: does anyone know if there is a WWW interface to the vacation program? I am thinking about a web page/CGI script that allows the user to specify his/her e-mail address and the vacation message and have the CGI run the vacation program for him. Later, when the user returns to the office he/she can access the same Web page to disable the vacation program (the CGI will remove the .forward file). This would be great!!! Any suggestions or pointers will be appreciated. Thanks, E.- -- Eloy A. Paris Information Technology Department Rockwell Automation de Venezuela Telephone: +58-2-9432311 Fax: +58-2-9431645 -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: UNSUBSCRIBE
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Sunday, September 14, 1997 7:40 PM Subject: debian-user-digest Digest V97 #745 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Setting X mouse responsiveness
> >How can I adjust the responsiveness of the mouse under X? Right now I > >almost have to move the mouse half way across the room to cross the > >screen? It's a PS/2 mouse. > > > >I've adjusted (lowered) the resposiveness under GPM. Could that be affecting > >things in X? X is accessing the mouse directly, not via the GPM repeater. > > I have a similar problem. I am using the gpm repeater(/dev/gpmdata) > to pass the input of two pointers, a keypad pointer(/dev/ttyS0) and a > mouse(/dev/psaux) to gpm and X. The pointer is more responsive so I > have lowered it with gpm and that works find under the tty's. > > gpm -m /dev/psaux -t ps2 -M -m /dev/ttyS0 -t ms -r 2 > > However X does not seem to pay attention to what gpm has set for the > pointer responsiveness so the cursor is super sensitive with the > pointer and normal with the mouse. As I suspected, if X reads the mouse directly (and it does unless you are using it with GPM's "repeater" mode, the settings made via GPM won't affect X. The "xset m " command (in your .xsession) works pretty well, though. Brian ( [EMAIL PROTECTED] ) --- Generated by Signify v1.02. For this and more, visit http://www.verisim.com/ -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: unsubscribe
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Sunday, September 14, 1997 10:49 PM Subject: debian-user-digest Digest V97 #746 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: unsubscribe
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Monday, September 15, 1997 1:41 AM Subject: debian-user-digest Digest V97 #747 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: unsubscribe
-Original Message- From: [EMAIL PROTECTED] <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]> Date: Monday, September 15, 1997 9:51 AM Subject: debian-user-digest Digest V97 #748 PLEASE UNSUBSCRIBE [EMAIL PROTECTED] from all lists at debian. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Xemacs and cperl-mode
> "Carl" == Carl Johnson <[EMAIL PROTECTED]> writes: Carl> I have recently been trying to edit some perl scripts using Carl> xemacs, so I tried using the cperl-mode instead of Carl> perl-mode. Try (require 'cperl-mode) and see if that brings it in. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: netbook and diskless workstations
> "Colin" == Colin R Telmer <[EMAIL PROTECTED]> writes: Colin> Does anyone have any experience using netboot? Look into the `transnames' kernel patch; which I think might be part of the 2.1.x kernels now. With that, I think you could boot a '95 workstation with a floppy. The kernel on the floppy would use the bootp and could mount the root filesystem of the server. It's something like nfsroot, but is a better solution. I'm not going to write a bunch about it; you can research it just fine, I imagine. Here's the docs, grabbed from: http://www.math.muni.cz/cgi-bin/LSD?Version=2.1.54&Arch=i386&File=Documentation/transname.txt Transname version 1.9 (C) 1997 Thomas Schoebel-Theuer transname enables diskless clients, X-terminals etc to mount the *root filesystem* of the server. This make administration of large pools a lot easier. Wherefore is linux-2.0.21-transname.patch? Currently different diskless clients must have their root / on different directories on the server, beause each client has _some_ different configuration files. However, most files (typically about 99%) have the same contents on the clients and on the server, but have to be replicated (and maintained separately) just because of the 1% differences. This duplication causes very large efforts in practise, since at least the /etc directory has to be duplicated for every client. Even in /etc many files are identical, for example sendmail.cf, initrc scripts and others. Maintaining a large pool means to ensure coherence amoung the duplicates. Classical methods like symlinks are unconvenient for this task because they have to be valid in the view of mounted filesystems at all clients, not at the server. Linux transname overcomes this problem by allowing filenames to be context-dependend. For example, if you have a file /etc/config that should differ on the hosts "myserver" and "myclient", you just create two different files named /etc/config#host=myserver# and /etc/config#host=myclient# . On host "myserver", the file /etc/config#host=myserver# will appear as if it were hardlinked to file /etc/config (without the #...=...# suffix). On host "myclient", the corresponding other file will appear as /etc/config. So you can access the right file contents under the _same_ name, depending on which host you are working. A similar concept can be found in elder HP-UX versions, but with so-called "hidden directories" which don't allow contemporary viewing all versions by default. In contrast, transname shows all context-dependent files in the dir listing and they can be edited using the fully qualified name. Transname was developped for and is used at our Linux pool at the University of Stuttgart with good results. Maintainance of the pool is at a minimum, and adding new clients is a child's play. No worry with keeping up mail configurations, newly installed tools, changed /etc/services, /etc/shells, /etc/resolv.conf and many, many others. In contrast to a sophisticated symlink solution, adding a new file to the /etc directory is seen immediately by all clients. An example for the use of linux-2.0-transname.patch: For example, you can make your /etc/fstab context-dependend. If you want to do that, you should create an /etc/fstab#ktype=default# for the server and an /etc/fstab#ktype=diskless# for all clients. This is because your clients may not yet know their own hostname when they attempt to mount the root filesystem. You can compile in the kerneltypes "default" and "diskless" into different kernels for servers and clients. Of course, if your clients boot via bootp and know their names when mounting the root, you can use /etc/fstab#host=myclient# instead. But at least servers booting from disk normally dont know their hostname at root mount time, so you can mix methods and use /etc/fstab#ktype=default# for the server, /etc/fstab#ktype=diskless# for the majority of the clients and /etc/fstab#host=myclient# for some specific client, because translation of #host=...# is given precedence over #ktype=...# by default. This sort of name translation works with any underlying file system and with any inode type (i.e. with directories, symlinks, devices etc), because it is implemented in the VFS layer of the kernel. Currently, five types of default translations are supported: * #host=# depends on the hostname, see "uname -n" * #kname=# works with a hard compiled-in string * #ktype=# works with a hard compiled-in string * #machine=# depends on architecture, see "uname -m" * #system=# currently only supported by Linux, see "uname -s" Others may be added in future. The current translation are displayed at boot time in the kernel messages for easier debugging, and can be retrieved by reading /proc/sys/kernel/nametrans which is a special file containing the currently valid translations. The default translations change whenever the hostname(1) is set or changed. Thus, the hostname is not set (or set to the name "(none)") at bo
Re: driver for AVA 1505 AT-to-SCSI host adapter???
On Mon, Sep 15, 1997 at 01:11:07PM +0100, Paolo Ciliegi wrote: > > I'm using a DEBIAN Linux version 1.1. > I installed an AVA 1505 AT-to-SCSI host adapter. > Do you know where I can find a driver for this > SCSI host adapter ? > Thanks > Paolo If my guess is right, you can use the AHA-152x driver with this card. It works with cards using the AIC-6260 or AIC-6360 chips. Don't expect good performance, though -- these cards are not very good unless driving slow devices like older (slow) CD-ROM drives. Good luck, Jeff -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: SB AWE 64 versus Soft. Syns. for making midi... Also, midi keybo
On Sun, Sep 14, 1997 at 03:15:12PM +, [EMAIL PROTECTED] wrote: > Hello everyone... Hi! > First of all, I noticed that the Sound Blaster AWE 64 is out, and is > only about $100 in most stores. Does anyone know if this works > alright under Linux/Debian yet? I have SB AWE32pnp, and the SB64 upgrade software. This means, I have fully functionality of a SB64pnp with my SB32. Wonder why? The main feature of the SB64 is a new form of WaveTableSynthesis, that gives you more natural sounds and 32 additional voices. However, these are software emulated with windows driver. SB cares nuts about the linux community (they say, the market is not important enough; we will see...), so we are on our own. Driver for the AWE are there, but do not expect to have a working SB 64, only 32 (the additional 32 voices are software emulated anyhow). > I have noticed there are a couple of soft. syns. available for Linux, > including KMidi, TiMidity, etc. Has anyone been able to compare the > quality of these to the AWE64? Do not expect a lot. Linux is young, and sound is not the most important thing to have working (although I think it is *very* important :) Software synthesis has performance problems. You have to process a lot of memory, because good samples are big. The quality of the samples is most important. The AwE64 as well as the AWE32 have the same basic samples, and they *are* basic. The base drum is a peace of childrens toy, for example. > I know that, in general, a card is a better solution. It'll carry > the sound quality over to games, and also relieve the processor. > But, I don't care too much about games right now, and would be > pretty much shutting down any other big processes when converting the > music. I have a 100mhz and 40 megs of Ram You need a card, or a very fast driver for your software solution (if you want to have sound in real time :). I don't know if a software solution for real time audio devices exist. > I figure that maybe I can spend the money on a midi-compatable > keyboard instead. Anyone with exp. on using one of those under > Linux? I saw a keyboard for about $170 at Electronic Boutique, which > was basically one devoted to Midi, without any samples built in. That > seems to be the cheapest I can find which lets you connect it to a > computer? If you want to be really cool, buy a keyboard with weighted keys (feeling like a piano). Takes about $1000 :(. Seek a Keyboard with big keys (not the baby ones), and with touch sensitive keys. A pedal is nice, as are modulation and pitch bend function. You don't need any samples or demo songs (burb), but a midi connection. Good keyboards have midi anyway. > Also, I wouldn't be able to afford the AWE64 Gold card, so I'd be > limited to 512k of sound ram unless I bought add-ons. I should be able > to add as many custom samples as I need onto the hard drive with a > soft. syn, right? But a soft syn cannot process so many samples in real time, or can it? > Well, thanks in advance, everyone. Sorry for all these newbie-ish > questions, but I am sort of out of my element when it comes to this > sound stuff, and been too busy lately to be able to look around as > much as I'd like to. Take a look for good cards in the Sound HOWTO, Hardware HOWTO, and look which drivers come with the kernel. Buy the same card as the people have who writes the driver :-) (best support) > P.S. Of course if my $$$ keeps going the way it seems to be (down the > drain) these questions may be moot..hehe. I fear I'll have to use a > sequencer without a keyboard and a soft. syn. without a sound card. > But the scary thing, is that it might actually work! ;) You will hear something, but may I ask a question? Why don't you get a guitar for $100 and enjoy actually *making* music by yourself. Computer music is bad to the ears at last :-/ Marcus who also seeks a cheap midi keyboard :) -- "Rhubarb is no Egyptian god." Marcus Brinkmann [EMAIL PROTECTED] http://homepage.ruhr-uni-bochum.de/Marcus.Brinkmann/ -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Configuring Qpopper
Yes. I did this the other day in the process of installing qmail. I recompiled qpopper and qpopperauth. Have a look at www.qmail.org, the instructions are in the faq I think. david.. Binary Bar - Australia's first free access internet bar/cafe/gallery. 243 Brunswick Street, Fitzroy, Melbourne, Australia. 12:00pm - 11:00pm http://www.binary.net.au On Mon, 15 Sep 1997, Bruno O. M. Simoes wrote: > Hi all, > Does somebody know how to configure qpopper to get a mail in ~user/mail > intead /var/spool/mail/user ? > Thank you > Bruno > > > -- > TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to > [EMAIL PROTECTED] . > Trouble? e-mail to [EMAIL PROTECTED] . > > -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Configuring Qpopper
Hi all, Does somebody know how to configure qpopper to get a mail in ~user/mail intead /var/spool/mail/user ? Thank you Bruno -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re[4]: Debian + PC with multi RS... port -> n x (text d
My experience is with hp terminals using enq-ack protocol. When you send stuff to one of the "devices" (screen, printer port, mini-tape, etc.) the keyboard gets locked for the duration of that transfer. Usually, this is not very long. If the line is fast, you don't have much time to do anything between transfers. The program I wrote used binary transfers so we could dump raster graphics to the terminal printer. There are other ways to do it than the one I used but it requires a tricky driver in the operating system. Old hp rte systems used to be able to read/write to the mini-cartridge tape system in the 2645 terminal while you did something else on the screen. If you limit the data to simple ascii print, you have a much better chance. If the stuff you write is really short (less than 2k) then the time you can't type is going to be pretty short. vt terminals... I don't know. I have no idea how they handle the keyboard when you dump stuff to the printer port. The problem can be solved. You have to know a *LOT* about the terminal you are going to use. There are always some tricks that you have to learn that aren't in the manuals. (These days, there isn't much in manuals anyway.) jim lewis __ Reply Separator _ Subject: Re: Re[2]: Debian + PC with multi RS... port -> n x (text d Author: [EMAIL PROTECTED] at ~AMSCCSSW Date:9/12/97 7:38 PM On 12 Sep 1997, TENCC01.LEWIS01 wrote: > It probably doesn't work the way you want. Usually the terminal keyboard is > locked until the print is finished. Making the terminal useful for input at the > same time is generally not possible. It would require a very clever terminal > and an extremely clever driver. > > jim > ... Or just a larger RAM buffer in the printer and hopefully a fast line, after all I don't think that in a POS system anyone would need to print large reports at one of the terminals, most likely just a few lines on a page for each sell or incoming materials. I would choose to connect a printer to the port _on_the_main_computer for large reports. But it would be interesting just to know more about that keybord lock during prints. Nicola Bernardelli <[EMAIL PROTECTED]> --- Please use <[EMAIL PROTECTED]> for messages from any kind of robot, such as mailing lists. From that address no autoresponse messages will return even when I'm not at home. --- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: number of problems...
Is there a window maker package for the stable release? Otherwise I imaging this is annother of those I'm using the unstable stuff and really shouldn't be... Binary Bar - Australia's first free access internet bar/cafe/gallery. 243 Brunswick Street, Fitzroy, Melbourne, Australia. 12:00pm - 11:00pm http://www.binary.net.au On Mon, 15 Sep 1997, justin honold wrote: > i'm running debian 1.3.1 and i need whatever help i can get on all these > problems! > problem 7: windowmaker > i cannot get windowmaker to install because it doesn't believe i have > the xpm libs (although they are clearly in /usr/X11R6/lib/). what is > causing this? -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
RE: xdm, xinit and startx problem
Hi, With regards to your xman problem, have you checked the permissions of /dev/null? I had exactly the same problem and messages from xman with an installation of Slackware - it was because /dev/null only had root permissions. I had to chmod it so that everybody could use /dev/null. This solved the xman problem. Perhaps this is your problem with Xman, but perhaps not. Just an idea. Martin -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
driver for AVA 1505 AT-to-SCSI host adapter???
I'm using a DEBIAN Linux version 1.1. I installed an AVA 1505 AT-to-SCSI host adapter. Do you know where I can find a driver for this SCSI host adapter ? Thanks Paolo --- Paolo Ciliegi| Phone 44-(0)-1223-337544 University of Cambridge | Institute of Astronomy | FAX44-(0)-1223-337523 Madingley Rd | email(internet) [EMAIL PROTECTED] Cambridge| CB3 OHA, U K.| -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Debian + PC with multi RS... port -> n x (text dumb t
On Sun, 14 Sep 1997, A. Paul Heely Jr. wrote: >What ports are these devices connected to? > > These all connect through device, I don't know exactly what it is, > that is itself connected to a serial port. One device only... the Wyse's have _two_ serial ports, but maybe to just switch from one host to another, don't know whether or not the second port can just be used as auxiliary input... but why not keybord "emulation" as done by most barcode scanners I saw? Do credit card scanners have more complex or interactive tasks...? (To Joey: your address always gives me back delivery errors! The list is the only way to reach you and tell you, give me a sane address to send the error files to if you want.) Nicola Bernardelli <[EMAIL PROTECTED]> --- Please use <[EMAIL PROTECTED]> for messages from any kind of robot, such as mailing lists. From that address no autoresponse messages will return even when I'm not at home. --- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: dpkg
On Sat, 13 Sep 1997, Jim Pick wrote: > > > I try to install X11 from cdrom that is download and recorded from ftp. > > When I use dselect to install some packages, some .deb packages are > > refused by dpkg. Even I use dpkg -i xlib* to install X11, error message > > like: > > > > dpkg-deb: /...directory/xlib6*.. not dbian format > > > > Does anybody have same problem before? Why the .deb that is download can > > not be accepted? > > Ok, I'll bite (since you've asked three times). Normally, questions on > debian-user get answered more quickly than - I thought somebody else would > have taken this one by now. Same here...but it was the weekend. > > Most likely, you have a file named xlib.. in your directory that is > not a .deb file. Perhaps you also downloaded a xlib*.tar.gz file (an > upstream source package). > > Try running 'dpkg -i xlib*.deb' instead. Or even better, use the full > explicit file name. > > (Of course, there is always the possibility that you have found a bug) It's also possible that the file has got corrupted. I hope the person who cut the CD remembered to ftp the files in binary mode. -- David Wright, Open University, Earth Science Department, Milton Keynes MK7 6AA U.K. email: [EMAIL PROTECTED] tel: +44 1908 653 739 fax: +44 1908 655 151 -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Xemacs Mail (VM)
Rob MacWilliams <[EMAIL PROTECTED]> writes: > Is there any place these variables are documented, I looked through > the Info pages but couldn't find anything. Emacs really is a > lifestyle and I'd like to find out more before I commit to it > entirely. It's in the XEmacs FAQ for Gnus. I tested it on VM and posted my suggestion. It's also mentioned in the Lisp reference under the "System Environment" node. I'm not sure how easy it would have been to find without knowing what it was though. I probably read it on gnu.emacs.gnus or comp.emacs.xemacs, at a stage when [EMAIL PROTECTED] was actually my email address. -- Carey Evans <*> http://home.clear.net.nz/pages/c.evans/ kernel: Warning: possible SYN flooding. Sending cookies. kernel: validated probe(17f, 17f, 11557, 5010, -1645409555) -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Nedit
On Sep 14, Bert Heijenga wrote > After installing Nedit from the package nedit-smotif_4.0.3-1.deb I cannot > start Nedit as root nor as a user. > > I get the following message: > nedit: can't load library '/usr/lib/libXt.so.6' >Unknown error [snip] What does ldd /usr/X11R6/bin/nedit give? -- POPULATION EXPLOSION Unique in human experience, an event which happened yesterday but which everyone swears won't happen until tomorrow. - The Hipcrime Vocab by Chad C. Mulligan -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: number of problems...
Justin Honold wrote: > > i'm running debian 1.3.1 and i need whatever help i can get on all these > problems! > [ ... ] > problem 6: mpeg_play > this isn't necessarily a problem, because i switched to mtv, but i was > unable to run mpeg_play because i was missing libm.so.4 (with libc > installed). shouldn't a module dependency notification come up if i > need something? Yes, a dependency should show up. But the real problem is that mpeg_play is still aout. It is the aout libc that you need which is in the libc4 pacakge. What is this mtv program you mention? I'm trying to make some movies myself with the mpeg package, but the documentation is rather puzzling. I do get results, but don't quite understand why. Eric Meijer. -- E.L. Meijer ([EMAIL PROTECTED]) | tel. office +31 40 2472189 Eindhoven Univ. of Technology | tel. lab. +31 40 2475032 Lab. for Catalysis and Inorg. Chem. (TAK) | tel. fax+31 40 2455054 -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
number of problems...
i'm running debian 1.3.1 and i need whatever help i can get on all these problems! problem one: bitchx i have bitchx73 installed, and i cannot get it to run properly. when run, it tells me the current term (defaulted to 'linux') doesn't have a termcap entry. upon starting, everything looks cool until it logs into an irc server, and then the text wigs out (shifts to the right...which setfont/clear doesn't fix, so i have to log out) and i can't see the topic bar. i telnet into my box at work and run bitchx fine, with topic bar and all. i've tried exporting 'ansi', 'vt100', and any other guessable terms to the TERM variable with no avail. has anyone else had these problems running bitchx with debian out of the box? problem 2: icmp firewalling how do i prevent incoming icmp traffic (read: nukes) from coming into my system? using ipfwadm just yields the "unknown protcol" command when specifying ICMP (using correct syntax...verified with many users). problem 3: telnet lockups when i telnet into my solaris box to run bitchx, the telnet session locks upon loading bitchx. i kill the pid and do it again, and it works fine every time. the first time i open a telnet session with my shell, it totally locks up. i find this error strange because it always corrects itself on the second attempt. problem 4: joystick the joystick module in the debain 1.3.1 package doesn't work for my 2.0.30 kernel, and the joystick.tgz from the hardware compatability howto (which links to sunsite) won't compile correctly problem 5: xview (or not?) xview clients from dselect claims that it needs xtoolfind (or something like that), but it doesn't appear to be available. is the actual xview program in the debian distro, or just the libs? problem 6: mpeg_play this isn't necessarily a problem, because i switched to mtv, but i was unable to run mpeg_play because i was missing libm.so.4 (with libc installed). shouldn't a module dependency notification come up if i need something? problem 7: windowmaker i cannot get windowmaker to install because it doesn't believe i have the xpm libs (although they are clearly in /usr/X11R6/lib/). what is causing this? i appreciate any help that could be sent my way...thanks! justin honold [EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Best Ethernet Card
On 12 Sep 1997, Dale Martin wrote: > Leszek Gerwatowski <[EMAIL PROTECTED]> writes: > > The other card I see mentioned a lot, but never see much as far as > recommendations, is the Intel EtherExpress 100. Anyone have any > thoughts on those? > I'm using an EtherExpress 100 together with Linux. The only problem I've had, was finding the driver! It is (was?) not included in the 2.0.30 kernel source code. I had to download it and compile it as an module by hand (which really wasn't a problem). But once installed it has worked great! /frax -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: elf-xlib - correction - elf-x11r6lib
On Sun, 14 Sep 1997 23:08:28 - Rick ([EMAIL PROTECTED]) wrote: > It's the elf-x11r6lib I'm looking for not the elf-xlib as I stated in this > posting. > > I searched the pkgs list from the Debian web site using elf as the keyword > and nothing. I looked up a few of the pkgs that keep telling me they require > it and they don't show it in the web site search either. Elf-x11r6lib used to be a virtual package back in the 1.1 days. Some packages still depend on it (they all have bugs assigned against them). It you want to get rid of the annoying dpkg message, just build a dummy package which provides it. Phil. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: swap file
> i want to install debian and i want to know if it's possible to share > the > same partition for swap file of win95 and linux. > > if it's possible, how to do this??? There's a mini-HOWTO for this: /usr/doc/HOWTO/mini/Swap-Space.gz I've never done it myself though. Cheers, - Jim pgpqpOaijOpBy.pgp Description: PGP signature
Re: [OFF TOPIC] access controlled website
> Since the web has become so annoying in the past year I have strayed away > from using it as much as possible, however now I need/would like to set up > a website that is username/password protected on my Debian Linux(so it is > somewhat related) machine. Here's how I do it in with Apache. This is from my /etc/apache/httpd.conf file: DocumentRoot /var/web/test/html ServerName test.jimpick.com XBitHack full ScriptAlias /cgi-bin/ /var/web/test/cgi-bin/ ScriptAlias /HyperNews/ /var/web/test/HyperNews/ AuthUserFile /var/web/test/htpasswd AuthGroupFile /dev/null AuthName test AuthType Basic order deny,allow deny from all allow from .jimpick.com require valid-user satisfy any AllowOverride All Options FollowSymLinks Ok, it's a bit overkill. But it shows how to put everything together. Consult the Apache docs to figure out exactly what it does. If you are accessing the virtual server from inside my domain (jimpick.com), it won't ask for a password. But my clients, who are outside my domain, can still access the site if they know their username and password. The usernames and passwords are stored in a simple password file located at /var/web/test/htpasswd. This file is generated with the htpasswd command that comes with Apache. 'man htpasswd' for details. Cheers, - Jim pgplcd2Kv2niX.pgp Description: PGP signature
ISO-8859-9
Does anyone know of an xemacs mode for iso-8859-9 similar to iso-accents-mode? I need the Latin-5 characters for Turkish. TIA, Glenn -- Glenn R. Williams Senior Consultant Advanced Decisions Inc. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: elf-xlib
Sounds like you've been bitten by 'unstable' too - followups to debian-devel please. Here's what I wrote previously: > Ahh, you're using 'unstable'. Living dangerously, eh? > There are some programs (ie. emacs, fvwm2, xdaliclock + others) that > incorrectly link with both libc5 and libc6. This wasn't a problem > until you installed xlib6g, since you didn't have libc6-based X libs > until then. Read my previous post, "Re: Emacs dumps core after some > major upgrades on system" to see how to fix it. There has been lots > of discussion on debian-devel about this. > BTW, upgrading problems with the 'unstable' distribution really belong > in debian-devel. Cheers, - Jim pgp4izrSWqDeR.pgp Description: PGP signature
Re: Automount filesystems?
> Hi! > > This might be a stupid question, but how do I automount partitons at > startup? > Regards, > > [EMAIL PROTECTED] If they are local hard disk partions, just add them to your /etc/fstab file. 'man fstab' for details. If you want to mount network partitions on demand - you want to check out the 'amd' package - or maybe 'autofs', which I haven't tried. Cheers, - Jim pgpHJqnuV0emn.pgp Description: PGP signature
Re: Strange update problem
Ahh, you're using 'unstable'. Living dangerously, eh? There are some programs (ie. emacs, fvwm2, xdaliclock + others) that incorrectly link with both libc5 and libc6. This wasn't a problem until you installed xlib6g, since you didn't have libc6-based X libs until then. Read my previous post, "Re: Emacs dumps core after some major upgrades on system" to see how to fix it. There has been lots of discussion on debian-devel about this. BTW, upgrading problems with the 'unstable' distribution really belong in debian-devel. Cheers, - Jim pgpwre3ykttqy.pgp Description: PGP signature
X3.3
A friend of mine just installed Linux, newest Debian dist off of the ftp sites. Having a little trouble with X. He'd like to play Maelstrom, but it keeps locking up just as he starts the second level. (We can kill the server with ctrl-alt-backspace still.) He's running the newest X3.3, and the mach8 server. Any known bugs in there? (ATI Graphics ULTRA) I'm running the same Maelstrom on X3.2, S3 server with no problems. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
elf-xlib - correction - elf-x11r6lib
It's the elf-x11r6lib I'm looking for not the elf-xlib as I stated in this posting. I searched the pkgs list from the Debian web site using elf as the keyword and nothing. I looked up a few of the pkgs that keep telling me they require it and they don't show it in the web site search either. Anyone got a clue about this? Rick Jones wrote: > Can anybody point me to the elf-xlib package? > > I assume this is the cause of constant segmentation faults since updating > my hamm install last night. If not let me know if you have an answer. It > only seems to effect starting X programs using rxvt. Starting them from > the window managers menus works fine. > > L8R, > > --Rick > > Unsolicited commercial/propaganda email subject to legal action. Under US > Code Title 47, Sec.227(a)(2)(B), Sec.227(b)(1)(C), and Sec.227(b)(3)(C), a > State may impose a fine of NOT LESS than $500 per message. Read the full > text of Title 47 Sec 227 at http://www.law.cornell.edu/uscode/47/227.html > > -- > TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to > [EMAIL PROTECTED] . > Trouble? e-mail to [EMAIL PROTECTED] . -- L8R, --Rick Unsolicited commercial/propaganda email subject to legal action. Under US Code Title 47, Sec.227(a)(2)(B), Sec.227(b)(1)(C), and Sec.227(b)(3)(C), a State may impose a fine of NOT LESS than $500 per message. Read the full text of Title 47 Sec 227 at http://www.law.cornell.edu/uscode/47/227.html -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Automount filesystems?
On Sun, 14 Sep 1997, Michael Legart wrote: > Hi! > > This might be a stupid question, but how do I automount partitons at > startup? This is done from the file /etc/fstab, which is read at bootup. 'man fstab' will help show you the options, here is mine as an example: -BEGIN # /etc/fstab: static file system information. # # /dev/sda1 / ext2defaults0 1 /dev/sdc1 /home ext2defaults,usrquota,nosuid 0 1 /dev/sdd1 /optext2defaults0 1 proc/proc procdefaults0 0 -END Dennis -- dpk <[EMAIL PROTECTED]>, Systems/Network | work: 353.4844 Division of Enginnering Computing Services | page: 222.5875 -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Automount filesystems?
Make sure it's in your /etc/fstab file. That should do it. Michael Legart wrote: > Hi! > > This might be a stupid question, but how do I automount partitons at > startup? > Regards, > > [EMAIL PROTECTED] > > NEW icq uin -> 2565176 > -- > > -- > TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to > [EMAIL PROTECTED] . > Trouble? e-mail to [EMAIL PROTECTED] . -- L8R, --Rick Unsolicited commercial/propaganda email subject to legal action. Under US Code Title 47, Sec.227(a)(2)(B), Sec.227(b)(1)(C), and Sec.227(b)(3)(C), a State may impose a fine of NOT LESS than $500 per message. Read the full text of Title 47 Sec 227 at http://www.law.cornell.edu/uscode/47/227.html -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Debian + PC with multi RS... port -> n x (text dumb t
Nicola Bernardell writes: > I think nobody would think about replicating data on each of the 386's! Don't. Have them build an LRU cache. Query the server first: if it responds use its data and update the cache. If the server doesn't respond, use the cache. > I mean, what scares me is all that ethernet running here and there, it > sounds more critical than a serial line (short or with a couple modems at > worst for the longest paths). So use serial lines. TCP/IP neither knows nor cares whether you are using ethernet or ppp. Or, use a bunch of ethernets, with one or a few 386's on each. -- John HaslerThis posting is in the public domain. [EMAIL PROTECTED] Do with it what you will. Dancing Horse Hill Make money from it if you can; I don't mind. Elmwood, Wisconsin Do not send email advertisements to this address. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Debian ppp server how-to?
On Sep 12, [EMAIL PROTECTED] wrote > On Fri, 12 Sep 1997, dada wrote: > > > Is there any how-to to setup an ppp server under Debian? > > > > I need detailled information becouse I'm newie :-) and I want set up one > > ppp server at my home. > > > > Regards. > Depending how many users you want to server try checking out > Portslave at http://homepage.cistron.nl/~miquels/radius/ I found it to be > an excellent program and fairly self-documenting. We're using it as a > temp solution until PRI prices drop here in BC Canada and we order our > PM3's. As some folks here know, I have a fairly complete page for either mgetty or portslave setup. http://www.buoy.com/isp Tim -- >< >> Tim Sailer (at home) >< Coastal Internet, Inc. << >> Network and Systems Operations >< PO Box 671 << >> http://www.buoy.com >< Ridge, NY 11961 << >> [EMAIL PROTECTED]/[EMAIL PROTECTED] >< (516) 476-3031 << >< -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
X segmentation faults
I had written earlier that I've been getting seg faults when trying to run programs from rxvt since updating hamm last night and that window manager programs ran fine but that isn't the case. I have found that Image magik seg faults from the menu. Since I just got re-subscribed to the list I'll ask again if anybody has a fix for this? It might be associated with a elf-xlib6g pkg that is required but not in the hamm pkg files but I'm not sure. I will be looking for it, but if you can point me to it and/or give me an answer for this seg fault thing, I'd appreciate it. -- L8R, --Rick Unsolicited commercial/propaganda email subject to legal action. Under US Code Title 47, Sec.227(a)(2)(B), Sec.227(b)(1)(C), and Sec.227(b)(3)(C), a State may impose a fine of NOT LESS than $500 per message. Read the full text of Title 47 Sec 227 at http://www.law.cornell.edu/uscode/47/227.html -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
locales
Trying to make lftp work, I'd downloaded the version in hamm. This called for a new lic5 which caused the removal on damn near everything. Included in that was the locales package. I've restored almost everything, with the exception of the locales package which depends on libc5 being removed. I've tried to dpkg --force it down and a variety of other things, but nothing seems to work and every time I use perl (which is often) it shows irritating messages about the 'missing' locales package. Can anyone recommend how to proceed? BTW, if your lftp package is balky, edit the /etc/lftp.config file setting #set sync-mode off set ftp:passive-mode on and resist like the plague any impulse to mess with libc* -- - Ralph Winslow [EMAIL PROTECTED] The IQ of the group is that of the member whose IQ is lowest divided by the number of members. -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
swap file
hi, i want to install debian and i want to know if it's possible to share the same partition for swap file of win95 and linux. if it's possible, how to do this??? Thanks Benoit Joly email: [EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Debian + PC with multi RS... port -> n x (text dumb t
Yes, that's not a bad point, surviving machines in case of a crash... provided the software on the 386's is designed not to necessarily send everything immediately to the main dbase... ... but also PROVIDED there is no need to consult the main dbase, which is much likely necessary if you have to translate a barcode into a price + description to print + what else, or even before doing the sell maybe just to look for something the customer wants and see if it is available before walking some hundred meters looking for it... I think nobody would think about replicating data on each of the 386's! Each one of our registers has a enough information in its own private database so that it can run without any problems. The only functionality that is lost is automatic credit card authorization and house charge accounts, in which case we can call the cards in manually and hand write house charges up. Having for sure surviving machines... would we have them in the end? I mean, what scares me is all that ethernet running here and there, it sounds more critical than a serial line (short or with a couple modems at worst for the longest paths). What happens if it is the ethernet connection that falls? (By the way, do _your_ 386's boot via ethernet or do they have Linux on their own hard disk?) Isn't it much a weaker point than only having to take care of one (or a few) Debian box(es) with "strong" software? (What geometrical configuration have you ethernet points, a bus?) Our 386's run dos and boot from the hard drive. The ethernet in the store is one big loop. There is a single repeater that runs over fiber optic cable to a remote register in another building. What ports are these devices connected to? These all connect through device, I don't know exactly what it is, that is itself connected to a serial port. A. Paul -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .