Internet Explorer for UNIX (Mainsoft specific)


 
Thread Tools Search this Thread
Operating Systems Solaris Internet Explorer for UNIX (Mainsoft specific)
# 15  
Old 03-30-2008
Okay. The installer is broken (it thinks 10 is lower than 5) and refuse to run when on Solaris 10. You can fake it by launching this small Dtrace script before the installation and killing it after.

You'll need to fix the shell script I was mentioning in a previous posting afterwards.

Code:
#!/usr/sbin/dtrace -wqs
syscall::uname:entry
{
  self->addr = arg0;
}

syscall::uname:return
{
  copyoutstr("5.5", self->addr+(257*2), 257);
}

# 16  
Old 04-04-2008
Ok, (sorry for the loooong delay) when I was running the script... I got an execution error on line 2; I got something that read like "the paremeters were not not correct". (Using the dtrace command).

-Andy
# 17  
Old 04-05-2008
You need to be root while running the dtrace script.
# 18  
Old 04-07-2008
Thanks guys Smilie

I think i'll give on this issue. The browser's obsolete anyway, so I guess that should be enough to quit.

Regards,
Andy
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. What is on Your Mind?

Internet Explorer EOL

Hard to imagine that in the two decades of its existence this product once ruled supreme, but the news is finally there: RIP Internet Explorer: Twitter mourns and mocks death of Microsoft (0 Replies)
Discussion started by: figaro
0 Replies

2. Solaris

Internet Explorer for Solaris and HPUX

Any idea where can I download IE for UNIX platform? Microsoft does not support the downloading anymore? (5 Replies)
Discussion started by: jennifer
5 Replies

3. Windows & DOS: Issues & Discussions

Internet Explorer flashes off

Hi, What must have happen to my internet explorer that flashes whenever it want to load. The page after trying to load would just logout. I have tried to reset most of the setting on the properties but all to no avail. Can someone pls assist. Thanx (1 Reply)
Discussion started by: kayode
1 Replies

4. Shell Programming and Scripting

view my TCL script on the Internet explorer

Hello I wrote some small TCL script which writes some HTML commands. when I invoke it through the IE I get a blank screen what should I do to watch my results on MS IE? can you point me to a simple ready made script so I can learn from it? I am working on a solaris system thanks (2 Replies)
Discussion started by: orid
2 Replies

5. IP Networking

Internet Explorer Solaris

Downloaded and installed, when I try to execute iexplorer it responds with "iexplorer: not found", but it is right there in the directory I am in and I im logged in as root. any ideas? (3 Replies)
Discussion started by: cluettr
3 Replies

6. UNIX for Dummies Questions & Answers

internet explorer for hp-ux

Hello, i'm running a hp-ux workstation model 715 / 100 with hp-ux version 11.11 i need a microsoft internet explorer for this workstation to make some tests. does anyone know where i can cat a internet explorer 4.01 for my workstation? Thank all for help! ;-) (3 Replies)
Discussion started by: ortsvorsteher
3 Replies

7. UNIX for Dummies Questions & Answers

May I try Internet Explorer on my SCO?

I Have SCO OpenServer 5 with Netscape Navigator, but I'll like to try Internet Explorer to see how it workd on Unix. I don't know where I can find (If there is) a version compatible with SCO OpenServer! (2 Replies)
Discussion started by: SuPeRbYtE
2 Replies
Login or Register to Ask a Question