Linux-Networking Digest #495, Volume #10 Sun, 14 Mar 99 20:13:47 EST
Contents:
FTP problems - possible ipfwadm problem? (Liz Froggett)
Slow TELNET and FTP connect (b3)
Re: PPP connection question (Juergen Heinzl)
Deleteing IP Aliases (Robert Sills)
Re: For all you Nicrosoft lovers (Tim Dean)
Re: Logging into Samba from Windoze 98 (W.D. Allen)
Re: Sharing a CDROM ? (Angerer Guenter)
Re: Telnet to Linux from Win 98 ("Jase")
PPP doesn't work! ("Jack Zhu")
Re: Telnet to Linux from Win 98 ("Mark Swope")
Re: ipfwadm (Bernd Eckenfels)
Trouble with ping ("The Dude")
lynx 2.8.1rel.2: saving gives Permission denied (Georg Schwarz)
Re: Can I shutdown linux remotely? ("Mike")
Re: PCI modems in linux? ("D. Keith Higgs")
SIOCADDRT: Network Unreachable (Kishore)
Help with ipchains ("William Grinolds")
Re: For all you Nicrosoft lovers (ken brakey)
Re: Sextuple Boot (DaZZa)
----------------------------------------------------------------------------
From: Liz Froggett <[EMAIL PROTECTED]>
Subject: FTP problems - possible ipfwadm problem?
Date: Sun, 14 Mar 1999 22:02:45 +0000
Reply-To: [EMAIL PROTECTED]
Hi,
My 'network' consists of a RedHat 5.1 box (Linux 2.0.35) as a gateway
and connected by 10baseT ethernet to a Win95 box (I needed Word!). When
I try and ftp from netscape on the Windoze box, the Saving location gets
to 99% and then just sticks. If I cancel then the file is deleted.
I have only noticed this problem with ftp since I started using ipfwadm,
I enclose my setup below.
Can anyone help please?
Please email me with any responses at [EMAIL PROTECTED]
Thanks
Matt Proctor
#!/bin/sh
NAME=$0
case "$1" in
start)
echo "Starting Masquerade services..."
/sbin/ipfwadm -O -f
/sbin/ipfwadm -I -f
/sbin/ipfwadm -F -f
# OUTPUT
/sbin/ipfwadm -O -p accept
# FORWARDING
# only allow forwarding from local network
# (drop samba requests)
/sbin/ipfwadm -F -p deny
/sbin/ipfwadm -F -a deny -P tcp -S 0.0.0.0/0 137:139
/sbin/ipfwadm -F -a deny -P udp -S 0.0.0.0/0 137:139
/sbin/ipfwadm -F -a m -S 192.168.1.0/24
# INPUT
/sbin/ipfwadm -I -p deny
# drop spoofed packets (seem to be from our network
# but actually came from outside)
/sbin/ipfwadm -I -a deny -S 192.168.1.0/24 -W ppp0
# accept anything from local interface
/sbin/ipfwadm -I -a accept -W eth0
# or incoming replies (ACK bit set)
/sbin/ipfwadm -I -a accept -P tcp -k
# Allow DNS queries to the network
/sbin/ipfwadm -I -a accept -P udp -D 0.0.0.0/0 53
/sbin/ipfwadm -I -a accept -P udp -S 0.0.0.0/0 53 -D
0.0.0.0/0
1024:65535
# uncomment when mail set up
# smtp
# /sbin/ipfwadm -I -a accept -P tcp -D 192.168.1.1/32 25
# pop3
# /sbin/ipfwadm -I -a accept -P tcp -D 192.168.1.1/32
110
# Allow ICMP messages
/sbin/ipfwadm -I -a accept -P icmp
# Allow 'active' ftp to non-reserved port
# (from source port of 20)
/sbin/ipfwadm -I -a accept -P tcp -S 0.0.0.0/0 20 -D
192.168.1.0/24
1024:65535
echo "Done"
;;
stop)
/sbin/ipfwadm -O -f
/sbin/ipfwadm -I -f
/sbin/ipfwadm -F -f
/sbin/ipfwadm -O -p deny
/sbin/ipfwadm -I -p deny
/sbin/ipfwadm -F -p deny
;;
*)
echo "Usage: $NAME {start|stop}"
exit 1
;;
esac
exit 0
------------------------------
From: b3 <[EMAIL PROTECTED]>
Subject: Slow TELNET and FTP connect
Date: Sun, 14 Mar 1999 13:06:11 -0500
I'm getting a 60+ sec delay between the time i try to connect to my Red
Hat 5.2 Linux Server with TELNET and/or FTP. BUT, the Apache web server
has NO delay with web pages. I have the same configuration at work (I
teach High School Technology). I'm connecting from windows 98 to the
linux box via 10/100 mbit ethernet.
The only difference between the 2 networks is the HUB, which i'm
swapping out on monday. Does anyone have any ideas as to what may be
causing this delay?
Let me also say, that once i am connected to FTP or telnet, transfer is
perfect without any delay.
Please let me know if you have any info. thanks in advance!
Brian
[EMAIL PROTECTED]
------------------------------
From: [EMAIL PROTECTED] (Juergen Heinzl)
Subject: Re: PPP connection question
Date: Sun, 14 Mar 1999 18:16:38 GMT
In article <7cgn8f$q8i$[EMAIL PROTECTED]>, Christian Dysthe wrote:
>Hi,
>
>when I am logged on to my ISP and type "ps a" I get the following:
>
>/sbin/getty/ 38400 tty1
>
>Does this mean that my speed is 38400? My dialer (Xisp) tells me I connect at
>42-48000.
No ... yes ... I mean tty1 is the terminal device, say it means the speed
given to getty in /etc/inittab. Your ppp device is a different story.
Cheers,
Juergen
--
\ Real name : J�rgen Heinzl \ no flames /
\ EMail Private : [EMAIL PROTECTED] \ send money instead /
\ Phone Private : +44 181-332 0750 \ /
------------------------------
From: Robert Sills <[EMAIL PROTECTED]>
Subject: Deleteing IP Aliases
Date: Sun, 14 Mar 1999 18:05:15 -0500
Does anyone know how to delete IP aliases on Linux? More specifically,
2.0.x Linux (kernel) for a Redhat distribution 5.x. I can create the
easily enough, ifconfig eth0:0 10.10.10.10, but I also need to be able to
delete the as easily. Any Ideas?
Thanks In Advance!
Robert Sills [EMAIL PROTECTED]
------------------------------
From: Tim Dean <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,comp.os.linux.hardware,comp.os.linux.setup
Subject: Re: For all you Nicrosoft lovers
Date: Mon, 15 Mar 1999 12:32:24 +1300
Reply-To: [EMAIL PROTECTED]
doole wrote:
> "Rufus V. Smith" <[EMAIL PROTECTED]> apparently said this:
> >
> >The point is that sometimes innocent people need their privacy.
> >
>
> From Authorities? Why??
surely 'why not?' is an equally appropriate question here... and in many
cases you could replace the word 'need' with 'want' which is just as
valid.
-Tim
------------------------------
From: W.D. Allen <[EMAIL PROTECTED]>
Subject: Re: Logging into Samba from Windoze 98
Date: 14 Mar 1999 23:31:43 GMT
Mr. Sery,
Thanks for the info. Once I finally got a few more cups of coffee down my
gullet, I realized I had a situation with difference in versions. :-))
I am still working my way through your really good book, Linux Network
Toolkit (I highly recomend it to others who may read this post), and am
now expanding my Samba network. I will probably be working with the
security measures such a Tripwire in a week or two.
Keep up the good work and please forgive my comment in that one post about
missing information. I did not have my head screwed on straight. ;-D
Question, Red Hat 5.2 comes with Samba 1.9.18p10. 2.03 is now available
for download. If everything seems to be working fine at this point, is
there any urgency in downloading the new build?
Thanks,
WDA
Paul Sery wrote:
>
> Since your workgroup=MYGROUP you are likely using Samba from a Red Hat
> 5.2 (or 5.1) distribution. The book was written for RH5.0 which defaults
> to workgroup=WORKGROUP. Also, if you are using Win98 or a recent version
> of Win95, then you have to set up Samba to read encrypted passwords. The
> version of Samba that comes with RH5.0 does not support encryption. The
> configuration that is described in the book was throughly tested and
works
> but modifications are required if used with the newer software.
>
> To get things going, you will want to use the same workgroup on both your
> client and server. You will also want to enable encryption on Samba.
> Please see the ENCRYPTION.txt file that comes with the Samba RPM. You
> might also want to look at the README.samba at my web site:
> www.swcp.com/~pgsery/LNTK for more information.
>
> Good luck!
> Paul
>
>
> W.D. Allen ([EMAIL PROTECTED]) wrote:
> : I have been trying to get Samba connectivity from my Linux box to my
W98
> : client box.
>
> : From my W98 box, I can see the Linux box in the Mygroup that Samba is
> : broadcasting. However, when I double click the linux box, it
identifies
> : itself as //Linuxbox/IPC$ - and then wants a password.
>
> : I followed the instructions in the Linux Network Toolkit book
(published
> : by IDG), but it obviously leaves out some important information. What
do
> : I need to really do, is there a mini-howto that specifically addresses
> : what should be a realatively simple Samba connectivity setup? The
Samba-
> : Howto is about as clear as mud. If someone could give me a short step-
by-
> : step, I would really appreciate it.
>
> : Thanks,
> : WDA
>
>
> : ------------------ Posted via SearchLinux ------------------
> : http://www.searchlinux.com
================== Posted via SearchLinux ==================
http://www.searchlinux.com
------------------------------
From: [EMAIL PROTECTED] (Angerer Guenter)
Subject: Re: Sharing a CDROM ?
Date: Sun, 14 Mar 1999 18:02:43 GMT
On Sun, 14 Mar 1999 22:26:55 +0800, Chris Severn
<[EMAIL PROTECTED]> wrote:
>does if it's possible to use it with samba ?
yes, samba will solve your problem!
gue
___
http://fly.to/gue
------------------------------
From: "Jase" <[EMAIL PROTECTED]>
Subject: Re: Telnet to Linux from Win 98
Date: Mon, 15 Mar 1999 10:09:37 +1100
This is similar to a problem I had when I first set up Linux on a networked
machine. Forgive me if the answer seems obvious, but its this sort of stuff
that I had trouble figuring out because everyone was talking about
ifconfig's and other technical setup stuff.
Most times when you setup Linux, it will (by default) not allow root logins
via a networked terminal. Try logging in under a non-root login and then
using 'su' to become the superuser.
Alternatively, you can amend your /etc/securetty file to include a line
'ttyp0'. This will allow a root login from a networked terminal - but it
could cause security problems (ie: allows people to hack into root via
network).
Other areas to look at (if you are not actually getting to the login stage)
are the file:
/etc/hosts.allow
which contains information on which network hosts are allowed to use local
INET services. Type in the IP number of your Win98 computer here. (Note you
have to reset the INET services after this - check the manual on how to do
this).
Jason Cleeland
Daniel Crawshay wrote in message <7cega0$p5j$[EMAIL PROTECTED]>...
>I have just set up a ppp/printer server in my home, and want to be able to
>shut away the Linux box in a cupboard. The printing and ppp works
correctly
>(and ping to the Linux box etc), but I cannot telnet to the Linux box to
>make modifications. What do I need to do? When I try to connect to the
box
>from Win98 I get a message saying "Connection to Host Lost".
>
>I also cannot connect correctly from the Linux box itself via loopback, or
a
>direct connect to the server IP. If I telnet from the Linux box to the
>loopback (or the Linux box IP), I get "Connection closed by foreign host"
>after a few seconds of no response.
>
>I would appreciate any Help. I have looked around at FAQ's etc, but it
>appears ad if the Telnet is something that should just work??
>
>Thanks
>
>Daniel
>
>
------------------------------
From: "Jack Zhu" <[EMAIL PROTECTED]>
Subject: PPP doesn't work!
Date: Sun, 14 Mar 1999 19:04:01 -0500
Linux 2.2.1
Kflex 56+v.90 external modem
After dial up to the ISP server, it seems that it disconnect by itself
within 5-10 seconds. I can never do "ping" to test, 'cause always failed.
Linux PPP was used to be work under my internal 33.6 modem. And I use the
same scripts, such "ppp-on".
What's the problem? Any suggestion??!!
BTW, what's difference between "/etc/cua0" and "/etc/ttyS0"?
Can I use both of them in my scripts?
Thanks in advance!!!
Jack
------------------------------
From: "Mark Swope" <[EMAIL PROTECTED]>
Subject: Re: Telnet to Linux from Win 98
Date: Sun, 14 Mar 1999 17:46:29 -0600
I concur. Sometimes its a very simple thing. I noticed
that I couldn't telnet w/o specifying a fully qualified
domain name (wheezer.home.net instead of just wheezer).
This is truly just doing the silly walk, because I really don't
have an explanation (yet). However, you should try to
get your hosts* files set up and your loopback set up
so that you can at least telnet yourself...
mas
Jase wrote in message <7chfj7$m4n$[EMAIL PROTECTED]>...
>This is similar to a problem I had when I first set up Linux on a networked
>machine. Forgive me if the answer seems obvious, but its this sort of stuff
>that I had trouble figuring out because everyone was talking about
>ifconfig's and other technical setup stuff.
>
>Most times when you setup Linux, it will (by default) not allow root logins
>via a networked terminal. Try logging in under a non-root login and then
>using 'su' to become the superuser.
>
>Alternatively, you can amend your /etc/securetty file to include a line
>'ttyp0'. This will allow a root login from a networked terminal - but it
>could cause security problems (ie: allows people to hack into root via
>network).
>
>Other areas to look at (if you are not actually getting to the login stage)
>are the file:
>
>/etc/hosts.allow
>
>which contains information on which network hosts are allowed to use local
>INET services. Type in the IP number of your Win98 computer here. (Note you
>have to reset the INET services after this - check the manual on how to do
>this).
>
>Jason Cleeland
>
>
>Daniel Crawshay wrote in message <7cega0$p5j$[EMAIL PROTECTED]>...
>>I have just set up a ppp/printer server in my home, and want to be able to
>>shut away the Linux box in a cupboard. The printing and ppp works
>correctly
>>(and ping to the Linux box etc), but I cannot telnet to the Linux box to
>>make modifications. What do I need to do? When I try to connect to the
>box
>>from Win98 I get a message saying "Connection to Host Lost".
>>
>>I also cannot connect correctly from the Linux box itself via loopback, or
>a
>>direct connect to the server IP. If I telnet from the Linux box to the
>>loopback (or the Linux box IP), I get "Connection closed by foreign host"
>>after a few seconds of no response.
>>
>>I would appreciate any Help. I have looked around at FAQ's etc, but it
>>appears ad if the Telnet is something that should just work??
>>
>>Thanks
>>
>>Daniel
>>
>>
>
>
------------------------------
From: Bernd Eckenfels <[EMAIL PROTECTED]>
Subject: Re: ipfwadm
Date: 14 Mar 1999 20:21:11 GMT
James Yates <[EMAIL PROTECTED]> wrote:
> I want to be able to pass any traffic coming to port 80 on a dirty interface
> on my linux box to a machine on my network that is behind IP Masq. This
> should be fairly simple does any body know how?
you can use redid, netcat or any other aplication level "plug" gateway. You
can use squid's server acceleration feature, or you can use the ipportfw
feature of the linux kernel.
More info on http://sites.inka.de/lina/freefire-l/tools.html
Greetings
Bernd
------------------------------
From: "The Dude" <[EMAIL PROTECTED]>
Subject: Trouble with ping
Date: Sun, 14 Mar 1999 15:52:47 -0800
I am new to Linux and can't figure out what I configured wrong. I have a
small network at home, two machines and connect to internet with PPP.
I can get on the internet with Netscape and surf around, so DNS is working.
I can ping via name or IP my local two home machines, but they are in my
hosts file.
I can't ping addresses on the internet. If I use the name of a internet
site the address is being resolved, but nothing ping sits forever. If I
ping with the IP address same result ping just sits.
Can someone point me to what I setup wrong or forgot to configure?
TIA,
Steve B.
------------------------------
From: [EMAIL PROTECTED] (Georg Schwarz)
Crossposted-To: comp.infosystems.www.browsers.misc
Subject: lynx 2.8.1rel.2: saving gives Permission denied
Date: 14 Mar 1999 14:53:23 GMT
I've recently compiled lynx 2.8.1rel2 on RedHat Linux 5.2. Everything
seems to work fine except for one thing:
when I download a file (hitting d) and try to save it's not saved. On
stderror I get
sh: /tmp/L464-3TMP.html: Permission denied
L464-3TMP.html being just an example. The temporary file L464-3TMP.html
has been created in /tmp with permissions -rw------- and ownership of the
person that is running lynx. It fails even when it's run by root.
Any ideas what could be at fault here?
--
Georg Schwarz ([EMAIL PROTECTED], [EMAIL PROTECTED], PGP 2.6ui)
Institut f�r Theoretische Physik +49 30 314-24254 FAX -21130 IRC kuroi
Technische Universit�t Berlin http://home.pages.de/~schwarz/
------------------------------
From: "Mike" <[EMAIL PROTECTED]>
Subject: Re: Can I shutdown linux remotely?
Date: Sun, 14 Mar 1999 13:42:51 -0500
I've never had a problem doing this since rh 4.x. If you are, try using
"nohup shutdown -r(or h) now &" (or substitute now for num of minutes) .
The nohup is just for keeping programs runing that were started by a
terminal session that has died...
HTH,
Mike
David Efflandt wrote in message ...
>On Thu, 11 Mar 1999 04:40:18 GMT, [EMAIL PROTECTED]
><[EMAIL PROTECTED]> wrote:
>> I have 2 machines; a RH5.1 Linux and a win95. Most of the time I work on
the
>>Linux from the win95 through OmniX (an application that emulate the
X-server
>>from Linux). My question is, can I shutdown the Linux from the Win95 side.
I
>>really dont want to login again on the linux and issue a shutdown command.
If
>>I recalled it right, I couldnt do that. linux just doesnt shutdown.
>>
>>Any info is greatly appreciated. Thanks.
>>
>>p/s: please cc a reply to my mail box.T Q.
>
>One way or another, you have to be logged onto the Linux box to shut it
>down. If you have an xterm in OmniX, you can do it from there. Just
>remember to end the command line with ' &' so it continues to run when you
>log off. And if you enable shutdown for a normal user, include the path:
>
>/sbin/shutdown -h +2 &
>
>should shutdown in 2 minutes, even if you log off.
>
>--
>David Efflandt [EMAIL PROTECTED]
>http://www.xnet.com/~efflandt/
------------------------------
From: "D. Keith Higgs" <[EMAIL PROTECTED]>
Crossposted-To: comp.os.linux.hardware,comp.os.linux.setup
Subject: Re: PCI modems in linux?
Date: Sun, 14 Mar 1999 19:56:42 -0500
Sounds like you may want to invest in a book on Linux device drivers. I just
saw one in the O'Reilly catalog <http://www.oreilly.com> for a seemingly
reasonable price.
Keith
[EMAIL PROTECTED] wrote:
> All PCI modems are NOT "winmodems"... winmodems can be ISA or PCI.
> The reason they are windows only modems is not because of the BUS type,
> but because the engineers who designed them found a way to eliminate
> some of the hardware components of the modem and burden the processor
> with those chores. In other words, they bog your CPU down because they
> wanted to save a few dollars on parts! This type of implementation only
> works under Windows because it takes special drivers to make the CPU do
> the work.
>
> There are non-winmodem PCI modems. Whether or not they can be made to
> work under Linux is a different story...
>
> In article <7c6hcr$ont$[EMAIL PROTECTED]>,
> Richard Nelson <[EMAIL PROTECTED]> wrote:
> > Actually, that is incorrect
> >
> > Hello,
> >
> > My name is Richard Nelson, and I am a Technical support engineer for
> > Actiontec Electronics, INC
> >
> > We do have a PCI modem that is NOT a "Win" modem, it is controller based,
> > and uses the Lucent Venus chipset.
> >
> > I need as much help as I can possibly get for this, as I would like it to
> > become the first officially supported PCI modem for Linux, and I repeat,
> > it IS CONTROLLER based, NOT windows based, etc....
> >
> > My direct number is 408-548-4772
> > and my email address is [EMAIL PROTECTED]
> >
> > Thank you
> >
> > Eugene wrote:
> > >
> > > AFAIK all PCI modems are winmodems
> > >
> > > Doug wrote in message <[EMAIL PROTECTED]>...
> > > >Can a PCI modem be used in linux? If so how? Something called a modem
> > > >enumerator is installed in windows along with the modem itself and i
> > > >dont know what that is. Its creative modmeblaster DI5630 v.90. Its
> > > >being used as PnP right now but there are jumpers on it I dont have the
> > > >manual so im trying to find out if com and irq can be hard set..
> > > >Thanks for any help and please email me a response if possible at
> > > >ratchet at tir dot com
> > > >Doug
> > > >
> > >
> > >
> >
> > ------------------ Posted via SearchLinux ------------------
> > http://www.searchlinux.com
> >
>
> -----------== Posted via Deja News, The Discussion Network ==----------
> http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own
--
D. Keith Higgs, Collection Maintenance Supervisor
Kelvin Smith Library, 11055 Euclid Avenue, Cleveland Ohio 44106-7151
=====================================================================
mailto:[EMAIL PROTECTED] Phone:(216)368-0559 FAX:(216)368-3669
http://www.cwru.edu/UL/pershomepages/K_Higgs.html
Have you rebooted Windows today?
------------------------------
From: Kishore <[EMAIL PROTECTED]>
Subject: SIOCADDRT: Network Unreachable
Date: 15 Mar 1999 00:31:48 GMT
Hi ,
I can ping the gateway but not the whole network.
How is this possible?
When i TRY TO ACCESS any web site there is no entry for that URL.
Please help me out.
WHen I try to ping(even the DNS which I have given ) it says
SIOCADDRT: Network Unreachable.
Thanks for the help
-kishore
================== Posted via SearchLinux ==================
http://www.searchlinux.com
------------------------------
From: "William Grinolds" <[EMAIL PROTECTED]>
Subject: Help with ipchains
Date: Sun, 14 Mar 1999 18:58:57 -0600
I'm trying to upgrade my Linux masquerading firewall computer from the
2.0.36 kernel with ipfwadm and ipautofw to the new 2.2.3 kernel with
ipchains 1.3.8 and ipmasqadm. Everything seems to work okay, but I can't
get DirectPlay to work through the firewall.
The old way (the way that works):
/usr/local/sbin/ipautofw -A -r udp 2300 2400 -h 192.168.2.2
/usr/local/sbin/ipautofw -A -r tcp 2300 2400 -h 192.168.2.2
/usr/local/sbin/ipautofw -A -r udp 47624 47624 -h 192.168.2.2
/usr/local/sbin/ipautofw -A -r tcp 47624 47624 -h 192.168.2.2
The new way (the way that I'm trying to get working):
/sbin/ipchains -A input -p udp -s ! 192.168.0.0/22 2300:2400 -m 2
/sbin/ipchains -A input -p tcp -s ! 192.168.0.0/22 2300:2400 -m 2
/sbin/ipchains -A input -p udp -s ! 192.168.0.0/22 47624 -m 2
/sbin/ipchains -A input -p tcp -s ! 192.168.0.0/22 47624 -m 2
/usr/sbin/ipmasqadm mfw -A -m 2 -r 192.168.2.2
I've even tried:
/sbin/ipchains -A input -p udp -s ! 192.168.0.0/22 2300:2400 -m 2
/sbin/ipchains -A input -p tcp -s ! 192.168.0.0/22 2300:2400 -m 3
/sbin/ipchains -A input -p udp -s ! 192.168.0.0/22 47624 -m 4
/sbin/ipchains -A input -p tcp -s ! 192.168.0.0/22 47624 -m 5
/usr/sbin/ipmasqadm mfw -A -m 2 -r 192.168.2.2
/usr/sbin/ipmasqadm mfw -A -m 3 -r 192.168.2.2
/usr/sbin/ipmasqadm mfw -A -m 4 -r 192.168.2.2
/usr/sbin/ipmasqadm mfw -A -m 5 -r 192.168.2.2
with identical results: The game (I'm trying Age of Empires: Rise of Rome
Expansion) goes to Setting Up Multiplayer Game, but after a while, it drops
back to the Zone room saying it couldn't launch the game.
Ideas?
Bill
------------------------------
From: ken brakey <[EMAIL PROTECTED]>
Crossposted-To: alt.os.linux,comp.os.linux.hardware,comp.os.linux.setup
Subject: Re: For all you Nicrosoft lovers
Date: Mon, 15 Mar 1999 01:02:59 GMT
SEE! I'm NOT paranoid! THEY ARE out to get me! :)
ken
John Hasler wrote:
> Rufus V. Smith writes:
> >The point is that sometimes innocent people need their privacy.
>
> doole writes:
> > From Authorities? Why??
>
> "Authorities" with a capital "A", eh? Who do you think these "Authorities"
> are, God? Why should the fact that someone is employed by one of those
> organizations that you label an "Authority" give him the right to read my
> private files?
> --
> John Hasler This posting is in the public domain.
> [EMAIL PROTECTED] Do with it what you will.
> Dancing Horse Hill Make money from it if you can; I don't mind.
> Elmwood, Wisconsin Do not send email advertisements to this address.
------------------------------
From: DaZZa <[EMAIL PROTECTED]>
Crossposted-To:
comp.os.ms-windows.nt.admin.security,comp.os.ms-windows.nt.admin.networking,comp.os.netware.misc
Subject: Re: Sextuple Boot
Date: Mon, 15 Mar 1999 11:36:04 +1100
On Sun, 14 Mar 1999, Forrest wrote:
> You're right, NT's boot loader couldn't see the Linux partition on my
> computer.
It can - you just have to be a little tricky at making it work.
My NT machine boots straight into Linux from the NT loader. No hassles, no
problems.
Email if you want the exact method.
DaZZa
------------------------------
** 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
******************************