jack wallen jr <[EMAIL PROTECTED]> wrote:
> On Mon, 29 May 2000, Hyung Kim wrote:
> > I just removed netscape communicator 4.73 and
> > installed the communicator 4.73 with 128-bit
> > encryption. Now, everytime I try to open multiple
> > copies of netscape, I get a warning stating that there
> > is a lock file in the user's .netscape directory.
> i changed the way i call netscape. instead of just using the netscape
> command (say in the gnome panel) to call netscape i use this shell script:
>
> #! /bin/sh
>
> if [ -h ~/.netscape/lock ]
> then
> rm -f ~/.netscape/lock
> echo "LOCK FILE REMOVED"
> fi
> netscape-communicator
This might be okay for you, but there's a danger that you
might run a second netscape by accident, in which case
you'll have two netscapes that think they're both, for
example, in charge of your ~/.netscape/bookmarks.html file.
Don't be suprised if you seem to be getting only about half
of the stuff you try and bookmark (as one netscape process
overwrites the file created by the other one). There's
reasons for this lock file.
Personally I have a script called "dropnet":
#!/bin/sh
# dropnet - cleans up after netscape screwups
kill -9 `ps | grep netscape | awk '{print $1}'`
rm $HOME/.netscape/lock
rm $HOME/core >& /dev/null
# Note: you might argue that "killall -9 netscape-communicator"
# would be better than the kill -9 line.
But neither of these scripts are really the answer to
Hyung Kim's question. His point is that there are two
different versions of netscape 4.73 that behave
inconsistently. This sounds like a netscape bug to me,
[EMAIL PROTECTED]'s password:
Last login: Mon May 29 22:14:35 2000 from 216-59-5-124.usa
Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994
The Regents of the University of California. All
rights reserved.
FreeBSD 3.2-RELEASE (KZSU) #0: Sun Sep 19 14:13:30 PDT 1999
This is KZSU.Stanford.EDU, volunteer-operated radio-dweeb
cyber-services.
Gripes and queries to [EMAIL PROTECTED]
--------------------------------------------------------------------------
If you post messages to the outside world from here, por
favor disclaim:
"Opinions are my own only, and do not necessarily
represent those
of KZSU Radio or Stanford University."
(Or words to that effect.)
--------------------------------------------------------------------------
Users must comply with Stanford Computer and Network Use
Policy
(see /home/ops/comp.use.policy). Authorized use only, etc.
--------------------------------------------------------------------------
You have new mail.
AKA
executing .login file
setting the path
The path has been walked.
Incorporating new mail into inbox...
1+ 05/29 Chris Re: Which CD players and
Turntables to get?! (lo
2 05/29 "Peggy Fisher" CD's -- especially hip-hop
and reggae DJs<<>>>no
3 05/30 Gregory Hosler RE: NFSD on RH 6.2<<On
29-May-00 Gregory Hosler
4 05/30 Tom Lane Re: [HACKERS] Full text
indexing preformance! (l
5 05/30 Tom Lane Re: [HACKERS] Header File
cleanup.<<Lamar Owen <
6 05/29 John Aldrich Two SCSI controllers<<I've
got two SCSI controll
7 05/29 John Aldrich Re: CD-Writer<<On Mon, 29 May
2000, CCH wrote: >
8 05/29 "Chad Goldberg" Baseball this week<<This
message sent to staff@k
9 05/29 Mail Delivery Sub Returned mail: Host unknown
(Name server: go.sta
10 05/30 Peter Mount [HACKERS] RE: [INTERFACES]
Postgresql 7.0 JDBC e
11 05/30 Mehrshad Mansouri Re: Which CD players and
Turntables to get?! (al
12 05/30 Mehrshad Mansouri Re: Which CD players and
Turntables to get?! (al
13 05/30 Edstrom Johan Re: [Slashcode] Code for
pulling headers from ot
14 05/30 =?iso-8859-1?Q?Ho RE: [PORTS] Problem with
connectiong to postmast
15 05/30 Jan Wieck Re: [HACKERS] Applying TOAST
to CURRENT<<Bruce M
16 05/29 "Mikkel L. Ellert Re: How to configure SCSI
with CD-RW and HP Sure
17 05/29 Josef Jurek sndconfig: "Unable to Play
Audio"<<I am presentl
18 05/30 Philip Warner [HACKERS] Rename database?<<I
have looked (brief
19 05/30 Zeugswetter Andre AW: [HACKERS] Proposal for
enhancements of privi
20 05/30 Peter Vazsonyi Re: [HACKERS] Re: [GENERAL]
SPI & file locations
21 05/30 Zoki Re: Serial link not 8-bit
clean.<<On Mon, 29 May
22 05/29 "Alan Mead" rsync: permission denied,
unexpected EOF .. read
23 05/30 "eagle" linux with other os<<Hello, I
have installed Rh
24 05/30 "eagle" compatible printer's<<Hello,
I have installed Rh
25 05/30 "Bardia Khalili" Setting priority on multiple
sources of internet
26 05/30 Zoki Re: Serial link not 8-bit
clean.<<On Sun, 28 May
27 05/30 Bret Hughes Re: SSH, VPN's, and
firewalls<<Gordon Messmer wr
28 05/30 Karel Zak Re: AW: [HACKERS] Proposal
for enhancements of p
29 05/29 To:redhat-list@re Re: alumni registry - web
database?<<"Anthony E.
30 05/29 Hidong Kim Re: OT: LaTeX mailing
list<<Thanks, Hidong Micha
31 05/30 "Claudiu Balciza" whereis ip_masq_netmeeting
?<<anyone knows where
32 05/29 Hidong Kim Re: Two SCSI controllers<<Hi,
John, John Aldrich
33 05/30 knet PCI DMA disabled<<I have a
motherboard with an A
34 05/31 Danny Re: apache<<Have you
specified the DocumentRoot?
35 05/31 Danny Re: netscape-lock file<<When
Netscape crashes it
Buffers Files Tools Edit Search Help
kill -9 `ps | grep netscape | awk '{print $1}'`
rm $HOME/.netscape/lock
rm $HOME/core >& /dev/null
# Note: you might argue that "killall -9
netscape-communicator"
# would be better than the kill -9 line.
But neither of these scripts are really the answer to
Hyung Kim's question. His point is that there are two
different versions of netscape 4.73 that behave
inconsistently. This sounds like a netscape bug to me,
and it should probably be reported to them at:
http://help.netscape.com/forms/bug-client.html
When I switched to Netscape 4.7 (when I upgraded to RedHat
6.1, I think), I noticed that I could now run a second
netscape without any annoying error messages, and I thought:
"Ah, finally netscape is smart enough to talk to existing
netscape processes, and it doesn't have to insist on being
the one and only invocation." But it's at least possible
that this new behavior is a bug.
Ah, I was just looking at the Release Notes, and I see that
there are two different Linux versions kicking around...
wouldn't be suprised if this has something to do with it:
http://home.netscape.com/eng/mozilla/4.7/relnotes/unix-4.7.html#unix
The Linux 2.0 version of Communicator is linked against libc
5.4.22, libm 5.0.8, and XFree86 3.2.
The Linux 2.0 glibc version of Communicator is linked
against glibc 2.0.7 and XFree86 3.3.1
--
Email style hint: reply below the quote, and trim and
excess, so that it reads like a dialog.
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.