Bind problems -- Won't look reverse lookup local IPs

1998-11-07 Thread Asher Haig
I'm having problems with bind. All of a sudden it won't look up my local 
ip addresses (209.83.245.201-206). It will look up everything else, 
including the hosts of the ips. This is making my dns not resolve 
correctly on irc and such...

Also, I can't figure out how to make it a ns that does more than cache. I 
read the docs explaining how to add to named.boot, but they say that it's 
deprecated. Also, even if I do add to that, it doesn't work. 

dlint gives me:

WARNING: nameserver ns42.warped-reality.com. is not responding properly 
to queries; skipping.
ERROR: could not find any working nameservers for warped-reality.com

Please Help!=)


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Technical aspects that make Linux better than NT -- Is a list compiled somewhere?

1998-08-30 Thread Asher Haig
Is there a list somewhere that's compiled about technical reasons that 
Linux is better than NT? I'm interested as far as having good reasons to 
quickly list off to NT hacks. Not a matter of convincing _me_ -- just 
them. 

I'd appreciate either a url of somewhere that has a bunch of reasons or 
just a bunch of reasons. Either way.

Thanks.


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Exim Not delivering to Local users from aliases

1998-08-24 Thread Asher Haig
Ok... I've looked through the documentation and stuff before asking this 
one. 

I'm having a problem now where my aliases work except that they won't let 
me have an alias to a local name. Ie:

lordwurm:  ahaig

or

[EMAIL PROTECTED]:  ahaig

Neither work (each in its own place -- either the aliases.global file or 
the aliases.virtual which are set up to handle global or virtual aliases 
respsectively).
The error that it gives in /var/log/exim/mainlog is that the domain is 
not included. 

If it wants me to include a domain for an alias, how do I have mail 
delivered to a POP account on the same machine?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Exim aliases using local-part only when set to use domain

1998-08-24 Thread Asher Haig
OK... This is getting somewhat frustrating. I'm having a problem now 
where all mail being delivered goes to the local-part. If it doesn't 
exist, it returns the error, such as:

A message that you sent could not be delivered to all of its recipients. 
The
following address(es) failed:

  [EMAIL PROTECTED]:
unknown local-part lou in domain showtrucks.com

The rules that I have set up right now are as follows:

global_default:
driver=smartuser,
domains=lsearch;/etc/exim/domains.virtual;

new_address=${lookup{$local_part}lsearch{/etc/exim/aliases.global} {$value}
 fail};

virtual_specific:
driver=smartuser,
domains=partial-lsearch;/etc/exim/aliases.virtual;

[EMAIL PROTECTED]/etc/exim/aliases.virtual}
 {$value} fail};

virtual_default:
driver=smartuser,
domains=partial-lsearch;/etc/exim/aliases.virtual;
new_address=${lookup{$domain}lsearch{/etc/exim/aliases.virtual} 
{$value} fail};

real_local:
  prefix = real-
  driver = localuser
  transport = local_delivery

system_aliases:
  driver = aliasfile
  file = /etc/aliases,
  search_type = lsearch


Moving real_local to the top or otherwise hasn't seemed to do anything. 
Forwarding seems to work if the local-part exists, except that it 
forwards _to_ the local part. 

Just to make it clear, if i have chaosinc as a local user and 
[EMAIL PROTECTED]: [EMAIL PROTECTED] as an alias, and I send 
mail to [EMAIL PROTECTED], chaosinc gets it in the local box.

I haven't been able to figure out what the problem might be. Any insight 
is appreciated.


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Exim Aliases With Domains

1998-08-23 Thread Asher Haig
I just installed Exim to replace sendmail. I'm trying to set up the alias 
file now so that I can have domain-dependant aliases (ie, two ahaigs 
depending on which domain it's sent to).

I set include_domain to true in /etc/aliases (When I tried setting it in 
/etc/exim.conf it complained about it being invalid). It didn't complain 
in any way, but it didn't seem to work either. Sending mail resulted in 
the mail going to the first alias listed, ignoring the domain. 

What do I have to do in order to have this work?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Re: Exim Aliases With Domains

1998-08-23 Thread Asher Haig
George Bonser, [EMAIL PROTECTED] on 8/23/98 3:32 PM

Maybe I am a bit slow today ... what exactly are you trying to do? If the
mail is addressed to [EMAIL PROTECTED] it goes into the account for user but
if it is addressed to [EMAIL PROTECTED] it goes to the mailbox for otheruser?

That is easy enough to do if you treat domain2 as a virtual domain.

Is this what you are trying to do?

Yeah that's what I'm trying to do. I want it to evaluate not just user 
but also domainX
Right now I have warped-reality.com and plastered.net on the same box. I 
want to do specific addresses for each.

Right now it seems to just ignore the domain.


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Re: Exim Aliases With Domains

1998-08-23 Thread Asher Haig
George Bonser, [EMAIL PROTECTED] on 8/23/98 3:52 PM

Just add a line under the driver = aliasfile; that looks like this:

include_domain = true,

Note the comma!

Now you will need to include the domain for EACH alias!

In other words:

[EMAIL PROTECTED]: billy
[EMAIL PROTECTED]: bobby

An alias like:

postmaster:susie

Will never be matched if you set include_domain.

I can teach you a different, and I think better way if you like.


I would appreciate that.

And can i use @* for a domain in an alias? (Are wildcards allowed in 
general?)


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Re: Exim Aliases With Domains

1998-08-23 Thread Asher Haig
Am I able to do something similar to what you did in

domains=partial-lsearch;/etc/exim/aliases.virtual;  

in the aliases.virtual file?

For instance, can I put a line in the domains.virtual:

# Warped-Reality.com aliases
lsearch;/home/wr/aliases.mail

Also, do I not have to run newaliases after updating 
/etc/exim/aliases.virtual?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Exim -- Limiting size of messages

1998-08-23 Thread Asher Haig
Is there a way that I can limit size of messages (both incoming and 
outgoing)?

Even better, is there a way that I can set it up so that those rules 
don't apply to select users (privledged users)?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Re: new to networking question

1998-08-13 Thread Asher Haig
Lindsay Allen, [EMAIL PROTECTED] on 8/12/98 6:13 PM


 You may also want to get midentd which allows you to set up ident to work 
 through ipmasq.

Where can I find that, please?  I have been try to do cuseeme through
masquerade and this may be the missing link.
http://www.code.org/midentd/index.html


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Re: new to networking question

1998-08-12 Thread Asher Haig
Shaleh, [EMAIL PROTECTED] on 8/12/98 11:33 PM

Hi, I just bought a network in a box kit: hub, two 10/100 ethernet
cards, cable.  Could someone please point me to FAQs, HOWTOs etc. for
getting machines connected and using one box w/ ppp so all have net
access.  Also it is a sohoware kit, has anyone had good/bad/indifferent
luck w/ their hardware.  I can still take it back.

Thanks, I am still getting accustomed to Linux networking.  Never set oe
up from scratch by myself.  (Which is why I am doing it).

Install all the cards and such, compile the modules, get ethernet working 
on all the machines. Then set up ppp on one machine. Compile IPMASQ and 
IPForwarding support in modules or in the kernel. Set up forwarding rules 
for each internal ip, such as: 

ipfwadm -F -a m -S 10.0.0.2/32 -D 0.0.0.0/0
ipfwadm -F -a m -S 10.0.0.3/32 -D 0.0.0.0/0
ipfwadm -F -p deny

I put them in a file, such as /usr/bin/startipmasq. (This is on the ppp 
machine).
Set up networking on the other machines (/etc/init.d/network) so that it 
uses the ppp machine as a gateway. 10.0.0.* and 192.168.1.* both work as 
internal-only IP ranges.

You may also want to get midentd which allows you to set up ident to work 
through ipmasq.


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


Re: PCMCIA

1998-06-02 Thread Asher Haig
Bill Moran, [EMAIL PROTECTED] on 6/1/98 11:41 PM

I have just upgraded from bo to hamm on my Toshiba laptop
(successfully except for a few corrupted files). How do I
configure to make my ethernet card (HyperEnet) work

Install the pcmcia package. If you have a custom kernel, you'll need to 
install the source package. I use the source. Once it's installed, 
/etc/init.d/pcmcia starts the services. It will recognize pretty much 
everything as far as cards go. Then you need to set up 
/etc/init.d/network for your network settings. 


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


New VHosts in apache 1.3

1998-06-01 Thread Asher Haig
How do I set up the vhost in apache 1.3? The way I have it set up right 
now, they just send it to the first one, regardless of all the others. 
I'm doing name based rather than IP based. 

After looking at the documentation, here's what I have:

NameVirtualHost 168.151.130.19

VirtualHost 168.151.130.19
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/.aaron/houreyes
ServerName www.houreyes.com
ErrorLog /var/log/www/houreyes.com.err
TransferLog /var/log/www/houreyes.com.trn
/VirtualHost

VirtualHost 168.151.130.19
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/.lordwurm/public_html
ServerName wurmland.warped-reality.com
ErrorLog /var/log/www/wurmland.warped-reality.com.err
TransferLog /var/log/www/wurmland.warped-reality.com.trn
/VirtualHost


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Setting up initrd / Using a RAM Disk (Is there a (good) alternative?) to make a jaz the root fs with a PCMCIA scsi adapter

1998-05-31 Thread Asher Haig
I want to use a jaz disk as my root fs. The problem that I'm running into 
is that I need to use a pcmcia scsi adapter -- and pcmcia services are 
loaded off the hd. I need to repartition the HD, so of course I can't be 
using that as a root fs.

It seems from what I'm reading in teh docs that I can use initrd to load 
those pcmcia modules and then mount /dev/sda1 as the root fs. How do I go 
about doing this? I'm lost as far as how to set up initrd and how to make 
it use /dev/sda1 after that. 

Please! Help! I desperately need to repartition and I can't figure out 
where to start.


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Re: [dt316@hotmail.com: ]

1998-05-31 Thread Asher Haig
Martin Schulze, [EMAIL PROTECTED] on 5/31/98 8:51 AM

  I'm new to the linux debian system and i'm having troubles
 using the Tar (Tape Archiver) i am trying to extract the
  X_V10r3_tar.tar  Archive but am not used to the program only pkzip
  can someone please write out an example of what it is to look like
  I'm trying to extract it in Dos then install it in Linux.

  i have put : tar x x_v10r3_tar.tar 2,231,938 1.4M fd135ds18

tar -xvf tar archive

don't actually type the s and the v is optional (shows what it's 
expanding)



   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Less in color?

1998-05-30 Thread Asher Haig
Is there a version of Less that will support color ls?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Re: Less in color?

1998-05-30 Thread Asher Haig
George Bonser, [EMAIL PROTECTED] on 5/30/98 6:08 AM


try ls --color=always



On Thu, 30 Apr 1998, Asher Haig wrote:

 Is there a version of Less that will support color ls?
 

That doesn't seem to do anything different. My problem is that when I 
pipe an ls to less, I end up with a bunch of b/w color codes instead of 
colors. Makes it hard to read.


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Printing to appletalk printer?

1998-05-27 Thread Asher Haig
Is it possible to make linux print to an appletalk printer? I see papd 
can spool from appletalk to an lp printer. Can it work the other way?

I want to print to an HP 6MP hooked up via a Jet Direct Plus to 10bT 
ethernet. It does NOT have a specific IP address assigned to it --  I 
only have 6 IPs on my subnet and they're all in use. They cost money b/c 
they're for my ISDN router for internet access -- I don't need the 
printer on the net, just my internal network. (Although Theoretically I 
could set up a second subnet and put it on that with the printer and have 
the printer have an IP on that subnet -- but I'd rather not if I don't 
have to) What's the best way to go about doing this?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Ideal hardware for dual p2 linux server

1998-05-26 Thread Asher Haig
I'm looking at setting up a dual pentium II linux server with debian.

What hardware would all of you suggest that I buy?

I need scsi -- thinking about Adaptec 3940UW and Seagate Cheetah.
Will that adaptec work easily?

What's the best stuff to choose that will be easily supported?
Network, scsi, hd, video, etc.

Thanks


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Status of an E(nlightenment) .deb?

1998-05-26 Thread Asher Haig
What's the status on .deb packages to install E?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Status of an E(nlightenment) .deb?

1998-05-25 Thread Asher Haig
What's the status on .deb files for everything E needs?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Apache 1.3b Virtual Hosts

1998-05-25 Thread Asher Haig
I'm having a problem where Apache 1.3b's Virtual Hosts aren't working. 
I'm fairly sure that it's something in the vhost changes since 1.2.5, but 
I'm not sure what. I've read all the documentation and have been trying 
to set it up, but it still fails to work. Everything goes ot the first 
vhost entry. 

Here's an example of the vhost config:

NameVirtualHost 168.151.130.19

VirtualHost 168.151.130.19
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/.wrweb/wrhttp
ServerName www.warped-reality.com
ErrorLog /home/.wrweb/logs/www.warped-reality.com.err
TransferLog /home/.wrweb/logs/www.warped-reality.com.trn
/VirtualHost

VirtualHost 168.151.130.19
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /home/.wrweb/ircnet
ServerName ircnet.warped-reality.com
ErrorLog /home/.wrweb/logs/ircnet.warped-reality.com.err
TransferLog /home/.wrweb/logs/ircnet.warped-reality.com.trn
/VirtualHost


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


DOSEmu 97.7

1998-05-10 Thread Asher Haig
Has anyone managed to make DOSEmu 97.7 work? There doesn't seem to be a 
.deb file, so I downloaded the source from the dosemu site. It compiled 
fine and everything in setup seemed to go fine to the point where I tried 
to run dos. Then I get this error:

CPU speed set to 167/1 MHz
Running on CPU=586, FPU=1, rdtsc=1
CONF: memcheck - Fatal error.  Memory conflict!
Memory at 0x16400:0x is mapped to both:
'Base DOS memory (first 640K)'  '(null)'

Everywhere I've asked, no one seems to know what it is. Nothing I've read 
seems to reference any kind of question like this.

Does anyone know either how I can make this work or where I can get a 
.deb of the newest DOSEmu? (97.7 at this point)


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Imlib -- X11/imlib.h and -LIm

1998-05-09 Thread Asher Haig
I installed the Im-lib non-free libraries (same thing happened when I 
tried the standard Im-libs libs) and tried to compile rxvt-imlib from the 
tarball that was on the E site. When I was compiling it, I find that 
there is no X11/imlib.h. Where is that supposed to come from? If I 
symlink /usr/X11/lib/X11/imlib.h to /usr/include/imlib.h it goes past 
that section with some warnings, but ends up with not being able to find 
-lIm.

What can I do?


   ==
   | Asher Haig[EMAIL PROTECTED] |
   | Pager/Voice Mail  (972) 328-9247 |
   ==
It was like a visit by Don Carleone. I expected to 
find a bloody computer monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.


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


Shells in /usr/bin?

1998-05-04 Thread Asher Haig
Why are the shells from .deb packages put in /usr/bin? Shells are generally
kept in /bin to the extent of my knowledge...


Asher Haig
[EMAIL PROTECTED]
Pager/Voice Mail
972/328-9247
---
It was like a visit by Don Carleone. I expected to find a bloody computer
monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.



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


ESS1688 Laptop Sound Card

1998-05-02 Thread Asher Haig
I sent a message a while ago asking about this soundcard in a Dell LM166M
laptop and got several responses. Unfortunately, I still have not been able
to get the soundcard set up.

How can I figure out all the settings that I need to put in for it?
I/O Base
IRQ
DMA
16 bit DMA
MPU401 I/O Base
MPU401 IRQ

Do I even need all these for the ESS1688? I'm not sure what exactly I need
to fill in. The linux laptop page tells me that he used  IRQ 5, DMA 1 and
starting address 220--But I'm not sure which fields to use out of those.

Thanks.


Asher Haig
[EMAIL PROTECTED]
Pager/Voice Mail
972/328-9247
---
It was like a visit by Don Carleone. I expected to find a bloody computer
monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.



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


AccelX and Could not open display :0

1998-05-02 Thread Asher Haig
Does anyone have any idea why with AccelX, after updating to the X stuff in
unstable, would give me Could not open display :0 when I run Xsetup? I
reinstalled AccelX afterward and I have to enter a serial number, now so
startx just doesn't work at all.

Everything worked fine before upgrading (accidentally b/c of dselect
automating it).


Asher Haig
[EMAIL PROTECTED]
Pager/Voice Mail
972/328-9247
---
It was like a visit by Don Carleone. I expected to find a bloody computer
monitor in my bed the next day.
-- Mark Andreessen regarding the visit from Microsoft.



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


Re: laptop install help

1998-04-21 Thread Asher Haig
I've got a Megahertz PCMCIA 14.4 fax/modem card that was recognized as com2
by the win311 software that came with the laptop. There were no cua?
devices in /dev so I made cua0 and cua1 using the MAKEDEV script, made a
/dev/modem symlink from cua1, but the pon command still dies on me.


You may need to add the inittab entries for a serial device. Not sure as
far as that goes.

I copied minicom off another machine and tried it, and haven't gotten it to
recognize the modem, so I figure there must be something else to it - do I
also have to install some PCMCIA software, maybe a module?

PCMCIA comes in the form of a module. It's generally best to get the source
package and use that to recompile and install them whenever you recomile a
kernel. The easiest way to get it set up to begin with is to use the hamm
install disks and install the pcmcia modules as you install debian.
Otherwise, you'll need to put them on a floppy and copy them over and
install them. They're in teh pcmcia-cs package.

--Asher Haig
[EMAIL PROTECTED]



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


Apache Server Side Includes

1998-04-13 Thread Asher Haig
I'm at a loss for how to set up SSI in apache. I just want to be able to 
do stuff like

!--#include virtual=footer.html--

and have it interpreted by the server. No One I've talked to seems to 
know how to do this and I can't find anything about it in any config file 
or in the docs. 

Someone, please? Would really appreciate any help. 

  -
Asher Haig [EMAIL PROTECTED]

The only thing I'd rather own than Windows is English, or Chinese, or 
Spanish, because then I could charge you a $249 right to speak English 
and I could charge you an upgrade fee when I add new letters like 'N' and 
'T'. -- Scott McNealy


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


Laptop Sound

1998-04-06 Thread Asher Haig
Does anyone have experience with setting up sound in a laptop under 
linux? I'm on a Dell Latitude 166M with an ESS SB16Compatible sound card. 
It appears to be a PnP card (Looking at it from Windows) but pnpdump 
doesn't find it. 

I figure I somehow have to find it and use isapnptools to configure it 
and then pass that to the kernel, but I don't know how to go about doing 
it. Anyone have any ideas?

  -
Asher Haig [EMAIL PROTECTED]

The only thing I'd rather own than Windows is English, or Chinese, or 
Spanish, because then I could charge you a $249 right to speak English 
and I could charge you an upgrade fee when I add new letters like 'N' and 
'T'. -- Scott McNealy


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


Re: opendos fdisk *shifted* my partitions?

1998-03-21 Thread Asher Haig
Richard E. Hawkins Esq., [EMAIL PROTECTED] on 3/21/98 1:23 PM


now only dos could boot.  tried switching back, but the partition table 
seems 
to have shifted , to hda2, 3, and 4.

I can boot off a diskette, and briefly had lilo booting to linux.  I changed 
fstab and lilo.config to reflect the new setup, but now I get the AF1234 (or 
whatever it is) instead of lilo.  hitting 2 boots dos, and the diskette will 
do linux, but several tries have failed to get a lilo that will come up.

any ideas (other than repartitioning :)

Dosemu actually looks for mounted dos parititions that have the files on 
them that make it bootable, I believe, rather than the bootable partition 
flag.

As for trying to fix it... I would boot back into linux from disk and fix 
the partition tables there -- change bootable flags and such back to how 
you had them. Then run lilo.

  -
Asher Haig [EMAIL PROTECTED]

The only thing I'd rather own than Windows is English, or Chinese, or 
Spanish, because then I could charge you a $249 right to speak English 
and I could charge you an upgrade fee when I add new letters like 'N' and 
'T'. -- Scott McNealy


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


Windows under DosEmu

1998-03-15 Thread Asher Haig
I'm told that it's possible to run Windows under DosEmu. What's the truth 
in this?

Please no responses asking why I want to run Windows... It's a need, not 
a desire.

Thanks

  -
Asher Haig [EMAIL PROTECTED]

The only thing I'd rather own than Windows is English, or Chinese, or 
Spanish, because then I could charge you a $249 right to speak English 
and I could charge you an upgrade fee when I add new letters like 'N' and 
'T'. -- Scott McNealy


--
E-mail the word unsubscribe to [EMAIL PROTECTED]
TO UNSUBSCRIBE FROM THIS MAILING LIST. Trouble? E-mail to [EMAIL PROTECTED]


Dell Laptop (LM166) and sound

1998-02-22 Thread Asher Haig
Does anyone have any experience setting up a Dell laptop to output sound, 
such as from the CD to play audio cds? Or even if not, does anyone 
possibly have any ideas as to how to go about doing it? I thought I had 
compiled support in with soundblaster compatible, but apparently not -- 
or maybe I'm just missing something in between that and using it.

Help appreciated.


Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Jetdirect

1998-02-22 Thread Asher Haig
How do I go about setting up linux to print to a Jetdirect printer? The 
HP page is useless. From what I see, it appears that I need to set it up 
with lpd as a tcp/ip printer. Does that mean that I have to have an 
additional IP address on my network for the printer (if so, is there any 
way around that?)?

I have a JetDirect server to a 6MP.


Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


X -- xinit dies but the server alone will run?

1998-02-19 Thread Asher Haig
Ok.. this problem seems kinda strange to me, maybe one of you guys can 
explain it.

I'm running (well -- trying) Accelerated X laptop edition. Those of you 
who know about X, please don't stop reading there -- I don't think the 
problem is AccelX specific. 

When I try to run startx, X begins to start, the server starts loading 
and I see the startup screen, and then it dies as if it'd been shut down. 
No error messages are created (see bottom of mail for log). I narrowed 
the problem down to what seems to be xinit -- when I do xinit (which 
startx does) on its own, the same thing happens.

The strange part comes in in that when I run the server on its own (X :0) 
and then do DISPLAY=localhost:0.0;afterstep it works (albeit not 
completely).

Looking at xinit's man page, it appears to me that xinit is essentially 
doing the same thing I can do manually.

This problem starts when I upgraded to hamm. I upgraded all of the X 
packages and then reinstalled AccelX just to make sure -- still the same 
problem. 

Computer specifics: This is a Dell LM166mmx with a Neomagic 128xv+ card.

2.0.33 kernel on hamm.

Idiots at XIG won't give me support until hamm is an official release.

Would appreciate any help!

output from xinit/startx:

Xaccel 4.1 (build 4100,LX) Accelerated-X (tm) Display Server 
Copyright (c) 1993-97 by Xi Graphics, Inc.
All Rights Reserved
Unpublished -- Rights reserved under the Copyright Laws of the United 
States

User:  Asher Haig
Organisation:  Gossamer Designs
Serial Number: LS0LID-0676128532-86

Configuration file: /etc/Xaccel.ini
LINUX using /dev/tty7

PCI (#1/0, 8002)
NEOMAGIC,9: NM2093 (1024k @3fc0)
4: 132 100 100 32 105 16  -  628 600 600 28 601 4





Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Linux on top of win95

1998-02-18 Thread Asher Haig
[EMAIL PROTECTED], [EMAIL PROTECTED] on 2/17/98 7:47 PM

I know Linux can be installed ontop of a dos partition.  Can it be
installed on top  of Win 95 or NT. I need to know this because although I
run linux at home my office is NT and 95.  I would like to be able to boot
to linux in the office in order to work on some of my personal projects
when I have free time at lunch or after work.  How safe is this way of
running Debian?  Is there any chance of it damaging either my office
computer or the network.  (The network is currently 2 base t, but will be
upgraded to 10 base t)  My boss absolutely refuses to  allow me run linux
as a normal part of the network.  Lets be frank, I want to run linux
during lunch and after work. But I do not want to lose my job. Can I do
it? How?  Thank You

If you set up LILO when you install it, and then tell LILO how to find 
the Windows partition, you can easily do a dual boot. Superior to doing 
UMS partitions.
An example lilo.conf file is at 
http://www.linuxsa.org.au/meetings/1997-07/kernel/page10.html


Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: Why is debian more of a learning curve than Redhat???

1998-01-25 Thread Asher Haig
Tyson Dowd, [EMAIL PROTECTED] on 1/24/98 11:43 PM

Perhaps you could explain why you think the Mac/Win UI is better? 
Is it just prettier, or is there some way in which it is a better
interface for doing the job?
As far as I can see (the Windows installer) just covers your screen,
tells you to kill all your other processes, shows you some cryptic disk
space graphs (and some crappy graphics) as it copies files, gives you
nice next buttons, then offers to reboot for you.  Debian wouldn't
need the reboot, the warnings, or the useless graphs. Perhaps the next
buttons could stay.

The mac makes it clear as to exactly what is being installed -- that's 
the biggest difference. It tells you what's happening. dpkg is better for 
doing stuff en masse and certain other things, but the mac is certainly 
easier, mainly because of presentation.

But if Windows were to allow you to install 27 packages at once, offered
to download them, informed you of dependencies at the same time, and
warned you if removing a package would cause trouble with other
packages, you could be certain the windows installer/uninstaller would
have more complex dialogs as well.

In this way, the mac/windows is worse. Windows worse than the mac. dpkg 
is still intimidating to new users.


Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


X(init?) problems post-hamm installed. (Using Accelx, although seems irrelevant)

1998-01-24 Thread Asher Haig
I have Laptop-Accelx that I'm running on a Dell p166 with a neomagic 
128ZV video card. I'm having the problem where when I run startx it 
beings to load and immediately quits. It doesn't seem as if it's 
quitting, rather than exiting as if it were killed -- there are no errors 
generated. When I just run accelx directly it works fine (ie loads the 
server etc. and sits on the blank screen with a default grid background). 
It appears that the problem is in xinit, as when I simply run xinit it 
does the exact same thing.

The problem began after hamm upgrade. As far as I can see, I've upgraded 
all necessary packages. I assume xinit would be in xbase

Anyone had any experience with this and might know what's wrong?


Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


AccelX on Hamm

1998-01-19 Thread Asher Haig
I have Laptop-Accelx that I'm running on a Dell p166 with a neomagic 
128ZV video card. I'm having the problem where when I run startx it 
beings to load and immediately quits. When I just run accelx directly it 
works fine (ie loads the server etc. and sits on the blank screen with a 
default grid background).

Anyone had any experience with this and might know what's wrong?


Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Backwards compatibility compiling

1998-01-18 Thread Asher Haig
I'm trying to compile various things that want to use older libs -- 
whether it's trying to link to stuff that wants libc5 or older versions 
of tcl. I have the older versions installed as well with the alt-dev. 
What do I need to do to compile with these?

Seems like it should be simple, but I can't find anything about how to do 
it. 

 
 Asher Haig [EMAIL PROTECTED]


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Networking loading on boot before PCMCIA services for network card

1998-01-11 Thread Asher Haig
I have a problem when my system boots where networking loads before the 
PCMCIA services that are needed to drive the network card. As a result, I 
have to run /etc/init.d/network whenever I boot before networking will 
work. 

Anyone have any idea why this might happen? The proper rc.* files are all 
there, as far as I can tell

TIA

--Asher


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Re: misc questions: screen, version notation

1998-01-09 Thread Asher Haig
G. Crimp, [EMAIL PROTECTED] on 1/8/98 10:51 PM

   I am in an interrogative mood this evening.  There are two things
that have often caught my eye when cruising the dselect selection
browser.  The screen package is one.  From the description it seems to
me to be pretty much the same thing as the virtual terminals that come
part and parcel with Linux.  Are they the same, or do they provide
something the VT's don't ?

Screen is more for over telnet sessions etc. It also provides the ability 
to detach (either great, or evil, depending on who you ask) screens and 
resume them later.


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Suspending a laptop in debian

1998-01-06 Thread Asher Haig
I'm trying to set my laptop up (Dell Latitude 166M) so that I can use the 
standard suspend feature to put it into suspend mode. (Fn-suspend)

I have already installed APMD.

Anyone have any idea how to do this?
TIA

--Asher


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Two Mice

1998-01-02 Thread Asher Haig
I've been looking for an answer to this question for a while (it's 
actually two questions, I suppose). Both questions regard using two mice, 
one on /dev/psaux (Touchpad on a laptop) and one on /dev/cua0 (Kensington 
serial mouse).

The first is with GPM: It appears I can do this with the -M flag, but 
does anyone know exactly how? I've been trying to make it work and have 
yet to be able to.

Second: In X: Is it even possible? I haven't seen anything that says how, 
but it'd seem like it wouldn't be overly difficult. Or at least it 
shouldn't be.

TIA

-Asher


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


LibGif2

1997-12-29 Thread Asher Haig
Does anyone out there know where I can get libgif2? Preferably in .deb 
form?

Apparently I need it to be able to install KDE

Thanks

--Asher


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Ethernet not starting correctly

1997-12-29 Thread Asher Haig
Once again, I'm having some problems with networking.

I at least got my card working now (was having problems before that I 
fixed by recompiling new kernel and pcmcia modules etc.) but now the 
networking isn't loading correctly when it boots.

When I boot up networking simply doesn't work. eth0 hasn't initialized. 
Yet when I run /etc/init.d/network, it works perfectly from that point. 
What's the deal with it not starting correctly?

One thing I had to change before in /etc/init.d/network was the device 
from pcmcia to eth0. Do I have to do this in other files as well?

TIA

--Asher


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


PCMCIA E-Net Errors.... More Again

1997-12-28 Thread Asher Haig
Hey once again...

For anyone who's looked at my last two mails, I'm still having the same 
problem setting up a 3c589a pcmcia ethernet card. I'm using a debian 
distrib and have pcmcia services installed and working. The problem is 
that I'm not real sure how to go about setting up the card for ethernet. 
When I try to do

insmod /lib/modules/2.0.29/pcmcia/3c589_cs.o

it returns this:

/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
dev_alloc_skb_Re1879ac7
/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
ether_setup_R49e2786a
/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
unregister_netdev_R8ca4afc9
/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
eth_type_trans_R5d6ef009
/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
netif_rx_R4c16cac7
/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
dev_kfree_skb_R7154554e
/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
register_netdev_R1a0543c6
/lib/modules/2.0.29/pcmcia/3c589_cs.o: unresolved symbol 
dev_tint_R3dd5ae2a

I'm not sure what it takes to fix this. Does it require a recompile of 
the module? If so, how exactly do I compile it as a module (and more 
importantly, where do I get the source)

Thanks.

--Asher


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .


Installing Debian and setting up PCMCIA E-net

1997-12-27 Thread Asher Haig
Hey everyone,

I'm trying to install Debian after having Redhat installed on my system. 
I've gone through the install, but I'm confused as to how I can make my 
ethernet card work. The card is a PCMCIA 3-com 3c589a. It doesn't seem as 
if there's any driver for it in the installer, and as far as using a 
module to do it, I'm not real sure what to do.

When I try to install the PCMCIA packages (pcmcia-cs and the modules) the 
modules tell me that the version of cs is too new, and cs tells me that 
there are first: no modules, and second: that there are no PCMCIA devices 
in /proc/devices.

Would appreciate any help regarding how I can make this work.

Thanks

-Asher Haig


--
TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word unsubscribe to
[EMAIL PROTECTED] . 
Trouble?  e-mail to [EMAIL PROTECTED] .