-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathopsys.ttl
11300 lines (11122 loc) · 975 KB
/
opsys.ttl
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
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix schema: <http://schema.org/> .
@prefix oplmch: <http://www.openlinksw.com/ontology/machines#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix oplsof: <http://www.openlinksw.com/ontology/software#> .
@prefix oplcomp: <http://www.openlinksw.com/ontology/components#> .
@prefix oplpro: <http://www.openlinksw.com/ontology/products#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix wdrs: <http://www.w3.org/2007/05/powder-s#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix : <#> .
@prefix source: <http://www.openlinksw.com/data/turtle/oplweb/Opsys.ttl> .
@prefix sourceDAV: <http://www.openlinksw.com/DAV/data/turtle/oplweb/Opsys.ttl> .
sourceDAV:
a schema:CreativeWork ;
schema:name "OpenLink Software Operating Systems -- WebDAV hosted TURTLE Document"^^xsd:string ;
dcterms:format "text/turtle" ;
schema:dateCreated "2013-01-01T13:00:00-05:00"^^xsd:dateTime ;
schema:dateModified "2021-06-02T15:00:00-05:00"^^xsd:dateTime ;
schema:author <http://www.openlinksw.com/#this> ;
schema:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
owl:sameAs source: .
source:
a schema:CreativeWork ;
schema:name "OpenLink Operating Systems"^^xsd:string ;
schema:comment """This is a turtle document that uses Linked Data oriented content to describe OpenLink Operating Systems"""@en ;
schema:dateCreated "2013-01-01T13:00:00-05:00"^^xsd:dateTime ;
schema:dateModified "2021-06-02T15:00:00-05:00"^^xsd:dateTime ;
schema:author <http://www.openlinksw.com/#this> ;
schema:license <http://creativecommons.org/licenses/by/4.0/deed.en_US> ;
cc:attributionName "OpenLink Software" ;
schema:about
<http://data.openlinksw.com/oplweb/opsys/alpha-dec-osf4.0e-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/alphaev6-dec-osf5.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono1.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono1.1-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono2.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono2.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet1.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet1.1-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet2.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet2.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux10.20-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux11.00-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux11.00-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux11.11-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/hppa2.0w-hp-hpux11.00-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/hppa2.0w-hp-hpux11.11-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-generic-freebsd4.5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-generic-freebsd5.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-generic-freebsd5.4-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-generic-freebsdelf4.1-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-generic-sco3.2v5.0.5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-generic-sco3.2v5.0.7-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-generic-solaris2.7-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i386-sequent-sysv4-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i486-generic-sco3.2v5.0.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i586-dg-dguxR4.11MU03-32-nothreads#this> ,
<http://data.openlinksw.com/oplweb/opsys/i586-dg-dguxR4.11MU03-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i586-sco-sysv5uw7-32-nothreads#this> ,
<http://data.openlinksw.com/oplweb/opsys/i586-sco-sysv5uw7-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-darwin8-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.4-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.6-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.7-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.8-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.9-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.10-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.11-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-freebsd5.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc2.4-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc2.5-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc21-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc21-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc22-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc23-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc24-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc25-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc25-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc26-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc27-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-win-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-winsrv-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/ia64-hp-hpux11.22-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/ia64-hp-hpux11.23-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/ia64-hp-hpux11.23-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/ia64-intel-freebsd5.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/ia64-intel-linux-gnu-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/ia64-intel-win-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/ia64-intel-winsrv-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/jvm-sun-java1.1-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/jvm-sun-java1.2-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/jvm-sun-java1.3-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/jvm-sun-java1.4-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/jvm-sun-java1.5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/m68k-apple-macos7.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/mips-sgi-irix6.5-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/mips-sgi-irix6.5-n32#this> ,
<http://data.openlinksw.com/oplweb/opsys/mips-sgi-irix6.5-o32#this> ,
<http://data.openlinksw.com/oplweb/opsys/none#this> ,
<http://data.openlinksw.com/oplweb/opsys/opteron-sun-solaris2.8-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-darwin7-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-darwin8-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macos-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macos8.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.1-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.2-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.3-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.4-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.5-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.6-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.6-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.8-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.9-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.10-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-apple-macosx10.11-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-ibm-aix4.2.0.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-ibm-aix4.3.0.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-ibm-aix5.2.0.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-ibm-aix5.2.0.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-ibm-aix5.3.0.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-ibm-aix5.3.0.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/powerpc-lynxos5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/rs6000-ibm-aix3.2.5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/rs6000-ibm-aix4.3.0.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/rs6000-ibm-aix4.3.0.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/rs6000-ibm-aix4.3.3.0-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/rs6000-ibm-aix4.3.3.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.5.1-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.7-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.8-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.8-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.9-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.9-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.10-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/sparc-sun-solaris2.10-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-darwin8-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.4-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.5-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.6-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.8-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.9-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.10-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.11-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-amd-linux-glibc23-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.4-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.5-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.6-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.7-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.8-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.9-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.10-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.11-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-freebsd5.0-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-linux-glibc23-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-linux-glibc24-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-linux-glibc25-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-linux-glibc212-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-linux-glibc217-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-win-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-generic-winsrv-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-sun-solaris2.10-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-sun-solaris2.10-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/firefox3.0#this> ,
<http://data.openlinksw.com/oplweb/opsys/ruby#this> ,
<http://data.openlinksw.com/oplweb/opsys/virtuoso#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-generic-linux-glibc212-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.12-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.12-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.12-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/i686-apple-macosx10.13-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/x86_64-apple-macosx10.13-64#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macosx10.13-32#this> ,
<http://data.openlinksw.com/oplweb/opsys/universal-apple-macos11-64#this> .
<http://data.openlinksw.com/oplweb/opsys/alpha-dec-osf4.0e-64#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "Tru64 UNIX 4.0e (64 Bit) (Alpha)" ;
schema:name "alpha-dec-osf4.0e-64" ;
oplsof:OperatingSystemCommercialName "Tru64 UNIX 4.0e (64 Bit) (Alpha)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/64Bit#this> ;
oplsof:OperatingSystemLicenseCode "Digital Unix (OSF/1)" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/alphaev6/2#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "4.0e" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-inf73-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-inf73-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-inf73-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-inf73-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ing6-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ingii-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ingii-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ingii-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ingii-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-jdbc-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-odbc-odbcagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-odbc-odbcagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ora7-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ora8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ora8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ora8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-ora8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pro73d-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pro73e-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pro81a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pro82a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pro83a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pro83b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pro91b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pros91-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pros91-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alpha-dec-osf4.0e-64-pros91-odbclt-clnt-only_sv#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/Tru64UNIX#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/srv#this> .
<http://data.openlinksw.com/oplweb/opsys/alphaev6-dec-osf5.0-64#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "Tru64 UNIX 5.0 (64 Bit) (Alpha)" ;
schema:name "alphaev6-dec-osf5.0-64" ;
oplsof:OperatingSystemCommercialName "Tru64 UNIX 5.0 (64 Bit) (Alpha)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/64Bit#this> ;
oplsof:OperatingSystemLicenseCode "Digital Unix (OSF/1)" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/alphaev6/2#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "5.0" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-inf73-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-inf73-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-inf73-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-inf73-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ingii-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ingii-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ingii-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-jdbc-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys3-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys3-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys3-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys3-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys4-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys4-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys4-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys4-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys5-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys5-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys5-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-mys5-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-odbc-odbcagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-odbc-odbcagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora11-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora11-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora11-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora11-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora9-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora9-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora9-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-ora9-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos7-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos7-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos7-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos7-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pos8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pro90b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pro91a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pro91b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pro91c-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pro91d-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pros91-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pros91-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-pros91-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-prxy-proxyagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-sql-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-sql-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-sql-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-sql-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb11-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb11-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb11-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb11-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb12-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb12-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb12-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb12-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb15-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb15-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb15-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/alphaev6-dec-osf5.0-64-syb15-odbclt-clnt-only_sv#this> ;
oplpro:hasProduct
<http://data.openlinksw.com/oplweb/product/iodbc-sdk#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-demo#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-adm#this>,
<http://data.openlinksw.com/oplweb/product/odbc-bench#this>,
<http://data.openlinksw.com/oplweb/product/odbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-informix-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-progress-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-prxy-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-st#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/Tru64UNIX#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/srv#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono1.0-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "Mono CLR 1.0 (32 Bit)" ;
schema:name "clr-ecma-mono1.0-32" ;
oplsof:OperatingSystemCommercialName "Mono CLR 1.0 (32 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "Mono CLR" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/mono1.0/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemVersion "1.0" ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/MonoCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono1.1-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "Mono CLR 1.1 (32 Bit)" ;
schema:name "clr-ecma-mono1.1-32" ;
oplsof:OperatingSystemCommercialName "Mono CLR 1.1 (32 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "Mono CLR" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/mono1.1/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemVersion "1.1" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-odbc-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-odbc-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-sql-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-sql-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb10-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb10-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb11-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb11-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb12-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb12-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb15-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono1.1-32-syb15-dotnetlt-clnt-only_sv#this> ;
oplpro:hasProduct <http://data.openlinksw.com/oplweb/product/dotnet-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-st#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sqlserver-st#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sybase-st#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/MonoCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono2.0-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "Mono CLR 2.0 (32 Bit)" ;
schema:name "clr-ecma-mono2.0-32" ;
oplsof:OperatingSystemCommercialName "Mono CLR 2.0 (32 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "Mono CLR" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/mono2.0/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemVersion "2.0" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/clr-ecma-mono2.0-32-odbc-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-ecma-mono2.0-32-odbc-dotnetlt-clnt-only_sv#this> ;
oplpro:hasProduct <http://data.openlinksw.com/oplweb/product/dotnet-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-st#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sybase-mt#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/MonoCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-ecma-mono2.0-64#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "Mono CLR 2.0 (64 Bit)" ;
schema:name "clr-ecma-mono2.0-64" ;
oplsof:OperatingSystemCommercialName "Mono CLR 2.0 (64 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/64Bit#this> ;
oplsof:OperatingSystemLicenseCode "Mono CLR" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/mono2.0/2#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemVersion "2.0" ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/MonoCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet1.0-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel ".NET CLR 1.0 (32 Bit)" ;
schema:name "clr-microsoft-dotnet1.0-32" ;
oplsof:OperatingSystemCommercialName ".NET CLR 1.0 (32 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "DotNET" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/dotnet1.0/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "1.0" ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/.NETCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet1.1-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel ".NET CLR 1.1 (32 Bit)" ;
schema:name "clr-microsoft-dotnet1.1-32" ;
oplsof:OperatingSystemCommercialName ".NET CLR 1.1 (32 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "DotNET" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/dotnet1.1/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "1.1" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-odbc-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-odbc-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-sql-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-sql-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb10-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb10-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb11-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb11-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb12-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb12-dotnetlt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb15-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet1.1-32-syb15-dotnetlt-clnt-only_sv#this> ;
oplpro:hasProduct <http://data.openlinksw.com/oplweb/product/dotnet-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-st#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sqlserver-st#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sybase-st#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/.NETCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet2.0-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel ".NET CLR 2.0 (32 Bit)" ;
schema:name "clr-microsoft-dotnet2.0-32" ;
oplsof:OperatingSystemCommercialName ".NET CLR 2.0 (32 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "DotNET" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/dotnet2.0/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "2.0" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet2.0-32-odbc-dotnetlt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/clr-microsoft-dotnet2.0-32-odbc-dotnetlt-clnt-only_sv#this> ;
oplpro:hasProduct <http://data.openlinksw.com/oplweb/product/dotnet-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-odbc-st#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/dotnet-sybase-mt#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/.NETCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/clr-microsoft-dotnet2.0-64#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel ".NET CLR 2.0 (64 Bit)" ;
schema:name "clr-microsoft-dotnet2.0-64" ;
oplsof:OperatingSystemCommercialName ".NET CLR 2.0 (64 Bit)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/64Bit#this> ;
oplsof:OperatingSystemLicenseCode "DotNET" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/dotnet2.0/2#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "2.0" ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/.NETCLR#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/firefox3.0#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "Mozilla Firefox 3.0" ;
schema:name "firefox3.0" ;
oplsof:OperatingSystemCommercialName "Mozilla Firefox 3.0" ;
oplsof:OpsysDownwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32_64Bit#this> ;
oplsof:OperatingSystemLicenseCode "Firefox" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/gecko/3#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "3.0" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/firefox3.0-opendata-demoapp-clnt-only_sv#this> ;
oplpro:hasProduct <http://data.openlinksw.com/oplweb/product/util-dataexplorer-st#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/Firefox#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/wrkst#this> .
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux10.20-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "HPUX 10.20 (32 Bit) (HP RISC)" ;
schema:name "hppa1.1-hp-hpux10.20-32" ;
oplsof:OperatingSystemCommercialName "HPUX 10.20 (32 Bit) (HP RISC)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "HP/UX" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/hppa1.1/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "10.20" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-inf72-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-inf73-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-inf73-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-inf73-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-inf73-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ingii-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ingii-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ingii-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ingii-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-jdbc-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-mys3-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-mys3-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-mys3-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-mys3-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-odbc-odbcagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-odbc-odbcagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ora7-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ora8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ora8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ora8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-ora8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos7-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos7-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos7-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos7-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pos8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pro73e-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pro81a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pro82a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pro82c-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pro83a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pro83b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-pro90a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-prxy-proxyagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-sql-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-sql-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-sql-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-sql-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb11-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb11-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb11-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb11-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb12-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb12-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb12-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb12-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb15-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb15-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb15-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux10.20-32-syb15-odbclt-clnt-only_sv#this> ;
oplpro:hasProduct <http://data.openlinksw.com/oplweb/product/iodbc-sdk#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-demo#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-adm#this>,
<http://data.openlinksw.com/oplweb/product/odbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-prxy-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-st#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/HPUX#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/srv#this> .
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux11.00-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "HPUX 11.00 32 Bit Components (64 Bit) (HP RISC)" ;
schema:name "hppa1.1-hp-hpux11.00-32" ;
oplsof:OperatingSystemCommercialName "HPUX 11.00 32 Bit Components (64 Bit) (HP RISC)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "HP/UX" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/hppa2.0w/2#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "11.00" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-db2-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-db2-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf73-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf73-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf73-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf73-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf9-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf9-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf9-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-inf9-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ingii-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ingii-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ingii-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ingii-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-jdbc-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-mys3-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-mys3-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-mys3-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-mys3-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-odbc-odbcagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-odbc-odbcagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora11-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora11-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora11-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora11-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora9-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora9-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora9-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-ora9-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos7-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos7-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos7-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos7-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pos8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pro83b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pro83e-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pro90b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pro91a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pro91b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pro91c-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pro91d-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros91-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros91-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros91-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-pros91-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-prxy-proxyagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-sql-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-sql-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-sql-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-sql-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb11-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb11-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb11-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb11-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb12-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb12-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb12-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb12-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb15-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb15-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb15-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.00-32-syb15-odbclt-clnt-only_sv#this> ;
oplpro:hasProduct
<http://data.openlinksw.com/oplweb/product/iodbc-sdk#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-demo#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-adm#this>,
<http://data.openlinksw.com/oplweb/product/odbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-informix-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-progress-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-prxy-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-st#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/HPUX#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/srv#this> .
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux11.00-64#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "HPUX 11.00 (64 Bit) (HP RISC)" ;
schema:name "hppa1.1-hp-hpux11.00-64" ;
oplsof:OperatingSystemCommercialName "HPUX 11.00 (64 Bit) (HP RISC)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/64Bit#this> ;
oplsof:OperatingSystemLicenseCode "HP/UX" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/hppa1.1/2#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "11.00" ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/HPUX#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/srv#this> .
<http://data.openlinksw.com/oplweb/opsys/hppa1.1-hp-hpux11.11-32#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "HPUX 11.11 (32 Bit) (HP RISC)" ;
schema:name "hppa1.1-hp-hpux11.11-32" ;
oplsof:OperatingSystemCommercialName "HPUX 11.11 (32 Bit) (HP RISC)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/32Bit#this> ;
oplsof:OperatingSystemLicenseCode "HP/UX" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/hppa1.1/1#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "11.11" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-db2-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-db2-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf73-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf73-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf73-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf73-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf9-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf9-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf9-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-inf9-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ingii-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ingii-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ingii-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ingii-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys3-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys3-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys3-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys3-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys4-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys4-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys4-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys4-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys5-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys5-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys5-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-mys5-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-odbc-odbcagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-odbc-odbcagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora11-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora11-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora11-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora11-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora9-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora9-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora9-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-ora9-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos7-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos7-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos7-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos7-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos8-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos8-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos8-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pos8-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pro83b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pro83e-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pro90b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pro91a-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pro91b-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pro91d-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pros10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pros10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pros91-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-pros91-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-prxy-proxyagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-sql-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-sql-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-sql-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-sql-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb10-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb10-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb10-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb10-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb11-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb11-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb11-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb11-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb12-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb12-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb12-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb12-odbclt-clnt-only_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb15-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb15-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb15-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa1.1-hp-hpux11.11-32-syb15-odbclt-clnt-only_sv#this> ;
oplpro:hasProduct
<http://data.openlinksw.com/oplweb/product/iodbc-sdk#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-demo#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/jdbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-adm#this>,
<http://data.openlinksw.com/oplweb/product/odbc-db2-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-informix-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-informix-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-ingres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-jdbc-bridge-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-mysql-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-odbc-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-oracle-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-postgres-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-progress-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-prxy-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sqlserver-st#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-mt#this>,
<http://data.openlinksw.com/oplweb/product/odbc-sybase-st#this> ;
oplsof:hasOperatingSystemFamily <http://data.openlinksw.com/oplweb/opsys_family/HPUX#this> ;
oplsof:hasOperatingSystemType <http://data.openlinksw.com/oplweb/opsys_type/srv#this> .
<http://data.openlinksw.com/oplweb/opsys/hppa2.0w-hp-hpux11.00-64#this>
a <http://umbel.org/umbel/sc/OperatingSystem>,
oplsof:OperatingSystem ;
wdrs:describedby source: ;
skos:prefLabel "HPUX 11.00 (64 Bit) (HP RISC)" ;
schema:name "hppa2.0w-hp-hpux11.00-64" ;
oplsof:OperatingSystemCommercialName "HPUX 11.00 (64 Bit) (HP RISC)" ;
oplsof:OpsysDownwardCompatible "0"^^xsd:boolean ;
oplsof:OperatingSystemEmulationMode <http://data.openlinksw.com/oplweb/processor_mode/64Bit#this> ;
oplsof:OperatingSystemLicenseCode "HP/UX" ;
oplmch:hasProcessor <http://data.openlinksw.com/oplweb/processor/hppa2.0w/2#this> ;
oplsof:OperatingSystemSupported "1"^^xsd:boolean ;
oplsof:OperatingSystemUpwardCompatible "1"^^xsd:boolean ;
oplsof:OperatingSystemVersion "11.00" ;
oplcomp:hasComponent <http://data.openlinksw.com/oplweb/component/hppa2.0w-hp-hpux11.00-64-inf73-dbagent-svr_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa2.0w-hp-hpux11.00-64-inf73-dbagent-svr_sv#this>,
<http://data.openlinksw.com/oplweb/component/hppa2.0w-hp-hpux11.00-64-inf73-odbclt-clnt-only_mv#this>,
<http://data.openlinksw.com/oplweb/component/hppa2.0w-hp-hpux11.00-64-inf73-odbclt-clnt-only_sv#this>,