{{theTime}}

Search This Blog

Total Pageviews

Linux Java8 Installation Issue: jexec from install of jre-1.8.0-fcs.x86_64 conflicts with file from package jre-1.6.0_10-beta.x86_64

install of jre-1.8.0-fcs.x86_64 conflicts with file from package jre-1.6.0_10-beta.x86_64

Reason: Prior releases of the JRE conflict with the 1.8.0 rpm.
-------

How to fix it:  Force installation
-------------

Syntax: rpm <rpm commands> --force <rpm-package-name>.rpm
-------


Command: rpm -i --force jre-1.8.0-fcs.x86_64.rpm
--------

No comments:

Generate Insert Sql from Select Statement

SELECT 'INSERT INTO ReferenceTable (ID, Name) VALUES (' +        CAST(ID AS NVARCHAR) + ', ''' + Name + ''...