Re: [techtalk] Building ADSL - LAN
you could check your /etc/rc.d/rc.inet1 file On Fri, 8 Oct 1999, Just This Girl wrote: > Date: Fri, 08 Oct 1999 02:58:03 -0500 > From: Just This Girl <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: [techtalk] Building ADSL - LAN > > First off, I would like to thank everyone who wrote back with their > advice and reading suggestions. > > However, I am still having the following problem. > > I have gotten to the Internet through my ADSL modem from my Windows98 > partition. > What follows is the route PRINT from the command prompt while running > Windows98: > > Network Address Netmask Gateway Address Interface > 0.0.0.0 0.0.0.0 xxx.yyy.zzz.246 xxx.yyy.zzz.242 > 127.0.0.0 255.0.0.0 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.240 255.255.255.248 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > xxx.yyy.zzz.242 255.255.255.255 127.0.0.1 127.0.0.1 > xxx.yyy.zzz.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 224.0.0.0 224.0.0.0 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > 255.255.255.255 255.255.255.255 xxx.yyy.zzz.242 xxx.yyy.zzz.242 > > TCP/IP on Windows98 is set up as follows: > Gateway: xxx.yyy.zzz.242 > IP Addr: xxx.yyy.zzz.242 > Netmask: 255.255.255.248 > > The ADSL modem is configured with: > Gateway: xxx.yyy.zzz.246 > IP Addr: xxx.yyy.zzz.241 > Netmask: 255.255.255.248 > > The ADSL modem is an Alcatel 1000. The NIC above is a 3COM EtherLink III > 3c509B. I have done the set-up, disabled PNP, and all those goodies. The > addresses referenced with xxx.yyy.zzz.### are public IP addresses, not > private. > > What I am having problems with is duplicating the successful Windows98 > routing under the Linux partition, the partition I -really- want to run > full-time. > > However, when I ifconfig eth0 (the NIC under Linux) using this: > > ifconfig eth0 xxx.yyy.zzz.242 > > it automatically inserts this into the route table: > > Kernel IP routing table > Destination Gateway Genmask Flags Metric RefUse > Iface > xxx.yyy.zzz.240 0.0.0.0 255.255.255.248 U 0 00 > eth0 > > Note the gateway. I want xxx.yyy.zzz.242 as the gateway, NOT 0.0.0.0, > but it will not let me delete this route to readd it. This is the error > I get: > > bash# route del -net xxx.yyy.zzz.240 > SIOCDELRT: Invalid argument > > What I -think- I should be typing to get the routing displayed in > Windows98 is: > > route add default gw xxx.yyy.zzz.246 > route add -net xxx.yyy.zzz.240 gw xxx.yyy.zzz.242 netmask > 255.255.255.248 > route add xxx.yyy.zzz.242 gw localhost > route add xxx.yyy.zzz.255 gw xxx.yyy.zzz.242 > route add -net 224.0.0.0 gw xxx.yyy.zzz.242 netmask 224.0.0.0 > route add 255.255.255.255 gw xxx.yyy.zzz.242 > > However, Linux complains and moans about the last two entries. > > Do I have an old version of route? My version is: > > bash# route -V > net-tools 1.52 > route 1.96 (1999-01-01) > > I would appreciate any input on what I am doing wrong here. > > -- > O.--. Give me some Slack! > o. |o_o | > U==l_/ | Just This Girl >// \ \[EMAIL PROTECTED] > (| | ) http://home1.gte.net/archmage > /\_ _/`\ > \__)-(___/ Spam >> /dev/null > > > [EMAIL PROTECTED] http://www.linuxchix.org > [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] request(<-was) Terminals/screen
i think alt+right or left arrow keys can be used to scroll past 24 consoles On Tue, 12 Oct 1999, Erin Clarke wrote: > Date: Tue, 12 Oct 1999 09:22:51 -0400 > From: Erin Clarke <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: [techtalk] request(<-was) Terminals/screen > > Vinnie Surmonde wrote: > > On Mon, 11 Oct 1999, Wendt,Andrew wrote: > > > > > You may already know this, but you can use the right alt key to get twelve more > > > terminals. (Right-alt-f1 is terminal 13, etc...) > > > > point, but that's only 24 > > > > (I will say that the major use of X for me is to keep my 40 billion [okay, > > closer to 30-40 depending on what I'm up to and how long the machine has > > been up ;) ] windows sorted :) ) > > Though it may not be conducive to your sense of order, Vinnie [=^J, I'm > quite fond of using 'screen' to expand the number of terminal sessions I > have in use, though I've yet to have 40 (in any combination of terminal > and screen sessions) open at once! I prefer fewer actual windows open > (or no windows but fewer Alt+F# terminals), yet each one has several > screen sessions running (^A+N|P to scroll through screens is easier to > type than Alt+F#). > > Erin 8) > > -- > Erin Clarke <[EMAIL PROTECTED]> > Web Networks Systems Administration > http://community.web.net > > > [EMAIL PROTECTED] http://www.linuxchix.org > [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Is there a Kill -8, too?
On Tue, 12 Oct 1999, Amanda Knox wrote: > Just This Girl wrote: > > > Did you try 'kill pid' or 'kill -9 pid'? 'kill -9' should bring down > > anything. > > Simple question (I hope): > > Why is it '-9' exactly? Are there different kill levels or something? What if > I typed 'Kill -1'? Just curious, and I doubt I would have the know-how to > find that exact answer in the man pages ;) teep:~$ kill -l 1) SIGHUP 2) SIGINT 3) SIGQUIT 4) SIGILL 5) SIGTRAP 6) SIGIOT 7) SIGBUS 8) SIGFPE 9) SIGKILL 10) SIGUSR1 11) SIGSEGV 12) SIGUSR2 13) SIGPIPE 14) SIGALRM 15) SIGTERM 17) SIGCHLD 18) SIGCONT 19) SIGSTOP 20) SIGTSTP 21) SIGTTIN 22) SIGTTOU 23) SIGURG 24) SIGXCPU 25) SIGXFSZ 26) SIGVTALRM 27) SIGPROF 28) SIGWINCH29) SIGIO 30) SIGPWR > > Take care, > Amanda (who should probably start calling herself Amanda K. now, since > there's another Amanda on the list *smile*) [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] PS2 Mouse and RH6.1 - almost solved
looks like /etc/rc.d/inet.d/gpm calls /etc/sysconfig/mouse to determine the mouse type On Fri, 15 Oct 1999, Michelle Leonard wrote: > Date: Fri, 15 Oct 1999 08:08:00 -0700 (PDT) > From: Michelle Leonard <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > To: [EMAIL PROTECTED] > Subject: Re: [techtalk] PS2 Mouse and RH6.1 - almost solved > > Thanks Kir! > > Mouse was misbehaving in both console and X > > The ps command returns > gpm -t imps > which is not right, since I switched to a generic ps2 > mouse. So after reviewing gpm manpage, ran > killall gpm > gpm -t ps2 > Now mouse works in both console and X (Yay!) > > My question now, is where do you specify the gpm > options at boottime, instead of having to run > manually... > > I see there is a /etc/rc.d/init.d/gpm, > but I can't figure out where to set the options for > it. > > A fresh install on my home machine with a logitech ps2 > mouse worked fine - so I'm assuming the MS mouse is > the problem, even with gpm set to "gpm -t imps" > > Michelle > > __ > Do You Yahoo!? > Bid and sell for free at http://auctions.yahoo.com > > > [EMAIL PROTECTED] http://www.linuxchix.org > [EMAIL PROTECTED] http://www.linuxchix.org
[techtalk] [Fwd: SECURITY: [RHSA-1999:043] New wu-ftpd packages available] (fwd)
-- Forwarded message -- Date: Thu, 21 Oct 1999 18:08:38 -0600 From: Mike Jensen <[EMAIL PROTECTED]> To: LOSURS Members <[EMAIL PROTECTED]> Subject: [Fwd: SECURITY: [RHSA-1999:043] New wu-ftpd packages available] If you are running wu-ftp from a RedHat 6.1 install, there is a major security hole! See below for details... - Red Hat, Inc. Security Advisory Synopsis: Security problems in WU-FTPD Advisory ID:RHSA-1999:043-01 Issue date: 1999-10-21 Updated on: Keywords: wu-ftp security remote exploit Cross references: - 1. Topic: Various computer security groups have reported security problems in the WU-FTPD daemon, the FTP server shipped with all versions of Red Hat Linux. 2. Problem description: Three vulnerabilities have been identified in WU-FTPD and other ftp daemons based on the WU-FTPD source code. Vulnerability #1: MAPPING_CHDIR Buffer Overflow Vulnerability #2: Message File Buffer Overflow Remote and local intruders may be able exploit these vulnerabilities to execute arbitrary code as the user running the ftpd daemon, usually root. Vulnerability #3: SITE NEWER Consumes Memory Remote and local intruders who can connect to the FTP server can cause the server to consume excessive amounts of memory, preventing normal system operation. If intruders can create files on the system, they may be able exploit this vulnerability to execute arbitrary code as the user running the ftpd daemon, usually root. 3. Bug IDs fixed (http://developer.redhat.com/bugzilla for more info): N/A 4. Relevant releases/architectures: Red Hat Linux 4.2 for i386, alpha and sparc Red Hat Linux 5.2 for i386, alpha and sparc Red Hat Linux 6.x for i386, alpha and sparc 5. Obsoleted by: 6. Conflicts with: 7. RPMs required: Red Hat Linux 4.2 - Intel: ftp://updates.redhat.com//4.2/i386/wu-ftpd-2.6.0-0.4.2.i386.rpm Alpha: ftp://updates.redhat.com//4.2/alpha/wu-ftpd-2.6.0-0.4.2.alpha.rpm Sparc: ftp://updates.redhat.com//4.2/sparc/wu-ftpd-2.6.0-0.4.2.sparc.rpm Source packages: ftp://updates.redhat.com//4.2/SRPMS/wu-ftpd-2.6.0-0.4.2.src.rpm Red Hat Linux 5.2 - Intel: ftp://updates.redhat.com//5.2/i386/wu-ftpd-2.6.0-0.5.x.i386.rpm Alpha: ftp://updates.redhat.com//5.2/alpha/wu-ftpd-2.6.0-0.5.x.alpha.rpm Sparc: ftp://updates.redhat.com//5.2/sparc/wu-ftpd-2.6.0-0.5.x.sparc.rpm Source packages: ftp://updates.redhat.com//5.2/SRPMS/wu-ftpd-2.6.0-0.5.x.src.rpm Red Hat Linux 6.x - Intel: ftp://updates.redhat.com//6.0/i386/wu-ftpd-2.6.0-1.i386.rpm Alpha: ftp://updates.redhat.com//6.0/alpha/wu-ftpd-2.6.0-1.alpha.rpm Sparc: ftp://updates.redhat.com//6.0/sparc/wu-ftpd-2.6.0-1.sparc.rpm Source packages: ftp://updates.redhat.com//6.0/SRPMS/wu-ftpd-2.6.0-1.src.rpm 8. Solution: For each RPM for your particular architecture, run: rpm -Uvh where filename is the name of the RPM. 9. Verification: MD5 sum Package Name -- c6e1e63399ce8497b6ff7c9945954690 i386/wu-ftpd-2.6.0-0.4.2.i386.rpm 05c278b6507fbac3a8be434adeed alpha/wu-ftpd-2.6.0-0.4.2.alpha.rpm 0ecd4ff150450607ce4b69982419ef07 sparc/wu-ftpd-2.6.0-0.4.2.sparc.rpm acb4144d477075480fd89112112658a9 SRPMS/wu-ftpd-2.6.0-0.4.2.src.rpm 13349a3192515d85c06dc873344a10bd i386/wu-ftpd-2.6.0-0.5.x.i386.rpm c6e97b13e6924d96f40cf4da8e8d217b alpha/wu-ftpd-2.6.0-0.5.x.alpha.rpm 35a32345c364e216e7437b1485c95160 sparc/wu-ftpd-2.6.0-0.5.x.sparc.rpm b9bdb8ca91e296e07344e1c1915078dd SRPMS/wu-ftpd-2.6.0-0.5.x.src.rpm dcd5d04df11849007aa3c4fb398cfbfb i386/wu-ftpd-2.6.0-1.i386.rpm a0b3a1a0dcfbdfd1443d0aecd960e907 alpha/wu-ftpd-2.6.0-1.alpha.rpm 7511f1f96b3044207cbe11d34f75ff7a sparc/wu-ftpd-2.6.0-1.sparc.rpm 7e30ea42e82908752b943621580f6f1c SRPMS/wu-ftpd-2.6.0-1.src.rpm These packages are GPG signed by Red Hat, Inc. for security. Our key is available at: http://www.redhat.com/corp/contact.html You can verify each package with the following command: rpm --checksig If you only wish to verify that each package has not been corrupted or tampered with, examine only the md5sum with the following command: rpm --checksig --nogpg 10. References: CERT Advisory CA-99-13 Multiple Vulnerabilities in WU-FTPD http://www.cert.org AUSCERT Advisory AA-1999.01 ftp://www.auscert.org.au/security/advisory/AA-1999.01.wu-ftpd.mapping_chdir.vul AUSCERT Advisory AA-1999.02 ftp://www.auscert.org.au/security/advisory/AA-1999.02.multi.wu-ftpd.vuls Cristian -- -- Cristian Gafton -- [EMAIL PROTECTED] -- Red Hat, Inc. ~~
Re: [techtalk] Okay so I recompiled my kernel under RedHat 6.1
if you need scsi emulation this option should be set SCSI emulation support CONFIG_BLK_DEV_IDESCSI This will provide SCSI host adapter emulation for IDE ATAPI devices, and will allow you to use a SCSI device driver instead of a native ATAPI driver. ... that was from the Configure.help in the kernel source documentation directory i'm guessing too that you'd need this option set CONFIG_BLK_DEV_SD If you want to use a SCSI hard disk or the SCSI or parallel port version of the IOMEGA ZIP drive under Linux, say Y and read the SCSI-HOWTO, the Disk-HOWTO and the Multi-Disk-HOWTO, available via FTP (user: anonymous) in ftp://metalab.unc.edu/pub/Linux/docs/HOWTO. This is NOT for SCSI CDROMs. and probably this too CONFIG_CHR_DEV_SG If you want to use SCSI scanners, synthesizers or CD-writers or just about anything having "SCSI" in its name other than hard disks, CDROMs or tapes, say Y here. These won't be supported by the kernel directly, so you need some additional software which knows how to talk to these devices using the SCSI protocol. ... all that stuff is in /usr/src/linux/Documentation/Configure.help hope that is helpful On Tue, 26 Oct 1999, Norma wrote: > > I thought I did that. I'll have to recompile again to make sure. There's so > many settings that I guess I missed it. > > Norma > *Insert witty message here!* > - Original Message - > From: Stephan Zaniolo <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, October 26, 1999 7:34 PM > Subject: Re: [techtalk] Okay so I recompiled my kernel under RedHat 6.1 > > > > I once heard that you need to activate SCSI emulation in the kernel (I > > didn't see that in dmesg printout) to use the parallel port Zip drive. (I > > have a SCSI Zip drive, so I didn't have to deal with this). Caitlyn, is > > this is accurate or not? > > > > Good luck, :^) > > Stephan > > > > At 03:41 PM 10/26/99 -0700, you wrote: > > >> OK, you need to add the following line to your /etc/conf.modules file: > > >> > > >> alias block-major-8 ppa > > > > > >Okay for some reason this did not work. I have below listed the contents > of > > >my /etc/conf.modules file and also the bootup messages. > > > > > >alias sound es1370 > > >alias parport_lowlevel parport_pc > > >alias block-major-8 ppa > > > > > > > > >(after typing dmesg) > > > > > >Linux version 2.2.12-20 ([EMAIL PROTECTED]) (gcc version > > >egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)) #1 Mon Sep 27 10:25:54 > EDT > > >1999 > > >Detected 233229442 Hz processor. > > >Console: colour VGA+ 80x25 > > >Calibrating delay loop... 465.31 BogoMIPS > > >Memory: 62780k/65536k available (1008k kernel code, 412k reserved, 992k > > >data, 64k init) > > >DENTRY hash table entries: 262144 (order: 9, 2097152 bytes) > > >Buffer-cache hash table entries: 65536 (order: 6, 262144 bytes) > > >Page-cache hash table entries: 16384 (order: 4, 65536 bytes) > > >VFS: Diskquotas version dquot_6.4.0 initialized > > >CPU: Intel Pentium MMX stepping 03 > > >Checking 386/387 coupling... OK, FPU using exception 16 error reporting. > > >Checking 'hlt' instruction... OK. > > >Intel Pentium with F0 0F bug - workaround enabled. > > >POSIX conformance testing by UNIFIX > > >PCI: PCI BIOS revision 2.10 entry at 0xfafb0 > > >PCI: Using configuration type 1 > > >PCI: Probing PCI hardware > > >PCI: 00:38 [1106/0586]: Work around ISA DMA hangs (00) > > >Activating ISA DMA hang workarounds. > > >Linux NET4.0 for Linux 2.2 > > >Based upon Swansea University Computer Society NET3.039 > > >NET4: Unix domain sockets 1.0 for Linux NET4.0. > > >NET4: Linux TCP/IP 1.0 for NET4.0 > > >IP Protocols: ICMP, UDP, TCP, IGMP > > >TCP: Hash tables configured (ehash 65536 bhash 65536) > > >Initializing RT netlink socket > > >Starting kswapd v 1.5 > > >Detected PS/2 Mouse Port. > > >Serial driver version 4.27 with MANY_PORTS MULTIPORT SHARE_IRQ enabled > > >ttyS00 at 0x03f8 (irq = 4) is a 16550A > > >ttyS01 at 0x02f8 (irq = 3) is a 16550A > > >ttyS02 at 0x03e8 (irq = 4) is a 16550A > > >pty: 256 Unix98 ptys configured > > >apm: BIOS version 1.2 Flags 0x07 (Driver version 1.9) > > >Real Time Clock Driver v1.09 > > >RAM disk driver initialized: 16 RAM disks of 4096K size > > >VP_IDE: IDE controller on PCI bus 00 dev 39 > > >VP_IDE: not 100% native mode: will probe irqs later > > >ide0: BM-DMA at 0x6000-0x6007, BIOS settings: hda:pio, hdb:pio > > >ide1: BM-DMA at 0x6008-0x600f, BIOS settings: hdc:pio, hdd:pio > > >hda: SAMSUNG SV0844A, ATA DISK drive > > >hdb: ICD-3600AT, ATAPI CDROM drive > > >hdc: CR-4802TE, ATAPI CDROM drive > > >ide2: ports already in use, skipping probe > > >ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 > > >ide1 at 0x170-0x177,0x376 on irq 15 > > >hda: SAMSUNG SV0844A, 8063MB w/220kB Cache, CHS=1027/255/63 > > >hdb: ATAPI 24X CD-ROM drive, 120kB Cache > > >Uniform CDROM driver Revision: 2.56 > > >hdc: ATAPI 8X CD-ROM CD-R/RW drive, 2048kB Cache > > >Floppy drive(s): fd0 is 1.44M > > >FDC 0 is an 8272A > > >md
[techtalk] fyi Fwd: [RHSA-1999:041-03] File access problems in lpr/lpd
>From [EMAIL PROTECTED] Wed Oct 27 19:08:25 1999 Date: Mon, 25 Oct 1999 15:03:16 -0600 From: Scott Wunsch <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Fwd: [RHSA-1999:041-03] File access problems in lpr/lpd This is starting to get amusing. Red Hat has released three new versions of the lpr/lpd package in the last week! -- Take care, Scott \\'unsch [ Part 1.2: "Included Message" ] Date: Mon, 25 Oct 1999 11:48:26 -0400 From: Bill Nottingham <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [RHSA-1999:041-03] File access problems in lpr/lpd - Red Hat, Inc. Security Advisory Synopsis: File access problems in lpr/lpd Advisory ID:RHSA-1999:041-03 Issue date: 1999-10-17 Updated on: 1999-10-25 Keywords: lpr lpd permissions Cross references: - Revision History: 1999-10-19: New packages, to fix a remote printing bug. Add note about local printing fix for Red Hat Linux 6.1. 1999-10-25: New packages, to fix problems introduced by the security fix. 1. Topic: There are potential problems with file access checking in the lpr and lpd programs. These could allow users to potentially print files they do not have access to. Also, there are bugs in remote printing in the lpd that shipped with Red Hat Linux 6.1. 2. Bug IDs fixed (http://developer.redhat.com/bugzilla for more info): 5122 5540 5697 5832 5835 5903 5949 3. Relevant releases/architectures: Red Hat Linux 4.x, all architectures Red Hat Linux 5.x, all architectures Red Hat Linux 6.x, all architectures 4. Obsoleted by: 5. Conflicts with: 6. RPMs required: Red Hat Linux 4.x: Intel: ftp://updates.redhat.com/4.2/i386/lpr-0.46-0.4.2.i386.rpm Alpha: ftp://updates.redhat.com/4.2/alpha/lpr-0.46-0.4.2.alpha.rpm Sparc: ftp://updates.redhat.com/4.2/sparc/lpr-0.46-0.4.2.sparc.rpm Source packages: ftp://updates.redhat.com/4.2/SRPMS/lpr-0.46-0.4.2.src.rpm Red Hat Linux 5.x: Intel: ftp://updates.redhat.com/5.2/i386/lpr-0.46-0.5.2.i386.rpm Alpha: ftp://updates.redhat.com/5.2/alpha/lpr-0.46-0.5.2.alpha.rpm Sparc: ftp://updates.redhat.com/5.2/sparc/lpr-0.46-0.5.2.sparc.rpm Source packages: ftp://updates.redhat.com/5.2/SRPMS/lpr-0.46-0.5.2.src.rpm Red Hat Linux 6.x: Intel: ftp://updates.redhat.com/6.1/i386/lpr-0.46-1.i386.rpm Alpha: ftp://updates.redhat.com/6.0/alpha/lpr-0.46-1.alpha.rpm Sparc: ftp://updates.redhat.com/6.0/sparc/lpr-0.46-1.sparc.rpm Source packages: ftp://updates.redhat.com/6.1/SRPMS/lpr-0.46-1.src.rpm 7. Problem description: There are two problems in the lpr and lpd programs. By exploiting a race between the access check and the actual file opening, it is potentially possible to have lpr read a file as root that the user does not have access to. Also, the lpd program would blindly open queue files as root; by use of the '-s' flag to lpr, it was possible to have lpd print files that the user could not access. Thanks go to Tymm Twillman for pointing out these vulnerabilities. Also, various bugs in remote printing that were present in the lpd released with Red Hat Linux 6.1 have been fixed. (1999-10-19) Another problem with remote printing was fixed in lpr-0.44. If you are experiencing problems with remote printing in the previous errata update, it is recommended that you upgrade. There are no known security issues with the previous errata packages. If you are experiencing problems with local printing in Red Hat Linux 6.1, make sure that you have: alias parport_lowlevel parport_pc in your /etc/conf.modules file. (1999-10-25) The original security patch broke some aspects of printing. New errata RPMs are available which should fix the problem. 8. Solution: For each RPM for your particular architecture, run: rpm -Uvh where filename is the name of the RPM. 9. Verification: MD5 sum Package Name -- 3ac16788d027447679cf6bf5e6483574 lpr-0.46-0.4.2.src.rpm 78b9f5c8538d382c24fbe303c1e05858 lpr-0.46-0.4.2.alpha.rpm daffbab440b7dbabd233904a75e3bb82 lpr-0.46-0.4.2.i386.rpm def0c894a62875e809b5693c09393931 lpr-0.46-0.4.2.sparc.rpm 91635732bdf133068543f18887b4eb9d lpr-0.46-0.5.2.src.rpm cd5575ca2c159f30beff74070962 lpr-0.46-0.5.2.alpha.rpm 756d445db7803b0db3a5f8b19dca0702 lpr-0.46-0.5.2.i386.rpm c064b331ac84d67714fe46913b3669c5 lpr-0.46-0.5.2.sparc.rpm 03c996550636cbe4ca0a9fc853f969b6 lpr-0.46-1.src.rpm 30089f82ecf8e8a89565c5bba361697d lpr-0.46-1.alpha.rpm a01c0b9278c2c9ffb4bb6450703fc124 lpr-0.46-1.i386.rpm 41a1ef221a15446ed46b54092d7c14ca lpr-0.46-1.sparc.rpm These packages are signed with GnuPG by Red Hat Inc. for security. Our key is available at: http://www.redhat.com/corp/contact.html Y
Re: [techtalk] a really dumb "make" question
On Tue, 16 Nov 1999, Nils Philippsen wrote: > > On Mon, 15 Nov 1999, Julie Meloni wrote: > > > (slack 4.0) > > Sorry, but I can't remember how to check for specific packages with > Slackware. the list of installed packages is in /var/log/packages there's a program called pkgtool that you can use to look at what files are in a package, it's not to friendly to my braille display though > > Nils > -- > Nils Philippsen / Vogelsangstrasse 115 / D-70197 Stuttgart / +49.711.6599405 > [EMAIL PROTECTED] / [EMAIL PROTECTED] / [EMAIL PROTECTED] >The use of COBOL cripples the mind; its teaching should, therefore, be >regarded as a criminal offence. -- Edsger W. Dijkstra > > > > [EMAIL PROTECTED] http://www.linuxchix.org > [EMAIL PROTECTED] http://www.linuxchix.org
[techtalk] fyi [oclug] Syslog resolution (fwd)
-- Forwarded message -- Hi, The new syslog package from Red Hat's update site fixes the problem. I think it uses datagram sockets instead of stream sockets. So Red Hat 6.1 users should go to: http://www.redhat.com/support/errata/RHSA1999055-01.html and get the new sysklogd RPM -- David F. Skoll | Roaring Penguin Software Inc. http://www.roaringpenguin.com | Linux and UNIX Specialists [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Speaking of wierd computer problems
On Tue, 25 Jan 2000, Sunnanvind wrote: > > On Tue, 25 Jan 2000, Brian Engle wrote: > > > text file. Oh, if it matters, the box is running RH 6.1, just wondering if > > anyone else had seen this problem before or knew off the top of their head > > how to fix it. > > It's about the repeat rate for the keyboard - I know that you can set it in > windows, and I think in kde and gnome, but in the console...? use kbdrate as root my favourite is kbdrate -r 30.00 -d 250 (-r=rate -d=delay in miloseconds) or maybe the keyboard is just plugged in almost all the way [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] Su slow?
is there anything unusual in /var/log/messages when you su? for example: in mine this line shows up: Feb 5 13:45:56 teep su[13164]: + tty8 lyta-root On Fri, 4 Feb 2000, Sunnanvind wrote: > > On Thu, 03 Feb 2000, [EMAIL PROTECTED] wrote: > > > When I hit the enter key after typing in the root password, it takes > > > like a minute or so. That's much slower than before. > > > > Did you recently add any new stuff to root's .profile or anything? > > > > Does the same thing happen if you su as root? If so, try this: > > strace -r -o strace.out su > > > > Then look at the first column in strace.out, which is the time since the last > > system call, and keep an eye out for a big number. The thing right before > > that should be the culprit. > > The strace.out was a couple of pages, the biggest number by far was > > 0.000406 read(5, "", 256) = 0 > 20.108991 --- SIGCHLD (Child exited) --- > > 20.108991 the big number... > > read(5, "", 256) doesn't sound like something comprehensible... should I paste > more of the strace.out? > Sunnan > -- > http://home.swipnet.se/sunnanvind > I am you. > > > [EMAIL PROTECTED] http://www.linuxchix.org > [EMAIL PROTECTED] http://www.linuxchix.org
Re: [techtalk] cak-handed mice: resolved!
if you want to change the mouse button sequence in console also you can give gpm the -B option :) from man gpm : -B sequence Set the button sequence. `123' is the normal sequence, `321' can be used by left-handed people, and `132' can be useful with two-button mice (espe- cially within Emacs). All the button permutations are allowable. On Sat, 1 Apr 2000, Chris J/#6 wrote: > > > It's a case of RTFM... :) Found the answer in the FAQ...it says to plonk: > > xmodmap -e "pointer = 3 2 1" > > in .xsession/.xinitrc (or type at a prompt)...and yep, it works :) > > woohoo :) > > Chris... > > > -- > @}-,'-- Chris Johnson --'-{@ > / "(it is) crucial that we learn the difference / [EMAIL PROTECTED] \ >/ between Sex and Gender. Therein lies the key / \ > / to our freedom" -- LB / www.nccnet.co.uk/~sixie \ > ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk
Re: [techtalk] laptops
i've an ibm thinkpad 380ed dual booting slackware and dos it was no problem setting up (i don't use X though so can't say about that part) except that ibm shipped it with the serial port disabled and i need that for my braille display On Mon, 15 May 2000, [iso-8859-1] Caitlyn Máire Maritn wrote: > > Hi, Helena, and everyone else, > > Another good choice with Linux is the IBM Thinkpad 600E, which is certified > to run with Linux by IBM. Everything should work, and a number of companies > are selling them with Red Hat Linux preinstalled. We use them here at work > (though not with *nix), and they are extremely reliable. > > I've seen ads claiming the Thinkpad 1440 (I series) is also Linux > compatible, but I haven't seen an IBM certification for it so I'm not sure > that there isn't a Win-something in it. I also haven't seen it offered > preinstalled with Linux yet. > > I hope this helps. > > All the best, > Caity ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk
Re: [techtalk] ISDN and Linux
On Thu, 10 Aug 2000, Rachel Andrew wrote: > > Hi > > I've tried to do this before unsuccessfully but I thought I'd have another > go at it. > > At the moment my network at home consists of two pooters. A doze box called > George and a Linux box called Dot. ATM i am connecting to the net > throughGeorge because I have a USB TA (I know there is slowly getting to be > USB support for Linux but i dont have USB on Dot). I bought an ASUSCOM > ISDNlink card for Dot as it is supposed to be supported by Redhat, and its > in the list in isdn-config (redhat 6.2) is this option in your kernel config /usr/src/linux/.config CONFIG_HISAX_ASUSCOM this is what /usr/src/linux/Documentation/Configure.help says about that option: HiSax Support for ASUSCOM cards CONFIG_HISAX_ASUSCOM This enables HiSax support for the AsusCom and their OEM versions passive ISDN cards. See Documentation/isdn/README.HiSax on how to configure it using the different cards, a different D-channel protocol, or non-standard IRQ/port settings. > > I would really like to be able to connect to the net from Linux and set it > up as a firewall, but so far all attempts to get the card even recognised > as being there seem to have failed. > > Any ideas? > > Rachel > > > > ___ > techtalk mailing list > [EMAIL PROTECTED] > http://www.linux.org.uk/mailman/listinfo/techtalk > ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk
Re: [techtalk] Does there exist...?
On Wed, 27 Sep 2000, Olivier Tharan wrote: > > Le 27 septembre 2000, Samuel Lavenz écrivait : > > There is a niftycool program called 'screen' that allows me to detatch a > > My question is this: Does there exist such a beast for X apps? > > You sure could take a look at VNC : http://www.uk.research.att.com/vnc/ > > Just launch a VNC server on a machine you are sure will not reboot in a > certain amount of time, and connect to it from home, work, everywhere > with your VNC client. > > You can even use SSH to allow for privacy and/or compression. > > olive > -- > System going down at 1:45 for disk crashing. or maybe start an X session inside of screen (can't say i've tried that though, just a guess) ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk
Re: [techtalk] Desperate Plea for CDROM mounting help!!
have you tried as root: mount -t iso9660 /dev/scd0 /mnt/cdrom Summer On Sat, 18 Nov 2000, S. Stubbs wrote: > > > > > Hey, it has been a while now and I have not been able to mount my > CDROM drive. I have mdk 7.2. I have one cdrom drive, it is recognized > correctly in the hardware. > It is IOMEGA Zip650 cd writer drive which is an internal IDE writer drive. > PLEASE SOMEONE HELP, this is driving me nuts. I went to a Linux User > Group install fest today, and they spent 6 hours trying to get it to work. They > tried all kinds of stuff, even not using the supermount, and it still did not > work. > I am able toburn a CD just fine, I burned 2 CDs today, but I cannot mount the > CDrom drive just to look at the contents of a CD. I still think in my mind that > it > has something to do with permissions and links to CDrom. > Here is my fstab right now, of course the LUG tried all KINDS of config here, > but since none of it worked I finally have it as this: > > /dev/hdb5 / ext2 defaults 11 > > /dev/hdb1 /boot ext 2 defaults 12 > > none /dev/pts devpts mode=0620 0 0 > > /mnt/cdrom /mnt/cdrom supermount user, fs=ISO9660, dev=/dev/cdrom 0 0 > > /mnt/floppy /mnt/floppy supermount user, fs=vfat,dev=/dev/fd0 0 0 > > /dev/hda1 /mnt/windows vfat user,exec,unmask=0 0 0 > > none /proc proc defaults 0 0 > > /dev/hda2 swap swap defaults 0 > I have also gone to the Mandrake website and followed the instructions there > for getting a CDburner to work. I can provide more info if necessary. So what > now??? > Could someone reply with a personal troubleshoot session on this?? > PLEASE, this is the ONLY PROBLEM I have now, I did get my Samba > working like a champ, and can see both my other windows boxes. > IF i don't get this fixed I will have to GIVE UP ON LINUX, since I will not be > able to view a CDROM!!! I will not be able to update any rpms from the > install CD!!! PLEASE this is a DESPERATE PLEA for help. > Susan > ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk
Re: [techtalk] CDs won't play
are your sound modules loaded? do you have an iso image mounted when you try to play an audio cd? anything show up in /var/log/debug or /var/log/error_log On Mon, 1 Jan 2001, Darren wrote: > > Hi all, > > As of, well, an hour or so ago, my system will no longer play audio CDs. > This is something that I do rather infrequently, so the last time I played > a CD was a while ago, but it worked perfectly fine at the time. Now, > nothing. It's a Red Hat 6.1 box, running Gnome 1.2. > > Using the CD player app, or the panel applet, the system seems to > recognize the CD and be playing it, but I get no audio. The first time > this happened, I ran cdp, which returned the message "/dev/cdrom: wrong > medium type", and quit. I also get the following lines in dmesg: > > kernel: cdrom: pid 10420 must open device 0_NONBLOCK! > kernel: cdrom: open failed > > If I run cdp before I start gnome, I get the normal interface screen and > again it appears to be playing the CD, but there's no audio. If I try to > run cdp after starting Gnome, I'll get the "wrong medium type" message, > although I will sometimes get the regular screen (this is happening now, > for some reason). > > I haven't been able to find any web pages where this specific problem is > mentioned, so if anybody can help me out, I'd appreciate it. Thanks! > > Darren > > > -- > [EMAIL PROTECTED] http://www.osadchuk.org > "Funny thing about outside: it's just like TV." > > > > ___ > techtalk mailing list > [EMAIL PROTECTED] > http://www.linux.org.uk/mailman/listinfo/techtalk > ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk
Re: [techtalk] sound card
On Mon, 5 Mar 2001, Elizabeth Wright wrote: > > i've got instructions on how to configure the sound system. i log in as > root, stick in the first cd that came with the book, and start an x-terminal > session. i type sndconfig and get their little blue magic window. it has > the correct sound card detected (i've got a Creative SoundBlaster Live card) > but when it runs the test, I dont hear anything. i've tried locating the > card manually by looking in the /proc directory (which didnt do anything if > i remember right) and also by looking through the boot log /var/log/dmesg>, which detected the correct card, but once again running the > test I dont hear a thing. I dont get any warning beeps or bells ever > (althogh I'm not sure that I ever should... since i've never seen/heard > what's supposed to happen when i do various things). try as root typing : lsmod you are looking for a module called emu10k1 if it is there maybe the volume is get very low by default, you probably have a mixer program installed though i've no idea what gui mixers there are if lsmod doesn't show the emu10k1 module modprobe emu10k1 > > > whee!! i'm finally playing with linux! this is so fun! i've got scads to > learn, and no time! but i love learning things. ok yeah i think that's it. > sorry it's so long... anybody have ideas for me? :) > > thanks a million, > bets > > > ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk
Re: [techtalk] Linux Mandrake 7.0
On Thu, Feb 15, 2001 at 01:35:20AM -0500, coldfire wrote: > richie, > how about lynx? open up a terminal emulator (Eterm, xterm, etc) and see > if 'lynx freshmeat.net' will bring up their page. narrow it down to see > if it's a netscape specific problem or what. actually just typing lynx will work by default it has a startup page if you want to go to freshmeat.net when you start lynx you will have to type lynx http://www.freshmeat.net > > > > On Wed, 14 Feb 2001, Puff Devil wrote: > > > Greetings Everyone, > > I have reinstalled and reinstalled Mandrake 7.0. > > I cannot get the lovely OS to realize that it is on > > the internet. I sign on to my Earthlink account and > > launch Netscape and Netscape says, "umm you aren't on > > the internet...and instantly returns a DNS server > > error." Also I have reinstalled to get my CD-ROM > > drive to function correctly but absolutly no success. > > I dbl-click on the CD-ROM drive on the desktop even as > > root and it says it has been dismissed (oh and yes > > there was a CD in the drive). The cd-rom is a HP > > CD-Writer 7500, Linux detects is great in Lothar, but > > when I try to read the cd, it says umm no. I tryed > > changing the premissions for the drive and everything > > that I could think of. Oh and is there any good ATAPI > > CD-Writer software for Linux? There is some that came > > on the Extras CD of Mandrake, but I can't get the > > CD-ROM to work. > > > > Thanks, > >Richie > > > > __ > > Do You Yahoo!? > > Get personalized email addresses from Yahoo! Mail - only $35 > > a year! http://personal.mail.yahoo.com/ > > > > ___ > > techtalk mailing list > > [EMAIL PROTECTED] > > http://www.linux.org.uk/mailman/listinfo/techtalk > > > > > ___ > techtalk mailing list > [EMAIL PROTECTED] > http://www.linux.org.uk/mailman/listinfo/techtalk ___ techtalk mailing list [EMAIL PROTECTED] http://www.linux.org.uk/mailman/listinfo/techtalk