I did encounter [INS-08101] Unexpected error while executing the action at state: ‘supportedOSCheck while trying to execute "./runInstaller" while searching in different places I found that even though 19c is certified with OEL8 it required to be 7.8. In my oel it showed as below. $cat / etc / oracle - release Oracle Linux Server release 8.4 The expected value ideally for the oracle universal installer is 7.8 . Below workaround is mentioned in a blog post credits to "Deheime@Jurasüdfuss.SO.CH" Several options were mentioned and I chose below to get my OUI up and run $export CV_ASSUME_DISTID = OEL7 . 8 using oracle user and immediately execute ./runInstller All the best! Shaamil.
RMAN Crosscheck commands derived from different Oracle sources: To crosscheck all backups use: RMAN> CROSSCHECK BACKUP; To list any expired backups detected by the CROSSCHECK command use: RMAN> LIST EXPIRED BACKUP; To delete any expired backups detected by the CROSSCHECK command use: RMAN> DELETE EXPIRED BACKUP; To crosscheck all archive logs use: RMAN> CROSSCHECK ARCHIVELOG ALL; To list all expired archive logs detected by the CROSSCHECK command use: RMAN> LIST EXPIRED ARCHIVELOG ALL; To delete all expired archive logs detected by the CROSSCHECK command use: RMAN> DELETE EXPIRED ARCHIVELOG ALL; To crosscheck all datafile image copies use: RMAN> CROSSCHECK DATAFILECOPY ALL; To list expired datafile copies use: RMAN> LIST EXPIRED DATAFILECOPY ALL; To delete expired datafile copies use: RMAN> DELETE EXPIRED DATAFILECOPY ALL; To crosscheck all backups of the USERS tablespace use: RMAN> CROSSCHECK BACKUP OF TABLESPACE USERS; To list expired backups...