Linux-Networking Digest #174, Volume #11 Sun, 16 May 99 10:14:15 EDT
Contents:
Re: mounting remote cdrom (simonbr)
Re: can't ping, ftp etc "Unable to connect, unknown host" ("Eriksson")
How do I setup up email via UUCP? ("Joshua J. Brickel")
Ethernet: recognizing it. (Nate)
Linux and Macs Networked Together... ("The Damons")
Re: Serious Newbie - Can't locate eth0 (simonbr)
Re: Newbie: Ethernet card not detected (simonbr)
HP855 & HP JetDirect EX J2382B & Linux? (mike dombrowski)
Re: ppp configuration: "serial link is not 8 bit clean" (Clifford Kite)
Re: Long delay starting sendmail (Hugh Fader)
Re: User Permissions Woe.... ("Curt")
Re: ppp configuration: "serial link is not 8 bit clean" (Frank Hahn)
Re: can't ping, ftp etc "Unable to connect, unknown host" ("Curt")
Re: New to networking - simple question??? (Tommy Johnsson)
Re: how do I setup exceed ? ("David Travers")
----------------------------------------------------------------------------
From: simonbr <[EMAIL PROTECTED]>
Subject: Re: mounting remote cdrom
Date: Sun, 16 May 1999 13:44:32 +0200
OldUncleMe wrote:
> What kind of o/s is on the remote machine, the one with the cdrom you want
> to mount locally? Say the remote is a windows box. Share the cdrom's
> /ts
...but a Windows box does not understand Rock Ridge extensions so you will have
only 8.3 filenames in case the CDROM uses them (e.g. Linux distribution CD ROMs).
Groetjes,
Simon
------------------------------
From: "Eriksson" <[EMAIL PROTECTED]>
Crossposted-To: alt.linux.slakware
Subject: Re: can't ping, ftp etc "Unable to connect, unknown host"
Date: Sun, 16 May 1999 13:58:50 +0200
>I missed your original post. Can you post the results of 'netstat
>-rn' before and after you make your ppp connection, and maybe your
>/etc/rc.d/rc.inet1, unless you're very confident about it ?
OK..
# netstat -rn
--- Before ppp connection ---
Destination Gateway Genmask Flags MSS Window
irtt Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0
0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0
0 0 eth0
127.0.0.0 0.0.0.0 255.0.0.0 U
0 0 0 lo
--- After ppp connection --- (no change)
Destination Gateway Genmask Flags MSS Window
irtt Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0
0 0 eth0
192.168.1.0 0.0.0.0 255.255.255.0 U 0
0 0 eth0
127.0.0.0 0.0.0.0 255.0.0.0 U
0 0 0 lo
My rc.inet1 file
#! /bin/sh
#
# rc.inet1 This shell script boots up the base INET system.
#
# Version: @(#)/etc/rc.d/rc.inet1 1.01 05/27/93
#
HOSTNAME=`cat /etc/HOSTNAME`
# Attach the loopback device.
/sbin/ifconfig lo 127.0.0.1
/sbin/route add -net 127.0.0.0 netmask 255.0.0.0 lo
# IF YOU HAVE AN ETHERNET CONNECTION, use these lines below to configure the
# eth0 interface. If you're only using loopback or SLIP, don't include the
# rest of the lines in this file.
# Edit for your setup.
IPADDR="192.168.1.5" # REPLACE with YOUR IP address!
NETMASK="255.255.255.0" # REPLACE with YOUR netmask!
NETWORK="192.168.1.0" # REPLACE with YOUR network address!
BROADCAST="192.168.1.255" # REPLACE with YOUR broadcast address, if you
# have one. If not, leave blank and edit below.
GATEWAY="" # REPLACE with YOUR gateway address!
# Uncomment the line below to configure your ethernet card.
/sbin/ifconfig eth0 ${IPADDR} broadcast ${BROADCAST} netmask ${NETMASK}
# If the line above is uncommented, the code below can also be uncommented.
# It sees if the ethernet was properly initialized, and gives the admin some
# hints about what to do if it wasn't.
if [ ! $? = 0 ]; then
cat << END
Your ethernet card was not initialized properly. Here are some reasons why
this
may have happened, and the solutions:
1. Your kernel does not contain support for your card. Including all the
network drivers in a Linux kernel can make it too large to even boot, and
sometimes including extra drivers can cause system hangs. To support
your
ethernet, either edit /etc/rc.d/rc.modules to load the support at
boottime,
or compile and install a kernel that contains support.
2. You don't have an ethernet card, in which case you should comment out
this
section of /etc/rc.d/rc.inet1. (Unless you don't mind seeing this
error...)
END
fi
# Uncomment these to set up your IP routing table.
/sbin/route add -net ${NETWORK} netmask ${NETMASK} eth0
if [ ! "$GATEWAY" = "" ]; then
/sbin/route add default gw ${GATEWAY} netmask 0.0.0.0 metric 1
fi
# End of rc.inet1
>Aaron
>--
>Aaron Baugher - [EMAIL PROTECTED] - Quincy, IL, USA
>Extreme Systems Consulting - http://haruchai.rnet.com/esc/
>CGI, Perl, Java, and Linux/Unix Administration
------------------------------
From: "Joshua J. Brickel" <[EMAIL PROTECTED]>
Subject: How do I setup up email via UUCP?
Date: Sun, 16 May 1999 11:11:13 +0300
I am trying to help a small non-profit school provide adequate email for
their students. The school has a domain name which is presently being
hosted on some machine.
Presently all the students email is aliased to one email account and
then from there it is retrieved by a local machine which tries to sort
it. This is clearly not the best method and probably using some sort of
UUCP type of connection to a server willing to host the domain name and
willing to spool all mail there for us would be better.
My question is HOW do I do this? I am looking for documentation for all
of this. Ideally I would like documentation that would detail how to
set this up both on my local Linux box and on the hosting server.
Anyone have any ideas where I can find such info?
Please respond to either this email address or to the news group.
Thanks,
Joshua
--
[EMAIL PROTECTED]
Motorola, WASD
Indeed what is home in deepest truth, but the place where by our thought
and toil and tender care we are able to promote the well-being of
others? Is not that satisfaction love's best suport and toil's best
reward? We are made and meant to care. And where we have given of our
best, even if unavailing, there the heart holds a certain treasure."
- Joshua Lawrence Chamberlain, Brevet Major-General U.S. Volunteers
(U.S. Civil War)
------------------------------
From: Nate <[EMAIL PROTECTED]>
Subject: Ethernet: recognizing it.
Date: Sun, 16 May 1999 08:03:17 -0400
I am having trouble with my ethernet cards being recognized by linux. I
am sure I enable support in my kernel. When I do ifconfig, it shows
only my lo and ppp connection. can someone help. I have pci ne2000
compati. help or tlell me how I can recognize my ethernet card??? Or at
least how can I debug the situtation.
------------------------------
From: "The Damons" <[EMAIL PROTECTED]>
Subject: Linux and Macs Networked Together...
Date: Sun, 16 May 1999 08:16:40 -0400
I am really new at this linux stuff, and I have waded thru tons of FAQs, and
still can't figure this problem out.
Here is my setup: Two Powerpc Macs running Mac OS 8.6 and a P166 running
Windoze 98 all on a single Ethernet LAN. One of the Macs serves as a
softrouter running IPNetRouter and sharing a single 56k modem that dials a
local ISP on demand. The other Mac and the Windoze machine both are set up
as clients and the IPNetRouter Mac is the router/gateway machine. Believe
it or not this setup actually works quite well for family use.
Now I want to setup linux on the P166 machine so that it can use that same
softrouter. When I run Windoze on the P166 it all works fine; all I had to
do in Windoze is set up a network with the Mac Router IP address
(192.168.0.1) as the Gateway; put in the ISP DNS servers as DNS Servers; and
give the Windoze machine its own IP Address (192.168.0.2).
That was fairly simple in Windoze. How do I do it in linux?
Which leads to some more basic questions:
1. How do I make sure linux sees and uses the Ethernet Card in the P166?
2. How do I set up Linux so that it thinks it is just on a LAN, which is in
reality what I have set up here?
I don't think linux would know or care that another machine on the LAN is
actually a softrouter rather than a hardware box. Shouldn't it look the
same to linux?
Anyone who can help me with this rather basic question would be greatly
appreciated.
Thanks.
Bill Damon, Salem, VA
------------------------------
From: simonbr <[EMAIL PROTECTED]>
Subject: Re: Serious Newbie - Can't locate eth0
Date: Sun, 16 May 1999 14:23:50 +0200
Jason Bond wrote:
> Please forgive my ignorance....I have 2 computers
> 1 runs windows 98 and has a ethernet card setup
> correctly (I believe...it pings itself fine, drivers are
> installed fine, etc)....and 1 runs Red Hat 5.2. The
> ethernet card is a PNP PCI Digital DECchip 21140 based
> card...I got the drivers (tulip.c from
> http://cesdis.gsfc.nasa.gov/linux/drivers/tulip.html..which
> I tried to compile unsuccessfully). I also have used netcfg
> to set the hosts and interfacesin Linux...the problem is that Linux
> doesn't seem to know about the ethernet card...and I'm not sure how to
> "install" it so that the o/s recognizes it. I'm not sure what com port
> it's on...and there is no /dev/eth0 device...and when I use netcfg to
> activate the etc0 with the IP that I have given it...it says:
> Delaying eth0 initialization. Any help would be greatly
> appreciated...thanks,
>
> Jason
I am not really an expert but I think you either have to compile the
driver into the kernel or else it must be loaded as a kernel module (look
into /etc/rc.d/rc.modules). Otherwise or if the card is not recognized
then you won't have a /dev/eth0 device. PCI ethernet cards do not use com
ports; the things to specify are I/O address, interrupt level, DMA channel
etc. You should be able to find them out using W95 device manager, or
maybe the Linux drivers came with a tool to set it up.
Did you read the ethernet HOWTO ?
Success
Simon
------------------------------
From: simonbr <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.setup,comp.os.linux.hardware
Subject: Re: Newbie: Ethernet card not detected
Date: Sun, 16 May 1999 14:32:24 +0200
Mohamed S. Abdallah wrote:
> I just installed Red Hat 6.0 and it doesn't detect my NE2000 compatible
> ethernet card. The card is a SMC EZ 10 ISA. If I need to install a
> device driver for the card, where do I get it from and how do I install
> it? Otherwise, what settings do I need to make?
>
> Thanks,
> Mohamed
Commenting out the applicable line in /etc/rc.d/rc.modules may just get it
working
Success,
Simon.
------------------------------
From: [EMAIL PROTECTED] (mike dombrowski)
Subject: HP855 & HP JetDirect EX J2382B & Linux?
Date: Sun, 16 May 1999 12:23:21 GMT
A store around my house is selling HP JetDirect EX J2382B print
servers for 15$ a piece. If I get it and hook it up to my HP855C can
Linux print to it? If so can someone point me to a faq/howto?
Thanks
Mike
------------------------------
From: kite@NoSpam.%inetport.com (Clifford Kite)
Subject: Re: ppp configuration: "serial link is not 8 bit clean"
Date: 15 May 1999 22:19:40 -0500
Dominic Mitchell ([EMAIL PROTECTED]) wrote:
: I am trying to help two folks who are having problems setting their
: internet connection. I have the last part of the /var/log/messages
: ( they both have the same kind of messages ). They have external
: modems and can communicate with the modem through minicom.
: However according to the logs below, I would be tempted to say that
: their kernels does not support ppp according to their logs "serial
: link is not 8 bit clean" and "Problem: all had bit 7 set to 0". Or
Not 8-bit clean usually means that the ISP did not start PPP on their
end but instead has a text prompt, e.g. a login prompt, that reflects
whatever pppd sends with the 8th bit stripped. There's a whole section
in the PPP-HOWTO on "not 8-bit clean."
One thing that's not mentioned there but which is common is that chat uses
a expect/send string <CONNECT ''> that sends an extra carriage return that
will sometimes confuse the ISP. Replacing this with <CONNECT '\d\c'>
will cure the problem in a surprising number of cases. If it doesn't
then you can post the chat script and log messages for a better answer.
: could it just be as simple as they are using the wrong device?
No.
: Thanks to any good that give a hint on fixing this problem.
: By the way does RH ship their kernels with ppp support modularized
: or in the kernel. By experience I know that their kernel support
: ppp. Because I ask them to check if they could find the module on
: their system (ppp.o, plip.o, etc. ) but locate was silent on this.
You'll get a message to the effect that there is no PPP kernel support
when there's no PPP kernel support.
: May 10 20:24:47 localhost pppd[2405]: Serial connection established.
: May 10 20:24:57 localhost pppd[2405]: Using interface ppp0
: May 10 20:24:57 localhost pppd[2405]: Connect: ppp0 <--> /dev/modem
: May 10 20:25:28 localhost pppd[2405]: LCP: timeout sending Config-Requests
: May 10 20:25:28 localhost pppd[2405]: Connection terminated.
: May 10 20:25:28 localhost pppd[2405]: Receive serial link is not 8-bit clean:
: May 10 20:25:28 localhost pppd[2405]: Problem: all had bit 7 set to 0
--
Clifford Kite <kite@inet%port.com> Not a guru. (tm)
/* 97.3% of all statistics are made up. */
------------------------------
From: Hugh Fader <[EMAIL PROTECTED]>
Subject: Re: Long delay starting sendmail
Date: Sun, 16 May 1999 13:05:19 GMT
Thanks Ashley. John Thompson also put me on to this in a direct correspondence.
Here is what I've found:
The host is a firewall running Linux. Internally it is set up in hosts
as:
192.168.1.100 roark
I have a static IP address on TCI@Home connected outside:
24.7.248.71 c747611-a.roalok1.mi.home.com fader.dyns.cx
I am using DMfader.dyns.cx as the name of the mailhost in sendmail.cf.
(Dyns.cx provides dynamic DNS to me for free.) Now, if I use the
hostname command to set my hostname to roark, I get the delay. If I set
it to fader, sendmail starts up quickly. It doesn't seem to matter what
I put in /etc/hosts.
I think the names for the two interfaces have to be different, and I
would prefer to keep hostname set as roark. Do you know of any magic
sendmail parameter to allow me to do this and keep sendmail happy too?
Ashley Cambrell wrote:
> Hi Hugh
>
> I believe this is because it is trying to send requests to a DNS. Do you
> have a DNS setup on the linux computer for the internal network?
> Sendmail unless specified will look up it's own domain and host name and
> that of the machines that are sending mail. Setting up a DNS will stop this
> process timeing out (hence the wait as it looks up is name from a large list
> of DNS's)
>
> Another possible solution is to turn of sendmail DNS usage in linuxconf
> (it's one of the options there)
>
> That should fix the problem
>
> Ashley Cambrell
>
> Hugh Fader wrote in message <[EMAIL PROTECTED]>...
> >I am having a problem where sendmail takes a very long time to
> >start. 2-3 minutes. I am running Redhat 6.0 and also had this
> >problem when running 5.2. Once started, sendmail runs fine. It is
> >just bothersome that it takes so long to reboot. I am running on
> >@Home network with a static IP.
> >
> >Can anybody give me a pointer toward fixing this problem?
> >
> >Thanks in advance.
> >
------------------------------
Reply-To: "Curt" <[EMAIL PROTECTED]>
From: "Curt" <[EMAIL PROTECTED]>
Subject: Re: User Permissions Woe....
Date: Sun, 16 May 1999 07:51:14 -0500
Seems to me the simplest solution would be to make the files 'group' read
write and 'others' as read only. Then make the members of the sales be the
group owners of the files. Of course anyone with an account on that system
will be able to read the files, not just those 13 users. So it may not be
exactly what you want.
Make all sales users are a member of the same group. /etc/group and or
/etc/passwd
Change the group ownership of the files: see chgrp
Change permissions on the files: see chmod (chmod 664 'file')
@ <[EMAIL PROTECTED]> wrote in message
news:7hm7hh$j97$[EMAIL PROTECTED]...
> Hi,
>
> I'm using samba and faced a problem....
> How can I set permission for 2 different groups of users with different
> access rights to access one directory full of files ??
> eg...group accounts consists of 15 users and group sales consists of 13
> users....they both need to access the same files in the same directory but
> accounts can only read while sales can read and write...
> how do i acheive that ??
>
> Thanks in advance.
>
>
------------------------------
From: [EMAIL PROTECTED] (Frank Hahn)
Subject: Re: ppp configuration: "serial link is not 8 bit clean"
Date: Sun, 16 May 1999 12:59:06 GMT
Reply-To: [EMAIL PROTECTED]
On 16 May 1999 06:00:36 GMT, Bill Unruh <[EMAIL PROTECTED]> wrote:
>In <[EMAIL PROTECTED]> Dominic Mitchell <[EMAIL PROTECTED]> writes:
>
>>However according to the logs below, I would be tempted to say that
>>their kernels does not support ppp according to their logs "serial
>>link is not 8 bit clean" and "Problem: all had bit 7 set to 0". Or
>>could it just be as simple as they are using the wrong device?
>
>ppp works fine. It is just tht the other end is sending ascii when your
>end is expecting to negotiate ppp.
>
>Look at
>axion.physics.ubc.ca/ppp-linux.html
>for step by step instructions for getting ppp up and running.
>
This is quoted firectly from the FAQ file included in the pppd source
code file:
========================================================================
Q: When I try to establish a connection, I get an error message saying
"Serial link is not 8-bit clean". Why?
A: The most common cause is that your connection script hasn't
successfully dialled out to the remote system and invoked ppp service
there. Instead, pppd is talking to something (a shell or login
process on the remote machine, or maybe just the modem) which is only
outputting 7-bit characters.
This can also arise with a modem which uses an AT command set if the
dial command is issued before pppd is invoked, rather than within a
connect script started by pppd. If the serial port is set to 7
bits/character plus parity when the last AT command is issued, the
modem serial port will be set to the same setting.
Note that pppd *always* sets the local serial port to 8 bits per
character, with no parity and 1 stop bit. So you shouldn't need to
issue an stty command before invoking pppd.
========================================================================
Frank Hahn
--
HOW YOU CAN TELL THAT IT'S GOING TO BE A ROTTEN DAY:
#1040 Your income tax refund cheque bounces.
------------------------------
Reply-To: "Curt" <[EMAIL PROTECTED]>
From: "Curt" <[EMAIL PROTECTED]>
Crossposted-To: alt.linux.slakware
Subject: Re: can't ping, ftp etc "Unable to connect, unknown host"
Date: Sun, 16 May 1999 08:06:03 -0500
Looks like you need to add a default route to ppp0
route add default gw dev ppp0
Somehow you also have 2 identical routes you your local net, this probably
won't cause any problems,
but you might look for where it is happening.
I also noticed your MSS size is 0. This may cause problems. You can set
this via ifconfig. I have an MTU
size of 1500 for all my interfaces eth0 and ppp0, you might try the same.
Eriksson <[EMAIL PROTECTED]> wrote in message
news:hqy%2.18272$[EMAIL PROTECTED]...
> >I missed your original post. Can you post the results of 'netstat
> >-rn' before and after you make your ppp connection, and maybe your
> >/etc/rc.d/rc.inet1, unless you're very confident about it ?
>
> OK..
>
> # netstat -rn
>
> --- Before ppp connection ---
> Destination Gateway Genmask Flags MSS Window
irtt Iface
> 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0
0 eth0
> 192.168.1.0 0.0.0.0 255.255.255.0 U 0 0
0 eth0
> 127.0.0.0 0.0.0.0 255.0.0.0 U
0 0 0 lo
>
> --- After ppp connection --- (no change)
> Destination Gateway Genmask Flags MSS Window
> irtt Iface
> 192.168.1.0 0.0.0.0 255.255.255.0 U 0
> 0 0 eth0
> 192.168.1.0 0.0.0.0 255.255.255.0 U 0
> 0 0 eth0
> 127.0.0.0 0.0.0.0 255.0.0.0 U
> 0 0 0 lo
>
> My rc.inet1 file
>
> #! /bin/sh
> #
> # rc.inet1 This shell script boots up the base INET system.
> #
> # Version: @(#)/etc/rc.d/rc.inet1 1.01 05/27/93
> #
>
> HOSTNAME=`cat /etc/HOSTNAME`
>
> # Attach the loopback device.
> /sbin/ifconfig lo 127.0.0.1
> /sbin/route add -net 127.0.0.0 netmask 255.0.0.0 lo
>
> # IF YOU HAVE AN ETHERNET CONNECTION, use these lines below to configure
the
> # eth0 interface. If you're only using loopback or SLIP, don't include the
> # rest of the lines in this file.
>
> # Edit for your setup.
> IPADDR="192.168.1.5" # REPLACE with YOUR IP address!
> NETMASK="255.255.255.0" # REPLACE with YOUR netmask!
> NETWORK="192.168.1.0" # REPLACE with YOUR network address!
> BROADCAST="192.168.1.255" # REPLACE with YOUR broadcast address, if you
> # have one. If not, leave blank and edit below.
> GATEWAY="" # REPLACE with YOUR gateway address!
>
> # Uncomment the line below to configure your ethernet card.
> /sbin/ifconfig eth0 ${IPADDR} broadcast ${BROADCAST} netmask ${NETMASK}
>
> # If the line above is uncommented, the code below can also be
uncommented.
> # It sees if the ethernet was properly initialized, and gives the admin
some
> # hints about what to do if it wasn't.
> if [ ! $? = 0 ]; then
> cat << END
> Your ethernet card was not initialized properly. Here are some reasons
why
> this
> may have happened, and the solutions:
> 1. Your kernel does not contain support for your card. Including all the
> network drivers in a Linux kernel can make it too large to even boot,
and
> sometimes including extra drivers can cause system hangs. To support
> your
> ethernet, either edit /etc/rc.d/rc.modules to load the support at
> boottime,
> or compile and install a kernel that contains support.
> 2. You don't have an ethernet card, in which case you should comment out
> this
> section of /etc/rc.d/rc.inet1. (Unless you don't mind seeing this
> error...)
> END
> fi
>
> # Uncomment these to set up your IP routing table.
> /sbin/route add -net ${NETWORK} netmask ${NETMASK} eth0
> if [ ! "$GATEWAY" = "" ]; then
> /sbin/route add default gw ${GATEWAY} netmask 0.0.0.0 metric 1
> fi
>
> # End of rc.inet1
>
>
> >Aaron
> >--
> >Aaron Baugher - [EMAIL PROTECTED] - Quincy, IL, USA
> >Extreme Systems Consulting - http://haruchai.rnet.com/esc/
> >CGI, Perl, Java, and Linux/Unix Administration
>
>
------------------------------
From: Tommy Johnsson <[EMAIL PROTECTED]>
Subject: Re: New to networking - simple question???
Date: Sun, 16 May 1999 12:33:11 +0200
One solution to your problem is to install a late version of BIND. It has
capability to dynamically change it's tables. I have heard rumors that it
can be directly connected to DCPD server for dynamic updates. Where is
also a possibility to extract the IP-addresses for the computers on a
smb-network through nmblookup. I think there is a script that does this an
produces a file for BIND in the examples section in the Samba
documentation.
--
Tommy
"Most people's favorite way to end a game is by winning."
On Fri, 14 May 1999, Mark Swope wrote:
> I have some sort of mental block about networking....
>
> I have a Linux server set up at home. I've gotten ISC's
> dhcpd running on it for my other two computers (a desktop
> and a laptop). I have Samba setup as a WINS server as
> well...
>
> What's screwing me up is that I tried to do something from
> my server to one of the other two computers and I couldn't do
> it because the server was looking at my hosts file which has
> an older static mapping that I used to use.
>
> What do I modify to tell the server to look at what dhcp daemon
> has assigned for addresses?
>
> Thanks,
> mas
>
>
>
>
------------------------------
From: "David Travers" <[EMAIL PROTECTED]>
Crossposted-To:
apana.lists.web.java.linux,comp.os.linux.help,comp.os.linux.setup,linux.redhat.misc
Subject: Re: how do I setup exceed ?
Date: Sun, 16 May 1999 01:43:50 +0100
I use Exceed V4 with no problems.
I couldn't get rexec to work but rlogin works fine, and is probably the most
desirable way to do it anyway.
First of all make sure the Exceed X server is running on the PC with Win98.
If it isn't running then you will get the
X11TransSocketINETConnect: Can't connect: errno = 111
xterm Xt error: Can't open display: 192.168.1.3:0.0
error message.
To test the functionality of the Exceed server do the following.
At the command line on the Linux box type xterm -display 192.168.1.3:0 &
This will create a new terminal which should appear on your PC.
If this works then basically your setup is fine. I'm not sure about this but
I think the mistake you made is with 0.0 instead of just 0.
Next create the Exceed script which will automate this one stage further and
associate with an icon as you have done. I personally have created a
shortcut on my desktop called "Connect To Server".
I have been using this for a while now and have had no problems. Can run
Netscape, linuxconf, Word Perfect and all other X programs. Watch out for
StarOffice 5.0 however (if you use it), will probably crash not only the
Win98 PC upon startup but possibly also the Linux box.
You can then change the parameters of the switches as you require.
Note also when you issue new X programs on Exceed terminal, they will start
on the Win98 PC and not the linux box, so as long as you get one terminal
working then everthing else is a doddle.
If it doesn't work e-mail me.
bibi <[EMAIL PROTECTED]> wrote in message
news:eCWaQ7kn#GA.140@cpmsnbbsa02...
> Hi All,
>
> I have a P233 win98 box and a P200 Linux RedHat 5.2 box. What I want to do
> is to load the x windos from my
> win 98 box. I have exceed 6.0.
>
> Ok now come to the point.
>
> This is my exceed setup.
> win98 ip: 192.168.1.3
> Linux ip: 192.168.1.1
>
> Xconfig seups
> ------------------------
> communication = passive
> display number = 0
>
> Protocol = default
>
> Window mode = multiple.
>
> Xstart setup
> --------------------
> start method: REXEC(TCP/IP)
> Program type : X window
> Host type: Unix
> command: /usr/X11R6/bin/xterm -sb -ls -display 192.168.1.3:0.0 -fg
blue -bg
> lightgrey &
>
> when I Run it, the error message says: "Unable to connect to the host
using
> specified start method"
>
> But If I change the
>
> start method: REXEC(TCP/IP) to RLOGIN(TCP/IP) and the
> command: /usr/X11R6/bin/startx -sb -ls -display 192.168.1.3:0.0 -fg
blue -bg
> lightgrey &
>
> the X Window starts on the Linux box instead of my Win98.
>
> when I setup the export DISPLAY=192.168.1.3:0.0 and use the
> xhost command, the following error comes up:
>
> _X11TransSocketINETConnect: Can't connect: errno = 111
> xterm Xt error: Can't open display: 192.168.1.3:0.0
>
>
> Does anyone know how to setup it?
> Please email me or discuss about this matter.
>
> Sincerely,
> VJ
>
>
------------------------------
** FOR YOUR REFERENCE **
The service address, to which questions about the list itself and requests
to be added to or deleted from it should be directed, is:
Internet: [EMAIL PROTECTED]
You can send mail to the entire list (and comp.os.linux.networking) via:
Internet: [EMAIL PROTECTED]
Linux may be obtained via one of these FTP sites:
ftp.funet.fi pub/Linux
tsx-11.mit.edu pub/linux
sunsite.unc.edu pub/Linux
End of Linux-Networking Digest
******************************