Need RHEL/CentOS 7 'Little Endian' ISO for PowerPC

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Need RHEL/CentOS 7 'Little Endian' ISO for PowerPC
# 1  
Old 09-22-2016
Need RHEL/CentOS 7 'Little Endian' ISO for PowerPC

Hi!

One of our clients need RHEL 7 on PPC hardware for their R&D setup and they are particular about this being 'Little Endian'.

The problem is that Redhat doesn't have LE RHEL7 images below 7.1 while the latest toolkit (which is needed while reimaging an IBM LPAR) that IBM provides only works upto 7.0 Smilie

I've be churning the web for hours together but in vain. Could anyone please shed some light here?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

RHEL Linux 6.2 to 7.3 - Bootable iso

Hi All On one of my sandbox machine, I want to replace RHEL 6.2 to RHEL 7.3. I am using both developer editions. rhel-server-7.3-x86_64-dvd.iso ... This is what I have downloaded from Red Hat Enterprise Linux Download | Red Hat Developers My understanding is this file would work as a... (1 Reply)
Discussion started by: videsh77
1 Replies

2. Red Hat

How to reduce the LVM Size in RHEL/Centos 7 ?

Hi All, I have one logical volume with size as 900G and it is mounted as xfs file system. Now I want to reduce this partition to 500G. So I followed the below steps. unmount the mount point /home Reduced the volume using the command Now I remounted the partition. But the problem... (3 Replies)
Discussion started by: kalpeer
3 Replies

3. Red Hat

Network Teaming not working in RHEL/CentOS 7

I was testing Networking Teaming (activebackup) with a VM hosted on VmWare Workstation and VirtualBox, and the result is, if the active interface is down, the system is not using the backup interface. Tested on both CentOS / RHEL 7 Please find below the command I have used to configure teaming.... (0 Replies)
Discussion started by: atanubanerji
0 Replies

4. Red Hat

How to Upgrade Centos 5.7 using Centos 5.8 ISO image on Vmware workstation

Dear Linux Experts, On my windows 7 desktop with the help of Vmware workstation (Version 7.1), created virtual machine and installed Centos 5.7 successfully using ISO image. Query : Is this possible to upgrade the Centos 5.7 using Centos 5.8 ISO image to Centos version 5.8?.. if yes kindly... (2 Replies)
Discussion started by: Ananthcn
2 Replies

5. Emergency UNIX and Linux Support

RHEL and Centos VMs with IO failure on root

Hello, I am running into this issues, few VMWare VM's that are running with RHEL 5.6 and Centos 5.7, are having read write errors on the root file system. This is noticed on all vm's. After looking to log files this what I noticed. #touch test.txt touch: cannot touch `test.txt': Read-only... (12 Replies)
Discussion started by: bobby320
12 Replies

6. Red Hat

OpenSUSE installation using RHEL / CentOS Kickstart

Hi guys I have CentOS installed on my server. I have also installed TFTP server, DHCP server. I am able to install CentOS on remote machines using PXE boot and kickstart cfg file. I would like to install OpenSUSE using CentOS kickstart file. How do I do it ? I am also fine with any other... (2 Replies)
Discussion started by: msohail
2 Replies

7. Red Hat

Downloading RHEL ISO's!

Hi friends, I am a novice Linux user, and I want to take the RHCE test in future. As I have been told that the RHCE test is all about Redhat Enterprise Linux. I approached redhat.com to download RHEL 6.1, but they don't offer that to people who have email id's at gmail, yahoo etc. Where then I can... (2 Replies)
Discussion started by: gabam
2 Replies

8. Red Hat

Centos/rhel 5 cluster 3 nodes with out Quorum

Hi all, i have 3 nodes cluster (Centos 5 cluster suit) with out quorum disk, node vote = 1, the value of a quorum = 2, when 2 nodes going offline, cluster services are destoys. How i can save the cluster and all services(move all services to one alive node) with out quorum disk when other... (3 Replies)
Discussion started by: Flomaster
3 Replies

9. Virtualization and Cloud Computing

virtualization in RHEL 5.3 & Centos 5.3

Hi I would like to know how to do virtualization in Rhel 5.3 and Cent os 5.3, As i am new this Virtualization need guidence how to install and configure guest os in Rhel and Cent Os can some one guide me step by step Regards Solaris8in (1 Reply)
Discussion started by: solaris8in
1 Replies

10. UNIX and Linux Applications

Migrating Oracle from Big Endian to Little Endian Platorm

Hi, We are trying to migrate an oracle database from Sun Solaris (SunOS 5.9 Generic_118558-28 sun4u sparc SUNW,Ultra-60) to Linux 2.6.18-53.1.19.el5 #1 SMP Tue Apr 22 03:01:10 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux which is basically a Big Endian to Little Endian conversion. We shutdown... (3 Replies)
Discussion started by: luft
3 Replies
Login or Register to Ask a Question
cvt_ftof(3)						     Library Functions Manual						       cvt_ftof(3)

NAME
cvt_ftof - Converts a floating-point data type to another supported floating-point data type. LIBRARY
Math Library (libm.a) SYNOPSIS
#include <cvt.h> int cvt_ftof( void *input_val, int input_type, void *output_val, int output_type, int options); DESCRIPTION
cvt_ftof() converts one floating-point data type to another. Input_val points to the input value to be converted and output_val points to the converted result. The conversion is subject to the options specified in the options (bit field) argument. This function returns a bit field indicating any status conditions. Input_type and output_type identify the floating-point data type of input_val and output_val as follows: ------------------------------------------------------------------ Input_type/Output_type Data Type Size ------------------------------------------------------------------ CVT_VAX_F VAX F Floating 4 bytes CVT_VAX_D VAX D Floating 8 bytes CVT_VAX_G VAX G Floating 8 bytes CVT_VAX_H VAX H Floating 16 bytes CVT_IEEE_S IEEE Little Endian S Floating 4 bytes CVT_IEEE_T IEEE Little Endian T Floating 8 bytes CVT_IEEE_X IEEE Little Endian X Floating 16 bytes CVT_BIG_ENDIAN_IEEE_S IEEE Big Endian S Floating 4 bytes CVT_BIG_ENDIAN_IEEE_T IEEE Big Endian T Floating 8 bytes CVT_BIG_ENDIAN_IEEE_X IEEE Big Endian X Floating 16 bytes CVT_IBM_SHORT IBM Short Floating 4 bytes CVT_IBM_LONG IBM Long Floating 8 bytes CVT_CRAY_SINGLE Cray Single Floating 8 bytes ------------------------------------------------------------------ Provide a zero (0) value to the options argument to select default behavior or choose one or more options (status condition option, round- ing options, "FORCE" options, Cray and IBM options) from the tables below as the options argument. Specify only the options that apply to your conversion. A conflicting or incompatible options argument will be reported as an error (CVT_INVALID_OPTION). ---------------------------------------------------------------------------- Applicable Conversion Status Condition Option Description ---------------------------------------------------------------------------- All CVT_REPORT_ALL Report all applicable status condi- tions as the default. The reporting of recoverable status conditions is disabled by default when this option is not used. ---------------------------------------------------------------------------- ------------------------------------------------------------------------- Applicable Conversion Rounding Options Description ------------------------------------------------------------------------- All CVT_ROUND_TO_NEAREST The default rounding mode for con- versions to IEEE data types. This IEEE Std. 754 rounding mode results in a representable output value nearest to the infinitely precise result. If the two nearest repre- sentable values are equally near, the one with its least significant bit zero is the result. All CVT_BIASED_ROUNDING The default rounding mode for con- versions to non-IEEE data types. Performs "traditional" style round- ing. This mode results in a repre- sentable output value nearest to the infinitely precise result. If the two nearest representable values are equally near, the output value is the closest to either positive infinity or negative infinity depending on the sign of the input value. All CVT_ROUND_TO_ZERO Round the output value toward zero (truncate). All CVT_ROUND_TO_POS Round the output value toward posi- tive infinity. All CVT_ROUND_TO_NEG Round the output value toward nega- tive infinity. ------------------------------------------------------------------------- ----------------------------------------------------------------------------------- Applicable Conversion "FORCE" Options Description ----------------------------------------------------------------------------------- All CVT_FORCE_ALL_SPECIAL_VALUES Apply all applicable "FORCE" options for the current conversion. IEEE CVT_FORCE_DENORM_TO_ZERO Force a denormalized IEEE output value to zero. This option is valid only for conversions to IEEE output values. IEEE CVT_FORCE_INF_TO_MAX_FLOAT Force a positive IEEE infinite out- put value to +max_float and force a negative IEEE infinite output value to -max_float. This option is valid only for conversions to IEEE output values. IEEE or VAX CVT_FORCE_INVALID_TO_ZERO Force an invalid IEEE NaN (not a number) output value or a VAX ROP (reserved operand) output value to zero. This option is valid only for conversions to IEEE or VAX output values. ----------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------- Applicable Conversion Options for Cray Format Conversion Description ---------------------------------------------------------------------------------------- Cray CVT_ALLOW_OVRFLW_RANGE_VALUES Allow an input/output exponent value > 60000 (8). Cray CVT_ALLOW_UDRFLW_RANGE_VALUES Allow an input/output exponent value < 20000 (8). ---------------------------------------------------------------------------------------- ---------------------------------------------------------------------------------------- Applicable Conversion Options for IBM Format Conversion Description ---------------------------------------------------------------------------------------- IBM CVT_ALLOW_UNNORMALIZED_VALUES Allow unnormalized input arguments. Allow an unnormalized output value for a small value which would nor- malize to zero. ---------------------------------------------------------------------------------------- The maximum representable floating-point values (max_float) for the IEEE_S_Floating, IEEE_T_Floating, IEEE_X_Floating, Big_Endian_IEEE_S_Floating, Big_Endian_IEEE_T_Floating, and Big_Endian_IEEE_X_Floating formats are: --------------------------------------------------------------------------- Data Type max_float Value --------------------------------------------------------------------------- S_FLOAT Decimal: 3.402823e38 T_FLOAT Decimal: 1.797693134862316e308 X_FLOAT Decimal: 1.189731495357231765085759326628007016196477e4932 --------------------------------------------------------------------------- EXAMPLES
This example converts the value pointed to by big_x which is of type IEEE Big Endian T Floating, to the IEEE Little Endian T Floating data type and stores the result in the location pointed to by little_x. No conversion options are specified. status = cvt_ftof( &big_x, CVT_BIG_ENDIAN_IEEE_T, &little_x, CVT_IEEE_T, 0 ); This example converts the value pointed to by x which is of type VAX D Floating, to the IEEE Little Endian T Floating data type and stores the result in the location pointed to by y. Any special IEEE values which would normally be generated will be removed. That is, NaN and Denormalized results will be returned as zero and infinite results will go to +- max_float. In addition, all record- able status conditions will be reported. status = cvt_ftof(&x, CVT_VAX_D, &y, CVT_IEEE_T, (CVT_FORCE_ALL_SPECIAL_VALUES | CVT_REPORT_ALL) ); RETURN VALUES
The return value is a bit field containing the condition codes raised by the function. cvt_ftof() returns CVT_NORMAL; otherwise, it sets one or more of the following recoverable and unrecoverable conditions. Use the following condition names to determine which conditions are set: ------------------------------------------------------------------ Condition Name Condition (Always reported by default) ------------------------------------------------------------------ CVT_INVALID_INPUT_TYPE Invalid input type code. CVT_INVALID_OUTPUT_TYPE Invalid output type code. CVT_INVALID_OPTION Invalid option argument. ------------------------------------------------------------------ ----------------------------------------------------------------- Condition (Only reported if the Condition Name CVT_REPORT_ALL option is selected) ----------------------------------------------------------------- CVT_RESULT_INFINITE Conversion produced an infinite result. (For conversions to IEEE data types.) CVT_RESULT_DENORMALIZED Conversion produced a denormalized result. (For conversions to IEEE data types.) CVT_RESULT_OVERFLOW_RANGE Conversion yielded an exponent > 60000 (8). (For Cray data type conversions.) CVT_RESULT_UNDERFLOW_RANGE Conversion yielded an exponent < 20000 (8). (For Cray data type conversions.) CVT_RESULT_UNNORMALIZED Conversion produced an unnormal- ized result. (For IBM data type conversions and reported CVT_RESULT_INVALID Conversion result is either ROP (reserved operand), NaN (not a number), or closest equivalent. Cray and IBM data types return 0. (For all data type conversions.) CVT_RESULT_OVERFLOW Conversion resulted in overflow. (For all data type conversions.) CVT_RESULT_UNDERFLOW Conversion resulted in underflow. (For all data type conversions.) CVT_RESULT_INEXACT Conversion resulted in a loss of precision. (For all data type conversions.) ----------------------------------------------------------------- RELATED INFORMATION
ANSII/IEEE Std 754-1985, IEEE Standard for Binary Floating-Point Arithmetic delim off cvt_ftof(3)