Operating System - HP-UX
1833769 Members
2322 Online
110063 Solutions
New Discussion

How do I start Netscape in HP-UX?

 
Joshua Goi
Frequent Advisor

How do I start Netscape in HP-UX?

Hi,

How do I start Netscape in HP-UX? I don't see any icons for it anywhere. Can I start it from the shell?

Thanks!
6 REPLIES 6
A. Clay Stephenson
Acclaimed Contributor

Re: How do I start Netscape in HP-UX?

export DISPLAY=myhost:0.0
netscape &
If it ain't broke, I can fix that.
TwoProc
Honored Contributor

Re: How do I start Netscape in HP-UX?

export your DISPLAY to your Xwindows Terminal or emulator address.

export DISPLAY=192.123.123.123:0.0

run netscape ...

netscape &

Or, if it's not in your path... the standard location for Netscape is /opt/netscape ...

so

/opt/netscape/netscape &

We are the people our parents warned us about --Jimmy Buffett
bhavin asokan
Honored Contributor

Re: How do I start Netscape in HP-UX?

hi,

if you are using a system with a graphical interface(such as workstation) open a shell and go to /opt/netscape
then
./netscape &

if you dont have a gui , then you have to use software like reflection,xmanager etc.

start the xmanager/reflection in your desktop.
open a shell for your unix server.export the display to your desktop

export DISPLAY=:0.0

example: export DISPLAY=192.168.200.5:0.0
if the ipaddress of your desktop is 192.168.200.5

cd /opt/netscape
./netscape &


regds,
Ravi_8
Honored Contributor

Re: How do I start Netscape in HP-UX?

Hi,

#export DISPLAY=:0.0
#/opt/netscape/bin/netscape
never give up
Chris Vail
Honored Contributor

Re: How do I start Netscape in HP-UX?

/opt/mozilla/mozilla &

Don't bother with netscape.


Chris
Joshua Goi
Frequent Advisor

Re: How do I start Netscape in HP-UX?

Thanks guys