简体   繁体   中英

Not able to install IE in centos 7

Commands which I used for installing 1)yum install epel-release 2)yum install wine 3)wget http://www.tatanka.com.br/ies4linux/downloads/ies4linux-latest.tar.gz Till these steps I dont have any issue.

4)tar -xf ies4linux-latest.tar.gz When I use this command tar -xf ies4linux-latest.tar.gz I get the following error. gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error is not recoverable: exiting now

I am stuck here. Please suggest how I should resolve this error and install IE in my Centos machine.

From the error message, the file is not a gzipped file but a POSIX tar archive file. Which means it was not zipped at all but instead it was compressed using tar. Perhaps it was simply renamed afterwards.

So, try to extract the file using the following command:

  • tar xf MyFile.tar.gz

  • tar xvf MyFile.tar.gz

  • tar zxvf ies4linux-latest.tar.gz

More detail information about install IE browser in Linux VM, please check this link:

InstallingInternetExplorer

Besides, by using the above method, it just installs the old version of IE browser. To use the latest version IE browser, I think the best workaround is to install any Windows OS using a virtual machine. Than user can try to access that Windows OS from Linux OS and try to run their tests with IE browser. You could download the Windows Virtual Machine fromhere , for Free for 90 days.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM