Installing Linux Vmware
Installing Linux Vmware
rpm -q libaio-devel
rpm -aq | grep -i libaio-devel
Note: Dont include the complete package name. Ignore the package version number and
just provide the package name.
To Install a package:
To Update a package:
http://gomseydba4all.blogspot.com/2015/03/installation-of-oracle-11gr2-rac-on.html
----Shared filesystem
binutils-2.20.51.0.2-5.11.el6 (x86_64)
compat-libcap1-1.10-1 (x86_64)
compat-libstdc++-33-3.2.3-69.el6 (x86_64)
compat-libstdc++-33-3.2.3-69.el6.i686
gcc-4.4.4-13.el6 (x86_64)
gcc-c++-4.4.4-13.el6 (x86_64)
glibc-2.12-1.7.el6 (i686)
glibc-2.12-1.7.el6 (x86_64)
glibc-devel-2.12-1.7.el6 (x86_64)
glibc-devel-2.12-1.7.el6.i686
ksh
libgcc-4.4.4-13.el6 (i686)
libgcc-4.4.4-13.el6 (x86_64)
libstdc++-4.4.4-13.el6 (x86_64)
libstdc++-4.4.4-13.el6.i686
libstdc++-devel-4.4.4-13.el6 (x86_64)
libstdc++-devel-4.4.4-13.el6.i686
libaio-0.3.107-10.el6 (x86_64)
libaio-0.3.107-10.el6.i686
libaio-devel-0.3.107-10.el6 (x86_64)
libaio-devel-0.3.107-10.el6.i686
libXext-1.1 (x86_64)
libXext-1.1 (i686)
libXtst-1.0.99.2 (x86_64)
libXtst-1.0.99.2 (i686)
libX11-1.3 (x86_64)
libX11-1.3 (i686)
libXau-1.0.5 (x86_64)
libXau-1.0.5 (i686)
libxcb-1.5 (x86_64)
libxcb-1.5 (i686)
libXi-1.3 (x86_64)
libXi-1.3 (i686)
make-3.81-19.el6
sysstat-9.0.4-11.el6 (x86_64)
nfs-utils-1.2.3-15.0.1
https://docs.oracle.com/database/121/CWLIN/prelinux.htm#CEGBGACF
###################################################################################
##################################
view /etc/named.conf
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { 192.168.1.1; };
};
include "/etc/rndc.key";
zone "srinivas.com" IN {
type master;
file "srinivas.com.zone";
allow-update { none; };
};
srinivas.com. IN NS 192.168.28.108
localhost IN A 127.0.0.1
priya1.srinivas.com. IN A 192.168.28.108
#priya2.srinivas.com. IN A 192.168.28.116
priya1-vip.srinivas.com. IN A 192.168.28.118
#priya2-vip.srinivas.com. IN A 192.168.28.126
rac-scan.srinivas.com. IN A 192.168.28.138
rac-scan.srinivas.com. IN A 192.168.28.139
rac-scan.srinivas.com. IN A 192.168.28.140
/etc/resolv.conf
# Generated by NetworkManager
domain T-mobile.com
search T-mobile.com srinivas.com
nameserver 192.168.29.1
DEVICE=eth0
TYPE=Ethernet
UUID=99f7dc48-2aa5-4904-9d28-007e98c532f1
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=dhcp
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"
HWADDR=00:0C:29:09:4C:87
PEERDNS=yes <--- make this to PEERDNS=no
PEERROUTES=yes
so once we add the setting PEERDNS=no in above file then once again as we check
back the /etc/resolv.conf file then we dont see previous entries
and got overwritten. so we will add above added entries which we added
previously ..
[root@priya1 network-scripts]# view /etc/resolv.conf
# Generated by NetworkManager
search srinivas.com
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Dependencies Resolved
===================================================================================
====================================================
Package Arch Version
Repository Size
===================================================================================
====================================================
Installing:
bind-chroot x86_64 32:9.8.2-0.62.rc1.el6_9.5
rhel-6-server-rpms 78 k
bind-dyndb-ldap x86_64 2.3-8.el6
rhel-6-server-rpms 72 k
Transaction Summary
===================================================================================
====================================================
Install 2 Package(s)
===================================================================================
====================================================
Package Arch Version
Repository Size
===================================================================================
====================================================
Installing:
nscd x86_64 2.12-1.209.el6_9.2
rhel-6-server-rpms 232 k
Updating for dependencies:
glibc x86_64 2.12-1.209.el6_9.2
rhel-6-server-rpms 3.8 M
glibc-common x86_64 2.12-1.209.el6_9.2
rhel-6-server-rpms 14 M
tzdata noarch 2018e-3.el6
rhel-6-server-rpms 495 k
Transaction Summary
===================================================================================
====================================================
Install 1 Package(s)
Upgrade 3 Package(s)
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
logging {
channel default_debug {
file "data/named.run";
severity dynamic;
};
};
zone "." IN {
type hint;
file "named.ca";
};
zone "srinivas.com" IN {
type master;
file "forward.srinivas";
allow-update { none; };
};
zone "29.168.192.in-addr.arpa" IN {
type master;
file "reverse.srinivas";
allow-update { none; };
};
include "/etc/named.rfc1912.zones";
include "/etc/named.root.key";
https://github.com/blackyboy/RedHat-Centos-Common-Stuffs/blob/master/Step-by-Step-
how-to-setup-a-DNS-Server-in-RHEL-6.2-6.4-6.5-Using-Bind.md
https://www.tecmint.com/setup-master-slave-dns-server-in-centos/
https://gruffdba.wordpress.com/2012/10/27/oracle-11gr2-2-node-rac-on-vmware-
workstation-8-part-vii/
https://support.oracle.com/epmos/faces/DocumentDisplay?
_afrLoop=138557784542015&id=1107295.1&_afrWindowMode=0&_adf.ctrl-state=dnr8wyeoh_4
Grid Infrastructure Single Client Access Name (SCAN) Explained (Doc ID 887522.1)
Linux: How to Configure the DNS Server for 11gR2 SCAN (Doc ID 1107295.1)
RAC: Frequently Asked Questions (RAC FAQ) (Doc ID 220970.1)
https://community.oracle.com/thread/2623019
http://www.hhutzler.de/blog/bind_ntp_dhcp_setup/
http://gomseydba4all.blogspot.com/2015/03/installation-of-oracle-11gr2-rac-on.html
----Shared filesystem
file:///C:/Users/rb26286/Downloads/11gr2%20deployment%20guide.pdf
https://oracle-base.com/articles/11g/oracle-db-11gr2-rac-installation-on-ol5-using-
vmware-server-2
http://gomseydba4all.blogspot.com/2015/03/installation-of-oracle-11gr2-rac-on.html
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
or
[root@priya1 packages]# yum reinstall -y apt-get --downloadonly
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
[Errno -3] Temporary failure in name resolution
Setting up Reinstall Process
No Match for argument: apt-get
Error: Nothing to do
[root@priya1 packages]# yum reinstall -y --downloadonly binutils
Loaded plugins: product-id, refresh-packagekit, security, subscription-manager
[Errno -3] Temporary failure in name resolution
Setting up Reinstall Process
Resolving Dependencies
--> Running transaction check
---> Package binutils.x86_64 0:2.20.51.0.2-5.36.el6 will be reinstalled
--> Finished Dependency Resolution
Dependencies Resolved
===================================================================================
=============================
Package Arch Version
Repository Size
===================================================================================
=============================
Reinstalling:
binutils x86_64 2.20.51.0.2-5.36.el6 rhel-6-
server-rpms 2.8 M
Transaction Summary
===================================================================================
=============================
Reinstall 1 Package(s)
Above failures are observed when trying to install using yum when its trying to
import its unable to acccess the server which means after dns configuration where
we have changed the ifcfg-eth0
parameter PEERDNS=yes to #PEERDNS=no. This has updated or modified the file
/etc/resolv.conf where it doesnt show any "nameserver IP-address" which we enter
as static if needed. But now
as the parameter got changed we cant make this parameter added as it get removed,
so we add the DNS1=IP-address into the ifcfg-eth0 file. Now its able to connect to
red-hat.
https://www.centos.org/forums/viewtopic.php?t=26327
@@@@@@@@@@@@@@@@@@@@@@@@@@@
priya1 priya2
Public IP 192.168.28.108 - rac1 192.168.28.XXX - rac2
Private IP 192.168.10.1 - rac1-priv 192.168.10.2 - rac2-priv
VIP IP 192.168.28.118 - rac1-vip 192.168.28.XXX+10 - rac2-vip
SCAN IP 192.168.28.138 - rac-scan
192.168.28.139 - rac-scan
192.168.28.140 - rac-scan
http://www.hhutzler.de/blog/bind_ntp_dhcp_setup/
https://community.oracle.com/thread/4096892
https://gruffdba.wordpress.com/2012/10/27/oracle-11gr2-2-node-rac-on-vmware-
workstation-8-part-vii/
###################################################################################
##################################
http://www.oratraining.com/blog/2012/02/creating-oracle-virtualbox-virtual-machine-
with-oracle-linux/
###################################################################################
##################################
binutils-2.20.51.0.2-5.11.el6 (x86_64) *
compat-libcap1-1.10-1 (x86_64) *
compat-libstdc++-33-3.2.3-69.el6 (x86_64)
compat-libstdc++-33-3.2.3-69.el6.i686
gcc-4.4.4-13.el6 (x86_64) *
gcc-c++-4.4.4-13.el6 (x86_64)
glibc-2.12-1.7.el6 (i686)
glibc-2.12-1.7.el6 (x86_64) *
glibc-devel-2.12-1.7.el6 (x86_64)
glibc-devel-2.12-1.7.el6.i686
ksh
libgcc-4.4.4-13.el6 (i686) *
libgcc-4.4.4-13.el6 (x86_64)*
libstdc++-4.4.4-13.el6 (x86_64) *
libstdc++-4.4.4-13.el6.i686
libstdc++-devel-4.4.4-13.el6 (x86_64)
libstdc++-devel-4.4.4-13.el6.i686
libaio-0.3.107-10.el6 (x86_64) *
libaio-0.3.107-10.el6.i686 *
libaio-devel-0.3.107-10.el6 (x86_64) *
libaio-devel-0.3.107-10.el6.i686 *
make-3.81-19.el6 *
sysstat-9.0.4-11.el6 (x86_64)*
first verify whether pakage is installed or not by command rpm -q with only first
name (i.e)
other site :
binutils-2.20.51.0.2-5.11.el6 (x86_64) *
compat-libcap1-1.10-1 (x86_64) *
compat-libstdc++-33-3.2.3-69.el6 (x86_64) *
compat-libstdc++-33-3.2.3-69.el6.i686
gcc-4.4.4-13.el6 (x86_64)
gcc-c++-4.4.4-13.el6 (x86_64)
glibc-2.12-1.7.el6 (i686)
glibc-2.12-1.7.el6 (x86_64)
glibc-devel-2.12-1.7.el6 (x86_64)
glibc-devel-2.12-1.7.el6.i686
libgcc-4.4.4-13.el6 (i686)
libgcc-4.4.4-13.el6 (x86_64)
libstdc++-4.4.4-13.el6 (x86_64)
libstdc++-4.4.4-13.el6.i686
libstdc++-devel-4.4.4-13.el6 (x86_64)
libstdc++-devel-4.4.4-13.el6.i686
libaio-0.3.107-10.el6 (x86_64)
libaio-0.3.107-10.el6.i686
libaio-devel-0.3.107-10.el6 (x86_64)
libaio-devel-0.3.107-10.el6.i686
make-3.81-19.el6
sysstat-9.0.4-11.el6 (x86_64)
unixODBC-2.2.14-11.el6 (x86_64) or later
unixODBC-2.2.14-11.el6.i686 or later
unixODBC-devel-2.2.14-11.el6 (x86_64)
unixODBC-devel-2.2.14-11.el6.i686
compat-db42-4.2.52-15.el6.x86_64.rpm
• compat-db43-4.3.29-15.el6.x86_64.rpm
• compat-db-4.6.21-15.el6.x86_64.rpm
• cvuqdisk-1.0.9-1.rpm
• device-mapper-multipath-0.4.9-64.0.1.el6.x86_64.rpm
• device-mapper-multipath-libs-0.4.9-64.0.1.el6.x86_64.rpm
• ksh-20100621-19.el6.x86_64.rpm
• libaio-devel-0.3.107-10.el6.x86_64.rpm
• libsysfs-2.1.0-7.el6.x86_64.rpm
• libXp-1.0.0-15.1.el6.x86_64.rpm
• libXp-devel-1.0.0-15.1.el6.x86_64.rpm
• oracleasm-support-2.1.8-1.el6.x86_64.rpm
• sysfsutils-2.1.0-7.el6.x86_64.rpm
• sysstat-9.0.4-20.el6.x86_64.rpm
• unixODBC-2.2.14-12.el6_3.x86_64.rpm
• unixODBC-devel-2.2.14-12.el6_3.x86_64.rpm
https://cdm-cdn.nimblestorage.com/2016/12/21080936/tr-nimblestorage-Oracle-RAC-
Setup-Guide.pdf\
http://www.oracledba.org/11gR2/Pre_Install_11gR2.htm
https://flashdba.com/install-cookbooks/oracle-linux-6-7-with-oracle-11-2-0-4-rac/
binutils-2.20.51.0.2-5.11.el6.i686
compat-libcap1-1.10-1.i686
compat-libstdc++-33-3.2.3-69.el6.i686
gcc-4.4.4-13.el6.i686
gcc-c++-4.4.4-13.el6.i686
glibc-2.12-1.7.el6.i686
glibc-devel-2.12-1.7.el6.i686
ksh
libgcc-4.4.4-13.el6.i686
libstdc++-4.4.4-13.el6.i686
libstdc++-devel-4.4.4-13.el6.i686
libaio-0.3.107-10.el6.i686
libaio-devel-0.3.107-10.el6.i686
make-3.81-19.el6.i686
sysstat-9.0.4-11.el6.i686
oracleasm-support-2.1.3-1.el4.x86_64.rpm
oracleasmlib-2.0.4-1.el4.x86_64.rpm
oracleasm-2.6.9-55.0.12.ELsmp-2.0.3-1.x86_64.rpm
===================================================================================
=====================================
https://flashdba.com/install-cookbooks/using-oracle-preinstall-rpm-with-red-hat-6/
http://public-yum.oracle.com/repo/OracleLinux/OL6/latest/x86_64/
https://access.redhat.com/sites/default/files/attachments/deploying-oracle-11gr2-
rac-on-rhel6_1.1.pdf
http://ocptechnology.com/how-to-install-oracle-11g-on-linux-step-by-step/
https://dbatricksworld.com/oracle-11gr2-software-and-database-installation-on-
oracle-linux-6-5/
https://www.tecmint.com/oracle-database-11g-release-2-installation-in-linux/
https://whizdba.wordpress.com/2013/08/28/rac-asm-on-oracle-database-12c/ -- asm
file saved to downloads
http://www.dbaexpert.com/blog/install-and-configure-red-hat-6-4-for-oracle-
databases/ --- RHEL LINIX 6.4 and db installation
http://www.dbaexpert.com/blog/find-command-tips-for-dbas/
http://www.dbaexpert.com/blog/rpm-requirements-for-oracle-grid-infrastructure-12c/
--- rpm required for rhel6 and oracle 12c grid infrastructure-12c/
Requirements for Installing Oracle Database 12.2 on OL6 or RHEL6 64-bit (x86-64)
(Doc ID 2196074.1) rpm for DB 12.2 for rhel 6
Requirements for Installing Oracle 11gR2 RDBMS on RHEL6 or OL6 64-bit (x86-64) (Doc
ID 1441282.1)
http://www.oracle.com/technetwork/server-storage/linux/asmlib/rhel6-
1940776.html#oracleasm_rhel6_amd64 -- for 2 of the asm rpms of the 3 asm rpms
https://docs.oracle.com/cd/E11882_01/install.112/e41961/prelinux.htm#CWLIN168 ---
rpm for DB 11.2 for rhel 6
https://docs.oracle.com/en/database/oracle/oracle-database/12.2/cwlin/supported-
red-hat-enterprise-linux-6-distributions-for-x86-64.html#GUID-3B53A308-3EC2-4173-
98A0-0FFD68994E90 --rpms for GI 12.2 RHEL 6
https://docs.oracle.com/cd/E11882_01/install.112/e41961/prelinux.htm#CWLIN225
--rpms for GI 11.2 RHEL 6
https://pierreforstmanndotcom.wordpress.com/2013/08/15/how-to-install-asmlib-on-
oracle-linux-6/ -- oracleasm download
Networking:
https://www.cbtnuggets.com/it-training/network-administration-engineering
http://p30download.com/find.php?
search=CBT+Nuggets&blogs=2%2C3%2C4%2C5%2C7%2C8%2C9%2C11%2C17%2C18%2C19&x=13&y=10
http://rutracker.org/forum/viewforum.php?f=1570&start=100
https://certcollection.org/forum/topic/287401-cbt-nuggets-juniper-jncia-junos-jn0-
102/
https://certcollection.org/forum/forum/155-juniper-shares/
https://certcollection.org/forum/forum/1-training-offers-requests/
https://thepiratebay.org/search/CBT%20Nuggets/0/7//
https://1337x.to/search/CBT+Nuggets/2/
https://torrentz2.eu/search?f=CBT%20Nuggets
https://thepiratebay.kim/search/CBT%20Nuggets/0/99/0