How to subscribe to an additional server channel for installing sun jdk 6 on RHEL 4.x

I want to install sun jdk 6 on RHEL 4.x using yum install java-1.6.0-sun-devel , but found that I have to subscribe to an additional server channel. How to do it?

Thanks at Advance!

+6
source share
1 answer

Add an additional channel / repository:

 yum-config-manager --enable rhel-6-server-supplementary 

Make sure that the required package is available and installed:

 yum list *-sun-devel yum install java-1.6.0-sun-devel 
+3
source

Source: https://habr.com/ru/post/914021/


All Articles