Sponsored Content
Operating Systems Linux Red Hat How to switch back from Oracle Kernel to RedHat? Post 303022891 by Peasant on Sunday 9th of September 2018 01:05:52 AM
Old 09-09-2018
Build from scratch.
OUI installer has a nice feature, called response file.

If your environments are the same or similar, it will magically install everything without hours of clicking in those screens.

What i would do is :
1. Pop a virtualization solution and install RHEL on it.
Make the network and disk layout as you want it.
2. Take a snapshot of that box.
3. Install the 12c database using clicking via GUI.
4. Save a response file
5. Check if everything is done exactly as you want it.
6. Rollback a snapshot, and reinstall from response file.
7. Examine if desired result is achieved and document it.

ORACLE-BASE - Oracle Universal Installer (OUI) Silent Installations

This will help you in a long run if you initially invest some time in it.

Hacking around with different repositories and rolling back stuff, will only cost you more time in the end.

Regards
Peasant.
These 2 Users Gave Thanks to Peasant For This Post:
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Load Oracle tables and switch public synonym

I need some help from Oracle and UNIX expertise point of view. I have two tables, METADATA_A and METADATA_B. I need to switch loading these tables. If we load METADATA_A today, the following week we would have to load METADATA_B. There is a public synonym "METADATA" that sits on top of... (2 Replies)
Discussion started by: madhunk
2 Replies

2. UNIX for Dummies Questions & Answers

how to compile linux kernel on redhat

Hello, Please let me know how to compile a linux kernel on redhat. I am relatively new in this area so please be a little patient with me. Here is the file I was consulting with the following details: Compiling the Linux Kernel on Redhat 7.1 This page describes how to install... (2 Replies)
Discussion started by: bhattbonny
2 Replies

3. Solaris

Switch to 64-bit kernel on Solaris x86

I know this is probably a dumb question, but all of my Google and forum searches have been coming up empty. I mostly work with SPARC. How do you switch Solaris on x86 from 32-bit to 64-bit? When I do a uname -a on a newly installed machine I get "SunOS XXXXXXX 5.10 Generic_144489-17 i86pc i386... (8 Replies)
Discussion started by: christr
8 Replies

4. Solaris

Unable to switch back to root from user

Hi, I am new to Solaris and when i am trying to Switch to root login from user, system throws message saying permissions denied... Steps I Followed: Created a user and logged into that user by SU username tried to come back to root but system throws message "permissions denied" ... (7 Replies)
Discussion started by: VijaySolaris
7 Replies

5. Red Hat

kernel panic - Failed back to HPET

Hello, I have a problem in my server: HP ProLiant DL580 G5 My OS is REDHAT 4.6 I have an error when I start the server: Badness in do_unblank_screen at drivers/char/vt.c:2878 ... Your time source seems to be instable or some driver is hogging interupts rip __smp_call_function +... (1 Reply)
Discussion started by: markke
1 Replies

6. Red Hat

Redhat Cluster updating kernel setting

hello, I was going through clustering documentation for Redhat, it says "Enable IP Aliasing support in the kernel by setting the CONFIG_IP_ALIAS kernel option to y. When specifying kernel options, under Networking Options, select IP aliasing support", I knew I should update /etc/sysctl.conf with... (1 Reply)
Discussion started by: bobby320
1 Replies

7. Red Hat

redhat rebuild kernel

Hi expert, I goes to # pwd /usr/src/kernels/2.6.32-279.el6.x86_64 then I make bzImage I meet error # make CHK include/linux/version.h CHK include/linux/utsrelease.h SYMLINK include/asm -> include/asm-x86 make: *** No rule to make target `missing-syscalls'. Stop. make:... (1 Reply)
Discussion started by: yanglei_fage
1 Replies

8. Red Hat

Bring tape paths back up in Redhat 5.4

Hi Folks, Looking for some assistance here on a Dell server connected to a Dell tape robot with Redhat 5.4 and Netbackup 6.5. Netbackup thinks the tapes are all present and working, but they are not - we lost the internal encryption keys earlier but think that they are reinstated as the... (0 Replies)
Discussion started by: gull04
0 Replies
Vendor(3pm)						User Contributed Perl Documentation					       Vendor(3pm)

NAME
Net::MAC::Vendor - look up the vendor for a MAC SYNOPSIS
use Net::MAC::Vendor; my $mac = "00:0d:93:29:f6:c2"; my $array = Net::MAC::Vendor::lookup( $mac ); You can also run this as a script with as many arguments as you like. The module realizes it is a script, looks up the information for each MAC, and outputs it. perl Net/MAC/Vendor.pm 00:0d:93:29:f6:c2 00:0d:93:29:f6:c5 DESCRIPTION
The Institute of Electrical and Electronics Engineers (IEEE) assigns an Organizational Unique Identifier (OUI) to manufacturers of network interfaces. Each interface has a Media Access Control (MAC) address of six bytes. The first three bytes are the OUI. This module allows you to take a MAC address and turn it into the OUI and vendor information. You can, for instance, scan a network, collect MAC addresses, and turn those addresses into vendors. With vendor information, you can often guess at what what you are looking at (e.g. an Apple product). You can use this as a module as its individual functions, or call it as a script with a list of MAC addresses as arguments. The module can figure it out. This module tries to persistently cache with DBM::Deep the OUI information so it can avoid using the network. If it cannot load DBM::Deep, it uses a normal hash (which is lost when the process finishes). You can preload this cache with the load_cache() function. So far, the module looks in the current working directory for a file named mac_oui.db to find the cache. I need to come up with a way to let the user set that location. Functions run( @macs ) If I call this module as a script, this class method automatically runs. It takes the MAC addresses and prints the registered vendor information for each address. I can pass it a list of MAC addresses and run() processes each one of them. It prints out what it discovers. This method does try to use a cache of OUI to cut down on the times it has to access the network. If the cache is fully loaded (perhaps using "load_cache"), it may not even use the network at all. lookup( MAC ) Given the MAC address, return an anonymous array with the vendor information. The first element is the OUI, the second element is the vendor name, and the remaining elements are the address lines. Different records may have different numbers of lines, although the first two should be consistent. The normalize_mac() function explains the possible formants for MAC. normalize_mac( MAC ) Takes a MAC address and turns it into the form I need to send to the IEEE lookup, which is the first six bytes in hex separated by hyphens. For instance, 00:0d:93:29:f6:c2 turns into 00-0D-93. The input string can be a separated by colons or hyphens. They can omit leading 0's (which might make things look odd). We only need the first three bytes 00:0d:93:29:f6:c2 # usual form 00-0d-93-29-f6-c2 # with hyphens 00:0d:93 # first three bytes 0:d:93 # missing leading zero :d:93 # missing all leading zeros fetch_oui( MAC ) Looks up the OUI information on the IEEE website, or uses a cached version of it. Pass it the result of "normalize_mac()" and you should be fine. The "normalize_mac()" function explains the possible formants for MAC. To avoid multiple calls on the network, use "load_cache" to preload the entire OUI space into an in-memory cache. This can take a long time over a slow network, thoug; the file is about 60,000 lines. fetch_oui_from_ieee( MAC ) Looks up the OUI information on the IEEE website. Pass it the result of "normalize_mac()" and you should be fine. The "normalize_mac()" function explains the possible formants for MAC. fetch_oui_from_cache( MAC ) Looks up the OUI information in the cached OUI information (see "load_cache"). The "normalize_mac()" function explains the possible formats for MAC. To avoid multiple calls on the network, use "load_cache" to preload the entire OUI space into an in-memory cache. If it doesn't find the MAC in the cache, it returns nothing. extract_oui_from_html( HTML ) Gets rid of the HTML around the OUI information. It may still be ugly. The HTML is the search results page of the IEEE ouisearch lookup. Returns false if it could not extract the information. This could mean unexpected input or a change in format. parse_oui( STRING ) Takes a string that looks like 00-03-93 (hex) Apple Computer, Inc. 000393 (base 16) Apple Computer, Inc. 20650 Valley Green Dr. Cupertino CA 95014 UNITED STATES and turns it into an array of lines. It discards the first line, strips the leading information from the second line, and strips the leading whitespace from all of the lines. With no arguments, it returns an empty anonymous array. load_cache( [ SOURCE ] ) Downloads the current list of all OUIs, parses it with "parse_oui()", and stores it in $Cached anonymous hash keyed by the OUIs (i.e. 00-0D-93). The "fetch_oui()" will use this cache if it exists. The cache is stored as a "DBM::Deep" file named after the "NET_MAC_VENDOR_CACHE" environment variable, or "mac_oui.db" by default. By default, this uses "http://standards.ieee.org/regauth/oui/oui.txt" , but given an argument, it tries to use that. To load from a local file, use the "file://" scheme. If "load_cache" cannot load the data, it issues a warning and returns nothing. SEE ALSO
Net::MacMap SOURCE AVAILABILITY
This source is part of a SourceForge project which always has the latest sources in CVS, as well as all of the previous releases. http://sourceforge.net/projects/brian-d-foy/ If, for some reason, I disappear from the world, one of the other members of the project can shepherd this module appropriately. AUTHOR
brian d foy "<bdfoy@cpan.org>" COPYRIGHT AND LICENSE
Copyright (c) 2004-2007 brian d foy. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2007-10-28 Vendor(3pm)
All times are GMT -4. The time now is 08:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy