Re: Linux and PS/2
Phil-- Thanks for the note. Indeed I did try your suggestion and received the error message: "can't locate module psaux" If indeed the PS/2 port is not enabled how do I go about doing this? Also, how does one determine which kernel of Debian I'm using? When the computer boots up it gives me SYSLINUX 1.42. Was I hoodwinked into buying an old distribution by less than honest computer software resellers. (OK, so I mostly bought it for the book but it also made it easy to get the program to install. I don't have easy access to a CD burner to get the image files off the net and onto my unnetworked desktop running Linux). Thanks again, Brendan - Original Message - From: Phil Brutsche <[EMAIL PROTECTED]> To: Brendan O'Brien <[EMAIL PROTECTED]> Cc: ; Sent: Monday, February 21, 2000 6:44 PM Subject: Re: Linux and PS/2 > A long time ago, in a galaxy far, far way, someone said... > > > Hello-- > > > > > > I would appreciate some help with the installation of my mouse. I'm > > trying to get my old 100MHz pentium up and running with Linux alone > > and I can't seem to get the mouse installed correctly. I know it > > still works because I had originally installed another version of > > Linux (Corel) and it worked fine with KDE. I went to the Debian > > distribution because Corel was just too big to run efficiently on my > > rickety old machine. Running xf86config and picking the PS/2 mouse > > just isn't doing the trick. > > > > Interestingly enough, I happened to read the XF86Config file before > > removing the Corel version and it didn't appear to be much, if any, > > different from the Debian version installed now. > > > > Please help me, won't you? My X has fallen and it can't get up! > > The obvious question is: do you have PS/2 mouse support enabled in your > kernel? If you're using the 2.0 kernel, it's likely that you aren't > loading the driver for the PS/2 mouse. Try doing a 'modprobe psaux' > before you start X11. > > -- > -- > Phil Brutsche [EMAIL PROTECTED] > > "There are two things that are infinite; Human stupidity and the > universe. And I'm not sure about the universe." - Albert Einstein > > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null > >
Re: Linux and PS/2
A long time ago, in a galaxy far, far way, someone said... > Hello-- > > > I would appreciate some help with the installation of my mouse. I'm > trying to get my old 100MHz pentium up and running with Linux alone > and I can't seem to get the mouse installed correctly. I know it > still works because I had originally installed another version of > Linux (Corel) and it worked fine with KDE. I went to the Debian > distribution because Corel was just too big to run efficiently on my > rickety old machine. Running xf86config and picking the PS/2 mouse > just isn't doing the trick. > > Interestingly enough, I happened to read the XF86Config file before > removing the Corel version and it didn't appear to be much, if any, > different from the Debian version installed now. > > Please help me, won't you? My X has fallen and it can't get up! The obvious question is: do you have PS/2 mouse support enabled in your kernel? If you're using the 2.0 kernel, it's likely that you aren't loading the driver for the PS/2 mouse. Try doing a 'modprobe psaux' before you start X11. -- -- Phil Brutsche [EMAIL PROTECTED] "There are two things that are infinite; Human stupidity and the universe. And I'm not sure about the universe." - Albert Einstein
Re: dhcpcd on slink
A long time ago, in a galaxy far, far way, someone said... > Well, I'm getting there . . . > > I upgraded to 2.2 (frozen), and that's all working. > > My NIC is working, and if I set the IPADDR, NETMASK, etc., etc., manually, > networking works just fine. > > But dhcpcd still refuses to pick the information up from MediaOne; or, its > request is not getting out. Syslog reports that it's timing out waiting for > a response. [I presume MediaOne is doing the right thing because a Windows > system set to use DHCP gets its IP set quite nicely by MediaOne.] After > dhcpcd fails, ifconfig reveals, of course, no setting for eth0. Since this is a cable modem, dhcpcd isn't sending information that the DHCP server needs - the local cable modem providers do the same. Unfortunately, it's not possible to configure dhcpcd to send that information. That's why I like to use dhclient. > I've tried a lot of things: rebooting the cable modem; using the -h (host) > and -I (client setting, to specify the MAC address I used on the network > card for the computer originally connected to MediaOne) in dhcpcd . . . > > I'm using dhcpcd, because when trying to install dhclient, I get: > > socket: Protocol not available - make sure CONFIG_PACKET and CONFIG_FILTER > are defined in your kernel configuration. > > Haven't compiled a new kernel because it seems that dhcpcd should work . . . The above error is probably why dhcpcd and dhclient don't work - I recieved the same error myself when I started using DHCP. Try 'modprobe af_packet' before using dhcpcd or dhclient. If this is a kernel you compiled yourself, then your kernel is missing functionality. You need to say 'Y' to 'Socket Filtering' and either 'M' or 'Y' to 'Packet Socket' under 'Networking Options' in the kernel configuration system, and to the necessary steps to run the new kernel (unfortunately, 'Socket Filtering' isn't available as a module like 'Packet Socket' is). -- -- Phil Brutsche [EMAIL PROTECTED] "There are two things that are infinite; Human stupidity and the universe. And I'm not sure about the universe." - Albert Einstein
ER: ipmasq+DNS+sendmail
Hi all ! (Sorry, it will last long !) Please, help me ASAP ! I have to get our system out to the Internet and I want to build a secure system. So, I've read the HOWTOs and the brilliant TrinityOS, but so many thing focuses on RH or RH based systems. Ok, what we have: we have poor dialup connection over analog lines (it soon will be ISDN, I hope), one e-mail address at the ISP (we don't have registreted domain, we collect the letters into one box and redirect the mail to the workers by the subject line, because our clients identify themseves by the subject line) and 13 machines. I have understood the importance of the IP masquarading and created a firewall script, from the TrinityOS. And I installed the ipmasq. What to do with the other defs and rules ? Simly delete them and put only the firewall.rul into the /etc/masq/rules ? I also want that the firewall get initialised with the correct external IP address. I get the ppp file under /etc/ipmasq bur will it pass the correct IP to the script ? I use the scripts above to identify the ext IP and such things: EXTIP=`/sbin/ifconfig | grep -A 4 $EXTIF | awk '/inet/ { print $2 } ' | sed -e s/addr://` EXTBROAD=`/sbin/ifconfig | grep -A 1 $EXTIF | awk '/Bcast/ { print $3 }' | sed -e s/Bcast://` EXTGW=`/sbin/route -n | grep -A 4 UG | awk '{ print $2}'` I also want to use sendmail and deliver the local mails immediately and send the outbound mail to a queue to deliver later. I only want to relay for local domain (192.168.1) and because I want to set up a DNS on LAN (let say, it will be office.org) I have to transform the address to [EMAIL PROTECTED] from [EMAIL PROTECTED] Is it possible ? So, that was all. Sorry to the gurus, I'm just a begginner and if you tell me an URL where I can get Debian specific info about building a system like this I will get there and read all the RTFMs. Please cc xour answers to my private e-mail address, because I get the list in digest mode (and I just subscribed). Million thanks, Ago "If you love somebody set them free..." Sting is GPL fan :-)
Linux and PS/2
Mike-- Sorry, being the newbie I am I have little or no understanding of the difficulties I face as yet. Anyway, what I can tell you right now is that I do not have a mouse at all when Linux boots into a command line environment. In addition, when I try "startx", the program runs and I have an X icon, but the mouse will not move it. As far as error messages are concerned, I don't seem to see any either before or after X boots. Thanks again, Brendan
tpqic02 question
Does anyone know how I can prevent the kernel from doing this device search? I can't seem to find where to turn it off in the kernel configuration. I think this tpqic02 search is somehow preventing my sound card from functioning (even if it's not, I don't have a qic-02 tape drive, so I'd rather it didn't do the search). IRQ 5, DMA 1 is where my sound card is in isapnp.conf. Feb 21 20:05:12 debian kernel: tpqic02: IRQ 5, DMA 1, IO 0x300, IFC Wangtek, $Revision: 1.10 $, $Date: 1997/01/26 07:13:20 $ Feb 21 20:05:12 debian kernel: tpqic02: Settings: IRQ 5, DMA 1, IO 0x300, IFC Wangtek Feb 21 20:05:12 debian kernel: tpqic02: reset failed! Feb 21 20:05:12 debian kernel: tpqic02: No drive detected -- releasing IO/IRQ/DMA. Thanks for any input. Steve
Re: dhcpcd on slink
Still at it . . . I'm trying to get dhcp going on an old 486 with a 3com 3c515 NIC. With potato, dhclient runs . . . but dhcp still can't get a response. This is MediaOne in Cambridge, Mass. . . . Does anyone in Cambridge know if dhcp service requires a hostname or a registered MAC address? Here are some details: Debian: 2.2.12 (frozen) network card works fine on a LAN *manual* configuration of ip address and gateway works fine with the cable modem! But dhclient still times out. I'm at wit's end. I don't have (I sure don't think I have) any active ipchains configuration. How can I figure out if I've inadvertently disallowed traffic on ports 67/68? Thanks for any info/suggestions . . . John N.
Re: creating a bootdisk
I'd prefer a method based on 'dd' and 'cp'. It is possible? Thanks Attila > On Mon, Feb 21, 2000 at 21:57, Attila Csosz wrote: >> How could I create a new bootdisk like created the debian installer after >> the >> installation? I think it is not enough 'dd if=zImage of=/dev/fd0' only >> because I see some syslinux related files. > The easiest way to do this is to boot your rescue floppy (you _do_ have > a rescue floppy, don't you?), pretend as if you're going to do a fresh > install, but _do not_ partition the hard disk. Instead, accept the > alternate selections and mount the partitions you already have. > When all your partitions are mounted the installer will offer to make > you a boot floppy, and will write the kernel you're currently using to > it. > Luck, > Pann > -- > geek by nature, Linux by choice L I N U X .~. > The Choice /V\ > http://www.ourmanpann.com/linux/ of a GNU /( )\ > Generation ^^-^^
Re: Linux and PS/2
On Mon, Feb 21, 2000 at 05:59:45PM -0500, Brendan O'Brien wrote: > Hello-- > > > I would appreciate some help with the installation of my mouse. I'm trying > to get my old 100MHz pentium up and running with Linux alone and I can't seem > to get the mouse installed correctly. I know it still works because I had > originally installed another version of Linux (Corel) and it worked fine with > KDE. I went to the Debian distribution because Corel was just too big to run > efficiently on my rickety old machine. Running xf86config and picking the > PS/2 mouse just isn't doing the trick. > > Interestingly enough, I happened to read the XF86Config file before removing > the Corel version and it didn't appear to be much, if any, different from the > Debian version installed now. > > Please help me, won't you? My X has fallen and it can't get up! Love to. But first you have to help us. What's the mouse do? What doesn't it do? What exactly are you doing? Are you getting any error messages? If so, what exactly are they? We need more information in order to help. -- Mike Werner KA8YSD | "Where do you want to go today?" ICQ# 12934898 | "As far from Redmond as possible!" '91 GS500E| Morgantown WV | Only dead fish go with the flow.
Re: Squid on Slink a little sick
In article <[EMAIL PROTECTED]>, Damon Muller <[EMAIL PROTECTED]> wrote: >We have a slink system that has been running quite nicely for some time, >which acts as a pretty important server (for us, at least). One of the >functions that it serves is as a proxy server, running squid (the >current slink version, whatever that is). An old and reasonably buggy version. Upgrade to the squid in potato, you'll be much happier. Simply edit /etc/apt/sources.list to point to potato instead of slink, the do an "apt-get update" followed by "apt-get install libc6 squid" (you might want to add libc6-dev to that if you have that installed as well) and you're running a mostly-slink-with-potato-parts system. I've done that on several production servers and it works well. Mike. -- "quote me on this one - overgaan op Exchange is een wijs besluit" -- MarcoH. -- The From: and Reply-To: addresses are internal news2mail gateway addresses. Reply to the list or to [EMAIL PROTECTED] (Miquel van Smoorenburg)
Re: Is Debian going to run on my machine?
On Mon, Feb 21, 2000 at 11:32:43AM -0800, kmself@ix.netcom.com wrote: > On Mon, Feb 21, 2000 at 03:28:34AM -0800, Rong Shen wrote: > > > (4) an AOpen FM56-ITU modem > > Probably not, you got suckered here > (http://www.linuxdoc.org/HOWTO/Hardware-HOWTO-30.html) > Note that a decent 56k external modem isn't too expensive. The Linux/Modem Compatibility Knowledge Base is a better place to check for modems. According to that, an AOpen FM56-ITU modem will work with Linux. The Linux/Modem Compatibility Knowledge Base is at http://www.o2.net/~gromitkc/winmodem.html -- finger for GPG public key. pgpHhUC9i3iit.pgp Description: PGP signature
Linux and PS/2
Hello-- I would appreciate some help with the installation of my mouse. I'm trying to get my old 100MHz pentium up and running with Linux alone and I can't seem to get the mouse installed correctly. I know it still works because I had originally installed another version of Linux (Corel) and it worked fine with KDE. I went to the Debian distribution because Corel was just too big to run efficiently on my rickety old machine. Running xf86config and picking the PS/2 mouse just isn't doing the trick. Interestingly enough, I happened to read the XF86Config file before removing the Corel version and it didn't appear to be much, if any, different from the Debian version installed now. Please help me, won't you? My X has fallen and it can't get up! Brendan
Re: Sound Blaster Live
Does any of the Live driver versions support SMP? Haven't installed mine yet due to this. Colin Marquardt writes: > * Mars Moon <[EMAIL PROTECTED]> writes: > > > So is a Sound Blaser Live driver available to the Linux users?? > > One option is a current ALSA: http://www.alsa-project.org > > Or OSS: go to http://opensource.creative.com, grab a snapshot there > and follow the instructions in the docs/README* file. The only thing > to do different is the `make' part: use > >make INCLUDE=/usr/include/ > > so that it can find your kernel headers (you will need to have that > package installed). > > HTH, > Colin
Re: List
On Mon, Feb 21, 2000 at 06:41:19PM +, Timothy Bedding wrote: > Is there a general linux discussion list which is > active? > (Not usenet) There's a bunch of different Linux lists hosted on vger.rutgers.edu To get a list of them send the word lists in the body of a message to [EMAIL PROTECTED] and you will get a list of the lists hosted there. One of them is linux-newbies It's a list that is not distro specific, and as the name implies is aimed primarily towards newbies, but there are advanced topics discussed as well. It's a fairly high volume list, averaging roughly the same as the debian-user list. -- Mike Werner KA8YSD | "Where do you want to go today?" ICQ# 12934898 | "As far from Redmond as possible!" '91 GS500E| Morgantown WV | Only dead fish go with the flow.
Re: Rationale behind the groups "dip" and "dialout"
John Hasler wrote: > No. Each user would have his own chatscript in /etc/chatscripts and his > own provider file in /etc/ppp/peers, with names like > /etc/chatscripts/viktors-ppp and /etc/ppp/peers/viktors-ppp. The > administrator would set these up using pppconfig in the normal fashion and > then chown the chatscripts appropriately. Viktor could then start up ppp > with 'pon viktors-ppp' but when John ran the same command it would fail, > and only Viktor and root would be able to read > /etc/chatscripts/viktors-ppp. I just realized, that Debian has the PPP infrastructure right in place (dialing scripts etc.). Up until now, I only read the through the PPP-HOWTO and followed the procedures outlined there to create the scripts myself. Ah, well. pppconfig is not mentioned in the HOWTO, so it's obviously something Debian-specific. (Looks like the slink instalation utility, too.) I gave it a try, and it works pretty well, although I had to modify the created chatscript, since I have to start the PPP connection on the server by issueing a command. John Hasler wrote: > It might also be possible to use chat's new environment variable and/or > include capability to get a password from another file. The expample dialing script in the PPP-HOWTO uses a environment variable for the password, so it should be possible to enter something like `read PASSWORD' in the script and have the chatscript use that. Haven't tried it though. MfG Viktor -- Viktor Rosenfeld E-Mail: mailto:[EMAIL PROTECTED] HertzSCHLAG:http://www.informatik.hu-berlin.de/~rosenfel/hs/
Re: Is Debian going to run on my machine?
Hi, The HP 722 is a winprinter (I have the misfortune to have one also), but it is partially supported (black and white printing only) on the potato distribution (currently frozen). Good Luck! Bruce Mobarry > Date: Mon, 21 Feb 2000 03:28:34 -0800 (PST) > From: Rong Shen <[EMAIL PROTECTED]> > To: debian-user@lists.debian.org > Subject: Is Debian going to run on my machine? > Message-ID: <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=us-ascii > MIME-Version: 1.0 > > Hi: > > I am thinking of doing away with Windows completely > and using Debian. But Microsoft has suckered me into > buying a bunch of hardware that I am reluctant to > throw away. Specifically, I have > > (1) a printer (HP color deskjet 722C), > (2) a CD burner (Memorex CDRW-1622 rewritable), > (7) an ATAPI 24x CR-ROM, > (3) a scanner (Microtek scanmaker v310), > (4) an AOpen FM56-ITU modem > (5) an SiS 5597/5598 display adapter (on motherboard) > (6) a CMI 8330 Audio adapter (on motherboard) > > I checked the Linux web site. It does not say it > will or will not support these hardware. I posted a > message on USENet and some suggest I try. But I don't > want the trouble of finding out that it doesn't work. > So I am turning to the official authority now. I just > wonder if you could tell me whether Debian will run on > my stuff. > > Thanks. > > galactic_war
Re: enabling suexec with debian apache [solved]
> If there is an exploitable cgi, then there is web access to all of the > owning user's files. If it is not run via the suEXEC mechanism, then the > permissions are that of www-data, which are close to nothing. except that suexec effectively chroot's the the virtuals document root ... so all of the users mail etc files in their home directory should be safe. > If suEXEC is enabled, then a lot more requirements need to be met for > running a cgi. This usually leads to a lot of users complaining about > this and that is not working and why, when it runs on another similar > machine? the eternal trade off between security and convenience. it's your choice. adam.
What *is* Gnome/KDE?
Hi, I have been playing around with Gnome and KDE and I do not understand what they really are! They both seem to be a bar with some docked stuff and a program launcher. This is of course seen from a users side of things. I really hope it is means more to developers! I know Gnome and KDE are called "environments", but they still only look like...errrm...a tweaked MS task bar and program launcher. I am now back to running only a window manager. I have all my software available a right-click away and no bar is taking up space anywhere. Am I missing the whole point or something? If Gnome and KDE is something more I would like to know to be able to improve my desktop experience. If not I will let the emperor continue showing off his new clothes ;) Bear with me, I am only a user... :) -- Regards, Christian Dysthe E-mail: [EMAIL PROTECTED] Web: http://oddbird.dyndns.org ICQ 3945810 eFax/Voicemail: 1-208-248-9634 Powered by Debian GNU/Linux "Clones are people two"
Re: enabling suexec with debian apache [solved]
> > It is not only what they write, but what they set the permissions to, as > > well. I know, this is also what they should learn. But with > > exploitable setuid cgi-s, and one can never be sure that his code is > > unexploitable, not only his cgi datafiles, but all files can be accessed > > and modified as well. the fact that a script is suid doesn't meet diddley. that a script is suid to a *privledged* user (eg. root) is important. the suexec binary itself is suidroot ... but it gets executed by apache itself, and all it does is make sure user cgi/ssi's get executed as the correct user that is associated with that virtual domain or ~user account. suexec doesn't cause users cgi/ssi's to run suid, it is suid itself. > So create a second account, usercgi for the people who need to use cgis > and don't have the time/knowledge to secure them. this doesn't really solve the problem. it means that users cgi's can't screw with the server's stuff but it doesn't stop them from messing with each others stuff. > I still don't see where having all the users share one uid for their > cgis is better than having them use their own id - at least the damage > is limited to one user rather than all of them. it depends on your environment. if you are running a server where if a users data gets trashed because of another users malicious or incompetant cgi it's just their bad luck ... then suexec (or something like cgiwrap) doesn't really do you much good. however if you are an isp and one of your customers data gets trashed it doesn't really matter why it happened or who's fault it is, it's going to reflect poorly on you. so protecting customers from their own and each others stupidity is part of the job. you are correct though, having cgi/ssi's run as a differnt user for each domain/~user account is better then all user cgi/ssi's running as one unprivledged account. given how easy suexec/cgiwrap are to setup as well there is no real benifit (other then laziness) in not doing this. adam.
Re: your mail
On Mon, Feb 21, 2000 at 03:51:08PM -0500, TaoX { Brian Hinson; } wrote: > Hey, I just downloaded a cd-image of potato... but it has a .raw extension > instead of .iso, does anyone know if a .raw cd-image is equiv to a .iso? I > would simply like to rename the .raw to .iso and burn it? Extensions, schmextensions. If you've goot loopback (FS) support, try mounting it: mount -t iso9660 -o loopback image-file mount-point ...if it's a true disk image, this will work. If it isn't, it won't. -- Karsten M. Self (kmself@ix.netcom.com) What part of "Gestalt" don't you understand? SAS for Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html Mailing list: "subscribe sas-linux" to mailto:[EMAIL PROTECTED]
Re: Sound Blaser Live
Hi Mark, have a look at http://opensource.creative.com/. Download the file emu10k1*.tar.gz and extract it. Before compiling check the Makefile, I had to modify the INCLUDEDIR to point to the include dir of the sources. You also have to compile your kernel source to support modules and sound support as a module. You don't need to select other sound modules. Reply if you have any questions. Bye, Sven Mars Moon wrote: > Hi People, > > I was looking for a Sound Blaser Live sound driver for linux. > > So far the search is fuitless, I am only able to find Sound Blaser 64awe etc. > > So is a Sound Blaser Live driver available to the Linux users?? > > Yours, > Mark > > > Get your free full featured email @ > http://www.apexmail.com > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null -- ++ | Please reply only to [EMAIL PROTECTED] | | Other email addresses may no longer be valid...| ++
Re: creating a bootdisk
On Mon, Feb 21, 2000 at 21:57, Attila Csosz wrote: > How could I create a new bootdisk like created the debian installer after the > installation? I think it is not enough 'dd if=zImage of=/dev/fd0' only > because I see some syslinux related files. The easiest way to do this is to boot your rescue floppy (you _do_ have a rescue floppy, don't you?), pretend as if you're going to do a fresh install, but _do not_ partition the hard disk. Instead, accept the alternate selections and mount the partitions you already have. When all your partitions are mounted the installer will offer to make you a boot floppy, and will write the kernel you're currently using to it. Luck, Pann -- geek by nature, Linux by choice L I N U X .~. The Choice /V\ http://www.ourmanpann.com/linux/ of a GNU /( )\ Generation ^^-^^
Re: enabling suexec with debian apache [solved]
Robert Varga wrote: > > This is a good thing, IMO. Once students realize that it's their files > > and quota that are going to be eaten up by runaway cgis, in my > > experience they start paying more attention to what they're writing. > > > > It is not only what they write, but what they set the permissions to, as > well. I know, this is also what they should learn. But with > exploitable setuid cgi-s, and one can never be sure that his code is > unexploitable, not only his cgi datafiles, but all files can be accessed > and modified as well. So create a second account, usercgi for the people who need to use cgis and don't have the time/knowledge to secure them. I still don't see where having all the users share one uid for their cgis is better than having them use their own id - at least the damage is limited to one user rather than all of them. jpb -- Joe Block <[EMAIL PROTECTED]> CREOL System Administrator Social graces are the packet headers of everyday life.
glibc problem?
Hi all, I've got the latest versions of libc6 and libc6-dev, but when I try to compile (for example) gnome-napster, I get quite a load of error messages like this: /usr/include/bits/string2.h: In function `__strpbrk_c3': /usr/include/bits/string2.h:1004: `size_t' undeclared (first use in this function) /usr/include/bits/string2.h:1004: parse error before `__s' /usr/include/bits/string2.h: In function `__strsep_g': /usr/include/bits/string2.h:1171: `size_t' undeclared (first use in this function) /usr/include/bits/string2.h:1171: parse error before `const' /usr/include/bits/string2.h:1171: parse error before `const' /usr/include/bits/string2.h:1171: parse error before `)' /usr/include/bits/string2.h:1171: void value not ignored as it ought to be I can prevent these by typing the command that make sends to gcc but without -I/usr/include and everything compiles fine. Maybe something is installed badly, or I have an extra file somewhere? Please help, Chris Gray -- The reason that every major university maintains a department of mathematics is that it's cheaper than institutionalizing all those people.
Re: enabling suexec with debian apache [solved]
On Mon, 21 Feb 2000, Joe Block wrote: > Robert Varga wrote: > > If there is an exploitable cgi, then there is web access to all of the > > owning user's files. If it is not run via the suEXEC mechanism, then the > > permissions are that of www-data, which are close to nothing. > > Without using suexec or cgiwrap, how do you keep each user's cgis from > mucking about with the other user's cgi datafiles? And I certainly > don't want one of my student users' cgis able to mess with my log files, > which are also owned by www-data That IS a case when it is needed, and must be set by the admin to use suexec. > > > If suEXEC is enabled, then a lot more requirements need to be met for > > running a cgi. This usually leads to a lot of users complaining about this > > and that is not working and why, when it runs on another similar machine? > > This is a good thing, IMO. Once students realize that it's their files > and quota that are going to be eaten up by runaway cgis, in my > experience they start paying more attention to what they're writing. > It is not only what they write, but what they set the permissions to, as well. I know, this is also what they should learn. But with exploitable setuid cgi-s, and one can never be sure that his code is unexploitable, not only his cgi datafiles, but all files can be accessed and modified as well. Robert Varga
creating a bootdisk
How could I create a new bootdisk like created the debian installer after the installation? I think it is not enough 'dd if=zImage of=/dev/fd0' only because I see some syslinux related files. Thanks Attila -- -- - Mail: [EMAIL PROTECTED]; Debian 2.1 Linux / 2.2.13 / qmail - - Get my PGP key: gpg --keyserver keys.pgp.com --recv-key 0x2cc33acb -
Re: enabling suexec with debian apache [solved]
Robert Varga wrote: > If there is an exploitable cgi, then there is web access to all of the > owning user's files. If it is not run via the suEXEC mechanism, then the > permissions are that of www-data, which are close to nothing. Without using suexec or cgiwrap, how do you keep each user's cgis from mucking about with the other user's cgi datafiles? And I certainly don't want one of my student users' cgis able to mess with my log files, which are also owned by www-data > If suEXEC is enabled, then a lot more requirements need to be met for > running a cgi. This usually leads to a lot of users complaining about this > and that is not working and why, when it runs on another similar machine? This is a good thing, IMO. Once students realize that it's their files and quota that are going to be eaten up by runaway cgis, in my experience they start paying more attention to what they're writing. jpb -- Joe Block <[EMAIL PROTECTED]> CREOL System Administrator Social graces are the packet headers of everyday life.
[no subject]
Hey, I just downloaded a cd-image of potato... but it has a .raw extension instead of .iso, does anyone know if a .raw cd-image is equiv to a .iso? I would simply like to rename the .raw to .iso and burn it? Thanks -- www.muhri.net/TaoX [EMAIL PROTECTED] ICQ: '61511769' AOL IM: 'TaoX 0x1'
Re: Sawmill/Gnome raising windows
> From: Fish Smith <[EMAIL PROTECTED]> > ...--being "on top" may be inextricably > linked with being in focus, as it is in windows. That is not true. (A utility called TweakUI can change that setting in MS Windows.) Daniel -- Daniel Barclay [EMAIL PROTECTED] (Hmm. A little worrisome: http://www.junkbusters.com/cgi-bin/privacy http://www.anonymizer.com/snoop.cgi )
Re: Is Debian going to run on my machine?
On Mon, Feb 21, 2000 at 11:32:43AM -0800, kmself@ix.netcom.com wrote: > On Mon, Feb 21, 2000 at 03:28:34AM -0800, Rong Shen wrote: > > Hi: > > > > I am thinking of doing away with Windows completely > > and using Debian. But Microsoft has suckered me into > > buying a bunch of hardware that I am reluctant to > > throw away. Specifically, I have [...] > > (5) an SiS 5597/5598 display adapter (on motherboard) > > Yes, per several Deja posts from people using it. See also: http://www.xfree86.org/3.3.5/SiS2.html (Yes emphatically). Note: | 5. Troubleshooting | | The generic VGA driver doesn't work with 6326, so XF86Setup can't be | used for this card. Please use xf86config instead. http://www.xfree86.org/3.3.5/SiS5.html -- Karsten M. Self (kmself@ix.netcom.com) What part of "Gestalt" don't you understand? SAS for Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html Mailing list: "subscribe sas-linux" to mailto:[EMAIL PROTECTED]
Re: enabling suexec with debian apache [solved]
On Mon, 21 Feb 2000, Adam Shand wrote: > > > It is the way it is supposed to be. > > is there a something in the docs i missed explaining that this is what needs > to be done? it took me a very frustrating hour to figure this out. if not > it should be submitted as a documentation bug, right? > > > With suEXEC enabled, cgi-s run setuid-ed, which is always a risky thing, > > so it should be done on the administrator's explicit statement, hence > > the need for enabling suEXEC manually. > > well, they run suid'd to the user which is a whole lot less risky then > having them run as the user that the web server runs as. i agree that > having another suid root binary is always a bad thing but suexec is kinda > pointless with out it, and it's a major security boon. > > adam. > > If there is an exploitable cgi, then there is web access to all of the owning user's files. If it is not run via the suEXEC mechanism, then the permissions are that of www-data, which are close to nothing. If suEXEC is enabled, then a lot more requirements need to be met for running a cgi. This usually leads to a lot of users complaining about this and that is not working and why, when it runs on another similar machine? Robert Varga
Re: enabling suexec with debian apache [solved]
> It is the way it is supposed to be. is there a something in the docs i missed explaining that this is what needs to be done? it took me a very frustrating hour to figure this out. if not it should be submitted as a documentation bug, right? > With suEXEC enabled, cgi-s run setuid-ed, which is always a risky thing, > so it should be done on the administrator's explicit statement, hence > the need for enabling suEXEC manually. well, they run suid'd to the user which is a whole lot less risky then having them run as the user that the web server runs as. i agree that having another suid root binary is always a bad thing but suexec is kinda pointless with out it, and it's a major security boon. adam.
Re: mouse with gpm and X
On Mon, Feb 21, 2000 at 12:39:33PM +0100, Armin Wegner wrote : > I've to kill gpm with > gpm -k > before starting X or I can not use my ps2 mouse in X. > That's new in potato. Switching back to a console I don't have gpm then. > I'm not pleased with this. In /etc/gpm.conf modify repeat_type=raw and in /etc/X11/XF86Config in Section "Pointer" alter Device "/dev/gpmdata" kind regards, Markus -- Markus Fischer, http://josefine.ben.tuwien.ac.at/~mfischer/ EMail: [EMAIL PROTECTED] PGP Public Key: http://josefine.ben.tuwien.ac.at/~mfischer/C2272BD0.asc PGP Fingerprint: D3B0 DD4F E12B F911 3CE1 C2B5 D674 B445 C227 2BD0 - Free Software For A Free World - pgpR37ijrgSU4.pgp Description: PGP signature
Re: dhcpcd on slink
Well, I'm getting there . . . I upgraded to 2.2 (frozen), and that's all working. My NIC is working, and if I set the IPADDR, NETMASK, etc., etc., manually, networking works just fine. But dhcpcd still refuses to pick the information up from MediaOne; or, its request is not getting out. Syslog reports that it's timing out waiting for a response. [I presume MediaOne is doing the right thing because a Windows system set to use DHCP gets its IP set quite nicely by MediaOne.] After dhcpcd fails, ifconfig reveals, of course, no setting for eth0. I've tried a lot of things: rebooting the cable modem; using the -h (host) and -I (client setting, to specify the MAC address I used on the network card for the computer originally connected to MediaOne) in dhcpcd . . . I'm using dhcpcd, because when trying to install dhclient, I get: socket: Protocol not available - make sure CONFIG_PACKET and CONFIG_FILTER are defined in your kernel configuration. Haven't compiled a new kernel because it seems that dhcpcd should work . . . At 04:37 PM 2/20/2000 -0600, you wrote: A long time ago, in a galaxy far, far way, someone said... > Hi. I've been RTFM and the Debian e-mail archives for quite awhile, and I > can't get dhcpcd to work on slink (2.2.12). > > I'm trying to do dhcp to MediaOne in Cambridge, MA. > > When I run the daemon, I get the error: SIOCADDRT > > Any ideas? A dhcpcd compiled for a 2.0 kernel won't work with a 2.2 kernel - the programming interfaces changed for the better during the 2.1 development series, with the side effect of breaking binary compatibility. To get DHCP to work you need to do one of: * Stop using 2.2 kernels and keep using 2.0 kernels * Install the dhcpcd from potato * Compile one of the many DHCP clients available in source form youself. I like to use dhclient - that's the DHCP client included in ISC's DHCP server package. I have it mirrored (in source form) as http://tux.creighton.edu/~pbrutsch/dhcp-2.0.tar.gz > Is dhcpcd known to work on Debian? I'm trying to use version 0.70-5 It works as long as you use the right binary with the right kernel. Fortunately it doesn't look like the programming interfaces are going to change anytime soon - I've been using a dhclient compiled for 2.2 kernels with 2.3 kernels (the current development series) without a single glitch. -- -- Phil Brutsche [EMAIL PROTECTED] "There are two things that are infinite; Human stupidity and the universe. And I'm not sure about the universe." - Albert Einstein John G. Norman (http://people.ne.mediaone.net/jgnorman/)
Firewall default route
Hi all, I'm putting a firewall/proxy server in for a company on Wednesday that will have a fixed IP number 212.19.66.nn They also have a WAN with a default gateway 192.1.1.1 How do I set up the routes for that all internet traffic is routed thru the Debian firewall I'll install but all traffic to the 192.1.1.0 range goes via the other gateway? All help appreciated. Patrick
Re: glibc2.1 in chroot() in slink?
aphro wrote: > was thinking about this for a while, would it be possible to install > glibc2.1 in a chroot() enviornment in slink? has anyone tried > this? It's the standard way to get build-depends information, so it's pretty common. I do all my potato builds on a chroot potato on a slink system. I built mine up from a slink base tar file, and then updated it to potato: mkdir /tmp/debian cd /tmp/debian tar zxf /debian/dists/unstable/main/disks-i386/current/base2_2.tgz cp /etc/apt/sources.list etc/apt/ [edit it to potato] cp /etc/resolv.conf etc/ chroot `pwd` bin/sh apt-get update dpkg --purge lilo -- 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: 775-0546 6623'rd GNU/Linux user at the Counter - http://counter.li.org/
Re: Is Debian going to run on my machine?
On Mon, Feb 21, 2000 at 03:28:34AM -0800, Rong Shen wrote: > Hi: > > I am thinking of doing away with Windows completely > and using Debian. But Microsoft has suckered me into > buying a bunch of hardware that I am reluctant to > throw away. Specifically, I have Suggestions: Check the _Linux Hardware Compatibility HOWTO_ for your hardware or equivalent chipsets (http://www.linuxdoc.org/HOWTO/Hardware-HOWTO-13.html) RedHat maintains a seperate HW compatibility list: http://www.redhat.com/support/hardware/intel/60/rh6.0-hcl-i.ld.html Search DejaNews for kewords Linux + hardware identifier. This is sometimes the most productive route. I'd also recommend contacting the manufacturer directly and asking whether or not the device is supported under Linux, and requesting that either it be supported, or that support information be provided, if it isn't. > (1) a printer (HP color deskjet 722C), Possibly, though this may be a WinPrinter. http://www.linuxdoc.org/HOWTO/Hardware-HOWTO-30.html > (2) a CD burner (Memorex CDRW-1622 rewritable), Yes: http://www.linuxdoc.org/HOWTO/CD-Writing-HOWTO-1.html#ss1.5 > (7) an ATAPI 24x CR-ROM, Yes. ATAPI CDROMs are supported. > (3) a scanner (Microtek scanmaker v310), Probably: http://www.linuxdoc.org/HOWTO/Hardware-HOWTO-22.html > (4) an AOpen FM56-ITU modem Probably not, you got suckered here (http://www.linuxdoc.org/HOWTO/Hardware-HOWTO-30.html) Note that a decent 56k external modem isn't too expensive. > (5) an SiS 5597/5598 display adapter (on motherboard) Yes, per several Deja posts from people using it. > (6) a CMI 8330 Audio adapter (on motherboard) Looks like it. http://www.linuxdoc.org/HOWTO/Hardware-HOWTO-13.html > I checked the Linux web site. It does not say it > will or will not support these hardware. I posted a > message on USENet and some suggest I try. But I don't > want the trouble of finding out that it doesn't work. Unfortunately, this is still pretty much the ground that Linux users must tread over. If you can't stomach it, you might want to stick with your legacy OS for now. You can trial Linux pretty easily -- creating a 200-300 MB partition should be enough to install a basic system with X, sound, and peripheral support so you can find out what does and/or doesn't work. Several Linux distros support running in demo mode from the CD-ROM directly. You can also trial stuff with a UMSDOS (Linux over the DOS filesystem) so that you don't even have to repartition your system. Just delete the directory when you're done messing with it. > So I am turning to the official authority now. I just > wonder if you could tell me whether Debian will run on > my stuff. > > Thanks. > > galactic_war -- Karsten M. Self (kmself@ix.netcom.com) What part of "Gestalt" don't you understand? SAS for Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html Mailing list: "subscribe sas-linux" to mailto:[EMAIL PROTECTED]
IP MASQ
Hi, Is kernel 2.2.14 built with IP masquerade? or all the 2.2.xx kernel now have IP masquerade? I tried to rebuild the kernel 2.2.14 on the potato and I believe that I did not see any option at the options screen before building the kernel. TIA --- tcp
Re: enlightenment control-panel?
* Robert L. Harris | | I just nuked my RedHat box and installed Debian. Since I installed | debian | I've been re-installing things like Enlightenment. I can't seem to | find the enlightenment configuration tool though. I checked | enlightenment.org but no sign of it there. you don't state your Debian version, but assuming you're using potato, the following might be of interest: http://e.i-docs.org/efaq/efaq_16.1.php3#10 -- Q: "Is C an acronym?" A: "Yes, it stands for ``C''. It's another of those funky recursive acronyms." -- Peter Seebach, "The C Infrequently Asked Questions List"
Re: Dselect question - mirroring packages on new box
* Damon Muller | | Quoth Colin Watson, | > You'll want to look at 'dpkg --get-selections' on the old box, and | 'dpkg | > --set-selections' on the new one. | | I know this is a bit of a clueless newbie question (which I'm not | really). I've seen this advice quite a few times, and even tried it | once | or twice myself without much luck... | | What on earth are you supposed to do after --set-selections? dpkg --get-selections will write package database info to standard out. you will have to do dpkg --get-selections > nice_file on the old box, then copy `nice_file' to the new box (via scp, for instance) and do dpkg --set-selections < nice_file there. you can then run dselect or apt-get to your heart's content. -- Q: "Is C an acronym?" A: "Yes, it stands for ``C''. It's another of those funky recursive acronyms." -- Peter Seebach, "The C Infrequently Asked Questions List"
Re: List
On Mon, Feb 21, 2000 at 06:41:19PM +, Timothy Bedding wrote: > Is there a general linux discussion list which is > active? > (Not usenet) You might try a local or otherwise active Linux Users Group mailing list. For a list of groups: http://www2.linuxjournal.com/cgi-bin/frames.pl/glue/index.html -- Karsten M. Self (kmself@ix.netcom.com) What part of "Gestalt" don't you understand? SAS for Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html Mailing list: "subscribe sas-linux" to mailto:[EMAIL PROTECTED]
Re: Soundblaster AWE64
Hi Nils-Erik, the Tip using ALSA was great, now it works more or less. But two problems remain, perhaps someone can help me solving these: 1. I can't use programms like gmix anymore, even the volume-control in xmms doesn't work. Before you told me about ALSA, I got it to work with the normal kernel-modules, there the gmix and volume-control of xmms worked fine. 2. Somehow, my sound sounds ;-) a little bit tinny, not that quality I normally would expect. With some songs I have very strong fluctuations concerning the volume of music and voice, sometime the voice becomes that quiet that you can't hear it anymore. And the overall volume fluctuates also very much, strange? I thought about DMA or IRQ conflicts, but that doesn't seem to be the case (/proc/interrupts and /proc/dma) This was also the case the time before ALSA stepped into my life ;-) Does anybody have an idea?? -- Bye Mitch. --- / Michael Symalla(Uni-Dortmund Physik E5) \ / DESY HERA-B Bldg.66/1 office phone: 040/8998 4985 \ / Notkestr.85Fax.: 040/8998 4033 \ / D-22607 Hamburgprivate phone: 040/5000857 \ / PGP Key on keyservers or via mail: Subject: send pgp \ --- c:\winnt> secure_nt.exe Securing NT. Insert Linux boot disk to continue... pgpxWXk3BnI7h.pgp Description: PGP signature
List
Is there a general linux discussion list which is active? (Not usenet)
Re: Firewall Routing Question
Thank you very much for your reply. The answers to most of your questions were in the first email I sent. I tried to simplify it by leaving out details, but apparently the details were what you wanted to see. In any case, my current network topology is this: > [DSL]--[HUB]--[216.254.24.95] > \ \--[216.254.24.96] >[Firewall] > | > [HUB] > | >Internal LAN on [192.168.1.0/24] subnet > > Obviously this provides no firewalling for 216.254.24.9[56]! > It's not so bad, since the two 216.254.24.9[56] machines use VPN software which reject everything into their interface except for packets which are properly encrypted from the other side. This is not the way I would want it, but for the moment it is the way it is. I think I am going to look into the bridging solution. The aliasing solution was the obvious one, but the VPN software doesn't work at all through IP Masquerade, or at least that was what the MIS guys said. Thanks again.
Re: enabling suexec with debian apache [solved]
On Sun, 20 Feb 2000, Adam Shand wrote: > > > Here is a list of searches from the apache main site about suxec AND > > security: > > thanks but i just figured it out. all that needed to happed was to have the > suid bit set on the suexec binary. > > # chmod 4711 /usr/lib/apache/suexec > > the log file shows that it is now detecting the suexec binary, and when i do > a "apachectl configtest" i now get "Syntax OK". > > does anyone know, is this a bug or is this the way it's "supposed to > be". sorry for following up my own post. > It is the way it is supposed to be. With suEXEC enabled, cgi-s run setuid-ed, which is always a risky thing, so it should be done on the administrator's explicit statement, hence the need for enabling suEXEC manually. Robert Varga
oracle8i 8.1.5
[EMAIL PROTECTED]:/cdrom/install/linux$ ./runIns.sh Unable to initialize threads: cannot find class java/lang/Thread Could not create Java VM i have followed the redhat installation instructions from http://technet.oracle.com, which really aren't redhat-specific at all. has anybody else had this problem? advice gratefully appreciated. -vinny -- Vincent Murphy | [EMAIL PROTECTED] | (086) 8397405 Computer Science Undergraduate, University College Cork http://student.cs.ucc.ie/01/murphyv/
Re: Solved: Re: ghostscript errors? (gs-aladdin 5.50-8)
> The problem is related to the TrueType font definitions for gs. > > Invoking gs with no arguments produces an error message with the bad > gs.Fontmap file. > > The problem is line 564 of gs.Fontmap. There is some garbage data in > the Lucida Sans Typewriter Bold Oblique definition line. I've corrected > this; gs now runs without errors. Please note that Aladdin does not distribute any Fontmap that references the Lucida fonts. The only Ghostscript distributions for which we take any responsibility are those on our Web page at http://www.cs.wisc.edu/~ghost. -- L. Peter Deutsch | Aladdin Enterprises [EMAIL PROTECTED] | http://www.aladdin.com | 203 Santa Margarita Ave. +1-650-322-0103 (9-12 M-F) | fax +1-650-322-1734| Menlo Park, CA 94025 The future of software is at http://www.opensource.org
Re: perl says the year is 0100
John Davis writes: > I have the latest perl for slink,... Exactly what version of perl? > ...but perl reports the year is 0100. Any idea what I should do? Post some code that illustrates the problem you are seeing. And read the perlfunc man page section on gmtime, especially the last sentence. -- John Hasler [EMAIL PROTECTED] (John Hasler) Dancing Horse Hill Elmwood, WI
tetex
bei der Installation von tetex-base und tetex-bin Pakete geht etwas schief fmtutil:'tex -ini -progname=latex latex.ini' failed man dachte, muss auch per "Hand" gehen mit "texconfig init " aber ging es nicht ... ..mpost.mp Datei nicht vorhanden... ... ?? ??? p.s. Vorhanden Debian 2.1 (gekauft von Linux Land 7 Cd) -- Laszlo Barabas Offices Leipziger Strasse 28 Institut TUA Thermische Verfahrenstechnik D-09599 Freiberg/Sachsen Tel.: + 49 3731 39 3142 Home Laszlo Barabas Tel +49 3731 210 843 D- 09599 Freiberg/Sachsen , Kirchgasse 3 e-mail: [EMAIL PROTECTED]
Re: perl says the year is 0100
> "John" == John Davis <[EMAIL PROTECTED]> writes: John> hello I have the latest perl for slink, but perl reports the John> year is 0100. Any idea what I should do? Nm, have you considered adding 1900 to the returned value? 8^)= And maybe try reading the documentation for the date commands in the perlfunc manpage. john. -- John S Jacobs Anderson [EMAIL PROTECTED] \* Genehack: Not your daddy's weblog */ \*http://genehack.org> */
Re: eth0: unknown interface
Removing the module won't work, because bye removing the module the interface eth0 still won't exist (you could say it exists even less) and the error will still occur. Renaming the scripts will work, along with editing /etc/init.d/network and another possible solution is reconfiguring the network (the way you did installing debian). Ron On Mon, 21 Feb 2000 [EMAIL PROTECTED] wrote: > > > Well, what you said about the modules.conf would only prevent the computer > > from loading the module for the network card when booting. By loading in > > this module the interface (eth0, or if there are more network cards eth1, > > eth2 etc.) is known, later during boot the init.d scripts are being called > > (when switching to runlevel 2, as specified in /etc/rc.2) and the > > /etc/init.d/network script is also called, that script configures the > > network and uses the interface eth0 to do so. That's where the error > > occurs, the script tries to bring eth0 up (using ifconfig) where the > > interface does not exist. > So I think there are only two ways to stop an unnecessary network card > form starting up at bootup. > > 1) Start the installation program from CD and remove the unwanted modul > > 2) Deactivate any unwanted startup job in "/etc/init.d/" and you can > later activate it if you want. There are several files in know which > must be stoped from starting network jobs. > > /etc/init.d/netstd_init > /etc/init.d/netstd_misc > /etc/init.d/network > > Am I right? > > Uwe >
Re: eth0: unknown interface
> Well, what you said about the modules.conf would only prevent the computer > from loading the module for the network card when booting. By loading in > this module the interface (eth0, or if there are more network cards eth1, > eth2 etc.) is known, later during boot the init.d scripts are being called > (when switching to runlevel 2, as specified in /etc/rc.2) and the > /etc/init.d/network script is also called, that script configures the > network and uses the interface eth0 to do so. That's where the error > occurs, the script tries to bring eth0 up (using ifconfig) where the > interface does not exist. So I think there are only two ways to stop an unnecessary network card form starting up at bootup. 1) Start the installation program from CD and remove the unwanted modul 2) Deactivate any unwanted startup job in "/etc/init.d/" and you can later activate it if you want. There are several files in know which must be stoped from starting network jobs. /etc/init.d/netstd_init /etc/init.d/netstd_misc /etc/init.d/network Am I right? Uwe
Recommended networked filesystem structure?
Hello, We have four SparcStation4 and an Ultra1. Up to now we had Solaris running, the whole System installed on every machine. I added a /usr/local hierarchy on the Ultra server with all the good stuff from GNU, and mounted it as a nfs filesystem under /usr/local on each one of the clients. Now I want to switch the whole configuration to debian (that I've been running at home on a PC for two years). 1. What would be the preferred way to have this kind of distributed setup with standalone, but thin clients? Is there a standard way to use the debian packaging system to divide installation up into a base system with X that is installed on every machine, and applications that reside on the server only, to be mounted via nfs? 2. How difficult is it, to do this in a heterogeneous network? We might be adding PCs soon, and I would like to have a real uniform network, all running debian, with only one application/file server. Thanks, Nils Ackermann
perl says the year is 0100
hello I have the latest perl for slink, but perl reports the year is 0100. Any idea what I should do? John Davis
Re: eth0: unknown interface
Well, what you said about the modules.conf would only prevent the computer from loading the module for the network card when booting. By loading in this module the interface (eth0, or if there are more network cards eth1, eth2 etc.) is known, later during boot the init.d scripts are being called (when switching to runlevel 2, as specified in /etc/rc.2) and the /etc/init.d/network script is also called, that script configures the network and uses the interface eth0 to do so. That's where the error occurs, the script tries to bring eth0 up (using ifconfig) where the interface does not exist. Ron On Mon, 21 Feb 2000 [EMAIL PROTECTED] wrote: > > > That has nothing to do with it and won't work (by the way, there are a lot > > more network cards then just ne compatible ones). > > What you should do is edit your /etc/init.d/network, you should make it > > look like something like this: > > > > #! /bin/sh > > ifconfig lo 127.0.0.1 > > route add -net 127.0.0.0 > > > > If you want to you could let your system think it's on a LAN by adding the > > following lines: > > > > IPADDR=10.10.10.10 > > NETMASK=255.255.255.0 > > NETWORK=255.255.255.0 > > BROADCAST=10.10.10.255 > > GATEWAY= > > ifconfig lo ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} > > route add -net ${NETWORK} > > [ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1 > > > > I never actually tried that, but I guess it should work (take notice of > > the lo after ifconfig, in your /etc/init.d/network it will probably be > > eth0 (ip adresses can of course also be altered (that is: 10.10.10.10 and > > with it 10.10.10.255). > Ok, I think your right, because it could be possible that some daemons > need a network card to work properly. All of our computers which are > running Linux have a card, because they are connected in a network. I > have never tried to setup a computer with Linux but without NIC. > > Uwe > > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null >
Re: .forward and exim More info
Sends two copies to each of them.
Re: Scanners in Debian
> I just installed a Microtek X6EL, then xsane, sane, and gimp. That's > all I had to do and this scanner was running. Do you install sane-gimp1.1? Because if I install gimp1.1, then sane gets removed and if I install sane then gimp1.1 gets removed. Is there a configuration utility that comes with their one of them? An X-based one? -- Bart Szyszka [EMAIL PROTECTED] ICQ:4982727 GigaBee Interactive http://www.gigabee.com Join AllAdvantage.com and get paid to surf the Web! http://www.alladvantage.com/go.asp?refid=ARD582
Re: eth0: unknown interface
> That has nothing to do with it and won't work (by the way, there are a lot > more network cards then just ne compatible ones). > What you should do is edit your /etc/init.d/network, you should make it > look like something like this: > > #! /bin/sh > ifconfig lo 127.0.0.1 > route add -net 127.0.0.0 > > If you want to you could let your system think it's on a LAN by adding the > following lines: > > IPADDR=10.10.10.10 > NETMASK=255.255.255.0 > NETWORK=255.255.255.0 > BROADCAST=10.10.10.255 > GATEWAY= > ifconfig lo ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} > route add -net ${NETWORK} > [ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1 > > I never actually tried that, but I guess it should work (take notice of > the lo after ifconfig, in your /etc/init.d/network it will probably be > eth0 (ip adresses can of course also be altered (that is: 10.10.10.10 and > with it 10.10.10.255). Ok, I think your right, because it could be possible that some daemons need a network card to work properly. All of our computers which are running Linux have a card, because they are connected in a network. I have never tried to setup a computer with Linux but without NIC. Uwe
.forward and exim
Hi all, This .forward will send two copies of a message addresses to [EMAIL PROTECTED] and [EMAIL PROTECTED] to martin How can I improve on this to get them one copy each? Patrick if error_message then finish endif if $header_to:,$header_cc: contains [EMAIL PROTECTED] then deliver patrick endif if $header_to:,$header_cc: contains [EMAIL PROTECTED] then deliver martin endif if $header_to:,$header_cc: contains [EMAIL PROTECTED] then deliver joseph endif if $header_to:,$header_cc: contains [EMAIL PROTECTED] then deliver barbara endif if $header_to:,$header_cc: contains [EMAIL PROTECTED] then deliver henry endif if $header_to:,$header_cc: contains [EMAIL PROTECTED] then deliver jim endif if $header_to:,$header_cc: contains repro then deliver joseph endif
Re: mouse with gpm and X
Hi Armin, What was the options that were supplied to the gpm by check the file in /etc/gpm.conf (in potato). If you see the line "repeat+type=". Comment this out by placing an '#' (without the quote). and stop and restart the gpm by: /etc/init.d/gpm stop and /etc/init.d/gpm start then try to run your X again to see if it would resolve the problem. Let me know if you need further help. Armin Wegner wrote: > > Hi, > > I've to kill gpm with > > gpm -k > > before starting X or I can not use my ps2 mouse in X. > That's new in potato. Switching back to a console I don't have gpm then. > I'm not pleased with this. > I would like have gpm and a mouse under X. In slink this was no problem. > What can I do? > > Armin > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
recompile kernel for IP-MASQ
Hi, I'm trying to compile the kerne 2.2.14 with IP Masquerade option and I did know which options should I select for the IP Masquerade. Please help. Thanks! --- tcp
Re: afterstep
Hi Cormac, I'm glad to see the problem was discovered by other user as well. For days, I thought that I was the only dude uses afterstep and the only dude imagined thing :). And thank you very much for filling the bug report because I have yet to learned how to fill the bug report... Secondly, how would I go about customize my afterstep desktop. For instance, I'd like to add a few more button on the desktop to start some other program and a few more menu to run more other programs. Again, thank you very much! Cormac McGuinness wrote: > > Hi there > > Sorry! I didnt notice this topic on debian-user. > I had the exact same problem and found the same solution as you and > I filed a bug report for the afterstep package last week. > > Cormac > On Fri, Feb 18, 2000 at 11:25:36AM -0600, Timothy C. Phan wrote: > > Hi, > > > > I finally figure what was the problem with unable to > > click on the xterm icon on the desktop to bring up > > the xterm. > > > > The problem was in the /usr/share/afterstep/wharf where > > the line that contains the xterm information. It > > should end with an & intead of the $ which was > > installed/configured. I guess that I need to inform > > the afterstep package maintainer about this typo. > > > > Thanks for all your help! > > -- > Cormac McGuinness ([EMAIL PROTECTED]) > --- > Electronic Structure Group, Boston University Physics Department. > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
ppp possible VJ compression problem
Hello, I would like to ask you for a help with ppp connection. I was searching for past five days debian-user mailing list. I have found a lot of different solutions for different problems but I think I didn't found situation which happens on my computer. I setup Debian 2.1 from CD, I made a minimal installation with ppp and pppconfig. I setup my modem at /dev/ttyS2 IRQ 5. this works correctly, which I tested by minicom. I run pppconfig and answers all the questions. I have two DNS, I also have dynamic IP address. I used the same ISP from Win95 with no problem. Here is a piece of the ppp.log and you can see that after autentification which path correctly the IPCP is repeatly trying to get IP address from server. I don't know what is wrong here and how it should be corrected. If you can help me any way please write my a mail. Recently I was speaking with a friend and he told me that possible VJ compression is not supported by the server. Could that be a problem? Thank you in advance CONNECT -- got it send (\d) Serial connection established. Using interface ppp0 Connect: ppp0 <--> /dev/ttyS2 sent [LCP ConfReq id=0x1 ] rcvd [LCP ConfRej id=0x1 ] sent [LCP ConfReq id=0x2 ] rcvd [LCP ConfAck id=0x2 ] rcvd [LCP ConfReq id=0x33 < 11 04 06 40> < 17 04 00 18> < 13 09 03 08 00 03 09 05 c8>] sent [LCP ConfRej id=0x33 < 11 04 06 40> < 17 04 00 18> < 13 09 03 08 00 03 09 05 c8>] rcvd [LCP ConfReq id=0x34 ] sent [LCP ConfAck id=0x34 ] sent [LCP EchoReq id=0x0 magic=0x2315a5ba] sent [PAP AuthReq id=0x1 user="***" password=""] sent [PAP AuthReq id=0x2 user="***" password=""] rcvd [PAP AuthAck id=0x2 "Access permitted for user \"***\"\r\n"] Remote message: Access permitted for user "***"^M sent [IPCP ConfReq id=0x1 ] rcvd [IPCP ConfReq id=0x1 ] sent [IPCP ConfAck id=0x1 ] rcvd [CCP ConfReq id=0x17] sent [CCP ConfReq id=0x1] sent [CCP ConfAck id=0x17] rcvd [CCP ConfReq id=0x18] sent [CCP ConfAck id=0x18] rcvd [IPCP ConfRej id=0x1] sent [IPCP ConfReq id=0x2 ] rcvd [CCP ConfAck id=0x1] rcvd [IPCP ConfRej id=0x2] sent [IPCP ConfReq id=0x3 ] rcvd [IPCP ConfRej id=0x3] sent [IPCP ConfReq id=0x4 ] rcvd [IPCP ConfRej id=0x4] sent [IPCP ConfReq id=0x5 ] rcvd [IPCP ConfRej id=0x5] sent [IPCP ConfReq id=0x6 ] rcvd [IPCP ConfRej id=0x6] --- Richard Vanek
Re: eth0: unknown interface
That has nothing to do with it and won't work (by the way, there are a lot more network cards then just ne compatible ones). What you should do is edit your /etc/init.d/network, you should make it look like something like this: #! /bin/sh ifconfig lo 127.0.0.1 route add -net 127.0.0.0 If you want to you could let your system think it's on a LAN by adding the following lines: IPADDR=10.10.10.10 NETMASK=255.255.255.0 NETWORK=255.255.255.0 BROADCAST=10.10.10.255 GATEWAY= ifconfig lo ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} route add -net ${NETWORK} [ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1 I never actually tried that, but I guess it should work (take notice of the lo after ifconfig, in your /etc/init.d/network it will probably be eth0 (ip adresses can of course also be altered (that is: 10.10.10.10 and with it 10.10.10.255). Ron On Mon, 21 Feb 2000 [EMAIL PROTECTED] wrote: > > > eth0: unknown interface: No such device > > > > I guess that eth0 is an interface for ethernet cards. I don't have > > one. So I don't need this message. What can I do against it? Is there > > a package which I can delete? > Maybe it's enough to deactivate the following line in your > "/etc/conf.modules": > > # alias eth0 ne > ^--- deactivating > > Uwe > > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null >
Re: eth0--what's up?
>Thank you. This is exactly what I needed to know. >So if I get you right, eth0 is kinda like ppp? >Interface, not a device? That just seems odd, the way >I've seen it referred to in conversation. I knew I >was missing something. If you know C, the following can help explain it: You cannot open(2) /dev/eth0 and then write(2) to it to communicate; instead you have to get a socket, then send(2) a message to the socket. If eth0 were a file in /dev, it would be very tempting to open it as a file, which wouldn't work. Carl
samba 2.0.6 for slink
Hi, Is there any samba*2.0.6*deb for slink ? przemol
Re: eth0: unknown interface
> eth0: unknown interface: No such device > > I guess that eth0 is an interface for ethernet cards. I don't have > one. So I don't need this message. What can I do against it? Is there > a package which I can delete? Maybe it's enough to deactivate the following line in your "/etc/conf.modules": # alias eth0 ne ^--- deactivating Uwe
voodoo question
Hi! I have an old Voodoo-I (Orchid Righteous 3D) lying around here. Would I gain anything (eg better performance) if I installed it in my P166-box, especially when using snes9x? Theres something about 3dfx-support in the documentation of snes9x, but no word regarding better performance... I also wonder if X could gain some speed, too, it sure could use a boost on this box ;-) TIA, &rw
Upgrading to potato
Hi, I am going to upgrade from Debian slink 2.1 to potato. Can anybody tell me if I am wrong about the procedure? Actually, I am working with a spanish non-official Debian distribution and it includes apt-get, Kde, gnome, etc. I am not sure about the consequences of upgrading to the official distribution. 1) I need to change /etc/apt/sources.list so that it will only include the following lines: deb ftp://ftp.usc.es/pub/mirror/linux/debian potato main contrib non-free deb http://ceu.fi.udc.es/debian-non-US potato non-US/main non-US/contrib non-US/non-free 2) Now, as root, dpkg --get-selections "*" apt-get update apt-get install apt debconf apt-get -f dist-upgrade Do I need to take any precaution to execute the aforementioned commands? I think that I do not have to change to single user mode, etc. 3) From now on, if I want to upgrade to the latest release of potato I will have to do: apt-get update apt-get upgrade Is everything right? Thanks in advance. -- Santi
mouse with gpm and X
Hi, I've to kill gpm with gpm -k before starting X or I can not use my ps2 mouse in X. That's new in potato. Switching back to a console I don't have gpm then. I'm not pleased with this. I would like have gpm and a mouse under X. In slink this was no problem. What can I do? Armin
eth0: unknown interface
Hi, At boot potato gives me this message eth0: unknown interface: No such device I guess that eth0 is an interface for ethernet cards. I don't have one. So I don't need this message. What can I do against it? Is there a package which I can delete? Armin
Re: Scanners in Debian
On Mon, Feb 21, 2000 at 11:59:27AM +1030, John Pearson wrote: > Most SCSI scanners work under Linux, using SANE. > > USB and parallel port scanners may work with kernel 2.4 > when it comes out, which means they may also work with > some 2.3.x (development) kernels). Does it include only "SCSI over Printer Port" scanners or proprietary protocols too? I'm especially interested in using with Linux my Mustek ScanMagic 9636P (AKA Mustek 12000P). -- TIA Wojciech M. Zabolotny http://www.ise.pw.edu.pl/~wzab <--> [EMAIL PROTECTED] http://www.ise.pw.edu.pl/~wzab/picadc/picadc.html - Build your FREE Data Acquisition System
conf.modules
Hi there, does anybody know if there is a example file which includes all possible modules? I include one that I have found on a SuSE-Distribution. Uwe# # Copyright (c) 1996-1999 SuSE GmbH Nuernberg, Germany. All rights reserved. # # Author: Hubert Mantel <[EMAIL PROTECTED]>, 1996-1999 # # Configuration file for loadable modules; used by modprobe and kerneld # # Aliases - specify your hardware alias eth0 ne alias eth1 tulip alias scsi_hostadapter off # only used for Mylex or Compaq Raid as module alias block-major-48 off alias block-major-49 off alias block-major-72 off alias block-major-73 off # only needed for fifth and sixth IDE adaptor alias block-major-56 off alias block-major-57 off # mouse (for older busmice) alias char-major-10off alias parport_lowlevelparport_pc options parport_pc io=0x378 irq=none,none # If you have multiple parallel ports, specify them this way: # options parport_pc io=0x378,0x278 irq=none,none # For parallel port devices, uncomment the following two lines and change # "frpw" to the protocol type you use # post-install paride insmod frpw # pre-remove paride rmmod frpw #* # If you want to use the kernel sound drivers instead of OSS 3.8.1z (the # recommended solution) please put comment signs in front of the following # entries. Then choose one of the sample configurations below. Uncomment all # lines starting with 'alias', 'options' or 'pre-/post-install' within one # such configuration and modify the parameters according to your needs (e.g. # the ressources chosen for this device in /etc/isapnp.conf). For a lot of # ISA soundcards the Soundblaster driver is a good starting point. #* alias char-major-14 off alias sound off alias midi off #* #module : ad1816.o AD1816 chip # #Supported cards : # #Terratec Base 1/64 #HP Kayak #Acer FX-3D #SY-1816 #Highscreen Sound-Boostar 32 Wave 3D #Highscreen Sound-Boostar 16 # #Documentation available in /usr/src/linux/Documentation/sound/AD1816 #and in /usr/src/linux/drivers/sound/ad1816.c . # #Possible configuration : # # alias char-major-14 ad1816 # post-install ad1816 modprobe "-k" opl3 # post-install ad1816 modprobe "-k" mpu401 # options ad1816 io=0x530 irq=5 dma=1 dma2=3 ad1816_clockfreq=33000 # options opl3 io=0x0388 # options mpu401 io=0x0330 irq=9 # #* #module : ad1848.o AD1848/CS4231/CS4248 Chip #--> Windows Sound System (MSS/WSS) # #A variety of common ISA soundcards are #compatible with this family of chips. # #Documentation available in /usr/src/linux/drivers/sound/ad1848.c (search #for MODULE_PARM) and in /usr/src/linux/Documentation/sound/README.OSS . #Usually this module is used in conjunction with other higher level sound #modules. # #Possible configuration for stand-alone usage : # # alias char-major-14 ad1848 # options ad1848 io=0x530 irq=7 dma=0 dma2=3 # #* #module : cs4232.o Crystal 423x chipsets # #Documentation available in /usr/src/linux/drivers/sound/cs4232.c (search #for MODULE_PARM) and in /usr/src/linux/Documentation/sound/CS4232 . This #chip is often used together with other sound hardware. # #Possible configuration for stand-alone usage : # # alias char-major-14 cs4232 # post-install cs4232 modprobe "-k" opl3 # options cs4232 io=0x534 irq=5 dma=1 dma2=0 mpuio=0x330 mpuirq=9 # options opl3 io=0x388 # #* #module : es1370.o Ensoniq 1370 Chipsatz (--> PCI64/128) # #Supported cards : # #Creative Labs PCI64/128 # #Documentation availabke at /usr/src/linux/Documentation/sound/es1370 and #/usr/src/linux/drivers/sound/es1370.c . # # alias char-major-14 es1370 # options es1370 joystick=1 # #* #module : es1371.o Creative Ensoniq 1371 Chipsatz (--> PCI64/128) # #Supported cards : # #Creative Labs PCI64/128 # #Documentation availabke at /usr/src/linux/Documentation/sound/
Is Debian going to run on my machine?
Hi: I am thinking of doing away with Windows completely and using Debian. But Microsoft has suckered me into buying a bunch of hardware that I am reluctant to throw away. Specifically, I have (1) a printer (HP color deskjet 722C), (2) a CD burner (Memorex CDRW-1622 rewritable), (7) an ATAPI 24x CR-ROM, (3) a scanner (Microtek scanmaker v310), (4) an AOpen FM56-ITU modem (5) an SiS 5597/5598 display adapter (on motherboard) (6) a CMI 8330 Audio adapter (on motherboard) I checked the Linux web site. It does not say it will or will not support these hardware. I posted a message on USENet and some suggest I try. But I don't want the trouble of finding out that it doesn't work. So I am turning to the official authority now. I just wonder if you could tell me whether Debian will run on my stuff. Thanks. galactic_war __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com
francois@ctrlaltdel.ch
Hello ! Je cherche le package mars-nwe pour potato. Je vois pas ou le trouver sur le Net (il n'apparait pas dans la database des packages Debian potato). T'as une idée ? Mercii ;-)) Mik > On a potato this packages is called mars-nwe. > > bash-2.02$ apt-cache show mars-nwe > Package: mars-nwe > Version: 0.99pl12-1 > Priority: optional > Section: net > Maintainer: Hamish Moffatt <[EMAIL PROTECTED]> > Depends: libc6 (>= 2.0.7u), libgdbmg1 > Architecture: i386 > Filename: project/experimental/mars-nwe_0.99pl12-1_i386.deb > Size: 188054 > MD5sum: 06faaafe4d7b7fbefe4ca116288932ba > Description: Mars' NetWare Emulator, a Netware bindery server emulator > This is a Netware 3.x or 2.x server running on a Linux machine. > It accesses the native Linux file system to supply NetWare services. > installed-size: 472 > > bash-2.02$ > > -- > > Francois Deppierraz student > http://www.ctrlaltdel.ch > ICQ: 176 770 09 > -- Mikhael Janson E-mail: [EMAIL PROTECTED] TIM/ETI -- Université de Genève 40, boul. du Pont d'Arve CH-1205 GENEVE
Ipfwadm -> ipchains conversion syntax help 2.0.x -> 2.2.x
Hello .. Im about to go from kernel 2.0.38 to 2.2.x I have some syntax questions with regards to ipchains .. and have included below my existing IP setup in init.d/network and some local settings .. If someone could let me know the ipchains syntax .. that'd be great. Current net config .. with ipfwadm setup .. simple enough setup, linux box in 10.1.1.1 with win box on 10.1.1.2 .. linux acting as gateway with static IP, and masq'ing for the win box. [EMAIL PROTECTED]:/local/etc/init.d# cat network #! /bin/sh ifconfig lo 127.0.0.1 route add -net 127.0.0.0 IPADDR=10.1.1.1 NETMASK=255.255.255.0 NETWORK=10.1.1.0 BROADCAST=10.1.1.255 GATEWAY= ifconfig eth0 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} ifconfig ppp0 203.12.80.117 netmask 255.255.255.0 mtu 576 #ipfwadm stuff ipfwadm -F -p deny ipfwadm -F -a m -S 10.1.1.2/32 -D 0.0.0.0/0 -W eth0 ipfwadm -A -a -S 10.1.1.2/32 -D 0.0.0.0/0 -W eth0 ipfwadm -F -a m -S 10.1.1.0/24 -D 0.0.0.0/0 -W ppp0 # end ipfwadm route add -net ${NETWORK} [ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1 I am after the equiv. ipchains syntax for the above ipfwadm statements. Also .. I use ipautofw port bouncer to bounce a port for battle.net etc, im sure some ipchains syntax can do the same? [EMAIL PROTECTED]:/etc/init.d# cat local #rc.local #Battle.net fix echo "Adding Battle.net port bouncer" ipautofw -A -r udp 6112 6112 -h 10.1.1.2 ipautofw -A -r tcp 6112 6112 -h 10.1.1.2 /sbin/modprobe ip_masq_ftp /sbin/modprobe ip_masq_quake /sbin/modprobe ip_masq_raudio Ive read the rls notes and other docs on the 2.2.x series .. there doesnt look to be anything else major I need to be aware of ? What has other peoples experience been? Thanks in advance. -- [EMAIL PROTECTED] Anthony Green
libc6 installing error
(please cc to me, i follow this mailing list via the archives) hi, whilst upgrading my frozen-box, i got following error. chesterfield:/etc/apt# apt-get install libc6 Reading Package Lists... Done Building Dependency Tree... Done Sorry, libc6 is already the newest version 0 packages upgraded, 0 newly installed, 0 to remove and 47 not upgraded. 2 packages not fully installed or removed. Need to get 0B of archives. After unpacking 0B will be used. Setting up libc6 (2.1.3-2) ... Current default timezone: 'Europe/Brussels'. Local time is now: Tue Feb 15 21:20:35 CET 2000. Universal Time is now: Tue Feb 15 20:20:35 UTC 2000. Run 'tzconfig' if you wish to change it. /etc/init.d/devpts.sh: line 63: syntax error: unexpected end of file dpkg: error processing libc6 (--configure): subprocess post-installation script returned error exit status 2 dpkg: dependency problems prevent configuration of libc6-dev: libc6-dev depends on libc6 (= 2.1.3-2); however: Package libc6 is not configured yet. dpkg: error processing libc6-dev (--configure): dependency problems - leaving unconfigured Errors were encountered while processing: libc6 libc6-dev E: Sub-process /usr/bin/dpkg returned an error code (1) however, reading http://www.debian.org/Lists-Archives/debian-user-0002/msg01014.html gave me an excellent solution to this but... why isnt this corrected? it's the 21th today, that message was posted the 8th, and i still got that error (before changing that file of course). -- Bruno Van de Casteele [EMAIL PROTECTED] N.P. Puam [ ICQ#: CA957F ] Homepage: http://puam.cjb.net/ SWRP: http://swrp.cjb.net/ Matrix-RPG: http://members.xoom.com/matrixrpg/ "A species stumped by an intractable problem does not merely cease to compute. It ceases to exist." Seth Lloyd -- Bruno Van de Casteele [EMAIL PROTECTED] N.P. Puam [ ICQ#: CA957F ] Homepage: http://puam.cjb.net/ SWRP: http://swrp.cjb.net/ Matrix-RPG: http://members.xoom.com/matrixrpg/ "The common behaviour of mankind is the system of references by means of which we interpret an unknown language." Ludwig Wittgenstein, Philosophical Investigations, §206
Re: Dselect question - mirroring packages on new box
Quoth Colin Watson, > You'll want to look at 'dpkg --get-selections' on the old box, and 'dpkg > --set-selections' on the new one. I know this is a bit of a clueless newbie question (which I'm not really). I've seen this advice quite a few times, and even tried it once or twice myself without much luck... What on earth are you supposed to do after --set-selections? Is the idea that you can then go into dselect and just hit [i]nstall? My impression is that you can't use apt with it (which may be wrong), and there doesn't seem to be any command you can pass to dpkg without going through dselect (which I try and avoid). If someone could fill me in on this, it'd make my backups/resores a hell of a lot easier. Sorry again for the newbie question! cheers, damon -- Damon Muller ([EMAIL PROTECTED]) / It's not a sense of humor. * Criminologist / It's a sense of irony * Webmeister / disguised as one. * Linux Geek / - Bruce Sterling - Running Debian GNU/Linux: Doing my bit for World Domination (tm) - pgpIKDJJdXb1j.pgp Description: PGP signature
Solved: Re: ghostscript errors? (gs-aladdin 5.50-8)
On Mon, Feb 21, 2000 at 12:02:16AM -0800, kmself@ix.netcom.com wrote: > On Sun, Feb 20, 2000 at 08:51:13PM -0800, kmself@ix.netcom.com wrote: > > I'm finding errors with ghostscript interpreted viewers, including 'gv' > > Following up to myself > > There are a few debian-bug posts suggesting a problem with gs and > /etc/gs.Fontmap. The problem is related to the TrueType font definitions for gs. Invoking gs with no arguments produces an error message with the bad gs.Fontmap file. The problem is line 564 of gs.Fontmap. There is some garbage data in the Lucida Sans Typewriter Bold Oblique definition line. I've corrected this; gs now runs without errors. Patch attached. gs version: 5.10 Debian package: gs 5.10-9 Postscript interpreter Debian version: woody -- Karsten M. Self (kmself@ix.netcom.com) What part of "Gestalt" don't you understand? SAS for Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html Mailing list: "subscribe sas-linux" to mailto:[EMAIL PROTECTED] 564c564 < (Lucida Sans Typewriter Bold Oblique) (//usr/share/fonts/truetype/./ltypebo.ttf) ; --- > (Lucida Sans Typewriter Bold Obli(e./ltypebo.ttf) > (//usr/share/fonts/truetype/./ltypebo.ttf) ; 571c571 < % (Mead Bold) (//usr/share/fonts/truetype/./meadbold.ttf) ; --- > (Mead Bold) (//usr/share/fonts/truetype/./meadbold.ttf) ;
Re: UPS monitoring packages?
> Thus spake Shaul Karl ([EMAIL PROTECTED]): > > > Can you point out what UPS monitoring package you are using? > > Can you compare it to other alternatives? > > Network UPS Tools (was smart-ups tools). > http://www.exploits.org/nut/ > Is that debianized? The link there only leads to a .deb that is not up to date, and the author of that deb told me Luca Filipozzi <[EMAIL PROTECTED]> has taken the task. However Luca Filipozzi <[EMAIL PROTECTED]> did not answer my email. -- Shaul Karl [EMAIL PROTECTED] An elephant is a mouse with an operating system.
Re: Adding second IP problem
On Sun, 20 Feb 2000, George Bonser wrote: > > use eth0:1 for the alias Thanks, but still not working on bootup. Just changed the messages error a bit. Feb 21 02:41:25 lenape kernel: net_alias_dev_create(eth0:1): unregistered family==2 Could it be something odd about a partial upgrade to frozen, I installed imp with apt-get update; apt-get install imp? Thanks, Chuck > > On Mon, 21 Feb 2000, Chuck Peters wrote: > > > > > After installing imp with apt from frozen I want to add an IP for the > > webmail.axs.org. I did the usual add a ifconfig and route in > > /etc/init.d/network as follows: > > > > /sbin/ifconfig eth0:0 192.190.237.140 > > /sbin/route add -host 192.190.237.140 dev eth0:0 > > > > Works fine on the command line, but when I reboot the IP 192.190.237.140 > > is not activated. > > > > Poking around a little I found the following in the messages log. > > Feb 21 00:12:07 lenape kernel: ne.c:v1.10 9/23/94 Donald Becker > > ([EMAIL PROTECTED]) > > Feb 21 00:12:07 lenape kernel: NE*000 ethercard probe at 0x300: 52 54 4c > > 01 8a a d > > Feb 21 00:12:07 lenape kernel: eth0: NE2000 found at 0x300, using IRQ 11. > > Feb 21 00:12:07 lenape kernel: net_alias_dev_create(eth0:0): unregistered > > family ==2 > > > > Why is it working on the command line and not on boot up? > > > > Should I compile a kernel or what to fix the problem? > > > > Thanks, > > Chuck > > > > > > > > -- > > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null > > > > > > > > George Bonser > > "When someone annoys you, it takes 32 muscles to frown, but it only > takes 4 muscles to extend your arm and smack them in the head." > > > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null > >
Re: modem in bash
> Michael Zielinski writes: > > I am trying to get my Practical Periphials 28.8 external modem working > > under Debian 2.1. > > Run pppconfig as root, answer the questions, and then run 'pon' to start > ppp and 'poff' to stop it. man pppconfig, man pon, man poff. > You might also try minicom or other com program in order to find out whether the computer and the modem understand each other. The Modem-HOWTO can help you in case there are problems. -- Shaul Karl [EMAIL PROTECTED] An elephant is a mouse with an operating system.
Re: ghostscript errors? (gs-aladdin 5.50-8)
On Sun, Feb 20, 2000 at 08:51:13PM -0800, kmself@ix.netcom.com wrote: > I'm finding errors with ghostscript interpreted viewers, including 'gv' Following up to myself There are a few debian-bug posts suggesting a problem with gs and /etc/gs.Fontmap. The following strace exerpt run with *no* input to gs appears to bear this out. It's not clear to me why the fonts in question are being read in the order appearing below, as this is not the order in which they are listed in the file. [EMAIL PROTECTED]:tmp]$ strace gs 2>&1 | less [...] open("/usr/lib/ghostscript/5.10/Fontmap", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/lib/ghostscript/5.10/kanji/Fontmap", O_RDONLY) = -1 ENOENT (No such f ile or directory) open("/usr/lib/ghostscript/fonts/Fontmap", O_RDONLY) = 4 fstat(4, {st_mode=S_IFREG|0644, st_size=29050, ...}) = 0 old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0 x40017000 _llseek(4, 0, [0], SEEK_CUR)= 0 _llseek(4, 0, [0], SEEK_SET)= 0 read(4, "% Copyright (C) 1996 Aladdin Ent"..., 4096) = 4096 read(4, "a010015l.pfb)\t;\n/URWGothicL-Demi"..., 4096) = 4096 read(4, "pia-Regular\t\t(putr.pfa)\t;\n/Utopi"..., 4096) = 4096 read(4, "miBold\t(hrgerd.gsf)\t;\n/Hershey-G"..., 4096) = 4096 read(4, "\t;\n(Bell MT Bold)\t(//usr/share/f"..., 4096) = 4096 brk(0x824d000) = 0x824d000 read(4, "v.ttf)\t;\n(Franklin Gothic Heavy "..., 4096) = 4096 brk(0x8252000) = 0x8252000 read(4, "nii___.ttf)\t;\n(Minion-Regular)\t("..., 4096) = 4096 brk(0x8255000) = 0x8255000 read(4, "i.ttf)\t;\n(Trebuchet MS Italic)\t("..., 4096) = 378 read(4, "", 4096) = 0 write(1, "Unrecoverable error: syntaxerror", 32Unrecoverable error: syntaxerror) = 32 write(1, " in token\n", 10 in token ) = 10 write(1, "Operand stack:\n--nostringval"..., 34Operand stack: --nostringval--) = 34 -- Karsten M. Self (kmself@ix.netcom.com) What part of "Gestalt" don't you understand? SAS for Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html Mailing list: "subscribe sas-linux" to mailto:[EMAIL PROTECTED]
Adding second IP problem
After installing imp with apt from frozen I want to add an IP for the webmail.axs.org. I did the usual add a ifconfig and route in /etc/init.d/network as follows: /sbin/ifconfig eth0:0 192.190.237.140 /sbin/route add -host 192.190.237.140 dev eth0:0 Works fine on the command line, but when I reboot the IP 192.190.237.140 is not activated. Poking around a little I found the following in the messages log. Feb 21 00:12:07 lenape kernel: ne.c:v1.10 9/23/94 Donald Becker ([EMAIL PROTECTED]) Feb 21 00:12:07 lenape kernel: NE*000 ethercard probe at 0x300: 52 54 4c 01 8a a d Feb 21 00:12:07 lenape kernel: eth0: NE2000 found at 0x300, using IRQ 11. Feb 21 00:12:07 lenape kernel: net_alias_dev_create(eth0:0): unregistered family ==2 Why is it working on the command line and not on boot up? Should I compile a kernel or what to fix the problem? Thanks, Chuck
Re: Scanners in Debian
I just installed a Microtek X6EL, then xsane, sane, and gimp. That's all I had to do and this scanner was running. Oh, there were a couple of rough spots. First I had to recompile the kernel with scsi generic support. THen I had to run MAKEDEV in /dev to get /dev/sgX. (Why weren't they there?) Then I ran scanimage --list-devices After that, the device has been identified and detected. Almost magical, if you ask me. Alan Davis -- [EMAIL PROTECTED] "An inviscid theory of flow renders the screw useless, but the need for one non-existent."---Lord Raleigh (John William Strutt), or else his son, who was also a scientist.
Re: Scanners in Debian
I just installed a Microtek X6EL, then xsane, sane, and gimp. That's all I had to do and this scanner was running. Oh, there were a couple of rough spots. First I had to recompile the kernel with scsi generic support. THen I had to run MAKEDEV in /dev to get /dev/sgX. (Why weren't they there?) Then I ran scanimage --list-devices After that, the device has been identified and detected. Almost magical, if you ask me. Alan Davis -- [EMAIL PROTECTED] "An inviscid theory of flow renders the screw useless, but the need for one non-existent."---Lord Raleigh (John William Strutt), or else his son, who was also a scientist.
Re: Sawmill/Gnome raising windows
On Sun, Feb 20, 2000 at 09:44:43PM -0800, Fish Smith wrote > > How can I configure Sawmill/Gnome so that a window > >will rise to the > >top > >if I click on the title bar? > > > I prefer a sloppy focus, one where I can move the > >mouse over a > >window and > >have it in focus. However, I don't necessarily want > >that window to > >rise to > >the top/foreground. I do want it to come to the > >top/foreground if I > >click > >on the title bar or perform some other action. > > Use Blackbox. It works just like that, by default, > which I find incredibly nice. I haven't played with > GNOME or sawmill, and it's possible there is no way to > do what you want--being "on top" may be inextricably > linked with being in focus, as it is in windows. I *have* worked with GNOME and sawmill, and as a result have an answer to the question he asked. I have a "Windows" keyboard, and Win+RightButton over any part of the window raises it as does Ctrl+Win+UpArrow, and right-clicking on the title bar alternately raises and lowers the window. The "Win" key is bound to "Meta", so you should be able to do the same once you find your Meta key. You can customize these bindings interactively by selecting Customize from Sawmill's pop-up menu (middle button in the root window, if you haven't discovered it already) and looking under Bindings. > Really don't know. But Blackbox works the way you > described with the added advantage of being a very low > drain on system resources and looking quite sleek. > Oh, a DSW! Top says: PID USER PRI NI SIZE RSS SHARE STAT LIB %CPU %MEM TIME COMMAND 11037 root 0 0 10300 9776 1156 S 0 0.0 15.4 0:39 XF86_SVGA 437 root 0 0 16308 9728 992 S 0 0.1 15.3 31:52 XF86_SVGA 11058 root 0 0 1288 1288 996 S 0 0.0 2.0 0:04 blackbox 499 john 0 0 1064 940 200 S 0 0.0 1.4 0:12 sawmill Sawmill is managing 16 windows in two workspaces; blackbox is managing one. There's not a lot in it, but I'll stick to sawmill. > > Here's my stupid question for the day (I'm > >allotted one per day, > >aren't > >I?!:-). > > Hey, if you get one stupid question per day, I get one > stupid answer per day. > Regards, John P. -- [EMAIL PROTECTED] [EMAIL PROTECTED] "Oh - I - you know - my job is to fear everything." - Bill Gates in Denmark
apt does not upgrade eterm
Ive now had this happen a few time. Update local mirror ran dselect ( using apt ) and update Eterm shows up as newer version install blah blha I go back in and eterm is still listed under new updated, i confirm it wasnt installed by checking the current version on the system. Its marked for install not hold so what gives. I then try another run of the above and it shows 0 packages to install/update etc weird. ?? I just installed it manually using dpkg -i , checked version and yep its newer. ( keeping up with woody, problem started back in potato ) cheers
Re: Mustek 1200 LS scanner working in Debian?
> Go to www.mostang.com/sane > There you will find a link to supported scanners. I know there is a Mustek > back-end, but I don't know if it supports the 1200 LS scanner. > This will give you just about as much info there is for scanners. That's what I was afraid of because there doesn't seem to be enough info there. -- Bart Szyszka [EMAIL PROTECTED] ICQ:4982727 GigaBee Interactive http://www.gigabee.com Join AllAdvantage.com and get paid to surf the Web! http://www.alladvantage.com/go.asp?refid=ARD582
Re: Sawmill/Gnome raising windows
Actually GNOME isn't a window manager... so you should look toward the window manager that runs under GNOME typically enlightenment or KDE... though any window manager that supports GNOME's hints should work with GNOME. If your windows manager is enlightenment.. then use enlightenments configuration tool... if you are using the Current version of enlightenment, just right click on the desktop and you will be provided with a menu of options inwhich there is a focus preferences... as for other window managers I wouldn't know how to get the window to raise on click. TaoX -- www.muhri.net/TaoX [EMAIL PROTECTED] ICQ: '61511769' AOL IM: 'TaoX 0x1' - Original Message - From: "Fish Smith" <[EMAIL PROTECTED]> To: ; <[EMAIL PROTECTED]> Sent: Monday, February 21, 2000 12:44 AM Subject: Re: Sawmill/Gnome raising windows > > How can I configure Sawmill/Gnome so that a window > >will rise to the > >top > >if I click on the title bar? > > > I prefer a sloppy focus, one where I can move the > >mouse over a > >window and > >have it in focus. However, I don't necessarily want > >that window to > >rise to > >the top/foreground. I do want it to come to the > >top/foreground if I > >click > >on the title bar or perform some other action. > > Use Blackbox. It works just like that, by default, > which I find incredibly nice. I haven't played with > GNOME or sawmill, and it's possible there is no way to > do what you want--being "on top" may be inextricably > linked with being in focus, as it is in windows. > Really don't know. But Blackbox works the way you > described with the added advantage of being a very low > drain on system resources and looking quite sleek. > > > Here's my stupid question for the day (I'm > >allotted one per day, > >aren't > >I?!:-). > > Hey, if you get one stupid question per day, I get one > stupid answer per day. > > = > Fish of Borg > Visit me on the web! http://www.geocities.com/TimesSquare/Frontier/4874/stccg.html > ///Archaeologists near mount Sinai have discovered what appears to be a missing page from the Bible. The page is currently being carbon dated in Bonn. If genuine it belongs at the beginning of the Bible and is believed to read "To my Darling Candy. All Characters portrayed within this book are fictitious and any resemblance to persons living or dead is entirely coincidental."///Red Dwarf > __ > Do You Yahoo!? > Talk to your friends online with Yahoo! Messenger. > http://im.yahoo.com > > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null >
Re: SMP
On Mon, 21 Feb 2000, Oki DZ wrote: > > On Fri, 18 Feb 2000, Sean Johnson wrote: > > > Phil Brutsche wrote: > > > > > it's one of two ways Linux can use Intel-based SMP systems (the other is > > > IO-APIC used on PIIs on up, and maybe PPros). > > > > Seems to be on the PPros too > > > > Intel MultiProcessor Specification v1.1 > > Virtual Wire compatibility mode. > > OEM ID: OEM0 Product ID: PROD APIC at: 0xFEE0 > > Processor #0 Pentium(tm) Pro APIC version 17 > > Processor #1 Pentium(tm) Pro APIC version 17 > > I/O APIC #2 Version 17 at 0xFEC0. > > Processors: 2 > > mapped APIC to e000 (fee0) > > mapped IOAPIC to d000 (fec0) > > So, basically you've been running SMP on your dual PPro machine... hmm... what is interesting - from my syslog (dual P90) ... Feb 20 17:40:43 stas kernel: Processor #0 Pentium(tm) APIC version 16 Feb 20 17:40:43 stas kernel: Processor #1 Pentium(tm) APIC version 16 Feb 20 17:40:43 stas kernel: I/O APIC #2 Version 17 at 0xFEC0. Feb 20 17:40:43 stas kernel: Processors: 3 Feb 20 17:40:43 stas kernel: mapped APIC to e000 (fee0) Feb 20 17:40:43 stas kernel: mapped IOAPIC to d000 (fec0) Feb 20 17:40:43 stas kernel: mapped IOAPIC to c000 (fec0) ... note the number of CPUs > > > ... the above being snipped from my dmesg > > My dmesg says: > Linux version 2.2.13 ([EMAIL PROTECTED]) (gcc version 2.95.2 19991109 (Debian > GNU/Linux)) #6 SMP Mon Feb 14 16:22:26 JAVT 2000 > mapped APIC to e000 (00229000) > mapped IOAPIC to d000 (0022a000) > > I need a simple explanation (ie: layman's terms). > Does this "mapped" thing mean that the multi-processor board is detected? yes, i think so what did you get in /proc/interrupts ? > > Oki > OK
Re: your mail
I found it. Was hoping I'd find a .deb file. Atleast it's something that'll work though. Robert Thus spake TaoX { Brian Hinson; } ([EMAIL PROTECTED]): > ftp://ftp.enlightenment.org/pub/enlightenment/enlightenment/tools/ > > go here and get enlightenment-conf-0.15.tar.gz > > this is the enlightenment configurator you are looking for... > > TaoX > -- > www.muhri.net/TaoX > [EMAIL PROTECTED] > ICQ: '61511769' > AOL IM: 'TaoX 0x1' > > :wq! --- Robert L. Harris| Low quality in a product happens. Senior System Engineer |That doesn't mean it's right and at RnD Consulting | definitely doesn't mean it should \_ be accepted. Require quality. DISCLAIMER: These are MY OPINIONS ALONE. I speak for no-one else. FYI: perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'
Re: Sawmill/Gnome raising windows
> How can I configure Sawmill/Gnome so that a window >will rise to the >top >if I click on the title bar? > I prefer a sloppy focus, one where I can move the >mouse over a >window and >have it in focus. However, I don't necessarily want >that window to >rise to >the top/foreground. I do want it to come to the >top/foreground if I >click >on the title bar or perform some other action. Use Blackbox. It works just like that, by default, which I find incredibly nice. I haven't played with GNOME or sawmill, and it's possible there is no way to do what you want--being "on top" may be inextricably linked with being in focus, as it is in windows. Really don't know. But Blackbox works the way you described with the added advantage of being a very low drain on system resources and looking quite sleek. > Here's my stupid question for the day (I'm >allotted one per day, >aren't >I?!:-). Hey, if you get one stupid question per day, I get one stupid answer per day. = Fish of Borg Visit me on the web! http://www.geocities.com/TimesSquare/Frontier/4874/stccg.html ///Archaeologists near mount Sinai have discovered what appears to be a missing page from the Bible. The page is currently being carbon dated in Bonn. If genuine it belongs at the beginning of the Bible and is believed to read "To my Darling Candy. All Characters portrayed within this book are fictitious and any resemblance to persons living or dead is entirely coincidental."///Red Dwarf __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com
[no subject]
ftp://ftp.enlightenment.org/pub/enlightenment/enlightenment/tools/ go here and get enlightenment-conf-0.15.tar.gz this is the enlightenment configurator you are looking for... TaoX -- www.muhri.net/TaoX [EMAIL PROTECTED] ICQ: '61511769' AOL IM: 'TaoX 0x1'
Re: enlightenment control-panel?
>I just nuked my RedHat box and installed Debian. >Since I installed >debian >I've been re-installing things like Enlightenment. I >can't seem to >find the enlightenment configuration tool though. I >checked >enlightenment.org but no sign of it there. >What package to I need? My guess is that there's a text file somewhere, say /etc/elightenment.conf for instance. Then there would probably also be individual $HOME/.enlighenment.conf files. Just like with .xsession files and with other window managers' conf files. Any control panel is just a superfluous (though perhaps nice) front end. I think. I don't really know for sure, this is just from past experience w/ other WMs. So check the docs and try to find and edit the conf files. There is probably a sample/template in /usr/doc or /usr/share/doc. = Fish of Borg Visit me on the web! http://www.geocities.com/TimesSquare/Frontier/4874/stccg.html ///Archaeologists near mount Sinai have discovered what appears to be a missing page from the Bible. The page is currently being carbon dated in Bonn. If genuine it belongs at the beginning of the Bible and is believed to read "To my Darling Candy. All Characters portrayed within this book are fictitious and any resemblance to persons living or dead is entirely coincidental."///Red Dwarf __ Do You Yahoo!? Talk to your friends online with Yahoo! Messenger. http://im.yahoo.com
Re: Scanners in Debian
On Sun, Feb 20, 2000 at 10:03:53AM -0700, Cameron Matheson wrote > Hey, > > My friend is thinking about buying a scanner tomorrow, but I told him to > let me find out if it would be possible to use in Linux. It's just an > offbrand, 50$ scanner. Could we get drivers (or use it) in Debian > Slink? > Most SCSI scanners work under Linux, using SANE. USB and parallel port scanners may work with kernel 2.4 when it comes out, which means they may also work with some 2.3.x (development) kernels). John P. -- [EMAIL PROTECTED] [EMAIL PROTECTED] "Oh - I - you know - my job is to fear everything." - Bill Gates in Denmark
Re: enlightenment control-panel?
If you had read, I have installed enlightenment and related packages. The problem is that if you open the Gnome control panel, and go to WindowManager, you can select Enlightement, and then a configuration editor that was standalone for adding themes, etc. I just found the source to the enlightenment-conf package, but no .deb file. Robert Thus spake Marshal Wong ([EMAIL PROTECTED]): > > "Robert" == Robert L Harris <[EMAIL PROTECTED]> writes: > > > I just nuked my RedHat box and installed Debian. Since I > > installed debian I've been re-installing things like > > Enlightenment. I can't seem to find the enlightenment > > configuration tool though. I checked enlightenment.org but no > > sign of it there. > > > What package to I need? > > You'll have to get the enlightenment and related packages (duh! ;)) I > guess the question is, what version of Debian are you using? If > you're using 2.1 (slink), I do suggest upgrading to frozen (woody). > 2.1 has 0.14 enlightenment, which is very out of date, unless that's > what you're used to. frozen has the new 0.16, and it has the > configuration tool. Just right click on the desktop. > > Hope this helps. > > Marshal > > Robert > > > :wq! > > > --- > > Robert L. Harris | Low quality in a product happens. Senior > > System Engineer | That doesn't mean it's right and at RnD > > Consulting | definitely doesn't mean it should \_ be accepted. > > Require quality. DISCLAIMER: These are MY OPINIONS ALONE. I > > speak for no-one else. FYI: perl -e 'print > > $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' > > > > -- Unsubscribe? mail -s unsubscribe > > [EMAIL PROTECTED] < /dev/null > :wq! --- Robert L. Harris| Low quality in a product happens. Senior System Engineer |That doesn't mean it's right and at RnD Consulting | definitely doesn't mean it should \_ be accepted. Require quality. DISCLAIMER: These are MY OPINIONS ALONE. I speak for no-one else. FYI: perl -e 'print $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);'
RE: Mustek 1200 LS scanner working in Debian?
Go to www.mostang.com/sane There you will find a link to supported scanners. I know there is a Mustek back-end, but I don't know if it supports the 1200 LS scanner. This will give you just about as much info there is for scanners. Cheers, John Gay
Re: enlightenment control-panel?
> "Robert" == Robert L Harris <[EMAIL PROTECTED]> writes: > I just nuked my RedHat box and installed Debian. Since I > installed debian I've been re-installing things like > Enlightenment. I can't seem to find the enlightenment > configuration tool though. I checked enlightenment.org but no > sign of it there. > What package to I need? You'll have to get the enlightenment and related packages (duh! ;)) I guess the question is, what version of Debian are you using? If you're using 2.1 (slink), I do suggest upgrading to frozen (woody). 2.1 has 0.14 enlightenment, which is very out of date, unless that's what you're used to. frozen has the new 0.16, and it has the configuration tool. Just right click on the desktop. Hope this helps. Marshal > Robert > :wq! > --- > Robert L. Harris | Low quality in a product happens. Senior > System Engineer | That doesn't mean it's right and at RnD > Consulting | definitely doesn't mean it should \_ be accepted. > Require quality. DISCLAIMER: These are MY OPINIONS ALONE. I > speak for no-one else. FYI: perl -e 'print > $i=pack(c5,(41*2),sqrt(7056),(unpack(c,H)-2),oct(115),10);' > -- Unsubscribe? mail -s unsubscribe > [EMAIL PROTECTED] < /dev/null
ghostscript errors? (gs-aladdin 5.50-8)
I'm finding errors with ghostscript interpreted viewers, including 'gv' and 'gnome-gv' on a number of different documents, including some system documentation which I *really* think ought to be legal, as well as piped output from mpage, eg: ps aux | mpage -2 | gv - I'm finding some articles suggesting there may be bugs with (a) current ghostscript releases. Anyone else? Typical error output: interpreter message: Unrecoverable error: syntaxerror interpreter message: in token Operand stack: --nostringval-- --nostringval-- --nostringval-- (f80)op(333:token)0x8093470Operand stack at 0x81b0220: 0x81c7bc4: 0x02 dict --Gwrx--- 0xbfff 0x0825f5e0 0x81c7bcc: 0x03 file --G-rx--- 0x0017 0x082337b4 0x81c7bd4: 0x03 file --G-rx--- 0x0017 0x082337b4 Execution stack at 0x81b0140: 0x81c952c: 0x0f oper --F---e-- 0x 0x08081aa4 = %interp_exit 0x81c9534: 0x03 file --G-rxe-- 0x0001 0x081bf590 0x81c953c: 0x05 mpry --G-rxe-- 0x0001 0x0822187a 0x81c9544: 0x0e null --F---e-- 0x0002 0x08090788 0x81c954c: 0x04 arry --F-rx--- 0x 0x081b44a8 0x81c9554: 0x05 mpry --G-rxe-- 0x000f 0x08221806 0x81c955c: 0x0f oper --F---e-- 0x 0x08090554 = %array_continue 0x81c9564: 0x05 mpry --G-rxe-- 0x0002 0x0821e53c 0x81c956c: 0x0e null --F---e-- 0x0002 0x0808b900 0x81c9574: 0x05 mpry --G-rxe-- 0x001e 0x0821e49e 0x81c957c: 0x0f oper --F---e-- 0x 0x0808af6c = %loop_continue 0x81c9584: 0x05 mpry --G-rxe-- 0x001c 0x0821e4a2 0x81c958c: 0x05 mpry --G-rxe-- 0x0039 0x0821343a Using gs-aladdin 5.50-8 TIA. -- Karsten M. Self (kmself@ix.netcom.com) What part of "Gestalt" don't you understand? SAS for Linux: http://www.netcom.com/~kmself/SAS/SAS4Linux.html Mailing list: "subscribe sas-linux" to mailto:[EMAIL PROTECTED]