내맘대로긍정이 알려주는
Oracle 23ai 신기능
무료 세미나 발표자료
OS환경 : Oracle Linux 7.6 (64bit)
DB 환경 : Oracle Database 19.12.0.0 RAC
방법 : 오라클 19c rootcrs.sh lock과 unlock
오라클 19c RAC OS 커널 패치시 작업 가이드(https://positivemh.tistory.com/788)
작업시 실행한 명령어인 rootcrs.sh -unlock과 rootcrs.sh -lock 이 무엇이고 어떤역할을 하는지 확인해봄
grid 설치 이후에 relink 작업을 하거나 grid 구성변경 작업을 할 경우에
rootcrs.sh -unlock을 진행한뒤 작업해야함
unlock 작업은 root 소유의 파일들을 grid owner의 소유로 권한을 변경시켜 작업을 할수있도록 해주는 역할을함(그리드홈 잠금해제)
테스트로 권한 변경을 확인한 파일 및 폴더는 $GRID_HOME과 $GRID_HOME/bin과 $GRID_HOME/lib 폴더와 폴더안 파일들임
이후 작업이 끝나면 다시 rootcrs.sh -lock 명령을 실행해 기존 권한으로 되돌려줘야함(그리드홈 잠금)
unlock, lock 후 $GRID_HOME의 bin과 lib 폴더 권한 비교
unlock 후에는 $GRID_HOME 폴더의 권한이 oracle:dba로 변경됨
lock 명령 후에는 $GRID_HOME 폴더의 권한이 oracle:dba에서 root:dba로 변경됨
(현재 grid가 lock 상태인지 unlock 상태인지는 $GRID_HOME의 권한을 확인하면됨
oracle(grid):dba 면 unlock 상태이고 root:dba 이면 lock 상태임)
unlock, lock 후 $GRID_HOME의 bin과 lib 폴더 권한 일부 비교
unlock 후에는 $GRID_HOME의 bin과 lib 폴더의 권한이 oracle:dba로 변경됨
lock 명령 후에는 $GRID_HOME의 bin과 lib 폴더의 권한이 oracle:dba에서 root:dba로 변경됨
unlock, lock 후 $GRID_HOME/bin 폴더 권한 일부 비교
unlock 명령 후에는 $GRID_HOME/bin 폴더 안 파일의 권한도 oracle:dba로 변경됨
lock 명령 후에는 $GRID_HOME/bin 폴더 안 파일의 권한이 oracle:dba에서 root:dba로 변경됨
unlock, lock 후 $GRID_HOME/lib 폴더 권한 일부 비교
unlock 명령 후에는 $GRID_HOME/lib 폴더 안 파일의 권한도 oracle:dba로 변경됨
lock 명령 후에는 $GRID_HOME/lib 폴더 안 파일의 권한이 oracle:dba에서 root:dba로 변경됨
권한 비교 전체
rootcrs.sh -unlock 실행 후 확인($GRID_HOME, $GRID_HOME/bin, $GRID_HOME/bin 권한 조회)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
|
# cd $GRID_HOME/crs/install
# sh rootcrs.sh -unlock
Using configuration parameter file: /oracle/app/grid/19c/crs/install/crsconfig_params
The log of current session can be found at:
/oracle/app/oracle/crsdata/oel19db1/crsconfig/crsunlock_oel19db1_2021-12-30_10-44-58PM.log
2021/12/30 22:44:59 CLSRSC-347: Successfully unlock /oracle/app/grid/19c
# ls -al $GRID_HOME/../
total 10802536
drwxr-xr-x. 3 root dba 33 Dec 29 05:59 .
drwxr-xr-x. 5 root dba 52 Oct 15 14:31 ..
drwxr-xr-x 92 oracle dba 4096 Oct 15 15:00 19c
# ls -ltr $GRID_HOME
total 108
-rw-r----- 1 oracle dba 500 Feb 7 2013 welcome.html
-rw-r--r-- 1 oracle dba 852 Aug 18 2015 env.ora
-rwxr-x--- 1 oracle dba 628 Sep 4 2015 runcluvfy.sh
-rwxr-x--- 1 oracle dba 3294 Mar 9 2017 gridSetup.sh
drwxr-x--- 14 oracle dba 4096 Apr 12 2019 OPatchold
-rw-r----- 1 oracle dba 10 Apr 17 2019 root.sh.old.3
-rw-r----- 1 oracle dba 10 Apr 17 2019 root.sh.old.1
drwxr-x--- 6 oracle dba 58 Apr 17 2019 xdk
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 wwg
drwxr-xr-x 3 oracle dba 18 Apr 17 2019 wlm
drwxr-xr-x 7 oracle dba 71 Apr 17 2019 usm
drwxr-xr-x 4 oracle dba 29 Apr 17 2019 tomcat
drwxr-xr-x 3 oracle dba 18 Apr 17 2019 slax
drwxr-xr-x 3 oracle dba 21 Apr 17 2019 relnotes
drwxr-xr-x 5 oracle dba 42 Apr 17 2019 qos
drwxr-xr-x 5 oracle dba 42 Apr 17 2019 precomp
drwxr-xr-x 5 oracle dba 39 Apr 17 2019 perl
drwxr-xr-x 4 oracle dba 33 Apr 17 2019 owm
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 oss
drwxr-xr-x 6 oracle dba 52 Apr 17 2019 ord
drwxr-xr-x 4 oracle dba 34 Apr 17 2019 oracore
drwxr-xr-x 5 oracle dba 46 Apr 17 2019 nls
drwxr-xr-x 5 oracle dba 42 Apr 17 2019 md
drwxr-xr-x 10 oracle dba 112 Apr 17 2019 ldap
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 hs
drwxr-xr-x 4 oracle dba 32 Apr 17 2019 has
drwxr-xr-x 3 oracle dba 20 Apr 17 2019 diagnostics
drwxr-xr-x 3 oracle dba 20 Apr 17 2019 demo
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 dbjava
drwxrwxr-x 7 oracle dba 71 Apr 17 2019 cv
drwxr-xr-x 6 oracle dba 78 Apr 17 2019 plsql
drwxr-xr-x 3 oracle dba 35 Apr 17 2019 jdbc
drwxr-xr-x 2 oracle dba 33 Apr 17 2019 utl
drwxr-xr-x 2 oracle dba 26 Apr 17 2019 QOpatch
drwxr-xr-x 7 oracle dba 102 Apr 17 2019 rhp
drwxr-xr-x 5 oracle dba 119 Apr 17 2019 sdk
drwxr-xr-x 2 oracle dba 29 Apr 17 2019 instantclient
drwxr-xr-x 3 oracle dba 35 Apr 17 2019 ucp
drwxr-xr-x 8 oracle dba 77 Apr 17 2019 opmn
-rwx------ 1 oracle dba 490 Apr 17 2019 root.sh.old
drwxr-xr-x 10 oracle dba 106 Apr 17 2019 network
-rwx------ 1 oracle dba 405 Apr 18 2019 root.sh.old.2
drwxr-xr-x 8 oracle dba 82 Apr 18 2019 javavm
drwxrwxr-x 3 oracle dba 16 Oct 15 14:14 opatchautocfg
drwxr-xr-x 3 oracle dba 18 Oct 15 14:15 oradiag_oracle
drwxr-xr-x 16 oracle dba 174 Oct 15 14:17 rdbms
drwxr-xr-x 3 oracle dba 19 Oct 15 14:17 olap
drwxr-xr-x 3 oracle dba 19 Oct 15 14:17 ctx
drwxr-xr-x 3 oracle dba 55 Oct 15 14:17 ords
drwxr-xr-x 3 oracle dba 19 Oct 15 14:17 client
drwxr-xr-x 7 oracle dba 247 Oct 15 14:17 jdk
drwxr-xr-x 6 oracle dba 288 Oct 15 14:18 sqlpatch
drwxr-xr-x 2 oracle dba 30 Oct 15 14:18 pylib
-rwxr-xr-x 1 oracle dba 414 Oct 15 14:33 rootupgrade.sh
-rwxr-xr-x 1 oracle dba 405 Oct 15 14:33 root.sh
drwxr-x--- 15 oracle dba 4096 Oct 15 14:33 OPatch
drwxr-x--- 14 oracle dba 233 Oct 15 14:33 inventory
drwxr-xr-x 8 oracle dba 226 Oct 15 14:33 oui
drwxr-xr-x 5 oracle dba 191 Oct 15 14:33 deinstall
drwxr-xr-x 4 oracle dba 87 Oct 15 14:33 clone
drwxr-xr-x 2 oracle dba 102 Oct 15 14:33 addnode
drwxr-x--- 4 oracle dba 31 Oct 15 14:59 suptools
drwxr-xr-x 8 oracle dba 77 Oct 15 14:59 srvm
drwxr-xr-x 6 oracle dba 68 Oct 15 14:59 racg
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 osysmond
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 ologgerd
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 ohasd
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 mdns
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 gnsd
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 gipc
drwxr-x--- 7 oracle dba 65 Oct 15 14:59 evm
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 ctss
drwx--x--x 5 oracle dba 41 Oct 15 14:59 css
drwxr-xr-x 14 oracle dba 159 Oct 15 14:59 crs
drwxr-x--- 3 oracle dba 19 Oct 15 14:59 crf
drwxr-x--- 4 oracle dba 31 Oct 15 14:59 cha
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 cdp
drwxrwxr-x 4 oracle dba 39 Oct 15 14:59 cdata
drwxrwxrwt 6 root dba 52 Oct 15 14:59 auth
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 advmccb
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsrm
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsrd
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsiob
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfscm
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsccreg
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsccm
drwxr-xr-x 2 oracle dba 8192 Oct 15 14:59 jlib
drwxrwxr-x 3 root dba 22 Oct 15 15:00 acfs
-rw-r----- 1 oracle dba 125 Oct 15 15:07 oraInst.loc
drwxrwx--- 7 oracle dba 4096 Oct 15 16:11 cfgtoollogs
drwxr-xr-x 10 oracle dba 106 Oct 15 18:46 assistants
drwxrwxr-x 6 oracle dba 64 Dec 25 23:28 log
drwxr-x--- 7 oracle dba 97 Dec 29 09:16 gpnp
drwxr-xr-x 5 oracle dba 4096 Dec 29 09:22 xag
drwxr-xr-x 2 oracle dba 62 Dec 30 22:28 dbs
drwxrwx--- 11 oracle dba 4096 Dec 30 22:30 install
drwxr-xr-x 6 oracle dba 53 Dec 30 22:30 sqlplus
drwxr-xr-x 2 oracle dba 12288 Dec 30 22:30 bin
drwxr-xr-x 4 oracle dba 12288 Dec 30 22:30 lib
# ls -ltr $GRID_HOME/bin
total 1031956
-rwxr-xr-x 1 oracle dba 153 Nov 7 1997 echodo
-rwxr-xr-x 1 oracle dba 2790 Jan 1 2000 orald
-rw-r--r-- 1 oracle dba 5003 Jan 1 2000 oerr.pl
-rwxr-xr-x 1 oracle dba 703 Jan 1 2000 oerr
-rwxr-xr-x 1 oracle dba 2445 Jan 1 2000 dbhome
-rwxr-xr-x 1 oracle dba 6823 Jan 1 2000 oraenv
-rwxr-xr-x 1 oracle dba 2396 Jan 1 2000 gensyslib
-rwxr-x--- 1 oracle dba 15737 Jan 1 2000 dbstart
-rwxr-x--- 1 oracle dba 8142 Jan 1 2000 dbshut
-rwxr-xr-x 1 oracle dba 6404 Jan 1 2000 coraenv
-rwxr-xr-x 1 oracle dba 3261 May 5 2000 symfind
-rwxr-x--- 1 oracle dba 48 Sep 26 2000 oraxml
-rwxr-x--- 1 oracle dba 48 Sep 26 2000 oraxsl
-rwxr-xr-x 1 oracle dba 4109 Oct 18 2002 evt.sh
-rwxr-x--- 1 oracle dba 44 Dec 5 2002 orajaxb
-rwxr-xr-x 1 oracle dba 13438 Sep 9 2005 crstmpl.scr
-rwxr-xr-x 1 oracle dba 2989 Aug 21 2012 crsdiag.pl
-rwxr-xr-x 1 oracle dba 1398 Sep 13 2012 cluvfyrac.sh
-rwxr-x--- 1 oracle dba 6537 Sep 28 2012 emdwgrd
-rwxr-xr-x 1 oracle dba 3142 May 27 2014 asmproxy
-rwxr-xr-x 1 oracle dba 0 Aug 14 2014 tnnfg
-rwxr-xr-x 1 oracle dba 1635 Dec 5 2014 linkshlib
-rwxr-xr-x 1 oracle dba 754 May 26 2015 okaload
-rwxr-xr-x 1 oracle dba 230027 Jun 16 2016 zip
-rwxr-xr-x 1 oracle dba 945 Jun 20 2016 acfsroot
-rwxr-xr-x 1 oracle dba 940 Jun 20 2016 okaroot
-rwxr-xr-x 1 oracle dba 1980 Jun 20 2016 okadriverstate
-rwxr-xr-x 1 oracle dba 1000 Jun 20 2016 afdroot
-rwxr-xr-x 1 oracle dba 1007 Jun 20 2016 olfsroot
-rwxr-xr-x 1 oracle dba 1001 Jun 20 2016 olfscmd
-rwxr-xr-x 1 oracle dba 727 Sep 8 2016 acfsremote
-rwxr-xr-x 1 oracle dba 2854 Feb 10 2017 okacmd
-rwxr-x--- 1 oracle dba 3120 Jul 8 2017 commonSetup.sh
-rw-r--r-- 1 oracle dba 37577 Jul 26 2017 rhpplsnr_lib.pm
-rw-r--r-- 1 oracle dba 13916 Aug 17 2017 ochadctl.pl
-rw-r----- 1 oracle dba 3181 Aug 24 2017 runcluvfy.pl
-rwxr-x--- 1 oracle dba 65179 Aug 24 2017 emdwgrd.pl
-rwxr-xr-x 1 oracle dba 10074 Sep 13 2017 genorasdksh
-rwxr-xr-x 1 oracle dba 6149 Sep 13 2017 genclntst
-rwxr-xr-x 1 oracle dba 5914 Sep 13 2017 genagtsh
-rwxr-x--- 1 oracle dba 2139 Sep 20 2017 rootPreRequired.sh
-rwxr-x--- 1 oracle dba 5385 Oct 3 2017 patchgen
-rwxr-xr-x 1 oracle dba 4764 Oct 10 2017 genoccish
-rwxr-xr-x 1 oracle dba 2642 Oct 21 2017 ghappctl.pl
-rw-r----- 1 oracle dba 6280 Nov 3 2017 gridSetup.pl
-rwxr-xr-x 1 oracle dba 7059 Dec 8 2017 okcreate
-rwxr-x--- 1 oracle dba 6966 Jan 30 2018 asmcmd
-rw-r--r-- 1 oracle dba 8289 Feb 10 2018 dbreload
-rw-r--r-- 1 oracle dba 8336 Feb 10 2018 dbdowngrade
-rw-r--r-- 1 oracle dba 9368 Apr 1 2018 aqxmlctl.pl
-rw-r--r-- 1 oracle dba 2412 Apr 11 2018 rhpplsnr.pl
-rwxr-x--- 1 oracle dba 8284 Jun 26 2018 cdpcfg.pl
-rwxr-xr-x 1 oracle dba 15050 Aug 1 2018 genclntsh
-rwxr-x--- 1 oracle dba 18311 Aug 9 2018 appvipcfg.pl
-rwxr-xr-x 1 oracle dba 6981 Aug 27 2018 relink
-rwxr-xr-x 1 oracle dba 7326 Nov 12 2018 jwcctl.pl
-rwxr-xr-x 1 oracle dba 6093 Mar 2 2019 owm
-rwxr-xr-x 1 oracle dba 4619 Mar 2 2019 orapki
-rwxr-xr-x 1 oracle dba 4587 Mar 2 2019 mkstore
-rwxr-xr-x 1 oracle dba 7209520 Mar 4 2019 lxinst
-rwxr-xr-x 1 oracle dba 2219696 Mar 4 2019 lxegen
-rwxr-xr-x 1 oracle dba 1757016 Mar 4 2019 lxchknlb
-rwxr-xr-x 1 oracle dba 1819048 Mar 4 2019 lmsgen
-rwxr-xr-x 1 oracle dba 3027016 Mar 4 2019 lcsscan
-rwxr-xr-x 1 oracle dba 24344 Mar 13 2019 racgvip
-rwxr-x--- 1 oracle dba 4203 Mar 13 2019 oraipsecsetup
-rwx------ 1 oracle dba 92168 Mar 19 2019 xmlwf
-rwxr-xr-x 1 oracle dba 7605 Mar 30 2019 gennttab
-rwxr-xr-x 1 oracle dba 4852 Mar 30 2019 gennfgt
-rwxr-xr-x 1 oracle dba 13485 Mar 30 2019 adapters
-rwxr-xr-x 1 oracle dba 10491032 Apr 17 2019 proc
-rwxr-xr-x 1 oracle dba 10172496 Apr 17 2019 procob
-rwxr-xr-x 1 oracle dba 2142760 Apr 17 2019 diskmon.bin
-rwxr-x--- 1 oracle dba 3136 Apr 17 2019 dbupgrade
-rwxr-xr-x 1 oracle dba 26056 Apr 17 2019 dbnestinit
-rw-r--r-- 1 oracle dba 5297 Apr 17 2019 dbgeu_run_action.pl
-rwsr-x--- 1 root dba 147848 Apr 17 2019 oradism
-rwxr-xr-x 1 oracle dba 1228152 Apr 17 2019 genksms
-rwxr-x--x 1 oracle dba 27176 Apr 17 2019 osh
-rw-r--r-- 1 oracle dba 45135 Apr 17 2019 CommonSetup.pm
-rwxr-xr-x 1 oracle dba 6153104 Apr 17 2019 orabase
-rwxr-xr-x 1 oracle dba 38408 Jul 21 08:40 olfsctl
-rwxr-xr-x 1 oracle dba 88650928 Jul 21 08:40 afdboot
-rwxr-xr-x 1 oracle dba 960528 Jul 21 08:40 acfsrepl_monitor
-rwxr-xr-x 1 oracle dba 387472 Jul 21 08:40 acfsiob
-rwxr-xr-x 1 oracle dba 495200 Jul 21 08:40 okacmd.bin
-rwxr-xr-x 1 oracle dba 285208 Jul 21 08:40 afdtool.bin
-rwxr-xr-x 1 oracle dba 401184 Jul 21 08:40 acfsrm
-rwxr-xr-x 1 oracle dba 724624 Jul 21 08:40 acfsrepl_transport
-rwxr-xr-x 1 oracle dba 736808 Jul 21 08:40 acfsrepl_preapply
-rwxr-xr-x 1 oracle dba 947976 Jul 21 08:40 acfsrepl_initializer
-rwxr-xr-x 1 oracle dba 719872 Jul 21 08:40 acfsrepl_dupd.bin
-rwxr-xr-x 1 oracle dba 1101880 Jul 21 08:40 acfsrepl_apply.bin
-rwxr-xr-x 1 oracle dba 388336 Jul 21 08:40 acfsrd
-rwxr-xr-x 1 oracle dba 457904 Jul 21 08:40 acfscm
-rwxr-x--- 1 oracle dba 1848136 Jul 21 08:43 orabasehome
-rwxr-xr-x 1 oracle dba 53591640 Jul 21 08:43 omsfscmds
-rwxr-xr-x 1 oracle dba 78531 Jul 21 08:43 asmcmdcore
-rwxr-xr-x 1 oracle dba 738480 Jul 21 08:43 hsodbc
-rw-r--r-- 1 oracle dba 171155 Jul 21 08:43 bdschecksw
-rwxr-x--- 1 oracle dba 54704 Jul 21 08:43 oraping
-rwxr-x--- 1 oracle dba 1848136 Jul 21 08:43 orabaseconfig
-rw-r--r-- 1 oracle dba 197632 Jul 21 08:43 opwdintg.exe
-rwxr-xr-x 1 oracle dba 53561496 Jul 21 08:43 oms_daemon
-rwxr-x--- 1 oracle dba 1727368 Jul 21 08:43 fmputlhp
-rwxr-x--- 1 oracle dba 2322976 Jul 21 08:43 diskmon
-rwxr-x--x 1 oracle dba 1357648 Jul 21 08:43 dbfs_client
-rwxr-x--- 1 oracle dba 139544 Jul 21 08:43 xml
-rwxr-x--- 1 oracle dba 34312 Jul 21 08:43 schema
-rwxr-x--x 1 oracle dba 26560 Jul 21 08:43 oraversion
-rwxr-x--- 1 oracle dba 36933 Jul 21 08:43 mtactl
-rwxr-x--- 1 oracle dba 1990416 Jul 21 08:43 fmputl
-rwxr-xr-x 1 oracle dba 173048 Jul 21 08:43 oradnfs
-rwxr-xr-x 1 oracle dba 65496 Jul 21 08:43 dbnest
-rwxr-xr-x 1 oracle dba 5045816 Jul 21 08:44 scriptagent.bin
-rwxr-xr-x 1 oracle dba 772864 Jul 21 08:44 racgmain
-rwxr-xr-x 1 oracle dba 1194968 Jul 21 08:44 oranetmonitor.bin
-rwxr-xr-x 1 oracle dba 338112 Jul 21 08:44 oradnssd.bin
-rwxr-x--- 1 oracle dba 54072 Jul 21 08:44 oracsswd.bin
-rwxr-xr-x 1 oracle dba 241056 Jul 21 08:44 olsnodes.bin
-rwxr-x--- 1 oracle dba 251160 Jul 21 08:44 ologgerd
-rwxr-xr-x 1 oracle dba 178688 Jul 21 08:44 oifcfg_ifls
-rwxr-xr-x 1 oracle dba 383056 Jul 21 08:44 oifcfg.bin
-rwxr-xr-x 1 oracle dba 208344 Jul 21 08:44 odnsd.bin
-rwxr-x--- 1 oracle dba 428168 Jul 21 08:44 octssd.bin
-rwxr-xr-x 1 oracle dba 1845040 Jul 21 08:44 ocssd.bin
-rwxr-xr-x 1 oracle dba 325848 Jul 21 08:44 ocrdump.bin
-rwxr-xr-x 1 oracle dba 953616 Jul 21 08:44 ocrconfig.bin
-rwxr-x--x 1 oracle dba 250792 Jul 21 08:44 oclskd.bin
-rwxr-xr-x 1 oracle dba 72936 Jul 21 08:44 lsnodes.bin
-rwxr-xr-x 1 oracle dba 189440 Jul 21 08:44 gsd
-rwxr-xr-x 1 oracle dba 414624 Jul 21 08:44 gpnptool.bin
-rwxr-xr-x 1 oracle dba 494840 Jul 21 08:44 gpnpd.bin
-rwxr-xr-x 1 oracle dba 376152 Jul 21 08:44 evmsort.bin
-rwxr-xr-x 1 oracle dba 507712 Jul 21 08:44 evmshow.bin
-rwxr-xr-x 1 oracle dba 379144 Jul 21 08:44 evmmkbin.bin
-rwxr-xr-x 1 oracle dba 346208 Jul 21 08:44 evminfo.bin
-rwxr-xr-x 1 oracle dba 3265280 Jul 21 08:44 evmd.bin
-rwxr-xr-x 1 oracle dba 934272 Jul 21 08:44 emcrsp.bin
-rwxr-xr-x 1 oracle dba 227160 Jul 21 08:44 cssvfupgd.bin
-rwxr-x--- 1 oracle dba 390664 Jul 21 08:44 crsd.bin
-rwxr-xr-x 1 oracle dba 5487448 Jul 21 08:44 crsctl.bin
-rwxr-xr-x 1 oracle dba 177096 Jul 21 08:44 crscdpd.bin
-rwxr-xr-x 1 oracle dba 268944 Jul 21 08:44 clsecho.bin
-rwxr-xr-x 1 oracle dba 185616 Jul 21 08:44 clsdiaglsnr.bin
-rwxr-xr-x 1 oracle dba 284640 Jul 21 08:44 clscfg.bin
-rwxr-xr-x 1 oracle dba 35496 Jul 21 08:44 cemutls.bin
-rwxr-xr-x 1 oracle dba 181408 Jul 21 08:44 cemutlo.bin
-rwxr-xr-x 1 oracle dba 177216 Jul 21 08:44 sclsspawn
-rwxr-xr-x 1 oracle dba 694560 Jul 21 08:44 racgevtf
-rwxr-x--- 1 oracle dba 121743888 Jul 21 08:44 orarootagent.bin
-rwxr-x--- 1 oracle dba 424424 Jul 21 08:44 ohasd.bin
-rwxr-xr-x 1 oracle dba 825768 Jul 21 08:44 ocrcheck.bin
-rwxr-x--- 1 oracle dba 251160 Jul 21 08:44 oclumon.bin
-rwxr-xr-x 1 oracle dba 40984 Jul 21 08:44 lsdb.bin
-rwxr-xr-x 1 oracle dba 1024296 Jul 21 08:44 gipcd.bin
-rwxr-xr-x 1 oracle dba 553608 Jul 21 08:44 evmwatch.bin
-rwxr-xr-x 1 oracle dba 428680 Jul 21 08:44 evmpost.bin
-rw-r--r-- 1 oracle dba 30880 Jul 21 08:44 dockeroracleinit
-rw-r--r-- 1 oracle dba 43936 Jul 21 08:44 dmproc
-rwxr-xr-x 1 oracle dba 85794 Jul 21 08:44 diagsnap_setup.pl
-rwxr-xr-x 1 oracle dba 203480 Jul 21 08:44 clssproxy.bin
-rwxr-xr-x 1 oracle dba 184960 Jul 21 08:44 clsid.bin
-rwxr-xr-x 1 oracle dba 5178768 Jul 21 08:44 appagent.bin
-rwxr-x--- 1 oracle dba 251424 Jul 21 08:44 osysmond.bin
-rwxr-x--- 1 oracle dba 5154032 Jul 21 08:44 cssdmonitor
-rwxr-xr-x 1 oracle dba 702216 Jul 21 08:44 racgeut
-rwxr-xr-x 1 oracle dba 121736304 Jul 21 08:44 oraagent.bin
-rwxr-xr-x 1 oracle dba 253192 Jul 21 08:44 odig.bin
-rwxr-xr-x 1 oracle dba 1411968 Jul 21 08:44 mdnsd.bin
-rwxr-x--- 1 oracle dba 177592 Jul 21 08:44 gnsd.bin
-rwxr-xr-x 1 oracle dba 265672 Jul 21 08:44 evmmklib.bin
-rwxr-xr-x 1 oracle dba 56288 Jul 21 08:44 oprocd
-rwxr-xr-x 1 oracle dba 917576 Jul 21 08:44 ocssdrim.bin
-rwxr-xr-x 1 oracle dba 1776992 Jul 21 08:44 evmlogger.bin
-rwxr-x--- 1 oracle dba 5154032 Jul 21 08:44 cssdagent
-rwxr-x--- 1 oracle dba 16865 Jul 21 08:44 crsrename.pl
-rwxr-xr-x 1 oracle dba 177008 Jul 21 08:44 cdpc.bin
-rwxr-xr-x 1 oracle dba 4138 Oct 15 14:33 umu
-rwxr-xr-x 1 oracle dba 1352 Oct 15 14:33 statusnc
-rwxr-xr-x 1 oracle dba 11685 Oct 15 14:33 srvctl
-rwxr-x--- 1 oracle dba 4691 Oct 15 14:33 roohctl
-rwxr-x--- 1 oracle dba 7171 Oct 15 14:33 rconfig
-rw-r----- 1 oracle dba 3878 Oct 15 14:33 platform_common
-rwxr-xr-x 1 oracle dba 1282 Oct 15 14:33 ojvmtc
-rwxr-xr-x 1 oracle dba 1400 Oct 15 14:33 ojvmjava
-rwxr-xr-x 1 oracle dba 3133 Oct 15 14:33 oidprovtool
-rwxr-xr-x 1 oracle dba 1351 Oct 15 14:33 ncomp
-rwxr-xr-x 1 oracle dba 2375 Oct 15 14:33 loadjava
-rwxr-xr-x 1 oracle dba 2898 Oct 15 14:33 ldifmigrator
lrwxrwxrwx 1 oracle dba 24 Oct 15 14:33 lbuilder -> ../nls/lbuilder/lbuilder
-rwxr-xr-x 1 oracle dba 2303 Oct 15 14:33 eusm
-rwxr-xr-x 1 oracle dba 1428 Oct 15 14:33 dropjava
-rwxr-xr-x 1 oracle dba 1515 Oct 15 14:33 deploync
-rwxr-xr-x 1 oracle dba 3019 Oct 15 14:33 bndlchk
-rwxr-x--- 1 oracle dba 7910 Oct 15 14:33 asmca
-rwxr-xr-x 1 oracle dba 2983 Oct 15 14:33 trcasst
-rwxr-xr-x 1 oracle dba 4749 Oct 15 14:33 srvconfig
-rwxr-xr-x 1 oracle dba 7738 Oct 15 14:33 netmgr
-rwxr-x--- 1 oracle dba 95 Oct 15 14:33 netca_deinst.sh
-rwxr-x--- 1 oracle dba 6757 Oct 15 14:33 netca
-rwxr-xr-x 1 oracle dba 7352 Oct 15 14:33 diagsetup
-rwxr-x--x 1 oracle dba 2053 Oct 15 14:33 aqxmlctl
-rwxr-xr-x 1 oracle dba 2032 Oct 15 14:33 trcsess
-rwxr-xr-x 1 oracle dba 2835 Oct 15 14:33 schemasync
-rwxr-xr-x 1 oracle dba 2399 Oct 15 14:33 oradnfs_run.sh
-rwxr-xr-x 1 oracle dba 2137 Oct 15 14:33 oidca
-rwxr-xr-x 1 oracle dba 1280 Oct 15 14:33 odisrvreg
-rwxr-x--- 1 oracle dba 400 Oct 15 14:33 extusrupgrade
-rwxr-x--- 1 oracle dba 10527 Oct 15 14:33 dbua
-rwxr-x--- 1 oracle dba 5517 Oct 15 14:33 emca
-rwxr-x--- 1 oracle dba 7644 Oct 15 14:33 dbca
-rwxr-xr-x 1 oracle dba 1233 Oct 15 14:59 usrvip
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 scriptagent
-rwxr-xr-x 1 oracle dba 4721 Oct 15 14:59 rdtool
-rwxr-xr-x 1 oracle dba 1510 Oct 15 14:59 racgwrap
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 orarootagent
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 oranetmonitor
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 oradnssd
-rw-r--r-- 1 oracle dba 11556 Oct 15 14:59 oradaemonagent
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 oracsswd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 oraagent
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 olsnodes
-rwxr-x--- 1 oracle dba 4306 Oct 15 14:59 ologdbg.pl
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 oifcfg
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 ohasd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 odnsd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 odig
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 octssd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 ocrpatch
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 ocrdump
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 ocrconfig
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 ocrcheck
-rwxr-x--- 1 oracle dba 3117 Oct 15 14:59 oclumon.pl
-rwxr-xr-x 1 oracle dba 5046 Oct 15 14:59 mgmtua
-rwxr-xr-x 1 oracle dba 4929 Oct 15 14:59 mgmtca
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 mdnsd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 lsdb
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 gpnptool
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 gpnpd
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 gnsd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 gipcd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmwatch
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmsort
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmshow
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmpost
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmmklib
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmmkbin
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmlogger
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evminfo
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 evmd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 emcrsp
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 cssvfupgd
-rwxr-xr-- 1 oracle dba 7691 Oct 15 14:59 crswrapexece.pl
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 crsd
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 crscdpd
-rwxr-xr-x 1 oracle dba 4761 Oct 15 14:59 cluutil
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 clssproxy
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 clsdiaglsnr
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 cemutls
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 cemutlo
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 cdpc
-rwxr-xr-x 1 oracle dba 776 Oct 15 14:59 appvipcfg
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 appagent
-rwxr-xr-x 1 oracle dba 0 Oct 15 14:59 vipca
-rwxr-xr-x 1 oracle dba 2240 Oct 15 14:59 setasmgidwrap
-rwxr-x--- 1 oracle dba 6608 Oct 15 14:59 scrctl
-rwxr-xr-x 1 oracle dba 6070 Oct 15 14:59 rhprepos
-rwxr-xr-x 1 oracle dba 2976 Oct 15 14:59 rhpplsnrctl
-rwxr-xr-x 1 oracle dba 3086 Oct 15 14:59 rhpplsnr
-rwxr-xr-x 1 oracle dba 6880 Oct 15 14:59 rhpctl
-rwxr-xr-x 1 oracle dba 5608 Oct 15 14:59 qosctl
-rwxr-x--- 1 oracle dba 11556 Oct 15 14:59 osysmond
-rwxr-x--- 1 oracle dba 6301 Oct 15 14:59 orajrootagent
-rwxr-xr-x 1 oracle dba 6301 Oct 15 14:59 orajagent
-rwxr-xr-x 1 oracle dba 1145 Oct 15 14:59 onsctl
-rwxr-x--- 1 oracle dba 855 Oct 15 14:59 ologdbg
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 ocssdrim
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 ocssd
-rwxr-x--- 1 oracle dba 2339 Oct 15 14:59 oclumon
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 oclsvmon
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 oclsomon
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 oclskd
-rwxr-xr-x 1 oracle dba 5741 Oct 15 14:59 ochadctl
-rwxr-xr-x 1 oracle dba 2885 Oct 15 14:59 oc4jctl
-rwxr-x--- 1 oracle dba 3700 Oct 15 14:59 ndfnceca
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 lsnodes
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 kfod
-rwxr-xr-x 1 oracle dba 4987 Oct 15 14:59 jwcctl
-rwxr-xr-x 1 oracle dba 6206 Oct 15 14:59 ghappctl
-rwxr-x--- 1 oracle dba 4979 Oct 15 14:59 dhcpproxy
-rwxr-x--- 1 oracle dba 0 Oct 15 14:59 cssdmonitor.bin
-rwxr-x--- 1 oracle dba 0 Oct 15 14:59 cssdagent.bin
-rwxr-xr-x 1 oracle dba 359 Oct 15 14:59 crsrename
-rwxr-xr-x 1 oracle dba 3221 Oct 15 14:59 crskeytoolctl
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 crsctl
-rwxr-xr-x 1 oracle dba 3743 Oct 15 14:59 crsboot_diags.sh
-rwxr-x--- 1 oracle dba 682 Oct 15 14:59 crfsetenv
-rwxr-xr-x 1 oracle dba 10270 Oct 15 14:59 cluvfy
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 clsid
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 clsecho
-rwxr-xr-x 1 oracle dba 11556 Oct 15 14:59 clscfg
-rwxr-xr-- 1 oracle dba 6362 Oct 15 14:59 chactl
-rwxr-xr-x 1 oracle dba 385 Oct 15 14:59 cdpcfg
lrwxrwxrwx 1 root root 30 Oct 15 15:00 tfactl -> /opt/oracle.ahf/tfa/bin/tfactl
-rw-r----- 1 oracle dba 39696 Dec 29 08:29 osdbagrp0
-rw------- 1 oracle dba 105960 Dec 29 08:29 oklist0
-rw-r----- 1 oracle dba 40248 Dec 29 08:29 rawutl0
-rw------- 1 oracle dba 90728 Dec 29 08:29 okdstry0
-rw------- 1 oracle dba 95856 Dec 29 08:29 okinit0
-rwxr-x--- 1 oracle dba 82509 Dec 29 09:20 diagsnap.pl
-rwxr-xr-x 1 oracle dba 818 Dec 29 09:20 acfsregistrymount
-rwxr-xr-x 1 oracle dba 3800 Dec 29 09:20 acfsdriverstate
-rwxr-xr-x 1 oracle dba 821 Dec 29 09:20 acfssinglefsmount
-rwxr-xr-x 1 oracle dba 2865 Dec 29 09:20 acfsrepl_apply
-rwxr-xr-x 1 oracle dba 761 Dec 29 09:20 acfsreplcrs
-rwxr-xr-x 1 oracle dba 2865 Dec 29 09:20 acfsrepl_dupd
-rwxr-xr-x 1 oracle dba 771 Dec 29 09:20 acfshanfs
-rwxr-xr-x 1 oracle dba 765 Dec 29 09:20 acfsload
-rwxr-xr-x 1 oracle dba 1163 Dec 29 09:22 agapacheas
-rwxr-xr-x 1 oracle dba 1156 Dec 29 09:22 agctl
-rwxr-xr-x 1 oracle dba 1062 Dec 29 09:22 agebsas
-rwxr-xr-x 1 oracle dba 1233 Dec 29 09:22 aggoldengateas
-rwxr-xr-x 1 oracle dba 1047 Dec 29 09:22 aggoldengatescaas
-rwxr-xr-x 1 oracle dba 1035 Dec 29 09:22 agjdeas
-rwxr-xr-x 1 oracle dba 1023 Dec 29 09:22 agmysqlas
-rwxr-xr-x 1 oracle dba 1034 Dec 29 09:22 agordsas
-rwxr-xr-x 1 oracle dba 1029 Dec 29 09:22 agmysqlmonas
-rwxr-xr-x 1 oracle dba 1125 Dec 29 09:22 agpsappas
-rwxr-xr-x 1 oracle dba 1124 Dec 29 09:22 agpsbatchas
-rwxr-xr-x 1 oracle dba 1140 Dec 29 09:22 agpspiaas
-rwxr-xr-x 1 oracle dba 1260 Dec 29 09:22 agsiebgtwyas
-rwxr-xr-x 1 oracle dba 1252 Dec 29 09:22 agsiebsrvras
-rwxr-xr-x 1 oracle dba 1159 Dec 29 09:22 agtomcatas
-rwxr-xr-x 1 oracle dba 1026 Dec 29 09:22 agwlas
-rwxr-x--x 1 oracle dba 9543040 Dec 30 22:30 wrap
-rwxr-x--x 1 oracle dba 113680 Dec 30 22:30 dbv
-rwxr-x--x 1 oracle dba 46040 Dec 30 22:30 tstshm
-rwxr-x--x 1 oracle dba 36296 Dec 30 22:30 maxmem
-rwxr-x--x 1 oracle dba 159568 Dec 30 22:30 orapwd
-rwxr-x--x 1 oracle dba 35824 Dec 30 22:30 dbfsize
-rwxr-x--x 1 oracle dba 1177232 Dec 30 22:30 dumpsga
-rwxr-x--x 1 oracle dba 1176760 Dec 30 22:30 mapsga
-rwxr-x--x 1 oracle dba 35688 Dec 30 22:30 cursize
-rwxr-x--x 1 oracle dba 241456 Dec 30 22:30 agtctl
-rwxr-x--x 1 oracle dba 345256 Dec 30 22:30 hsalloci
-rwxr-x--x 1 oracle dba 228200 Dec 30 22:30 hsots
-rwxr-x--x 1 oracle dba 224584 Dec 30 22:30 hsdepxa
-rwxr-x--x 1 oracle dba 157560 Dec 30 22:30 sbttest
-rwxr-x--x 1 oracle dba 111496 Dec 30 22:30 nid
-rwx------ 1 oracle dba 3033432 Dec 30 22:30 extjobo
-rwsr-x--- 1 root dba 3033432 Dec 30 22:30 extjob
-rwsr-x--- 1 root dba 2340152 Dec 30 22:30 jssu
-rwxr-xr-x 1 oracle dba 236256 Dec 30 22:30 kfod.bin
-rwxr-x--x 1 oracle dba 192672 Dec 30 22:30 amdu
-rwxr-x--x 1 oracle dba 146464 Dec 30 22:30 kfed
-rwxr-x--x 1 oracle dba 98272 Dec 30 22:30 mkpatch
-rwxr-x--x 1 oracle dba 233136 Dec 30 22:30 renamedg
-rwxr-xr-x 1 oracle dba 39696 Dec 30 22:30 osdbagrp
-rwxr-x--x 1 oracle dba 4207056 Dec 30 22:30 setasmgid
-rwxr-x--x 1 oracle dba 8412480 Dec 30 22:30 orion
-rwxr-x--x 1 oracle dba 36376 Dec 30 22:30 skgxpinfo
-rwxr-x--x 1 oracle dba 134936 Dec 30 22:30 trcldr
-rwxr-x--x 1 oracle dba 99240 Dec 30 22:30 oputil
-rwxr-x--x 1 oracle dba 46904 Dec 30 22:30 tnsping
-rwxr-xr-x 1 oracle dba 33888 Dec 30 22:30 sqlplus
-rwxr-xr-x 1 oracle dba 1144960 Dec 30 22:30 ldapadd
-rwxr-xr-x 1 oracle dba 1041088 Dec 30 22:30 ldapbind
-rwxr-xr-x 1 oracle dba 1041168 Dec 30 22:30 ldapcompare
-rwxr-xr-x 1 oracle dba 1045504 Dec 30 22:30 ldapdelete
-rwxr-xr-x 1 oracle dba 1144960 Dec 30 22:30 ldapmodify
-rwxr-xr-x 1 oracle dba 1077336 Dec 30 22:30 ldapsearch
-rwxr-xr-x 1 oracle dba 1041072 Dec 30 22:30 ldapmoddn
-rwxr-xr-x 1 oracle dba 1159048 Dec 30 22:30 ldapaddmt
-rwxr-xr-x 1 oracle dba 1159048 Dec 30 22:30 ldapmodifymt
-rwxr-xr-x 1 oracle dba 1123328 Dec 30 22:30 dsml2ldif
-rwxr-xr-x 1 oracle dba 105960 Dec 30 22:30 oklist
-rwxr-xr-x 1 oracle dba 40248 Dec 30 22:30 rawutl
-rwxr-x--x 1 oracle dba 511528 Dec 30 22:30 imp
-rwxr-x--x 1 oracle dba 1027992 Dec 30 22:30 exp
-rwxr-x--x 1 oracle dba 1691416 Dec 30 22:30 sqlldr
-rwxr-x--x 1 oracle dba 141712 Dec 30 22:30 tkprof
-rwxr-x--x 1 oracle dba 158824 Dec 30 22:30 plshprof
-rwxr-x--x 1 oracle dba 78880 Dec 30 22:30 kgmgr
-rwxr-x--x 1 oracle dba 49728 Dec 30 22:30 loadpsp
-rwxr-x--x 1 oracle dba 241880 Dec 30 22:30 impdp
-rwxr-x--x 1 oracle dba 233968 Dec 30 22:30 expdp
-rwxr-x--x 1 oracle dba 68400 Dec 30 22:30 genezi
-rwxr-x--x 1 oracle dba 953680 Dec 30 22:30 dgmgrl
-rwxr-x--x 1 oracle dba 53760 Dec 30 22:30 dg4pwd
-rwxr-x--x 1 oracle dba 760256 Dec 30 22:30 wrc
-rwxr-x--x 1 oracle dba 50920 Dec 30 22:30 adrci
-rwxr-x--x 1 oracle dba 246008 Dec 30 22:30 uidrvci
-rwxr-x--x 1 oracle dba 46304 Dec 30 22:30 sysresv
-rwxr-s--x 1 oracle dba 214096 Dec 30 22:30 extproc
-rwxr-xr-x 1 oracle dba 90728 Dec 30 22:30 okdstry
-rwxr-xr-x 1 oracle dba 95856 Dec 30 22:30 okinit
-rwxr-x--x 1 oracle dba 1077344 Dec 30 22:30 tnslsnr
-rwxr-x--x 1 oracle dba 187848 Dec 30 22:30 lsnrctl
-rwxr-x--x 1 oracle dba 61088 Dec 30 22:30 trcroute
-rwxr-x--x 1 oracle dba 13598568 Dec 30 22:30 rman
-rwsr-s--x 1 oracle dba 425711968 Dec 30 22:30 oracle
-rwxr-xr-x 1 oracle dba 2854 Dec 30 22:44 afdtool
-rwxr-xr-x 1 oracle dba 754 Dec 30 22:44 afdload
-rwxr-xr-x 1 oracle dba 3078 Dec 30 22:44 afddriverstate
# ls -ltr $GRID_HOME/lib
total 2156976
-rw-r--r-- 1 oracle dba 45386 Oct 24 2001 activation.jar
-rw-r--r-- 1 oracle dba 280984 Oct 24 2001 mail.jar
-rw-r--r-- 1 oracle dba 7370 Jan 18 2007 asmcmd_disk_header_format
-rw-r--r-- 1 oracle dba 473514 Dec 4 2010 http_client.jar
-rw-r--r-- 1 oracle dba 2223 Jul 18 2011 asmcmdxmlexceptions.pm
-rw-r--r-- 1 oracle dba 7569 May 28 2013 asmcmdexceptions.pm
-rw-r--r-- 1 oracle dba 51802 Nov 19 2014 asmcmdparser.pm
-rw-r--r-- 1 oracle dba 746 May 26 2015 osds_acfsregistrymount.pm
-rw-r--r-- 1 oracle dba 20082 Jun 10 2016 asmcmdtmpl.pm
-rw-r--r-- 1 oracle dba 16335 Jun 10 2016 asmcmdattr.pm
-rw-r--r-- 1 oracle dba 36551 Jun 20 2016 acfsregistrymount.pl
-rw-r--r-- 1 oracle dba 3002 Jun 20 2016 osds_okaload.pm
-rwxr-xr-x 1 oracle dba 2819 Jun 20 2016 okatoolsdriver.sh
-rwxr-xr-x 1 oracle dba 2802 Jun 20 2016 afdtoolsdriver.sh
-rwxr-xr-x 1 oracle dba 2819 Jun 20 2016 olfstoolsdriver.sh
-rw-r--r-- 1 oracle dba 673730 Jun 22 2016 liblzopro5.a
-rw-r--r-- 1 oracle dba 70 Aug 15 2016 sysliblist
-rw-r--r-- 1 oracle dba 241 Sep 1 2016 65-usm-acfsr-member.rules
-rw-r--r-- 1 oracle dba 6085 Sep 17 2016 osds_okalib.pm
-rw-r--r-- 1 oracle dba 159495 Sep 23 2016 asmcmddisk.pm
-rw-r--r-- 1 oracle dba 22492 Oct 7 2016 asmcmdqg.pm
-rw-r--r-- 1 oracle dba 43980 Dec 8 2016 asmcmddiag.pm
-rw-r--r-- 1 oracle dba 15901 Feb 4 2017 asmcmdamdu.pm
-rw-r--r-- 1 oracle dba 24748678 Mar 16 2017 libsvml.a
-rw-r--r-- 1 oracle dba 2742978 Mar 16 2017 libirng.a
-rw-r--r-- 1 oracle dba 700944 Mar 16 2017 libirc.a
-rw-r--r-- 1 oracle dba 461695 Mar 16 2017 libintlc.so.5
-rw-r--r-- 1 oracle dba 5777844 Mar 16 2017 libimf.a
-rw-r--r-- 1 oracle dba 1752 Mar 16 2017 crtend.o
-rw-r--r-- 1 oracle dba 2704 Mar 16 2017 crtbegin.o
-rw-r--r-- 1 oracle dba 2491 May 26 2017 osds_afdload.pm
-rw-r--r-- 1 oracle dba 2258 May 26 2017 osds_afddriverstate.pm
-rw-r--r-- 1 oracle dba 2464 Jun 3 2017 osds_acfsload.pm
-rw-r--r-- 1 oracle dba 4004 Jun 3 2017 osds_unix_linux_okalib.pm
-rw-r--r-- 1 oracle dba 18228 Jun 7 2017 okalib.pm
-rw-r--r-- 1 oracle dba 6918 Jun 7 2017 afdlib.pm
-rw-r--r-- 1 oracle dba 874 Jun 16 2017 osds_acfssinglefsmount.pm
-rwxr-x--- 1 oracle dba 3690 Jul 19 2017 acfstoolsdriver.sh
-rw-r--r-- 1 oracle dba 4606 Aug 15 2017 acfshanfs.pl
-rw-r--r-- 1 oracle dba 6369 Aug 24 2017 okaload.pl
-rw-r--r-- 1 oracle dba 1842723 Sep 19 2017 libiomp5.so
-rw-r--r-- 1 oracle dba 30436445 Sep 19 2017 libmkl_core.so
-rw-r--r-- 1 oracle dba 42368641 Sep 19 2017 libmkl_avx.so
-rw-r--r-- 1 oracle dba 56655456 Sep 19 2017 libmkl_avx512.so
-rw-r--r-- 1 oracle dba 64004640 Sep 19 2017 libmkl_avx512_mic.so
-rw-r--r-- 1 oracle dba 53722624 Sep 19 2017 libmkl_avx2.so
-rw-r--r-- 1 oracle dba 10809356 Sep 19 2017 libmkl_vml_mc.so
-rw-r--r-- 1 oracle dba 6197700 Sep 19 2017 libmkl_vml_def.so
-rw-r--r-- 1 oracle dba 6187232 Sep 19 2017 libmkl_vml_cmpt.so
-rw-r--r-- 1 oracle dba 12675908 Sep 19 2017 libmkl_vml_avx.so
-rw-r--r-- 1 oracle dba 11616610 Sep 19 2017 libmkl_vml_avx512.so
-rw-r--r-- 1 oracle dba 13199348 Sep 19 2017 libmkl_vml_avx512_mic.so
-rw-r--r-- 1 oracle dba 12840366 Sep 19 2017 libmkl_vml_avx2.so
-rw-r--r-- 1 oracle dba 14234237 Sep 19 2017 libmkl_sequential.so
-rw-r--r-- 1 oracle dba 5987677 Sep 19 2017 libmkl_rt.so
-rw-r--r-- 1 oracle dba 37973259 Sep 19 2017 libmkl_mc.so
-rw-r--r-- 1 oracle dba 39212463 Sep 19 2017 libmkl_mc3.so
-rw-r--r-- 1 oracle dba 31157565 Sep 19 2017 libmkl_intel_thread.so
-rw-r--r-- 1 oracle dba 10575488 Sep 19 2017 libmkl_intel_lp64.so
-rw-r--r-- 1 oracle dba 9787348 Sep 19 2017 libmkl_intel_ilp64.so
-rw-r--r-- 1 oracle dba 32007539 Sep 19 2017 libmkl_def.so
-rw-r--r-- 1 oracle dba 11058750 Sep 19 2017 libmkl_vml_mc3.so
-rw-r--r-- 1 oracle dba 10801640 Sep 19 2017 libmkl_vml_mc2.so
-rw-r--r-- 1 oracle dba 19600884 Sep 19 2017 libmkl_gnu_thread.so
-rw-r--r-- 1 oracle dba 9732569 Oct 12 2017 libmkl_gf_ilp64.so
-rw-r--r-- 1 oracle dba 10520709 Oct 12 2017 libmkl_gf_lp64.so
-rw-r--r-- 1 oracle dba 1838 Nov 3 2017 acfsr_member
-rw-r--r-- 1 oracle dba 7308792 Jan 17 2018 libora_netlib.so
-rw-r--r-- 1 oracle dba 12970 Mar 12 2018 asmcmdambracfs.xml
-rw-r--r-- 1 oracle dba 11641 Mar 22 2018 olfscmd.pl
-rw-r--r-- 1 oracle dba 8608 Apr 25 2018 osds_afdlib.pm
-rw-r--r-- 1 oracle dba 7664 Apr 25 2018 osds_unix_linux_afdlib.pm
-rw-r--r-- 1 oracle dba 78145066 Apr 27 2018 libipps.a
-rw-r--r-- 1 oracle dba 161074 Apr 27 2018 libipp_z.a
-rw-r--r-- 1 oracle dba 78994 Apr 27 2018 libippcore.a
-rw-r--r-- 1 oracle dba 98654 Apr 27 2018 libipp_bz2.a
-rw-r--r-- 1 oracle dba 58051 May 16 2018 asmcmdvol.pm
-rw-r--r-- 1 oracle dba 13921 May 24 2018 osds_acfsrVerifyConfig.pm
-rw-r--r-- 1 oracle dba 18385 May 24 2018 acfsreplcrs.pl
-rw-r--r-- 1 oracle dba 23321 Jun 8 2018 okaroot.pl
-rw-r--r-- 1 oracle dba 5680 Jun 8 2018 afdload.pl
-rw-r--r-- 1 oracle dba 2440 Aug 7 2018 osds_okadriverstate.pm
-rw-r--r-- 1 oracle dba 129941 Aug 8 2018 asmcmdambr.pm
-rw-r--r-- 1 oracle dba 4276 Aug 10 2018 facility.lis
-rw-r--r-- 1 oracle dba 3340984 Aug 22 2018 libippdc.a
-rw-r--r-- 1 oracle dba 3406960 Oct 12 2018 libxgboost.so
-rw-r--r-- 1 oracle dba 14143 Oct 26 2018 acfsremote.pl
-rw-r--r-- 1 oracle dba 4168 Oct 26 2018 okadriverstate.pl
-rw-r--r-- 1 oracle dba 5110 Oct 26 2018 afddriverstate.pl
-rw-r--r-- 1 oracle dba 17010 Oct 26 2018 olfsroot.pl
-rw-r--r-- 1 oracle dba 43120 Nov 14 2018 osds_acfsremote.pm
-rw-r--r-- 1 oracle dba 20174 Dec 6 2018 libonsx.a
-rw-r--r-- 1 oracle dba 32736 Dec 6 2018 libonsx.so
-rw-r--r-- 1 oracle dba 360456 Jan 14 2019 libwwg.a
-rw-r--r-- 1 oracle dba 24428 Jan 14 2019 libslax19.a
-rw-r--r-- 1 oracle dba 45634 Jan 14 2019 libldapjclnt19.a
-rw-r--r-- 1 oracle dba 102228 Jan 14 2019 libowm2.a
-rw-r--r-- 1 oracle dba 80040 Jan 14 2019 libldapjclnt19.so
-rw-r--r-- 1 oracle dba 144262 Feb 21 2019 libnvm1.a
-rw-r--r-- 1 oracle dba 932024 Feb 21 2019 libnvm1.so
-rw-r--r-- 1 oracle dba 771065 Feb 25 2019 xmlmesg.jar
-rw-r--r-- 1 oracle dba 1460 Feb 25 2019 xmlparserv2_jaxp_services.jar
-rw-r--r-- 1 oracle dba 325194 Mar 4 2019 libunls19.a
-rw-r--r-- 1 oracle dba 389634 Mar 4 2019 libsnls19.a
-rw-r--r-- 1 oracle dba 3607726 Mar 4 2019 libnls19.a
-rw-r--r-- 1 oracle dba 118654 Mar 4 2019 liblxled.a
-rw-r--r-- 1 oracle dba 3400 Mar 7 2019 sscoreed.o
-rw-r--r-- 1 oracle dba 3680 Mar 7 2019 scorept.o
-rw-r--r-- 1 oracle dba 6104 Mar 7 2019 s0main.o
-rw-r--r-- 1 oracle dba 192082 Mar 7 2019 liboraz.a
-rw-r--r-- 1 oracle dba 64534 Mar 7 2019 liborazip.a
-rw-r----- 1 oracle dba 543232 Mar 19 2019 libexpat.so.1.6.8
-rwxr-x--- 1 oracle dba 543232 Mar 19 2019 libexpat.so.1
-rwxr-x--- 1 oracle dba 543232 Mar 19 2019 libexpat.so
-rw-r----- 1 oracle dba 938 Mar 19 2019 libexpat.la
-rw-r----- 1 oracle dba 841514 Mar 19 2019 libexpat.a
-rw-r--r-- 1 oracle dba 6592 Mar 30 2019 nautab.o
-rw-r--r-- 1 oracle dba 42210 Mar 30 2019 libntns19.a
-rw-r--r-- 1 oracle dba 13458 Mar 30 2019 libnoname19.a
-rw-r--r-- 1 oracle dba 6792 Mar 30 2019 nigtab.o
-rw-r--r-- 1 oracle dba 6864 Mar 30 2019 osntabst.o
-rw-r--r-- 1 oracle dba 126698 Mar 30 2019 libngsmshd19.a
-rw-r--r-- 1 oracle dba 178014 Mar 30 2019 libnus19.a
-rw-r--r-- 1 oracle dba 205102 Mar 30 2019 libntmq19.a
-rw-r--r-- 1 oracle dba 234134 Mar 30 2019 libnsgr19.a
-rw-r--r-- 1 oracle dba 133360 Mar 30 2019 libnbeq19.a
-rw-r--r-- 1 oracle dba 10758 Mar 30 2019 libnzjs19.a
-rw-r--r-- 1 oracle dba 1094574 Mar 30 2019 libnro19.a
-rw-r--r-- 1 oracle dba 17760 Mar 30 2019 libntcpaio19.so
-rw-r--r-- 1 oracle dba 28632 Mar 30 2019 libnque19.so
-rw-r--r-- 1 oracle dba 6376 Mar 30 2019 naedhs.o
-rw-r--r-- 1 oracle dba 166082 Apr 5 2019 libocijdbc19.a
-rw-r--r-- 1 oracle dba 10328 Apr 5 2019 libheteroxa19.a
-rw-r--r-- 1 oracle dba 17163692 Apr 17 2019 libippcp.a
-rw-r--r-- 1 oracle dba 16200 Apr 17 2019 cobsqlintf.o
-rw-r--r-- 1 oracle dba 12112 Apr 17 2019 libvsn.so
-rw-r--r-- 1 oracle dba 24312 Apr 17 2019 libskgxpd.so
-rw-rw-r-- 1 oracle dba 24312 Apr 17 2019 libskgxpcompat.so
-rw-r--r-- 1 oracle dba 26046 Apr 17 2019 libnnet19.a
-rw-r--r-- 1 oracle dba 4392611 Apr 17 2019 ra_installer.zip
-rw-r--r-- 1 oracle dba 914016 Apr 17 2019 opc_installer.zip
-rw-r--r-- 1 oracle dba 966004 Apr 17 2019 osbws_installer.zip
-rw-r--r-- 1 oracle dba 913008 Apr 17 2019 opc2_installer.zip
-rw-r--r-- 1 oracle dba 3907582 Apr 17 2019 libshpkavx219.a
-rw-r--r-- 1 oracle dba 10594 Apr 17 2019 libodm19.a
-rw-r--r-- 1 oracle dba 3794558 Apr 17 2019 libshpksse4219.a
-rw-r--r-- 1 oracle dba 140664 Apr 17 2019 liboramysql19.a
-rw-r--r-- 1 oracle dba 22324 Apr 17 2019 libopcodm19.a
-rw-r--r-- 1 oracle dba 3766734 Apr 17 2019 libshpkavx19.a
-rw-r--r-- 1 oracle dba 208656 Apr 17 2019 libkubsagt.a
-rw-r--r-- 1 oracle dba 21532 Apr 17 2019 libpatchgensh19.a
-rw-r--r-- 1 oracle dba 26046 Apr 17 2019 libnnetd19.a
-rw-r--r-- 1 oracle dba 228108 Apr 17 2019 libzx19.a
-rw-r--r-- 1 oracle dba 29470 Apr 17 2019 libavstub19.a
-rw-r--r-- 1 oracle dba 22898 Apr 17 2019 libskvol19.a
-rw-r--r-- 1 oracle dba 160420 Apr 17 2019 liborion19.a
-rw-r--r-- 1 oracle dba 6910 Apr 17 2019 libofs.a
-rw-r--r-- 1 oracle dba 6476 Apr 17 2019 libmm.a
-rw-r--r-- 1 oracle dba 629422 Apr 17 2019 libgx19.a
-rw-r--r-- 1 oracle dba 4478206 Apr 17 2019 libshpkavx51219.a
-rw-r--r-- 1 oracle dba 85642 Apr 17 2019 libnid.a
-rw-r--r-- 1 oracle dba 5834 Apr 17 2019 libedtn19_xp.a
-rw-r--r-- 1 oracle dba 5850 Apr 17 2019 libedtn19_std.a
-rw-r--r-- 1 oracle dba 5834 Apr 17 2019 libedtn19_hp.a
-rw-r--r-- 1 oracle dba 5850 Apr 17 2019 libedtn19_ent.a
-rw-r--r-- 1 oracle dba 5906 Apr 17 2019 libedtn19_cse.a
-rw-r--r-- 1 oracle dba 5906 Apr 17 2019 libedtn19_cee.a
-rw-rw-r-- 1 oracle dba 5850 Apr 17 2019 libedtn19.a
-rw-r--r-- 1 oracle dba 115976 Apr 17 2019 liboramysql19.so
-rw-r--r-- 1 oracle dba 55072 Apr 17 2019 libopcodm19.so
-rw-r--r-- 1 oracle dba 408032 Apr 17 2019 libxdb.so
-rw-r--r-- 1 oracle dba 26328 Apr 17 2019 libskvol19.so
-rw-r--r-- 1 oracle dba 217416 Apr 17 2019 libkubsagt.so
-rw-r--r-- 1 oracle dba 25704 Apr 17 2019 libpatchgensh19.so
-rw-r--r-- 1 oracle dba 87856 Apr 17 2019 librqext.so
-rw-r--r-- 1 oracle dba 17336 Apr 17 2019 libskgxns.so
-rw-r--r-- 1 oracle dba 27432 Apr 17 2019 libqsmashr.so
-rw-r--r-- 1 oracle dba 3357824 Apr 17 2019 libshpksse4219.so
-rw-r--r-- 1 oracle dba 4219096 Apr 17 2019 libshpkavx51219.so
-rw-r--r-- 1 oracle dba 3486080 Apr 17 2019 libshpkavx219.so
-rw-r--r-- 1 oracle dba 3325552 Apr 17 2019 libshpkavx19.so
-rw-r--r-- 1 oracle dba 12536 Apr 17 2019 libofs.so
-rw-r--r-- 1 oracle dba 17848 Apr 17 2019 libodmd19.so
drwxr-xr-x 2 oracle dba 4096 Apr 17 2019 stubs
drwxr-xr-x 2 oracle dba 22 Apr 17 2019 pkgconfig
-rw-r--r-- 1 oracle dba 833 Jul 21 08:40 usmvsn.pm
-rw-r--r-- 1 oracle dba 57650 Jul 21 08:40 osds_unix_linux_acfslib.pm
-rw-r--r-- 1 oracle dba 25962 Jul 21 08:40 osds_okaroot.pm
-rw-r--r-- 1 oracle dba 32259 Jul 21 08:40 osds_afdroot.pm
-rw-r--r-- 1 oracle dba 83418 Jul 21 08:40 osds_acfsroot.pm
-rw-r--r-- 1 oracle dba 101959 Jul 21 08:40 osds_acfslib.pm
-rw-r--r-- 1 oracle dba 3514 Jul 21 08:40 osds_acfsdriverstate.pm
-rw-r--r-- 1 oracle dba 227880 Jul 21 08:40 libafd19.so
-rw-r--r-- 1 oracle dba 180200 Jul 21 08:40 libafd19.a
-rw-r--r-- 1 oracle dba 696336 Jul 21 08:40 libacfs19.so
-rw-r--r-- 1 oracle dba 158704 Jul 21 08:40 libacfs19.a
-rw-r--r-- 1 oracle dba 18704 Jul 21 08:40 afdroot.pl
-rw-r--r-- 1 oracle dba 18915 Jul 21 08:40 acfssinglefsmount.pl
-rw-r--r-- 1 oracle dba 38867 Jul 21 08:40 acfsroot.pl
-rw-r--r-- 1 oracle dba 12539 Jul 21 08:40 acfsload.pl
-rw-r--r-- 1 oracle dba 112346 Jul 21 08:40 acfslib.pm
-rw-r--r-- 1 oracle dba 11440 Jul 21 08:40 acfsdriverstate.pl
-rw-r--r-- 1 oracle dba 95020488 Jul 21 08:41 libopc.so
-rw-r--r-- 1 oracle dba 332200 Jul 21 08:41 libipcdat19.so
-rw-r--r-- 1 oracle dba 17368 Jul 21 08:41 naeet.o
-rw-r--r-- 1 oracle dba 153464 Jul 21 08:41 libocijdbc19.so
-rw-r--r-- 1 oracle dba 12160 Jul 21 08:41 libvsn19.so
-rwxr-xr-x 1 oracle dba 54024 Jul 21 08:41 libomsodm19.so
-rw-r--r-- 1 oracle dba 843436 Jul 21 08:41 liboms1.a
-rw-r--r-- 1 oracle dba 22716302 Jul 21 08:41 libnnzst19.a
-rw-r--r-- 1 oracle dba 211176 Jul 21 08:41 libnjni19.so
-rwxr-xr-x 1 oracle dba 47200 Jul 21 08:41 libheteroxa19_g.so
-rw-r--r-- 1 oracle dba 2909648 Jul 21 08:41 libcorejava.so
-rw-r--r-- 1 oracle dba 206383 Jul 21 08:41 asmcmdbase.pm
-rw-r--r-- 1 oracle dba 142279134 Jul 21 08:41 libclntst19.a
-rw-r--r-- 1 oracle dba 19720 Jul 21 08:41 nigcon.o
-rw-r--r-- 1 oracle dba 13656 Jul 21 08:41 naect.o
-rw-r--r-- 1 oracle dba 1572432 Jul 21 08:41 libsqlplus.so
-rw-r--r-- 1 oracle dba 1273616 Jul 21 08:41 libskgxpr.so
-rw-r--r-- 1 oracle dba 1273584 Jul 21 08:41 libskgxpg.so
-rw-r--r-- 1 oracle dba 38864 Jul 21 08:41 liboramalloc19.so
-rwxr-xr-x 1 oracle dba 702080 Jul 21 08:41 liboms1.so
-rw-r--r-- 1 oracle dba 557700 Jul 21 08:41 libmql1.a
-rw-r--r-- 1 oracle dba 3626096 Jul 21 08:41 libipc1.so
-rw-r--r-- 1 oracle dba 2010264 Jul 21 08:41 libcell19.so
-rw-r--r-- 1 oracle dba 742086 Jul 21 08:41 libccme_base_non_fips.so
-rw-r--r-- 1 oracle dba 650521 Jul 21 08:41 libccme_asym.so
-rw-r--r-- 1 oracle dba 36185 Jul 21 08:41 asmcmdfgrp.pm
-rw-r--r-- 1 oracle dba 95016192 Jul 21 08:41 libra.so
-rw-r--r-- 1 oracle dba 92984 Jul 21 08:41 libowm2.so
-rw-r--r-- 1 oracle dba 807159 Jul 21 08:41 libccme_ecc.so
-rw-r--r-- 1 oracle dba 228312 Jul 21 08:41 asmcommand.xml
-rw-r--r-- 1 oracle dba 5870 Jul 21 08:41 libvsnst19.a
-rw-r--r-- 1 oracle dba 95020544 Jul 21 08:41 libosbws.so
-rw-r--r-- 1 oracle dba 478864 Jul 21 08:41 libmql1.so
-rw-r--r-- 1 oracle dba 17912 Jul 21 08:41 libheteroxa19.so
-rw-r--r-- 1 oracle dba 407003 Jul 21 08:41 libcryptocme.so
-rw-r--r-- 1 oracle dba 3156584 Jul 21 08:41 libcell19.a
-rw-r--r-- 1 oracle dba 812103 Jul 21 08:41 libccme_ecc_accel_fips.so
-rw-r--r-- 1 oracle dba 105373 Jul 21 08:41 asmcmdafd.pm
-rwxr-xr-x 1 oracle dba 1807448 Jul 21 08:42 libocijdbc19_g.so
-rw-r--r-- 1 oracle dba 2200864 Jul 21 08:42 libnnz19.a
-rw-r--r-- 1 oracle dba 5212122 Jul 21 08:42 libztkg19.a
-rw-r--r-- 1 oracle dba 59560 Jul 21 08:42 libnfsodm19.so
-rw-r--r-- 1 oracle dba 219038 Jul 21 08:42 libncrypt19.a
-rw-r--r-- 1 oracle dba 4715038 Jul 21 08:42 libipc1.a
-rw-r--r-- 1 oracle dba 461932 Jul 21 08:42 libccme_ecc_non_fips.so
-rw-r--r-- 1 oracle dba 780704 Jul 21 08:42 libccme_ecc_accel_non_fips.so
-rw-r--r-- 1 oracle dba 809240 Jul 21 08:42 libccme_base.so
-rw-r--r-- 1 oracle dba 53530 Jul 21 08:42 asmcmdug.pm
-rw-r--r-- 1 oracle dba 58542 Jul 21 08:42 asmcmdpasswd.pm
-rw-r--r-- 1 oracle dba 221682 Jul 21 08:42 asmcmdshare.pm
-rw-r--r-- 1 oracle dba 26478 Jul 21 08:42 asmcmdglobal.pm
-rw-r--r-- 1 oracle dba 43929 Jul 21 08:42 asmcmdaudit.pm
-rw-r--r-- 1 oracle dba 191534 Jul 21 08:42 libzt19.a
-rw-r--r-- 1 oracle dba 5870 Jul 21 08:42 libvsn19.a
-rw-r--r-- 1 oracle dba 410512 Jul 21 08:42 libons.so
-rw-r--r-- 1 oracle dba 7115896 Jul 21 08:42 libnnz19.so
-rw-r--r-- 1 oracle dba 33 Jul 21 08:42 libcryptocme.sig
-rw-r--r-- 1 oracle dba 225151 Jul 21 08:42 asmcmdsys.pm
-rw-r--r-- 1 oracle dba 413120 Jul 21 08:43 libskjcx19.so
-rw-r--r-- 1 oracle dba 926080 Jul 21 08:43 libgns19.so
-rw-r--r-- 1 oracle dba 129152 Jul 21 08:43 libeonsserver.so
-rw-r--r-- 1 oracle dba 648824 Jul 21 08:43 libcha19.so
-rw-r--r-- 1 oracle dba 4905984 Jul 21 08:43 libagfw19.so
-rw-r--r-- 1 oracle dba 1222752 Jul 21 08:43 libsrvmhas19.so
-rw-r--r-- 1 oracle dba 33216 Jul 21 08:43 libperlhasgen.so
-rw-r--r-- 1 oracle dba 8606280 Jul 21 08:43 libocrb19.so
-rw-r--r-- 1 oracle dba 5040776 Jul 21 08:43 libNeticaJ.so
-rw-r--r-- 1 oracle dba 14274208 Jul 21 08:43 libhasgen19.so
-rw-r--r-- 1 oracle dba 137920 Jul 21 08:43 libgnsjni19.so
-rw-r--r-- 1 oracle dba 214264 Jul 21 08:43 libeons.so
-rw-r--r-- 1 oracle dba 197456 Jul 21 08:43 libdbcfg19.so
-rw-r--r-- 1 oracle dba 334744 Jul 21 08:43 libcrf_mdb19.so
-rw-r--r-- 1 oracle dba 1974168 Jul 21 08:43 libcrf_http19.so
-rw-r--r-- 1 oracle dba 837106 Jul 21 08:43 libclsr19.a
-rw-r--r-- 1 oracle dba 51248 Jul 21 08:43 libclscred19.so
-rw-r--r-- 1 oracle dba 273384 Jul 21 08:43 libclsce19.so
-rwxr-xr-x 1 oracle dba 71003 Jul 21 08:43 jwcctl_lib.pm
-rwxr-xr-x 1 oracle dba 3631 Jul 21 08:43 jwcctl_common.pm
-rw-r--r-- 1 oracle dba 778152 Jul 21 08:43 libocrutl19.so
-rw-r--r-- 1 oracle dba 3793000 Jul 21 08:43 libocr19.so
-rw-r--r-- 1 oracle dba 102853712 Jul 21 08:43 libcrs19.so
-rw-r--r-- 1 oracle dba 267224 Jul 21 08:43 libclsra19.so
-rwxr-xr-x 1 oracle dba 17687 Jul 21 08:44 s_jwcctl_lib.pm
-rw-r--r-- 1 oracle dba 102024 Jul 21 08:44 libuini19.so
-rw-r--r-- 1 oracle dba 259312 Jul 21 08:44 libsrvmocr19.so
-rw-r--r-- 1 oracle dba 203520 Jul 21 08:44 libsrvmcred19.so
-rw-r--r-- 1 oracle dba 222464 Jul 21 08:44 librdjni19.so
-rw-r--r-- 1 oracle dba 397740 Jul 21 08:44 liboevm.a
-rw-r--r-- 1 oracle dba 38056 Jul 21 08:44 libjagent19.so
-rw-r--r-- 1 oracle dba 145976 Jul 21 08:44 libCurveFit.so
-rw-r--r-- 1 oracle dba 1714024 Jul 21 08:44 libcrf19.so
-rw-r--r-- 1 oracle dba 67176 Jul 21 08:44 libclsnsjni19.so
-rw-r--r-- 1 oracle dba 165772 Jul 21 08:44 libclscest19.a
-rw-r--r-- 1 oracle dba 33216 Jul 21 08:44 perlhasgen.so
lrwxrwxrwx 1 oracle dba 12 Oct 15 14:14 libodm19.so -> libodmd19.so
lrwxrwxrwx 1 oracle dba 36 Oct 15 14:14 libjavavm19.a -> ../javavm/jdk/jdk8/lib/libjavavm19.a
-rw-r--r-- 1 oracle dba 403766 Oct 15 14:16 libpsa19.a
-rw-r--r-- 1 oracle dba 14149148 Oct 15 14:16 libpls19.a
-rw-r--r-- 1 oracle dba 13489596 Oct 15 14:16 libclient19.a
-rw-r--r-- 1 oracle dba 1475944 Oct 15 14:16 libagent19.a
-rw-r--r-- 1 oracle dba 1795636 Oct 15 14:16 libplp19.a
-rw-r--r-- 1 oracle dba 240556 Oct 15 14:16 libplc19.a
-rw-r--r-- 1 oracle dba 13544308 Oct 15 14:16 libpls19_pic.a
-rw-r--r-- 1 oracle dba 1787308 Oct 15 14:16 libplp19_pic.a
-rw-r--r-- 1 oracle dba 260922 Oct 15 14:16 libplc19_pic.a
-rw-r--r-- 1 oracle dba 116034 Oct 15 14:16 liborabz2.a
-rw-r--r-- 1 oracle dba 3108590 Oct 15 14:16 libocci19.a
-rw-r--r-- 1 oracle dba 38583756 Oct 15 14:16 libgeneric19.a
-rw-r--r-- 1 oracle dba 22958476 Oct 15 14:16 libcommon19.a
-rw-r--r-- 1 oracle dba 61226 Oct 15 14:16 libasmperl19.a
-rw-r--r-- 1 oracle dba 1080928 Oct 15 14:17 liborazstd.a
-rw-r--r-- 1 oracle dba 233876 Oct 15 14:17 liboralz4.a
-rw-r--r-- 1 oracle dba 198454 Oct 15 14:17 libntwss19.a
-rw-r--r-- 1 oracle dba 388086 Oct 15 14:17 libntcps19.a
-rw-r--r-- 1 oracle dba 479968 Oct 15 14:17 libntcp19.a
-rw-r--r-- 1 oracle dba 345384 Oct 15 14:17 libnldap19.a
-rw-r--r-- 1 oracle dba 1911498 Oct 15 14:17 libnl19.a
-rw-r--r-- 1 oracle dba 49156 Oct 15 14:17 libnhost19.a
-rw-r--r-- 1 oracle dba 1650154 Oct 15 14:17 libldapclnt19.a
-rw-r--r-- 1 oracle dba 67672 Oct 15 14:17 libcorejava.a
-rw-r--r-- 1 oracle dba 6350576 Oct 15 14:17 libcore19.a
-rw-r--r-- 1 oracle dba 2334206 Oct 15 14:17 libsqlplus.a
-rw-r--r-- 1 oracle dba 208033 Oct 15 14:17 xsu12.jar
-rw-r--r-- 1 oracle dba 163476 Oct 15 14:17 xschema.jar
-rw-r--r-- 1 oracle dba 1931037 Oct 15 14:17 xmlparserv2_sans_jaxp_services.jar
-rw-r--r-- 1 oracle dba 1933643 Oct 15 14:17 xmlparserv2.jar
-rw-r--r-- 1 oracle dba 630554 Oct 15 14:17 xml.jar
-rw-r--r-- 1 oracle dba 11974 Oct 15 14:17 xmlcomp2.jar
-rw-r--r-- 1 oracle dba 488262 Oct 15 14:17 libons.a
-rw-r--r-- 1 oracle dba 1190844 Oct 15 14:17 libsql19.a
-rw-r--r-- 1 oracle dba 1404956 Oct 15 14:17 libctxc19.a
-rw-r--r-- 1 oracle dba 6861988 Oct 15 14:17 libctx19.a
-rw-r--r-- 1 oracle dba 11173792 Oct 15 14:17 libxml19.a
-rw-r--r-- 1 oracle dba 10994316 Oct 15 14:17 libordsdo19.a
-rw-r--r-- 1 oracle dba 19464658 Oct 15 14:17 liboraolap19.a
-rwxr-xr-x 1 oracle dba 2225240 Oct 15 14:19 libasmclntsh19.so.bak
-rw-r--r-- 1 oracle dba 3032520 Oct 15 14:19 libasmclntsh19.a
-rw-r--r-- 1 oracle dba 2602334 Oct 15 14:19 libasmclnt19.a
-rw-r--r-- 1 oracle dba 486603656 Oct 15 14:33 libserver19.a
-rw-r----- 1 oracle dba 232328 Dec 29 08:29 libsrvm19.so0
-rw-r--r-- 1 oracle dba 123 Dec 30 22:30 ldflags
-rw-r--r-- 1 oracle dba 2872 Dec 30 22:30 ntcontab.o
-rw-r--r-- 1 oracle dba 1968 Dec 30 22:30 nnfgt.o
-rw-r--r-- 1 oracle dba 9889782 Dec 30 22:30 libn19.a
-rw-r--r-- 1 oracle dba 2225240 Dec 30 22:30 libasmclntsh19.so
-rwxr-xr-x 1 oracle dba 54752 Dec 30 22:30 libasmperl19.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.11.1 -> libclntsh.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.10.1 -> libclntsh.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.12.1 -> libclntsh.so
lrwxrwxrwx 1 oracle dba 10 Dec 30 22:30 libocci.so.18.1 -> libocci.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.18.1 -> libclntsh.so
-rwxr-xr-x 1 oracle dba 2340192 Dec 30 22:30 libocci.so.19.1
lrwxrwxrwx 1 oracle dba 15 Dec 30 22:30 libocci.so -> libocci.so.19.1
-rwxr-xr-x 1 oracle dba 1671208 Dec 30 22:30 libagtsh.so.1.0
lrwxrwxrwx 1 oracle dba 15 Dec 30 22:30 libagtsh.so -> libagtsh.so.1.0
-rw-r--r-- 1 oracle dba 232328 Dec 30 22:30 libsrvm19.so
-rw-r--r-- 1 oracle dba 8052352 Dec 30 22:30 libclntshcore.so.19.1
-rw-r--r-- 1 oracle dba 1580936 Dec 30 22:30 clntshcore.map
lrwxrwxrwx 1 oracle dba 21 Dec 30 22:30 libclntshcore.so -> libclntshcore.so.19.1
-rw-r--r-- 1 oracle dba 81402424 Dec 30 22:30 libclntsh.so.19.1
-rw-r--r-- 1 oracle dba 5928063 Dec 30 22:30 clntsh.map
lrwxrwxrwx 1 oracle dba 17 Dec 30 22:30 libclntsh.so -> libclntsh.so.19.1
-rw-r--r-- 1 oracle dba 1273584 Dec 30 22:30 libskgxp19.so
-rw-r--r-- 1 oracle dba 17336 Dec 30 22:30 libskgxn2.so
|
rootcrs.sh -lock 실행 후 확인($GRID_HOME, $GRID_HOME/bin, $GRID_HOME/bin 권한 조회)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
|
# cd $GRID_HOME/crs/install
# sh rootcrs.sh -lock
Using configuration parameter file: /oracle/app/grid/19c/crs/install/crsconfig_params
The log of current session can be found at:
/oracle/app/oracle/crsdata/oel19db1/crsconfig/crslock_oel19db1_2021-12-30_10-46-26PM.log
2021/12/30 22:46:27 CLSRSC-329: Replacing Clusterware entries in file 'oracle-ohasd.service'
# ls -al $GRID_HOME/../
total 10802536
drwxr-xr-x. 3 root dba 33 Dec 29 05:59 .
drwxr-xr-x. 5 root dba 52 Oct 15 14:31 ..
drwxr-xr-x 92 root dba 4096 Oct 15 15:00 19c
# ls -ltr $GRID_HOME
total 108
-rw-r----- 1 oracle dba 500 Feb 7 2013 welcome.html
-rw-r--r-- 1 oracle dba 852 Aug 18 2015 env.ora
-rwxr-x--- 1 oracle dba 628 Sep 4 2015 runcluvfy.sh
-rwxr-x--- 1 oracle dba 3294 Mar 9 2017 gridSetup.sh
drwxr-x--- 14 oracle dba 4096 Apr 12 2019 OPatchold
-rw-r----- 1 oracle dba 10 Apr 17 2019 root.sh.old.3
-rw-r----- 1 oracle dba 10 Apr 17 2019 root.sh.old.1
drwxr-x--- 6 oracle dba 58 Apr 17 2019 xdk
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 wwg
drwxr-xr-x 3 oracle dba 18 Apr 17 2019 wlm
drwxr-xr-x 7 oracle dba 71 Apr 17 2019 usm
drwxr-xr-x 4 oracle dba 29 Apr 17 2019 tomcat
drwxr-xr-x 3 oracle dba 18 Apr 17 2019 slax
drwxr-xr-x 3 oracle dba 21 Apr 17 2019 relnotes
drwxr-xr-x 5 oracle dba 42 Apr 17 2019 qos
drwxr-xr-x 5 oracle dba 42 Apr 17 2019 precomp
drwxr-xr-x 5 root dba 39 Apr 17 2019 perl
drwxr-xr-x 4 oracle dba 33 Apr 17 2019 owm
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 oss
drwxr-xr-x 6 oracle dba 52 Apr 17 2019 ord
drwxr-xr-x 4 oracle dba 34 Apr 17 2019 oracore
drwxr-xr-x 5 oracle dba 46 Apr 17 2019 nls
drwxr-xr-x 5 oracle dba 42 Apr 17 2019 md
drwxr-xr-x 10 oracle dba 112 Apr 17 2019 ldap
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 hs
drwxr-xr-x 4 oracle dba 32 Apr 17 2019 has
drwxr-xr-x 3 oracle dba 20 Apr 17 2019 diagnostics
drwxr-xr-x 3 oracle dba 20 Apr 17 2019 demo
drwxr-xr-x 3 oracle dba 19 Apr 17 2019 dbjava
drwxrwxr-x 7 oracle dba 71 Apr 17 2019 cv
drwxr-xr-x 6 oracle dba 78 Apr 17 2019 plsql
drwxr-xr-x 3 oracle dba 35 Apr 17 2019 jdbc
drwxr-xr-x 2 oracle dba 33 Apr 17 2019 utl
drwxr-xr-x 2 oracle dba 26 Apr 17 2019 QOpatch
drwxr-xr-x 7 oracle dba 102 Apr 17 2019 rhp
drwxr-xr-x 5 oracle dba 119 Apr 17 2019 sdk
drwxr-xr-x 2 oracle dba 29 Apr 17 2019 instantclient
drwxr-xr-x 3 oracle dba 35 Apr 17 2019 ucp
drwxr-xr-x 8 oracle dba 77 Apr 17 2019 opmn
-rwx------ 1 oracle dba 490 Apr 17 2019 root.sh.old
drwxr-xr-x 10 oracle dba 106 Apr 17 2019 network
-rwx------ 1 oracle dba 405 Apr 18 2019 root.sh.old.2
drwxr-xr-x 8 oracle dba 82 Apr 18 2019 javavm
drwxrwxr-x 3 oracle dba 16 Oct 15 14:14 opatchautocfg
drwxr-xr-x 3 oracle dba 18 Oct 15 14:15 oradiag_oracle
drwxr-xr-x 16 oracle dba 174 Oct 15 14:17 rdbms
drwxr-xr-x 3 oracle dba 19 Oct 15 14:17 olap
drwxr-xr-x 3 oracle dba 19 Oct 15 14:17 ctx
drwxr-xr-x 3 oracle dba 55 Oct 15 14:17 ords
drwxr-xr-x 3 oracle dba 19 Oct 15 14:17 client
drwxr-xr-x 7 root dba 247 Oct 15 14:17 jdk
drwxr-xr-x 6 oracle dba 288 Oct 15 14:18 sqlpatch
drwxr-xr-x 2 oracle dba 30 Oct 15 14:18 pylib
-rwxr-xr-x 1 root dba 414 Oct 15 14:33 rootupgrade.sh
-rwxr-xr-x 1 root dba 405 Oct 15 14:33 root.sh
drwxr-x--- 15 oracle dba 4096 Oct 15 14:33 OPatch
drwxr-x--- 14 oracle dba 233 Oct 15 14:33 inventory
drwxr-xr-x 8 oracle dba 226 Oct 15 14:33 oui
drwxr-xr-x 5 oracle dba 191 Oct 15 14:33 deinstall
drwxr-xr-x 4 oracle dba 87 Oct 15 14:33 clone
drwxr-xr-x 2 oracle dba 102 Oct 15 14:33 addnode
drwxr-x--- 4 root dba 31 Oct 15 14:59 suptools
drwxr-xr-x 8 oracle dba 77 Oct 15 14:59 srvm
drwxr-xr-x 6 oracle dba 68 Oct 15 14:59 racg
drwxr-xr-x 3 root dba 18 Oct 15 14:59 osysmond
drwxr-xr-x 3 root dba 18 Oct 15 14:59 ologgerd
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 ohasd
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 mdns
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 gnsd
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 gipc
drwxr-x--- 7 oracle dba 65 Oct 15 14:59 evm
drwxr-xr-x 3 root dba 18 Oct 15 14:59 ctss
drwx--x--x 5 oracle dba 41 Oct 15 14:59 css
drwxr-xr-x 14 root dba 159 Oct 15 14:59 crs
drwxr-x--- 3 root dba 19 Oct 15 14:59 crf
drwxr-x--- 4 oracle dba 31 Oct 15 14:59 cha
drwxr-x--- 3 oracle dba 18 Oct 15 14:59 cdp
drwxrwxr-x 4 oracle dba 39 Oct 15 14:59 cdata
drwxrwxrwt 6 root dba 52 Oct 15 14:59 auth
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 advmccb
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsrm
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsrd
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsiob
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfscm
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsccreg
drwxr-xr-x 3 oracle dba 18 Oct 15 14:59 acfsccm
drwxr-xr-x 2 oracle dba 8192 Oct 15 14:59 jlib
drwxrwxr-x 3 root dba 22 Oct 15 15:00 acfs
-rw-r----- 1 oracle dba 125 Oct 15 15:07 oraInst.loc
drwxrwx--- 7 oracle dba 4096 Oct 15 16:11 cfgtoollogs
drwxr-xr-x 10 oracle dba 106 Oct 15 18:46 assistants
drwxrwxr-x 6 oracle dba 64 Dec 25 23:28 log
drwxr-x--- 7 oracle dba 97 Dec 29 09:16 gpnp
drwxr-xr-x 5 oracle dba 4096 Dec 29 09:22 xag
drwxr-xr-x 2 oracle dba 62 Dec 30 22:28 dbs
drwxrwx--- 11 oracle dba 4096 Dec 30 22:30 install
drwxr-xr-x 6 oracle dba 53 Dec 30 22:30 sqlplus
drwxr-xr-x 2 root dba 12288 Dec 30 22:30 bin
drwxr-xr-x 4 root dba 12288 Dec 30 22:30 lib
# ls -ltr $GRID_HOME/bin
total 1031956
-rwxr-xr-x 1 root dba 153 Nov 7 1997 echodo
-rwxr-xr-x 1 root dba 2790 Jan 1 2000 orald
-rw-r--r-- 1 root dba 5003 Jan 1 2000 oerr.pl
-rwxr-xr-x 1 root dba 703 Jan 1 2000 oerr
-rwxr-xr-x 1 root dba 2445 Jan 1 2000 dbhome
-rwxr-xr-x 1 root dba 6823 Jan 1 2000 oraenv
-rwxr-xr-x 1 root dba 2396 Jan 1 2000 gensyslib
-rwxr-x--- 1 oracle dba 15737 Jan 1 2000 dbstart
-rwxr-x--- 1 root dba 8142 Jan 1 2000 dbshut
-rwxr-xr-x 1 root dba 6404 Jan 1 2000 coraenv
-rwxr-xr-x 1 root dba 3261 May 5 2000 symfind
-rwxr-x--- 1 root dba 48 Sep 26 2000 oraxml
-rwxr-x--- 1 root dba 48 Sep 26 2000 oraxsl
-rwxr-xr-x 1 root dba 4109 Oct 18 2002 evt.sh
-rwxr-x--- 1 root dba 44 Dec 5 2002 orajaxb
-rwxr-xr-x 1 root dba 13438 Sep 9 2005 crstmpl.scr
-rwxr-xr-x 1 root dba 2989 Aug 21 2012 crsdiag.pl
-rwxr-xr-x 1 oracle dba 1398 Sep 13 2012 cluvfyrac.sh
-rwxr-x--- 1 root dba 6537 Sep 28 2012 emdwgrd
-rwxr-xr-x 1 root dba 3142 May 27 2014 asmproxy
-rwxr-xr-x 1 root dba 0 Aug 14 2014 tnnfg
-rwxr-xr-x 1 root dba 1635 Dec 5 2014 linkshlib
-rwxr-xr-x 1 root dba 754 May 26 2015 okaload
-rwxr-xr-x 1 root dba 230027 Jun 16 2016 zip
-rwxr-xr-x 1 root dba 945 Jun 20 2016 acfsroot
-rwxr-xr-x 1 root dba 940 Jun 20 2016 okaroot
-rwxr-xr-x 1 root dba 1980 Jun 20 2016 okadriverstate
-rwxr-xr-x 1 root dba 1000 Jun 20 2016 afdroot
-rwxr-xr-x 1 root dba 1007 Jun 20 2016 olfsroot
-rwxr-xr-x 1 root dba 1001 Jun 20 2016 olfscmd
-rwxr-xr-x 1 root dba 727 Sep 8 2016 acfsremote
-rwxr-xr-x 1 root dba 2854 Feb 10 2017 okacmd
-rwxr-x--- 1 root dba 3120 Jul 8 2017 commonSetup.sh
-rw-r--r-- 1 root dba 37577 Jul 26 2017 rhpplsnr_lib.pm
-rw-r--r-- 1 root dba 13916 Aug 17 2017 ochadctl.pl
-rw-r----- 1 root dba 3181 Aug 24 2017 runcluvfy.pl
-rwxr-x--- 1 root dba 65179 Aug 24 2017 emdwgrd.pl
-rwxr-xr-x 1 root dba 10074 Sep 13 2017 genorasdksh
-rwxr-xr-x 1 root dba 6149 Sep 13 2017 genclntst
-rwxr-xr-x 1 root dba 5914 Sep 13 2017 genagtsh
-rwxr-x--- 1 root dba 2139 Sep 20 2017 rootPreRequired.sh
-rwxr-x--- 1 root dba 5385 Oct 3 2017 patchgen
-rwxr-xr-x 1 root dba 4764 Oct 10 2017 genoccish
-rwxr-xr-x 1 root dba 2642 Oct 21 2017 ghappctl.pl
-rw-r----- 1 root dba 6280 Nov 3 2017 gridSetup.pl
-rwxr-xr-x 1 root dba 7059 Dec 8 2017 okcreate
-rwxr-x--- 1 oracle dba 6966 Jan 30 2018 asmcmd
-rw-r--r-- 1 root dba 8289 Feb 10 2018 dbreload
-rw-r--r-- 1 root dba 8336 Feb 10 2018 dbdowngrade
-rw-r--r-- 1 root dba 9368 Apr 1 2018 aqxmlctl.pl
-rw-r--r-- 1 root dba 2412 Apr 11 2018 rhpplsnr.pl
-rwxr-x--- 1 root dba 8284 Jun 26 2018 cdpcfg.pl
-rwxr-xr-x 1 root dba 15050 Aug 1 2018 genclntsh
-rwxr-x--- 1 root dba 18311 Aug 9 2018 appvipcfg.pl
-rwxr-xr-x 1 oracle dba 6981 Aug 27 2018 relink
-rwxr-xr-x 1 root dba 7326 Nov 12 2018 jwcctl.pl
-rwxr-xr-x 1 root dba 6093 Mar 2 2019 owm
-rwxr-xr-x 1 root dba 4619 Mar 2 2019 orapki
-rwxr-xr-x 1 root dba 4587 Mar 2 2019 mkstore
-rwxr-xr-x 1 root dba 7209520 Mar 4 2019 lxinst
-rwxr-xr-x 1 root dba 2219696 Mar 4 2019 lxegen
-rwxr-xr-x 1 root dba 1757016 Mar 4 2019 lxchknlb
-rwxr-xr-x 1 root dba 1819048 Mar 4 2019 lmsgen
-rwxr-xr-x 1 root dba 3027016 Mar 4 2019 lcsscan
-rwxr-xr-x 1 root dba 24344 Mar 13 2019 racgvip
-rwxr-x--- 1 root dba 4203 Mar 13 2019 oraipsecsetup
-rwx------ 1 oracle dba 92168 Mar 19 2019 xmlwf
-rwxr-xr-x 1 root dba 7605 Mar 30 2019 gennttab
-rwxr-xr-x 1 root dba 4852 Mar 30 2019 gennfgt
-rwxr-xr-x 1 root dba 13485 Mar 30 2019 adapters
-rwxr-xr-x 1 root dba 10491032 Apr 17 2019 proc
-rwxr-xr-x 1 root dba 10172496 Apr 17 2019 procob
-rwxr-xr-x 1 root dba 2142760 Apr 17 2019 diskmon.bin
-rwxr-x--- 1 root dba 3136 Apr 17 2019 dbupgrade
-rwxr-xr-x 1 root dba 26056 Apr 17 2019 dbnestinit
-rw-r--r-- 1 root dba 5297 Apr 17 2019 dbgeu_run_action.pl
-rwsr-x--- 1 root dba 147848 Apr 17 2019 oradism
-rwxr-xr-x 1 root dba 1228152 Apr 17 2019 genksms
-rwxr-x--x 1 root dba 27176 Apr 17 2019 osh
-rw-r--r-- 1 root dba 45135 Apr 17 2019 CommonSetup.pm
-rwxr-xr-x 1 root dba 6153104 Apr 17 2019 orabase
-rwxr-xr-x 1 root dba 38408 Jul 21 08:40 olfsctl
-rwxr-xr-x 1 root dba 88650928 Jul 21 08:40 afdboot
-rwxr-xr-x 1 root dba 960528 Jul 21 08:40 acfsrepl_monitor
-rwxr-xr-x 1 root dba 387472 Jul 21 08:40 acfsiob
-rwxr-xr-x 1 root dba 495200 Jul 21 08:40 okacmd.bin
-rwxr-xr-x 1 root dba 285208 Jul 21 08:40 afdtool.bin
-rwxr-xr-x 1 root dba 401184 Jul 21 08:40 acfsrm
-rwxr-xr-x 1 root dba 724624 Jul 21 08:40 acfsrepl_transport
-rwxr-xr-x 1 root dba 736808 Jul 21 08:40 acfsrepl_preapply
-rwxr-xr-x 1 root dba 947976 Jul 21 08:40 acfsrepl_initializer
-rwxr-xr-x 1 root dba 719872 Jul 21 08:40 acfsrepl_dupd.bin
-rwxr-xr-x 1 root dba 1101880 Jul 21 08:40 acfsrepl_apply.bin
-rwxr-xr-x 1 root dba 388336 Jul 21 08:40 acfsrd
-rwxr-xr-x 1 root dba 457904 Jul 21 08:40 acfscm
-rwxr-x--- 1 root dba 1848136 Jul 21 08:43 orabasehome
-rwxr-xr-x 1 root dba 53591640 Jul 21 08:43 omsfscmds
-rwxr-xr-x 1 oracle dba 78531 Jul 21 08:43 asmcmdcore
-rwxr-xr-x 1 root dba 738480 Jul 21 08:43 hsodbc
-rw-r--r-- 1 root dba 171155 Jul 21 08:43 bdschecksw
-rwxr-x--- 1 root dba 54704 Jul 21 08:43 oraping
-rwxr-x--- 1 root dba 1848136 Jul 21 08:43 orabaseconfig
-rw-r--r-- 1 root dba 197632 Jul 21 08:43 opwdintg.exe
-rwxr-xr-x 1 root dba 53561496 Jul 21 08:43 oms_daemon
-rwxr-x--- 1 root dba 1727368 Jul 21 08:43 fmputlhp
-rwxr-x--- 1 root dba 2322976 Jul 21 08:43 diskmon
-rwxr-x--x 1 root dba 1357648 Jul 21 08:43 dbfs_client
-rwxr-x--- 1 root dba 139544 Jul 21 08:43 xml
-rwxr-x--- 1 root dba 34312 Jul 21 08:43 schema
-rwxr-x--x 1 root dba 26560 Jul 21 08:43 oraversion
-rwxr-x--- 1 root dba 36933 Jul 21 08:43 mtactl
-rwxr-x--- 1 root dba 1990416 Jul 21 08:43 fmputl
-rwxr-xr-x 1 root dba 173048 Jul 21 08:43 oradnfs
-rwxr-xr-x 1 root dba 65496 Jul 21 08:43 dbnest
-rwxr-xr-x 1 root dba 5045816 Jul 21 08:44 scriptagent.bin
-rwxr-xr-x 1 root dba 772864 Jul 21 08:44 racgmain
-rwxr-xr-x 1 root dba 1194968 Jul 21 08:44 oranetmonitor.bin
-rwxr-xr-x 1 root dba 338112 Jul 21 08:44 oradnssd.bin
-rwxr-x--- 1 root dba 54072 Jul 21 08:44 oracsswd.bin
-rwxr-xr-x 1 root dba 241056 Jul 21 08:44 olsnodes.bin
-rwxr-x--- 1 root dba 251160 Jul 21 08:44 ologgerd
-rwxr-xr-x 1 root dba 178688 Jul 21 08:44 oifcfg_ifls
-rwxr-xr-x 1 root dba 383056 Jul 21 08:44 oifcfg.bin
-rwxr-xr-x 1 root dba 208344 Jul 21 08:44 odnsd.bin
-rwxr-x--- 1 root dba 428168 Jul 21 08:44 octssd.bin
-rwxr-xr-x 1 root dba 1845040 Jul 21 08:44 ocssd.bin
-rwxr-xr-x 1 root dba 325848 Jul 21 08:44 ocrdump.bin
-rwxr-xr-x 1 root dba 953616 Jul 21 08:44 ocrconfig.bin
-rwxr-x--x 1 root dba 250792 Jul 21 08:44 oclskd.bin
-rwxr-xr-x 1 root dba 72936 Jul 21 08:44 lsnodes.bin
-rwxr-xr-x 1 root dba 189440 Jul 21 08:44 gsd
-rwxr-xr-x 1 root dba 414624 Jul 21 08:44 gpnptool.bin
-rwxr-xr-x 1 root dba 494840 Jul 21 08:44 gpnpd.bin
-rwxr-xr-x 1 root dba 376152 Jul 21 08:44 evmsort.bin
-rwxr-xr-x 1 root dba 507712 Jul 21 08:44 evmshow.bin
-rwxr-xr-x 1 root dba 379144 Jul 21 08:44 evmmkbin.bin
-rwxr-xr-x 1 root dba 346208 Jul 21 08:44 evminfo.bin
-rwxr-xr-x 1 root dba 3265280 Jul 21 08:44 evmd.bin
-rwxr-xr-x 1 root dba 934272 Jul 21 08:44 emcrsp.bin
-rwxr-xr-x 1 root dba 227160 Jul 21 08:44 cssvfupgd.bin
-rwxr-x--- 1 root dba 390664 Jul 21 08:44 crsd.bin
-rwxr-xr-x 1 root dba 5487448 Jul 21 08:44 crsctl.bin
-rwxr-xr-x 1 root dba 177096 Jul 21 08:44 crscdpd.bin
-rwxr-xr-x 1 root dba 268944 Jul 21 08:44 clsecho.bin
-rwxr-xr-x 1 root dba 185616 Jul 21 08:44 clsdiaglsnr.bin
-rwxr-xr-x 1 root dba 284640 Jul 21 08:44 clscfg.bin
-rwxr-xr-x 1 root dba 35496 Jul 21 08:44 cemutls.bin
-rwxr-xr-x 1 root dba 181408 Jul 21 08:44 cemutlo.bin
-rwxr-xr-x 1 root dba 177216 Jul 21 08:44 sclsspawn
-rwxr-xr-x 1 root dba 694560 Jul 21 08:44 racgevtf
-rwxr-x--- 1 root dba 121743888 Jul 21 08:44 orarootagent.bin
-rwxr-x--- 1 root dba 424424 Jul 21 08:44 ohasd.bin
-rwxr-xr-x 1 root dba 825768 Jul 21 08:44 ocrcheck.bin
-rwxr-x--- 1 root dba 251160 Jul 21 08:44 oclumon.bin
-rwxr-xr-x 1 root dba 40984 Jul 21 08:44 lsdb.bin
-rwxr-xr-x 1 root dba 1024296 Jul 21 08:44 gipcd.bin
-rwxr-xr-x 1 root dba 553608 Jul 21 08:44 evmwatch.bin
-rwxr-xr-x 1 root dba 428680 Jul 21 08:44 evmpost.bin
-rw-r--r-- 1 root dba 30880 Jul 21 08:44 dockeroracleinit
-rw-r--r-- 1 root dba 43936 Jul 21 08:44 dmproc
-rwxr-xr-x 1 root dba 85794 Jul 21 08:44 diagsnap_setup.pl
-rwxr-xr-x 1 root dba 203480 Jul 21 08:44 clssproxy.bin
-rwxr-xr-x 1 root dba 184960 Jul 21 08:44 clsid.bin
-rwxr-xr-x 1 root dba 5178768 Jul 21 08:44 appagent.bin
-rwxr-x--- 1 root dba 251424 Jul 21 08:44 osysmond.bin
-rwxr-x--- 1 root dba 5154032 Jul 21 08:44 cssdmonitor
-rwxr-xr-x 1 root dba 702216 Jul 21 08:44 racgeut
-rwxr-xr-x 1 root dba 121736304 Jul 21 08:44 oraagent.bin
-rwxr-xr-x 1 root dba 253192 Jul 21 08:44 odig.bin
-rwxr-xr-x 1 root dba 1411968 Jul 21 08:44 mdnsd.bin
-rwxr-x--- 1 root dba 177592 Jul 21 08:44 gnsd.bin
-rwxr-xr-x 1 root dba 265672 Jul 21 08:44 evmmklib.bin
-rwxr-xr-x 1 root dba 56288 Jul 21 08:44 oprocd
-rwxr-xr-x 1 root dba 917576 Jul 21 08:44 ocssdrim.bin
-rwxr-xr-x 1 root dba 1776992 Jul 21 08:44 evmlogger.bin
-rwxr-x--- 1 root dba 5154032 Jul 21 08:44 cssdagent
-rwxr-x--- 1 root dba 16865 Jul 21 08:44 crsrename.pl
-rwxr-xr-x 1 root dba 177008 Jul 21 08:44 cdpc.bin
-rwxr-xr-x 1 root dba 4138 Oct 15 14:33 umu
-rwxr-xr-x 1 root dba 1352 Oct 15 14:33 statusnc
-rwxr-xr-x 1 root dba 11685 Oct 15 14:33 srvctl
-rwxr-x--- 1 root dba 4691 Oct 15 14:33 roohctl
-rwxr-x--- 1 root dba 7171 Oct 15 14:33 rconfig
-rw-r----- 1 root dba 3878 Oct 15 14:33 platform_common
-rwxr-xr-x 1 root dba 1282 Oct 15 14:33 ojvmtc
-rwxr-xr-x 1 root dba 1400 Oct 15 14:33 ojvmjava
-rwxr-xr-x 1 root dba 3133 Oct 15 14:33 oidprovtool
-rwxr-xr-x 1 root dba 1351 Oct 15 14:33 ncomp
-rwxr-xr-x 1 root dba 2375 Oct 15 14:33 loadjava
-rwxr-xr-x 1 root dba 2898 Oct 15 14:33 ldifmigrator
lrwxrwxrwx 1 oracle dba 24 Oct 15 14:33 lbuilder -> ../nls/lbuilder/lbuilder
-rwxr-xr-x 1 root dba 2303 Oct 15 14:33 eusm
-rwxr-xr-x 1 root dba 1428 Oct 15 14:33 dropjava
-rwxr-xr-x 1 root dba 1515 Oct 15 14:33 deploync
-rwxr-xr-x 1 root dba 3019 Oct 15 14:33 bndlchk
-rwxr-x--- 1 root dba 7910 Oct 15 14:33 asmca
-rwxr-xr-x 1 root dba 2983 Oct 15 14:33 trcasst
-rwxr-xr-x 1 root dba 4749 Oct 15 14:33 srvconfig
-rwxr-xr-x 1 root dba 7738 Oct 15 14:33 netmgr
-rwxr-x--- 1 root dba 95 Oct 15 14:33 netca_deinst.sh
-rwxr-x--- 1 root dba 6757 Oct 15 14:33 netca
-rwxr-xr-x 1 root dba 7352 Oct 15 14:33 diagsetup
-rwxr-x--x 1 root dba 2053 Oct 15 14:33 aqxmlctl
-rwxr-xr-x 1 root dba 2032 Oct 15 14:33 trcsess
-rwxr-xr-x 1 root dba 2835 Oct 15 14:33 schemasync
-rwxr-xr-x 1 root dba 2399 Oct 15 14:33 oradnfs_run.sh
-rwxr-xr-x 1 root dba 2137 Oct 15 14:33 oidca
-rwxr-xr-x 1 root dba 1280 Oct 15 14:33 odisrvreg
-rwxr-x--- 1 root dba 400 Oct 15 14:33 extusrupgrade
-rwxr-x--- 1 root dba 10527 Oct 15 14:33 dbua
-rwxr-x--- 1 root dba 5517 Oct 15 14:33 emca
-rwxr-x--- 1 root dba 7644 Oct 15 14:33 dbca
-rwxr-xr-x 1 root dba 1233 Oct 15 14:59 usrvip
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 scriptagent
-rwxr-xr-x 1 root dba 4721 Oct 15 14:59 rdtool
-rwxr-xr-x 1 root dba 1510 Oct 15 14:59 racgwrap
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 orarootagent
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 oranetmonitor
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 oradnssd
-rw-r--r-- 1 root dba 11556 Oct 15 14:59 oradaemonagent
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 oracsswd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 oraagent
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 olsnodes
-rwxr-x--- 1 root dba 4306 Oct 15 14:59 ologdbg.pl
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 oifcfg
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 ohasd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 odnsd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 odig
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 octssd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 ocrpatch
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 ocrdump
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 ocrconfig
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 ocrcheck
-rwxr-x--- 1 root dba 3117 Oct 15 14:59 oclumon.pl
-rwxr-xr-x 1 root dba 5046 Oct 15 14:59 mgmtua
-rwxr-xr-x 1 root dba 4929 Oct 15 14:59 mgmtca
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 mdnsd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 lsdb
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 gpnptool
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 gpnpd
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 gnsd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 gipcd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmwatch
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmsort
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmshow
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmpost
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmmklib
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmmkbin
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmlogger
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evminfo
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 evmd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 emcrsp
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 cssvfupgd
-rwxr-xr-- 1 root dba 7691 Oct 15 14:59 crswrapexece.pl
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 crsd
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 crscdpd
-rwxr-xr-x 1 root dba 4761 Oct 15 14:59 cluutil
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 clssproxy
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 clsdiaglsnr
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 cemutls
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 cemutlo
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 cdpc
-rwxr-xr-x 1 root dba 776 Oct 15 14:59 appvipcfg
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 appagent
-rwxr-xr-x 1 root dba 0 Oct 15 14:59 vipca
-rwxr-xr-x 1 root dba 2240 Oct 15 14:59 setasmgidwrap
-rwxr-x--- 1 root dba 6608 Oct 15 14:59 scrctl
-rwxr-xr-x 1 root dba 6070 Oct 15 14:59 rhprepos
-rwxr-xr-x 1 root dba 2976 Oct 15 14:59 rhpplsnrctl
-rwxr-xr-x 1 root dba 3086 Oct 15 14:59 rhpplsnr
-rwxr-xr-x 1 root dba 6880 Oct 15 14:59 rhpctl
-rwxr-xr-x 1 root dba 5608 Oct 15 14:59 qosctl
-rwxr-x--- 1 root dba 11556 Oct 15 14:59 osysmond
-rwxr-x--- 1 root dba 6301 Oct 15 14:59 orajrootagent
-rwxr-xr-x 1 root dba 6301 Oct 15 14:59 orajagent
-rwxr-xr-x 1 oracle dba 1145 Oct 15 14:59 onsctl
-rwxr-x--- 1 root dba 855 Oct 15 14:59 ologdbg
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 ocssdrim
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 ocssd
-rwxr-x--- 1 root dba 2339 Oct 15 14:59 oclumon
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 oclsvmon
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 oclsomon
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 oclskd
-rwxr-xr-x 1 root dba 5741 Oct 15 14:59 ochadctl
-rwxr-xr-x 1 root dba 2885 Oct 15 14:59 oc4jctl
-rwxr-x--- 1 root dba 3700 Oct 15 14:59 ndfnceca
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 lsnodes
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 kfod
-rwxr-xr-x 1 root dba 4987 Oct 15 14:59 jwcctl
-rwxr-xr-x 1 root dba 6206 Oct 15 14:59 ghappctl
-rwxr-x--- 1 root dba 4979 Oct 15 14:59 dhcpproxy
-rwxr-x--- 1 root dba 0 Oct 15 14:59 cssdmonitor.bin
-rwxr-x--- 1 root dba 0 Oct 15 14:59 cssdagent.bin
-rwxr-xr-x 1 root dba 359 Oct 15 14:59 crsrename
-rwxr-xr-x 1 root dba 3221 Oct 15 14:59 crskeytoolctl
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 crsctl
-rwxr-xr-x 1 root dba 3743 Oct 15 14:59 crsboot_diags.sh
-rwxr-x--- 1 root dba 682 Oct 15 14:59 crfsetenv
-rwxr-xr-x 1 root dba 10270 Oct 15 14:59 cluvfy
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 clsid
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 clsecho
-rwxr-xr-x 1 root dba 11556 Oct 15 14:59 clscfg
-rwxr-xr-- 1 root dba 6362 Oct 15 14:59 chactl
-rwxr-xr-x 1 root dba 385 Oct 15 14:59 cdpcfg
lrwxrwxrwx 1 root root 30 Oct 15 15:00 tfactl -> /opt/oracle.ahf/tfa/bin/tfactl
-rw-r----- 1 root dba 39696 Dec 29 08:29 osdbagrp0
-rw------- 1 oracle dba 105960 Dec 29 08:29 oklist0
-rw-r----- 1 root dba 40248 Dec 29 08:29 rawutl0
-rw------- 1 oracle dba 90728 Dec 29 08:29 okdstry0
-rw------- 1 oracle dba 95856 Dec 29 08:29 okinit0
-rwxr-x--- 1 root dba 82509 Dec 29 09:20 diagsnap.pl
-rwxr-xr-x 1 root dba 818 Dec 29 09:20 acfsregistrymount
-rwxr-xr-x 1 root dba 3800 Dec 29 09:20 acfsdriverstate
-rwxr-xr-x 1 root dba 821 Dec 29 09:20 acfssinglefsmount
-rwxr-xr-x 1 root dba 2865 Dec 29 09:20 acfsrepl_apply
-rwxr-xr-x 1 root dba 761 Dec 29 09:20 acfsreplcrs
-rwxr-xr-x 1 root dba 2865 Dec 29 09:20 acfsrepl_dupd
-rwxr-xr-x 1 root dba 771 Dec 29 09:20 acfshanfs
-rwxr-xr-x 1 root dba 765 Dec 29 09:20 acfsload
-rwxr-xr-x 1 root dba 1163 Dec 29 09:22 agapacheas
-rwxr-xr-x 1 root dba 1156 Dec 29 09:22 agctl
-rwxr-xr-x 1 root dba 1062 Dec 29 09:22 agebsas
-rwxr-xr-x 1 root dba 1233 Dec 29 09:22 aggoldengateas
-rwxr-xr-x 1 root dba 1047 Dec 29 09:22 aggoldengatescaas
-rwxr-xr-x 1 root dba 1035 Dec 29 09:22 agjdeas
-rwxr-xr-x 1 root dba 1023 Dec 29 09:22 agmysqlas
-rwxr-xr-x 1 root dba 1034 Dec 29 09:22 agordsas
-rwxr-xr-x 1 root dba 1029 Dec 29 09:22 agmysqlmonas
-rwxr-xr-x 1 root dba 1125 Dec 29 09:22 agpsappas
-rwxr-xr-x 1 root dba 1124 Dec 29 09:22 agpsbatchas
-rwxr-xr-x 1 root dba 1140 Dec 29 09:22 agpspiaas
-rwxr-xr-x 1 root dba 1260 Dec 29 09:22 agsiebgtwyas
-rwxr-xr-x 1 root dba 1252 Dec 29 09:22 agsiebsrvras
-rwxr-xr-x 1 root dba 1159 Dec 29 09:22 agtomcatas
-rwxr-xr-x 1 root dba 1026 Dec 29 09:22 agwlas
-rwxr-x--x 1 root dba 9543040 Dec 30 22:30 wrap
-rwxr-x--x 1 root dba 113680 Dec 30 22:30 dbv
-rwxr-x--x 1 root dba 46040 Dec 30 22:30 tstshm
-rwxr-x--x 1 root dba 36296 Dec 30 22:30 maxmem
-rwxr-x--x 1 root dba 159568 Dec 30 22:30 orapwd
-rwxr-x--x 1 root dba 35824 Dec 30 22:30 dbfsize
-rwxr-x--x 1 root dba 1177232 Dec 30 22:30 dumpsga
-rwxr-x--x 1 root dba 1176760 Dec 30 22:30 mapsga
-rwxr-x--x 1 root dba 35688 Dec 30 22:30 cursize
-rwxr-x--x 1 root dba 241456 Dec 30 22:30 agtctl
-rwxr-x--x 1 root dba 345256 Dec 30 22:30 hsalloci
-rwxr-x--x 1 root dba 228200 Dec 30 22:30 hsots
-rwxr-x--x 1 root dba 224584 Dec 30 22:30 hsdepxa
-rwxr-x--x 1 root dba 157560 Dec 30 22:30 sbttest
-rwxr-x--x 1 root dba 111496 Dec 30 22:30 nid
-rwx------ 1 oracle dba 3033432 Dec 30 22:30 extjobo
-rwsr-x--- 1 root dba 3033432 Dec 30 22:30 extjob
-rwsr-x--- 1 root dba 2340152 Dec 30 22:30 jssu
-rwxr-xr-x 1 root dba 236256 Dec 30 22:30 kfod.bin
-rwxr-x--x 1 root dba 192672 Dec 30 22:30 amdu
-rwxr-x--x 1 root dba 146464 Dec 30 22:30 kfed
-rwxr-x--x 1 root dba 98272 Dec 30 22:30 mkpatch
-rwxr-x--x 1 root dba 233136 Dec 30 22:30 renamedg
-rwxr-xr-x 1 root dba 39696 Dec 30 22:30 osdbagrp
-rwxr-x--x 1 root dba 4207056 Dec 30 22:30 setasmgid
-rwxr-x--x 1 root dba 8412480 Dec 30 22:30 orion
-rwxr-x--x 1 root dba 36376 Dec 30 22:30 skgxpinfo
-rwxr-x--x 1 root dba 134936 Dec 30 22:30 trcldr
-rwxr-x--x 1 root dba 99240 Dec 30 22:30 oputil
-rwxr-x--x 1 root dba 46904 Dec 30 22:30 tnsping
-rwxr-xr-x 1 root dba 33888 Dec 30 22:30 sqlplus
-rwxr-xr-x 1 root dba 1144960 Dec 30 22:30 ldapadd
-rwxr-xr-x 1 root dba 1041088 Dec 30 22:30 ldapbind
-rwxr-xr-x 1 root dba 1041168 Dec 30 22:30 ldapcompare
-rwxr-xr-x 1 root dba 1045504 Dec 30 22:30 ldapdelete
-rwxr-xr-x 1 root dba 1144960 Dec 30 22:30 ldapmodify
-rwxr-xr-x 1 root dba 1077336 Dec 30 22:30 ldapsearch
-rwxr-xr-x 1 root dba 1041072 Dec 30 22:30 ldapmoddn
-rwxr-xr-x 1 root dba 1159048 Dec 30 22:30 ldapaddmt
-rwxr-xr-x 1 root dba 1159048 Dec 30 22:30 ldapmodifymt
-rwxr-xr-x 1 root dba 1123328 Dec 30 22:30 dsml2ldif
-rwxr-xr-x 1 root dba 105960 Dec 30 22:30 oklist
-rwxr-xr-x 1 root dba 40248 Dec 30 22:30 rawutl
-rwxr-x--x 1 root dba 511528 Dec 30 22:30 imp
-rwxr-x--x 1 root dba 1027992 Dec 30 22:30 exp
-rwxr-x--x 1 root dba 1691416 Dec 30 22:30 sqlldr
-rwxr-x--x 1 root dba 141712 Dec 30 22:30 tkprof
-rwxr-x--x 1 root dba 158824 Dec 30 22:30 plshprof
-rwxr-x--x 1 root dba 78880 Dec 30 22:30 kgmgr
-rwxr-x--x 1 root dba 49728 Dec 30 22:30 loadpsp
-rwxr-x--x 1 root dba 241880 Dec 30 22:30 impdp
-rwxr-x--x 1 root dba 233968 Dec 30 22:30 expdp
-rwxr-x--x 1 root dba 68400 Dec 30 22:30 genezi
-rwxr-x--x 1 root dba 953680 Dec 30 22:30 dgmgrl
-rwxr-x--x 1 root dba 53760 Dec 30 22:30 dg4pwd
-rwxr-x--x 1 root dba 760256 Dec 30 22:30 wrc
-rwxr-x--x 1 root dba 50920 Dec 30 22:30 adrci
-rwxr-x--x 1 root dba 246008 Dec 30 22:30 uidrvci
-rwxr-x--x 1 root dba 46304 Dec 30 22:30 sysresv
-rwxr-s--x 1 oracle dba 214096 Dec 30 22:30 extproc
-rwxr-xr-x 1 root dba 90728 Dec 30 22:30 okdstry
-rwxr-xr-x 1 root dba 95856 Dec 30 22:30 okinit
-rwxr-x--x 1 root dba 1077344 Dec 30 22:30 tnslsnr
-rwxr-x--x 1 root dba 187848 Dec 30 22:30 lsnrctl
-rwxr-x--x 1 root dba 61088 Dec 30 22:30 trcroute
-rwxr-x--x 1 root dba 13598568 Dec 30 22:30 rman
-rwsr-s--x 1 oracle dba 425711968 Dec 30 22:30 oracle
-rwxr-xr-x 1 root dba 754 Dec 30 22:46 afdload
-rwxr-xr-x 1 root dba 3078 Dec 30 22:46 afddriverstate
-rwxr-xr-x 1 root dba 2854 Dec 30 22:46 afdtool
# ls -ltr $GRID_HOME/lib
total 2156976
-rw-r--r-- 1 root dba 45386 Oct 24 2001 activation.jar
-rw-r--r-- 1 root dba 280984 Oct 24 2001 mail.jar
-rw-r--r-- 1 root dba 7370 Jan 18 2007 asmcmd_disk_header_format
-rw-r--r-- 1 root dba 473514 Dec 4 2010 http_client.jar
-rw-r--r-- 1 root dba 2223 Jul 18 2011 asmcmdxmlexceptions.pm
-rw-r--r-- 1 root dba 7569 May 28 2013 asmcmdexceptions.pm
-rw-r--r-- 1 root dba 51802 Nov 19 2014 asmcmdparser.pm
-rw-r--r-- 1 root dba 746 May 26 2015 osds_acfsregistrymount.pm
-rw-r--r-- 1 root dba 20082 Jun 10 2016 asmcmdtmpl.pm
-rw-r--r-- 1 root dba 16335 Jun 10 2016 asmcmdattr.pm
-rw-r--r-- 1 root dba 36551 Jun 20 2016 acfsregistrymount.pl
-rw-r--r-- 1 root dba 3002 Jun 20 2016 osds_okaload.pm
-rwxr-xr-x 1 root dba 2819 Jun 20 2016 okatoolsdriver.sh
-rwxr-xr-x 1 root dba 2802 Jun 20 2016 afdtoolsdriver.sh
-rwxr-xr-x 1 root dba 2819 Jun 20 2016 olfstoolsdriver.sh
-rw-r--r-- 1 root dba 673730 Jun 22 2016 liblzopro5.a
-rw-r--r-- 1 root dba 70 Aug 15 2016 sysliblist
-rw-r--r-- 1 root dba 241 Sep 1 2016 65-usm-acfsr-member.rules
-rw-r--r-- 1 root dba 6085 Sep 17 2016 osds_okalib.pm
-rw-r--r-- 1 root dba 159495 Sep 23 2016 asmcmddisk.pm
-rw-r--r-- 1 root dba 22492 Oct 7 2016 asmcmdqg.pm
-rw-r--r-- 1 root dba 43980 Dec 8 2016 asmcmddiag.pm
-rw-r--r-- 1 root dba 15901 Feb 4 2017 asmcmdamdu.pm
-rw-r--r-- 1 root dba 24748678 Mar 16 2017 libsvml.a
-rw-r--r-- 1 root dba 2742978 Mar 16 2017 libirng.a
-rw-r--r-- 1 root dba 700944 Mar 16 2017 libirc.a
-rw-r--r-- 1 root dba 461695 Mar 16 2017 libintlc.so.5
-rw-r--r-- 1 root dba 5777844 Mar 16 2017 libimf.a
-rw-r--r-- 1 root dba 1752 Mar 16 2017 crtend.o
-rw-r--r-- 1 root dba 2704 Mar 16 2017 crtbegin.o
-rw-r--r-- 1 root dba 2491 May 26 2017 osds_afdload.pm
-rw-r--r-- 1 root dba 2258 May 26 2017 osds_afddriverstate.pm
-rw-r--r-- 1 root dba 2464 Jun 3 2017 osds_acfsload.pm
-rw-r--r-- 1 root dba 4004 Jun 3 2017 osds_unix_linux_okalib.pm
-rw-r--r-- 1 root dba 18228 Jun 7 2017 okalib.pm
-rw-r--r-- 1 root dba 6918 Jun 7 2017 afdlib.pm
-rw-r--r-- 1 root dba 874 Jun 16 2017 osds_acfssinglefsmount.pm
-rwxr-x--- 1 root dba 3690 Jul 19 2017 acfstoolsdriver.sh
-rw-r--r-- 1 root dba 4606 Aug 15 2017 acfshanfs.pl
-rw-r--r-- 1 root dba 6369 Aug 24 2017 okaload.pl
-rw-r--r-- 1 root dba 1842723 Sep 19 2017 libiomp5.so
-rw-r--r-- 1 root dba 30436445 Sep 19 2017 libmkl_core.so
-rw-r--r-- 1 root dba 42368641 Sep 19 2017 libmkl_avx.so
-rw-r--r-- 1 root dba 56655456 Sep 19 2017 libmkl_avx512.so
-rw-r--r-- 1 root dba 64004640 Sep 19 2017 libmkl_avx512_mic.so
-rw-r--r-- 1 root dba 53722624 Sep 19 2017 libmkl_avx2.so
-rw-r--r-- 1 root dba 10809356 Sep 19 2017 libmkl_vml_mc.so
-rw-r--r-- 1 root dba 6197700 Sep 19 2017 libmkl_vml_def.so
-rw-r--r-- 1 root dba 6187232 Sep 19 2017 libmkl_vml_cmpt.so
-rw-r--r-- 1 root dba 12675908 Sep 19 2017 libmkl_vml_avx.so
-rw-r--r-- 1 root dba 11616610 Sep 19 2017 libmkl_vml_avx512.so
-rw-r--r-- 1 root dba 13199348 Sep 19 2017 libmkl_vml_avx512_mic.so
-rw-r--r-- 1 root dba 12840366 Sep 19 2017 libmkl_vml_avx2.so
-rw-r--r-- 1 root dba 14234237 Sep 19 2017 libmkl_sequential.so
-rw-r--r-- 1 root dba 5987677 Sep 19 2017 libmkl_rt.so
-rw-r--r-- 1 root dba 37973259 Sep 19 2017 libmkl_mc.so
-rw-r--r-- 1 root dba 39212463 Sep 19 2017 libmkl_mc3.so
-rw-r--r-- 1 root dba 31157565 Sep 19 2017 libmkl_intel_thread.so
-rw-r--r-- 1 root dba 10575488 Sep 19 2017 libmkl_intel_lp64.so
-rw-r--r-- 1 root dba 9787348 Sep 19 2017 libmkl_intel_ilp64.so
-rw-r--r-- 1 root dba 32007539 Sep 19 2017 libmkl_def.so
-rw-r--r-- 1 root dba 11058750 Sep 19 2017 libmkl_vml_mc3.so
-rw-r--r-- 1 root dba 10801640 Sep 19 2017 libmkl_vml_mc2.so
-rw-r--r-- 1 root dba 19600884 Sep 19 2017 libmkl_gnu_thread.so
-rw-r--r-- 1 root dba 9732569 Oct 12 2017 libmkl_gf_ilp64.so
-rw-r--r-- 1 root dba 10520709 Oct 12 2017 libmkl_gf_lp64.so
-rw-r--r-- 1 root dba 1838 Nov 3 2017 acfsr_member
-rw-r--r-- 1 root dba 7308792 Jan 17 2018 libora_netlib.so
-rw-r--r-- 1 root dba 12970 Mar 12 2018 asmcmdambracfs.xml
-rw-r--r-- 1 root dba 11641 Mar 22 2018 olfscmd.pl
-rw-r--r-- 1 root dba 8608 Apr 25 2018 osds_afdlib.pm
-rw-r--r-- 1 root dba 7664 Apr 25 2018 osds_unix_linux_afdlib.pm
-rw-r--r-- 1 root dba 78145066 Apr 27 2018 libipps.a
-rw-r--r-- 1 root dba 161074 Apr 27 2018 libipp_z.a
-rw-r--r-- 1 root dba 78994 Apr 27 2018 libippcore.a
-rw-r--r-- 1 root dba 98654 Apr 27 2018 libipp_bz2.a
-rw-r--r-- 1 root dba 58051 May 16 2018 asmcmdvol.pm
-rw-r--r-- 1 root dba 13921 May 24 2018 osds_acfsrVerifyConfig.pm
-rw-r--r-- 1 root dba 18385 May 24 2018 acfsreplcrs.pl
-rw-r--r-- 1 root dba 23321 Jun 8 2018 okaroot.pl
-rw-r--r-- 1 root dba 5680 Jun 8 2018 afdload.pl
-rw-r--r-- 1 root dba 2440 Aug 7 2018 osds_okadriverstate.pm
-rw-r--r-- 1 root dba 129941 Aug 8 2018 asmcmdambr.pm
-rw-r--r-- 1 root dba 4276 Aug 10 2018 facility.lis
-rw-r--r-- 1 root dba 3340984 Aug 22 2018 libippdc.a
-rw-r--r-- 1 root dba 3406960 Oct 12 2018 libxgboost.so
-rw-r--r-- 1 root dba 14143 Oct 26 2018 acfsremote.pl
-rw-r--r-- 1 root dba 4168 Oct 26 2018 okadriverstate.pl
-rw-r--r-- 1 root dba 5110 Oct 26 2018 afddriverstate.pl
-rw-r--r-- 1 root dba 17010 Oct 26 2018 olfsroot.pl
-rw-r--r-- 1 root dba 43120 Nov 14 2018 osds_acfsremote.pm
-rw-r--r-- 1 root dba 20174 Dec 6 2018 libonsx.a
-rw-r--r-- 1 root dba 32736 Dec 6 2018 libonsx.so
-rw-r--r-- 1 root dba 360456 Jan 14 2019 libwwg.a
-rw-r--r-- 1 root dba 24428 Jan 14 2019 libslax19.a
-rw-r--r-- 1 root dba 45634 Jan 14 2019 libldapjclnt19.a
-rw-r--r-- 1 root dba 102228 Jan 14 2019 libowm2.a
-rw-r--r-- 1 root dba 80040 Jan 14 2019 libldapjclnt19.so
-rw-r--r-- 1 root dba 144262 Feb 21 2019 libnvm1.a
-rw-r--r-- 1 root dba 932024 Feb 21 2019 libnvm1.so
-rw-r--r-- 1 root dba 771065 Feb 25 2019 xmlmesg.jar
-rw-r--r-- 1 root dba 1460 Feb 25 2019 xmlparserv2_jaxp_services.jar
-rw-r--r-- 1 root dba 325194 Mar 4 2019 libunls19.a
-rw-r--r-- 1 root dba 389634 Mar 4 2019 libsnls19.a
-rw-r--r-- 1 root dba 3607726 Mar 4 2019 libnls19.a
-rw-r--r-- 1 root dba 118654 Mar 4 2019 liblxled.a
-rw-r--r-- 1 root dba 3400 Mar 7 2019 sscoreed.o
-rw-r--r-- 1 root dba 3680 Mar 7 2019 scorept.o
-rw-r--r-- 1 root dba 6104 Mar 7 2019 s0main.o
-rw-r--r-- 1 root dba 192082 Mar 7 2019 liboraz.a
-rw-r--r-- 1 root dba 64534 Mar 7 2019 liborazip.a
-rw-r----- 1 root dba 543232 Mar 19 2019 libexpat.so.1.6.8
-rwxr-x--- 1 root dba 543232 Mar 19 2019 libexpat.so.1
-rwxr-x--- 1 root dba 543232 Mar 19 2019 libexpat.so
-rw-r----- 1 root dba 938 Mar 19 2019 libexpat.la
-rw-r----- 1 root dba 841514 Mar 19 2019 libexpat.a
-rw-r--r-- 1 root dba 6592 Mar 30 2019 nautab.o
-rw-r--r-- 1 root dba 42210 Mar 30 2019 libntns19.a
-rw-r--r-- 1 root dba 13458 Mar 30 2019 libnoname19.a
-rw-r--r-- 1 root dba 6792 Mar 30 2019 nigtab.o
-rw-r--r-- 1 root dba 6864 Mar 30 2019 osntabst.o
-rw-r--r-- 1 root dba 126698 Mar 30 2019 libngsmshd19.a
-rw-r--r-- 1 root dba 178014 Mar 30 2019 libnus19.a
-rw-r--r-- 1 root dba 205102 Mar 30 2019 libntmq19.a
-rw-r--r-- 1 root dba 234134 Mar 30 2019 libnsgr19.a
-rw-r--r-- 1 root dba 133360 Mar 30 2019 libnbeq19.a
-rw-r--r-- 1 root dba 10758 Mar 30 2019 libnzjs19.a
-rw-r--r-- 1 root dba 1094574 Mar 30 2019 libnro19.a
-rw-r--r-- 1 root dba 17760 Mar 30 2019 libntcpaio19.so
-rw-r--r-- 1 root dba 28632 Mar 30 2019 libnque19.so
-rw-r--r-- 1 root dba 6376 Mar 30 2019 naedhs.o
-rw-r--r-- 1 root dba 166082 Apr 5 2019 libocijdbc19.a
-rw-r--r-- 1 root dba 10328 Apr 5 2019 libheteroxa19.a
-rw-r--r-- 1 root dba 17163692 Apr 17 2019 libippcp.a
-rw-r--r-- 1 root dba 16200 Apr 17 2019 cobsqlintf.o
-rw-r--r-- 1 root dba 12112 Apr 17 2019 libvsn.so
-rw-r--r-- 1 root dba 24312 Apr 17 2019 libskgxpd.so
-rw-rw-r-- 1 root dba 24312 Apr 17 2019 libskgxpcompat.so
-rw-r--r-- 1 root dba 26046 Apr 17 2019 libnnet19.a
-rw-r--r-- 1 root dba 4392611 Apr 17 2019 ra_installer.zip
-rw-r--r-- 1 root dba 914016 Apr 17 2019 opc_installer.zip
-rw-r--r-- 1 root dba 966004 Apr 17 2019 osbws_installer.zip
-rw-r--r-- 1 root dba 913008 Apr 17 2019 opc2_installer.zip
-rw-r--r-- 1 root dba 3907582 Apr 17 2019 libshpkavx219.a
-rw-r--r-- 1 root dba 10594 Apr 17 2019 libodm19.a
-rw-r--r-- 1 root dba 3794558 Apr 17 2019 libshpksse4219.a
-rw-r--r-- 1 root dba 140664 Apr 17 2019 liboramysql19.a
-rw-r--r-- 1 root dba 22324 Apr 17 2019 libopcodm19.a
-rw-r--r-- 1 root dba 3766734 Apr 17 2019 libshpkavx19.a
-rw-r--r-- 1 root dba 208656 Apr 17 2019 libkubsagt.a
-rw-r--r-- 1 root dba 21532 Apr 17 2019 libpatchgensh19.a
-rw-r--r-- 1 root dba 26046 Apr 17 2019 libnnetd19.a
-rw-r--r-- 1 root dba 228108 Apr 17 2019 libzx19.a
-rw-r--r-- 1 root dba 29470 Apr 17 2019 libavstub19.a
-rw-r--r-- 1 root dba 22898 Apr 17 2019 libskvol19.a
-rw-r--r-- 1 root dba 160420 Apr 17 2019 liborion19.a
-rw-r--r-- 1 root dba 6910 Apr 17 2019 libofs.a
-rw-r--r-- 1 root dba 6476 Apr 17 2019 libmm.a
-rw-r--r-- 1 root dba 629422 Apr 17 2019 libgx19.a
-rw-r--r-- 1 root dba 4478206 Apr 17 2019 libshpkavx51219.a
-rw-r--r-- 1 root dba 85642 Apr 17 2019 libnid.a
-rw-r--r-- 1 root dba 5834 Apr 17 2019 libedtn19_xp.a
-rw-r--r-- 1 root dba 5850 Apr 17 2019 libedtn19_std.a
-rw-r--r-- 1 root dba 5834 Apr 17 2019 libedtn19_hp.a
-rw-r--r-- 1 root dba 5850 Apr 17 2019 libedtn19_ent.a
-rw-r--r-- 1 root dba 5906 Apr 17 2019 libedtn19_cse.a
-rw-r--r-- 1 root dba 5906 Apr 17 2019 libedtn19_cee.a
-rw-rw-r-- 1 root dba 5850 Apr 17 2019 libedtn19.a
-rw-r--r-- 1 root dba 115976 Apr 17 2019 liboramysql19.so
-rw-r--r-- 1 root dba 55072 Apr 17 2019 libopcodm19.so
-rw-r--r-- 1 root dba 408032 Apr 17 2019 libxdb.so
-rw-r--r-- 1 root dba 26328 Apr 17 2019 libskvol19.so
-rw-r--r-- 1 root dba 217416 Apr 17 2019 libkubsagt.so
-rw-r--r-- 1 root dba 25704 Apr 17 2019 libpatchgensh19.so
-rw-r--r-- 1 root dba 87856 Apr 17 2019 librqext.so
-rw-r--r-- 1 root dba 17336 Apr 17 2019 libskgxns.so
-rw-r--r-- 1 root dba 27432 Apr 17 2019 libqsmashr.so
-rw-r--r-- 1 root dba 3357824 Apr 17 2019 libshpksse4219.so
-rw-r--r-- 1 root dba 4219096 Apr 17 2019 libshpkavx51219.so
-rw-r--r-- 1 root dba 3486080 Apr 17 2019 libshpkavx219.so
-rw-r--r-- 1 root dba 3325552 Apr 17 2019 libshpkavx19.so
-rw-r--r-- 1 root dba 12536 Apr 17 2019 libofs.so
-rw-r--r-- 1 root dba 17848 Apr 17 2019 libodmd19.so
drwxr-xr-x 2 root dba 4096 Apr 17 2019 stubs
drwxr-xr-x 2 root dba 22 Apr 17 2019 pkgconfig
-rw-r--r-- 1 root dba 833 Jul 21 08:40 usmvsn.pm
-rw-r--r-- 1 root dba 57650 Jul 21 08:40 osds_unix_linux_acfslib.pm
-rw-r--r-- 1 root dba 25962 Jul 21 08:40 osds_okaroot.pm
-rw-r--r-- 1 root dba 32259 Jul 21 08:40 osds_afdroot.pm
-rw-r--r-- 1 root dba 83418 Jul 21 08:40 osds_acfsroot.pm
-rw-r--r-- 1 root dba 101959 Jul 21 08:40 osds_acfslib.pm
-rw-r--r-- 1 root dba 3514 Jul 21 08:40 osds_acfsdriverstate.pm
-rw-r--r-- 1 root dba 227880 Jul 21 08:40 libafd19.so
-rw-r--r-- 1 root dba 180200 Jul 21 08:40 libafd19.a
-rw-r--r-- 1 root dba 696336 Jul 21 08:40 libacfs19.so
-rw-r--r-- 1 root dba 158704 Jul 21 08:40 libacfs19.a
-rw-r--r-- 1 root dba 18704 Jul 21 08:40 afdroot.pl
-rw-r--r-- 1 root dba 18915 Jul 21 08:40 acfssinglefsmount.pl
-rw-r--r-- 1 root dba 38867 Jul 21 08:40 acfsroot.pl
-rw-r--r-- 1 root dba 12539 Jul 21 08:40 acfsload.pl
-rw-r--r-- 1 root dba 112346 Jul 21 08:40 acfslib.pm
-rw-r--r-- 1 root dba 11440 Jul 21 08:40 acfsdriverstate.pl
-rw-r--r-- 1 root dba 95020488 Jul 21 08:41 libopc.so
-rw-r--r-- 1 root dba 332200 Jul 21 08:41 libipcdat19.so
-rw-r--r-- 1 root dba 17368 Jul 21 08:41 naeet.o
-rw-r--r-- 1 root dba 153464 Jul 21 08:41 libocijdbc19.so
-rw-r--r-- 1 root dba 12160 Jul 21 08:41 libvsn19.so
-rwxr-xr-x 1 root dba 54024 Jul 21 08:41 libomsodm19.so
-rw-r--r-- 1 root dba 843436 Jul 21 08:41 liboms1.a
-rw-r--r-- 1 root dba 22716302 Jul 21 08:41 libnnzst19.a
-rw-r--r-- 1 root dba 211176 Jul 21 08:41 libnjni19.so
-rwxr-xr-x 1 root dba 47200 Jul 21 08:41 libheteroxa19_g.so
-rw-r--r-- 1 root dba 2909648 Jul 21 08:41 libcorejava.so
-rw-r--r-- 1 root dba 206383 Jul 21 08:41 asmcmdbase.pm
-rw-r--r-- 1 root dba 142279134 Jul 21 08:41 libclntst19.a
-rw-r--r-- 1 root dba 19720 Jul 21 08:41 nigcon.o
-rw-r--r-- 1 root dba 13656 Jul 21 08:41 naect.o
-rw-r--r-- 1 root dba 1572432 Jul 21 08:41 libsqlplus.so
-rw-r--r-- 1 root dba 1273616 Jul 21 08:41 libskgxpr.so
-rw-r--r-- 1 root dba 1273584 Jul 21 08:41 libskgxpg.so
-rw-r--r-- 1 root dba 38864 Jul 21 08:41 liboramalloc19.so
-rwxr-xr-x 1 root dba 702080 Jul 21 08:41 liboms1.so
-rw-r--r-- 1 root dba 557700 Jul 21 08:41 libmql1.a
-rw-r--r-- 1 root dba 3626096 Jul 21 08:41 libipc1.so
-rw-r--r-- 1 root dba 2010264 Jul 21 08:41 libcell19.so
-rw-r--r-- 1 root dba 742086 Jul 21 08:41 libccme_base_non_fips.so
-rw-r--r-- 1 root dba 650521 Jul 21 08:41 libccme_asym.so
-rw-r--r-- 1 root dba 36185 Jul 21 08:41 asmcmdfgrp.pm
-rw-r--r-- 1 root dba 95016192 Jul 21 08:41 libra.so
-rw-r--r-- 1 root dba 92984 Jul 21 08:41 libowm2.so
-rw-r--r-- 1 root dba 807159 Jul 21 08:41 libccme_ecc.so
-rw-r--r-- 1 root dba 228312 Jul 21 08:41 asmcommand.xml
-rw-r--r-- 1 root dba 5870 Jul 21 08:41 libvsnst19.a
-rw-r--r-- 1 root dba 95020544 Jul 21 08:41 libosbws.so
-rw-r--r-- 1 root dba 478864 Jul 21 08:41 libmql1.so
-rw-r--r-- 1 root dba 17912 Jul 21 08:41 libheteroxa19.so
-rw-r--r-- 1 root dba 407003 Jul 21 08:41 libcryptocme.so
-rw-r--r-- 1 root dba 3156584 Jul 21 08:41 libcell19.a
-rw-r--r-- 1 root dba 812103 Jul 21 08:41 libccme_ecc_accel_fips.so
-rw-r--r-- 1 root dba 105373 Jul 21 08:41 asmcmdafd.pm
-rwxr-xr-x 1 root dba 1807448 Jul 21 08:42 libocijdbc19_g.so
-rw-r--r-- 1 root dba 2200864 Jul 21 08:42 libnnz19.a
-rw-r--r-- 1 root dba 5212122 Jul 21 08:42 libztkg19.a
-rw-r--r-- 1 root dba 59560 Jul 21 08:42 libnfsodm19.so
-rw-r--r-- 1 root dba 219038 Jul 21 08:42 libncrypt19.a
-rw-r--r-- 1 root dba 4715038 Jul 21 08:42 libipc1.a
-rw-r--r-- 1 root dba 461932 Jul 21 08:42 libccme_ecc_non_fips.so
-rw-r--r-- 1 root dba 780704 Jul 21 08:42 libccme_ecc_accel_non_fips.so
-rw-r--r-- 1 root dba 809240 Jul 21 08:42 libccme_base.so
-rw-r--r-- 1 root dba 53530 Jul 21 08:42 asmcmdug.pm
-rw-r--r-- 1 root dba 58542 Jul 21 08:42 asmcmdpasswd.pm
-rw-r--r-- 1 root dba 221682 Jul 21 08:42 asmcmdshare.pm
-rw-r--r-- 1 root dba 26478 Jul 21 08:42 asmcmdglobal.pm
-rw-r--r-- 1 root dba 43929 Jul 21 08:42 asmcmdaudit.pm
-rw-r--r-- 1 root dba 191534 Jul 21 08:42 libzt19.a
-rw-r--r-- 1 root dba 5870 Jul 21 08:42 libvsn19.a
-rw-r--r-- 1 root dba 410512 Jul 21 08:42 libons.so
-rw-r--r-- 1 root dba 7115896 Jul 21 08:42 libnnz19.so
-rw-r--r-- 1 root dba 33 Jul 21 08:42 libcryptocme.sig
-rw-r--r-- 1 root dba 225151 Jul 21 08:42 asmcmdsys.pm
-rw-r--r-- 1 root dba 413120 Jul 21 08:43 libskjcx19.so
-rw-r--r-- 1 root dba 926080 Jul 21 08:43 libgns19.so
-rw-r--r-- 1 root dba 129152 Jul 21 08:43 libeonsserver.so
-rw-r--r-- 1 root dba 648824 Jul 21 08:43 libcha19.so
-rw-r--r-- 1 root dba 4905984 Jul 21 08:43 libagfw19.so
-rw-r--r-- 1 root dba 1222752 Jul 21 08:43 libsrvmhas19.so
-rw-r--r-- 1 root dba 33216 Jul 21 08:43 libperlhasgen.so
-rw-r--r-- 1 root dba 8606280 Jul 21 08:43 libocrb19.so
-rw-r--r-- 1 root dba 5040776 Jul 21 08:43 libNeticaJ.so
-rw-r--r-- 1 root dba 14274208 Jul 21 08:43 libhasgen19.so
-rw-r--r-- 1 root dba 137920 Jul 21 08:43 libgnsjni19.so
-rw-r--r-- 1 root dba 214264 Jul 21 08:43 libeons.so
-rw-r--r-- 1 root dba 197456 Jul 21 08:43 libdbcfg19.so
-rw-r--r-- 1 root dba 334744 Jul 21 08:43 libcrf_mdb19.so
-rw-r--r-- 1 root dba 1974168 Jul 21 08:43 libcrf_http19.so
-rw-r--r-- 1 root dba 837106 Jul 21 08:43 libclsr19.a
-rw-r--r-- 1 root dba 51248 Jul 21 08:43 libclscred19.so
-rw-r--r-- 1 root dba 273384 Jul 21 08:43 libclsce19.so
-rwxr-xr-x 1 root dba 71003 Jul 21 08:43 jwcctl_lib.pm
-rwxr-xr-x 1 root dba 3631 Jul 21 08:43 jwcctl_common.pm
-rw-r--r-- 1 root dba 778152 Jul 21 08:43 libocrutl19.so
-rw-r--r-- 1 root dba 3793000 Jul 21 08:43 libocr19.so
-rw-r--r-- 1 root dba 102853712 Jul 21 08:43 libcrs19.so
-rw-r--r-- 1 root dba 267224 Jul 21 08:43 libclsra19.so
-rwxr-xr-x 1 root dba 17687 Jul 21 08:44 s_jwcctl_lib.pm
-rw-r--r-- 1 root dba 102024 Jul 21 08:44 libuini19.so
-rw-r--r-- 1 root dba 259312 Jul 21 08:44 libsrvmocr19.so
-rw-r--r-- 1 root dba 203520 Jul 21 08:44 libsrvmcred19.so
-rw-r--r-- 1 root dba 222464 Jul 21 08:44 librdjni19.so
-rw-r--r-- 1 root dba 397740 Jul 21 08:44 liboevm.a
-rw-r--r-- 1 root dba 38056 Jul 21 08:44 libjagent19.so
-rw-r--r-- 1 root dba 145976 Jul 21 08:44 libCurveFit.so
-rw-r--r-- 1 root dba 1714024 Jul 21 08:44 libcrf19.so
-rw-r--r-- 1 root dba 67176 Jul 21 08:44 libclsnsjni19.so
-rw-r--r-- 1 root dba 165772 Jul 21 08:44 libclscest19.a
-rw-r--r-- 1 root dba 33216 Jul 21 08:44 perlhasgen.so
lrwxrwxrwx 1 oracle dba 12 Oct 15 14:14 libodm19.so -> libodmd19.so
lrwxrwxrwx 1 oracle dba 36 Oct 15 14:14 libjavavm19.a -> ../javavm/jdk/jdk8/lib/libjavavm19.a
-rw-r--r-- 1 root dba 403766 Oct 15 14:16 libpsa19.a
-rw-r--r-- 1 root dba 14149148 Oct 15 14:16 libpls19.a
-rw-r--r-- 1 root dba 13489596 Oct 15 14:16 libclient19.a
-rw-r--r-- 1 root dba 1475944 Oct 15 14:16 libagent19.a
-rw-r--r-- 1 root dba 1795636 Oct 15 14:16 libplp19.a
-rw-r--r-- 1 root dba 240556 Oct 15 14:16 libplc19.a
-rw-r--r-- 1 root dba 13544308 Oct 15 14:16 libpls19_pic.a
-rw-r--r-- 1 root dba 1787308 Oct 15 14:16 libplp19_pic.a
-rw-r--r-- 1 root dba 260922 Oct 15 14:16 libplc19_pic.a
-rw-r--r-- 1 root dba 116034 Oct 15 14:16 liborabz2.a
-rw-r--r-- 1 root dba 3108590 Oct 15 14:16 libocci19.a
-rw-r--r-- 1 root dba 38583756 Oct 15 14:16 libgeneric19.a
-rw-r--r-- 1 root dba 22958476 Oct 15 14:16 libcommon19.a
-rw-r--r-- 1 root dba 61226 Oct 15 14:16 libasmperl19.a
-rw-r--r-- 1 root dba 1080928 Oct 15 14:17 liborazstd.a
-rw-r--r-- 1 root dba 233876 Oct 15 14:17 liboralz4.a
-rw-r--r-- 1 root dba 198454 Oct 15 14:17 libntwss19.a
-rw-r--r-- 1 root dba 388086 Oct 15 14:17 libntcps19.a
-rw-r--r-- 1 root dba 479968 Oct 15 14:17 libntcp19.a
-rw-r--r-- 1 root dba 345384 Oct 15 14:17 libnldap19.a
-rw-r--r-- 1 root dba 1911498 Oct 15 14:17 libnl19.a
-rw-r--r-- 1 root dba 49156 Oct 15 14:17 libnhost19.a
-rw-r--r-- 1 root dba 1650154 Oct 15 14:17 libldapclnt19.a
-rw-r--r-- 1 root dba 67672 Oct 15 14:17 libcorejava.a
-rw-r--r-- 1 root dba 6350576 Oct 15 14:17 libcore19.a
-rw-r--r-- 1 root dba 2334206 Oct 15 14:17 libsqlplus.a
-rw-r--r-- 1 root dba 208033 Oct 15 14:17 xsu12.jar
-rw-r--r-- 1 root dba 163476 Oct 15 14:17 xschema.jar
-rw-r--r-- 1 root dba 1931037 Oct 15 14:17 xmlparserv2_sans_jaxp_services.jar
-rw-r--r-- 1 root dba 1933643 Oct 15 14:17 xmlparserv2.jar
-rw-r--r-- 1 root dba 630554 Oct 15 14:17 xml.jar
-rw-r--r-- 1 root dba 11974 Oct 15 14:17 xmlcomp2.jar
-rw-r--r-- 1 root dba 488262 Oct 15 14:17 libons.a
-rw-r--r-- 1 root dba 1190844 Oct 15 14:17 libsql19.a
-rw-r--r-- 1 root dba 1404956 Oct 15 14:17 libctxc19.a
-rw-r--r-- 1 root dba 6861988 Oct 15 14:17 libctx19.a
-rw-r--r-- 1 root dba 11173792 Oct 15 14:17 libxml19.a
-rw-r--r-- 1 root dba 10994316 Oct 15 14:17 libordsdo19.a
-rw-r--r-- 1 root dba 19464658 Oct 15 14:17 liboraolap19.a
-rwxr-xr-x 1 root dba 2225240 Oct 15 14:19 libasmclntsh19.so.bak
-rw-r--r-- 1 root dba 3032520 Oct 15 14:19 libasmclntsh19.a
-rw-r--r-- 1 root dba 2602334 Oct 15 14:19 libasmclnt19.a
-rw-r--r-- 1 root dba 486603656 Oct 15 14:33 libserver19.a
-rw-r----- 1 root dba 232328 Dec 29 08:29 libsrvm19.so0
-rw-r--r-- 1 root dba 123 Dec 30 22:30 ldflags
-rw-r--r-- 1 root dba 2872 Dec 30 22:30 ntcontab.o
-rw-r--r-- 1 root dba 1968 Dec 30 22:30 nnfgt.o
-rw-r--r-- 1 root dba 9889782 Dec 30 22:30 libn19.a
-rw-r--r-- 1 root dba 2225240 Dec 30 22:30 libasmclntsh19.so
-rwxr-xr-x 1 root dba 54752 Dec 30 22:30 libasmperl19.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.11.1 -> libclntsh.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.10.1 -> libclntsh.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.12.1 -> libclntsh.so
lrwxrwxrwx 1 oracle dba 10 Dec 30 22:30 libocci.so.18.1 -> libocci.so
lrwxrwxrwx 1 oracle dba 12 Dec 30 22:30 libclntsh.so.18.1 -> libclntsh.so
-rwxr-xr-x 1 root dba 2340192 Dec 30 22:30 libocci.so.19.1
lrwxrwxrwx 1 oracle dba 15 Dec 30 22:30 libocci.so -> libocci.so.19.1
-rwxr-xr-x 1 root dba 1671208 Dec 30 22:30 libagtsh.so.1.0
lrwxrwxrwx 1 oracle dba 15 Dec 30 22:30 libagtsh.so -> libagtsh.so.1.0
-rw-r--r-- 1 root dba 232328 Dec 30 22:30 libsrvm19.so
-rw-r--r-- 1 root dba 8052352 Dec 30 22:30 libclntshcore.so.19.1
-rw-r--r-- 1 root dba 1580936 Dec 30 22:30 clntshcore.map
lrwxrwxrwx 1 oracle dba 21 Dec 30 22:30 libclntshcore.so -> libclntshcore.so.19.1
-rw-r--r-- 1 root dba 81402424 Dec 30 22:30 libclntsh.so.19.1
-rw-r--r-- 1 root dba 5928063 Dec 30 22:30 clntsh.map
lrwxrwxrwx 1 oracle dba 17 Dec 30 22:30 libclntsh.so -> libclntsh.so.19.1
-rw-r--r-- 1 root dba 1273584 Dec 30 22:30 libskgxp19.so
-rw-r--r-- 1 root dba 17336 Dec 30 22:30 libskgxn2.so
|
참조 : 2511890.1, 1083982.1
https://positivemh.tistory.com/788
https://positivemh.tistory.com/797
'ORACLE > Admin' 카테고리의 다른 글
오라클 11g R2 client 19c 접속 19c client 11g R2 접속 시도 (2) | 2022.05.10 |
---|---|
오라클 19c db oraInventory 재설정 (2) | 2022.01.06 |
오라클 19c 리스너 로그 자동백업 파라미터 (0) | 2021.12.26 |
오라클 19c ahf(tfa) 업그레이드 가이드 (0) | 2021.12.25 |
오라클 11g R2 서버 기동시 db 자동실행 설정 (0) | 2021.11.13 |