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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
|
/dev/rrp3:
/dev/rrp3:
<<<
/dev/rrp3:/dev/rrp3: /dev/rrp3:
1 /dev/rrp3:
>>>
yes
no
<<<
>>>
yes
no
17379 mel
17379 mel
<<<
2 mel
17379 mel17379 17379 mel
1 17379
>>>
yes
no
16693 bwk me
16693 bwk me
<<<
2 bwk
3 me
16693 bwk me16693 16693 bwk me
1 16693
>>>
yes
no
else
16116 ken him someone else
<<<
16116 ken him someone else16116 16116 ken him someone else
1 else
>>>
yes
no
15713 srb
15713 srb
<<<
2 srb
15713 srb15713 15713 srb
1 15713
>>>
yes
no
11895 lem
11895 lem
<<<
2 lem
11895 lem11895 11895 lem
1 11895
>>>
yes
no
10409 scj
10409 scj
<<<
2 scj
10409 scj10409 10409 scj
1 10409
>>>
yes
no
10252 rhm
10252 rhm
<<<
2 rhm
10252 rhm10252 10252 rhm
1 10252
>>>
yes
no
9853 shen
9853 shen
<<<
2 shen
9853 shen9853 9853 shen
1 9853
>>>
yes
no
9748 a68
9748 a68
<<<
2 a68
9748 a689748 9748 a68
1 9748
>>>
yes
no
9492 sif
9492 sif
<<<
2 sif
9492 sif9492 9492 sif
1 9492
>>>
yes
no
9190 pjw
9190 pjw
<<<
2 pjw
9190 pjw9190 9190 pjw
1 9190
>>>
yes
no
8912 nls
8912 nls
<<<
2 nls
8912 nls8912 8912 nls
1 8912
>>>
yes
no
8895 dmr
8895 dmr
<<<
2 dmr
8895 dmr8895 8895 dmr
1 8895
>>>
yes
no
8491 cda
8491 cda
<<<
2 cda
8491 cda8491 8491 cda
1 8491
>>>
yes
no
8372 bs
8372 bs
<<<
2 bs
8372 bs8372 8372 bs
1 8372
>>>
yes
no
8252 llc
8252 llc
<<<
2 llc
8252 llc8252 8252 llc
1 8252
>>>
yes
no
7450 mb
7450 mb
<<<
2 mb
7450 mb7450 7450 mb
1 7450
>>>
yes
no
7360 ava
7360 ava
<<<
2 ava
7360 ava7360 7360 ava
1 7360
>>>
yes
no
7273 jrv
7273 jrv
<<<
2 jrv
7273 jrv7273 7273 jrv
1 7273
>>>
yes
no
7080 bin
7080 bin
<<<
2 bin
7080 bin7080 7080 bin
1 7080
>>>
yes
no
7063 greg
7063 greg
<<<
7063 greg7063 7063 greg
2 greg
1 7063
>>>
yes
no
6567 dict
6567 dict
<<<
2 dict
6567 dict6567 6567 dict
1 6567
>>>
yes
no
6462 lck
6462 lck
<<<
2 lck
6462 lck6462 6462 lck
1 6462
>>>
yes
no
6291 rje
6291 rje
<<<
2 rje
6291 rje6291 6291 rje
1 6291
>>>
yes
no
6211 lwf
6211 lwf
<<<
2 lwf
6211 lwf6211 6211 lwf
1 6211
>>>
yes
no
5671 dave
5671 dave
<<<
2 dave
5671 dave5671 5671 dave
1 5671
>>>
yes
no
5373 jhc
5373 jhc
<<<
2 jhc
5373 jhc5373 5373 jhc
1 5373
>>>
yes
no
5220 agf
5220 agf
<<<
2 agf
5220 agf5220 5220 agf
1 5220
>>>
yes
no
5167 doug
5167 doug
<<<
2 doug
5167 doug5167 5167 doug
1 5167
>>>
yes
no
5007 valerie
5007 valerie
<<<
2 valerie
5007 valerie5007 5007 valerie
1 5007
>>>
yes
no
3963 jca
3963 jca
<<<
2 jca
3963 jca3963 3963 jca
1 3963
>>>
yes
no
3895 bbs
3895 bbs
<<<
2 bbs
3895 bbs3895 3895 bbs
1 3895
>>>
yes
no
3796 moh
3796 moh
<<<
2 moh
3796 moh3796 3796 moh
1 3796
>>>
yes
no
3481 xchar
3481 xchar
<<<
2 xchar
3481 xchar3481 3481 xchar
1 3481
>>>
yes
no
3200 tbl
3200 tbl
<<<
2 tbl
3200 tbl3200 3200 tbl
1 3200
>>>
yes
no
2845 s
2845 s
<<<
2 s
2845 s2845 2845 s
1 2845
>>>
yes
no
2774 tgs
2774 tgs
<<<
2 tgs
2774 tgs2774 2774 tgs
1 2774
>>>
yes
no
2641 met
2641 met
<<<
2 met
2641 met2641 2641 met
1 2641
>>>
yes
no
2566 jck
2566 jck
<<<
2 jck
2566 jck2566 2566 jck
1 2566
>>>
yes
no
2511 port
2511 port
<<<
2 port
2511 port2511 2511 port
1 2511
>>>
yes
no
2479 sue
2479 sue
<<<
2 sue
2479 sue2479 2479 sue
1 2479
>>>
yes
no
2127 root
2127 root
<<<
2 root
2127 root2127 2127 root
1 2127
>>>
yes
no
1989 bsb
1989 bsb
<<<
2 bsb
1989 bsb1989 1989 bsb
1 1989
>>>
yes
no
1989 jeg
1989 jeg
<<<
2 jeg
1989 jeg1989 1989 jeg
1 1989
>>>
yes
no
1933 eag
1933 eag
<<<
2 eag
1933 eag1933 1933 eag
1 1933
>>>
yes
no
1801 pdj
1801 pdj
<<<
2 pdj
1801 pdj1801 1801 pdj
1 1801
>>>
yes
no
1590 tpc
1590 tpc
<<<
2 tpc
1590 tpc1590 1590 tpc
1 1590
>>>
yes
no
1385 cvw
1385 cvw
<<<
2 cvw
1385 cvw1385 1385 cvw
1 1385
>>>
yes
no
1370 rwm
1370 rwm
<<<
2 rwm
1370 rwm1370 1370 rwm
1 1370
>>>
yes
no
1316 avg
1316 avg
<<<
2 avg
1316 avg1316 1316 avg
1 1316
>>>
yes
no
1205 eg
1205 eg
<<<
2 eg
1205 eg1205 1205 eg
1 1205
>>>
yes
no
1194 jam
1194 jam
<<<
2 jam
1194 jam1194 1194 jam
1 1194
>>>
yes
no
1153 dl
1153 dl
<<<
2 dl
1153 dl1153 1153 dl
1 1153
>>>
yes
no
1150 lgm
1150 lgm
<<<
2 lgm
1150 lgm1150 1150 lgm
1 1150
>>>
yes
no
1031 cmb
1031 cmb
<<<
2 cmb
1031 cmb1031 1031 cmb
1 1031
>>>
yes
no
1018 jwr
1018 jwr
<<<
2 jwr
1018 jwr1018 1018 jwr
1 1018
>>>
yes
no
950 gdb
950 gdb
<<<
2 gdb
950 gdb950 950 gdb
1 950
>>>
yes
no
931 marc
931 marc
<<<
2 marc
931 marc931 931 marc
1 931
>>>
yes
no
898 usg
898 usg
<<<
2 usg
898 usg898 898 usg
1 898
>>>
yes
no
865 ggr
865 ggr
<<<
2 ggr
865 ggr865 865 ggr
1 865
>>>
yes
no
822 daemon
822 daemon
<<<
2 daemon
822 daemon822 822 daemon
1 822
>>>
yes
no
803 mihalis
803 mihalis
<<<
2 mihalis
803 mihalis803 803 mihalis
1 803
>>>
yes
no
700 honey
700 honey
<<<
2 honey
700 honey700 700 honey
1 700
>>>
yes
no
624 tad
624 tad
<<<
2 tad
624 tad624 624 tad
1 624
>>>
yes
no
559 acs
559 acs
<<<
2 acs
559 acs559 559 acs
1 559
>>>
yes
no
541 uucp
541 uucp
<<<
2 uucp
541 uucp541 541 uucp
1 541
>>>
yes
no
523 raf
523 raf
<<<
2 raf
523 raf523 523 raf
1 523
>>>
yes
no
495 adh
495 adh
<<<
2 adh
495 adh495 495 adh
1 495
>>>
yes
no
456 kec
456 kec
<<<
2 kec
456 kec456 456 kec
1 456
>>>
yes
no
414 craig
414 craig
<<<
2 craig
414 craig414 414 craig
1 414
>>>
yes
no
386 donmac
386 donmac
<<<
2 donmac
386 donmac386 386 donmac
1 386
>>>
yes
no
375 jj
375 jj
<<<
2 jj
375 jj375 375 jj
1 375
>>>
yes
no
348 ravi
348 ravi
<<<
2 ravi
348 ravi348 348 ravi
1 348
>>>
yes
no
344 drw
344 drw
<<<
2 drw
344 drw344 344 drw
1 344
>>>
yes
no
327 stars
327 stars
<<<
2 stars
327 stars327 327 stars
1 327
>>>
yes
no
288 mrg
288 mrg
<<<
2 mrg
288 mrg288 288 mrg
1 288
>>>
yes
no
272 jcb
272 jcb
<<<
2 jcb
272 jcb272 272 jcb
1 272
>>>
yes
no
263 ralph
263 ralph
<<<
2 ralph
263 ralph263 263 ralph
1 263
>>>
yes
no
253 tom
253 tom
<<<
2 tom
253 tom253 253 tom
1 253
>>>
yes
no
251 sjb
251 sjb
<<<
2 sjb
251 sjb251 251 sjb
1 251
>>>
yes
no
248 haight
248 haight
<<<
2 haight
248 haight248 248 haight
1 248
>>>
yes
no
224 sharon
224 sharon
<<<
2 sharon
224 sharon224 224 sharon
1 224
>>>
yes
no
222 chuck
222 chuck
<<<
2 chuck
222 chuck222 222 chuck
1 222
>>>
yes
no
213 dsj
213 dsj
<<<
2 dsj
213 dsj213 213 dsj
1 213
>>>
yes
no
201 bill
201 bill
<<<
2 bill
201 bill201 201 bill
1 201
>>>
yes
no
184 god
184 god
<<<
2 god
184 god184 184 god
1 184
>>>
yes
no
176 sys
176 sys
<<<
2 sys
176 sys176 176 sys
1 176
>>>
yes
no
166 meh
166 meh
<<<
2 meh
166 meh166 166 meh
1 166
>>>
yes
no
163 jon
163 jon
<<<
2 jon
163 jon163 163 jon
1 163
>>>
yes
no
144 dan
144 dan
<<<
2 dan
144 dan144 144 dan
1 144
>>>
yes
no
143 fox
143 fox
<<<
2 fox
143 fox143 143 fox
1 143
>>>
yes
no
123 dale
123 dale
<<<
2 dale
123 dale123 123 dale
1 123
>>>
yes
no
116 kab
116 kab
<<<
2 kab
116 kab116 116 kab
1 116
>>>
yes
no
95 buz
95 buz
<<<
2 buz
95 buz95 95 buz
1 95
>>>
yes
no
80 asc
80 asc
<<<
2 asc
80 asc80 80 asc
1 80
>>>
yes
no
79 jas
79 jas
<<<
2 jas
79 jas79 79 jas
1 79
>>>
yes
no
79 trt
79 trt
<<<
2 trt
79 trt79 79 trt
1 79
>>>
yes
no
64 wsb
64 wsb
<<<
2 wsb
64 wsb64 64 wsb
1 64
>>>
yes
no
62 dwh
62 dwh
<<<
2 dwh
62 dwh62 62 dwh
1 62
>>>
yes
no
56 ktf
56 ktf
<<<
2 ktf
56 ktf56 56 ktf
1 56
>>>
yes
no
54 lr
54 lr
<<<
2 lr
54 lr54 54 lr
1 54
>>>
yes
no
47 dlc
47 dlc
<<<
2 dlc
47 dlc47 47 dlc
1 47
>>>
yes
no
45 dls
45 dls
<<<
2 dls
45 dls45 45 dls
1 45
>>>
yes
no
45 jwf
45 jwf
<<<
2 jwf
45 jwf45 45 jwf
1 45
>>>
yes
no
44 mash
44 mash
<<<
44 mash44 44 mash
2 mash
1 44
>>>
yes
no
43 ars
43 ars
<<<
2 ars
43 ars43 43 ars
1 43
>>>
yes
no
43 vgl
43 vgl
<<<
2 vgl
43 vgl43 43 vgl
1 43
>>>
yes
no
37 jfo
37 jfo
<<<
37 jfo37 37 jfo
2 jfo
1 37
>>>
yes
no
32 rab
32 rab
<<<
2 rab
32 rab32 32 rab
1 32
>>>
yes
no
31 pd
31 pd
<<<
2 pd
31 pd31 31 pd
1 31
>>>
yes
no
29 jns
29 jns
<<<
2 jns
29 jns29 29 jns
1 29
>>>
yes
no
25 spm
25 spm
<<<
2 spm
25 spm25 25 spm
1 25
>>>
yes
no
22 rob
22 rob
<<<
2 rob
22 rob22 22 rob
1 22
>>>
yes
no
15 egb
15 egb
<<<
2 egb
15 egb15 15 egb
1 15
>>>
yes
no
10 hm
10 hm
<<<
2 hm
10 hm10 10 hm
1 10
>>>
yes
no
10 mhb
10 mhb
<<<
2 mhb
10 mhb10 10 mhb
1 10
>>>
yes
no
6 aed
6 aed
<<<
2 aed
6 aed6 6 aed
1 6
>>>
yes
no
6 cpb
6 cpb
<<<
2 cpb
6 cpb6 6 cpb
1 6
>>>
yes
no
5 evp
5 evp
<<<
5 evp5 5 evp
2 evp
1 5
>>>
yes
no
4 ber
4 ber
<<<
2 ber
4 ber4 4 ber
1 4
>>>
yes
no
4 men
4 men
<<<
2 men
4 men4 4 men
1 4
>>>
yes
no
4 mitch
4 mitch
<<<
2 mitch
4 mitch4 4 mitch
1 4
>>>
yes
no
3 ast
3 ast
<<<
2 ast
3 ast3 3 ast
1 3
>>>
yes
no
3 jfr
3 jfr
<<<
2 jfr
3 jfr3 3 jfr
1 3
>>>
yes
no
3 lax
3 lax
<<<
2 lax
3 lax3 3 lax
1 3
>>>
yes
no
3 nel
3 nel
<<<
2 nel
3 nel3 3 nel
1 3
>>>
yes
no
2 blue
2 blue
<<<
2 blue
2 blue2 2 blue
1 2
>>>
yes
yes
2 jfk
2 jfk
<<<
2 jfk
2 jfk2 2 jfk
1 2
>>>
yes
yes
2 njas
2 njas
<<<
2 njas
2 njas2 2 njas
1 2
>>>
yes
yes
1 122sec
1 122sec
<<<
2 122sec
1 122sec1 1 122sec
1 1
>>>
yes
yes
1 ddwar
1 ddwar
<<<
2 ddwar
1 ddwar1 1 ddwar
1 1
>>>
yes
yes
1 gopi
1 gopi
<<<
2 gopi
1 gopi1 1 gopi
1 1
>>>
yes
yes
1 jk
1 jk
<<<
2 jk
1 jk1 1 jk
1 1
>>>
yes
yes
1 learn
1 learn
<<<
2 learn
1 learn1 1 learn
1 1
>>>
yes
yes
1 low
1 low
<<<
2 low
1 low1 1 low
1 1
>>>
yes
yes
1 nac
1 nac
<<<
2 nac
1 nac1 1 nac
1 1
>>>
yes
yes
1 sidor
1 sidor
<<<
2 sidor
1 sidor1 1 sidor
1 1
>>>
yes
yes
1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh
1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh
<<<
1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh 1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh
1 1root:EMpNB8Zp56:0:0:Super-User,,,,,,,:/:/bin/sh
>>>
yes
no
running tcsh [cbm]:/:/bin/tcsh
2roottcsh:*:0:0:Super-User running tcsh [cbm]:/:/bin/tcsh
<<<
2 tcsh
3 [cbm]:/:/bin/tcsh
2roottcsh:*:0:0:Super-User running tcsh [cbm]:/:/bin/tcsh2roottcsh:*:0:0:Super-User 2roottcsh:*:0:0:Super-User running tcsh [cbm]:/:/bin/tcsh
1 running
>>>
yes
no
V Administration:/usr/admin:/bin/sh
3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh
<<<
2 Administration:/usr/admin:/bin/sh
3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh3sysadm:*:0:0:System 3sysadm:*:0:0:System V Administration:/usr/admin:/bin/sh
1 V
>>>
yes
no
Diagnostics:/usr/diags:/bin/csh
4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh
<<<
4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh4diag:*:0:996:Hardware 4diag:*:0:996:Hardware Diagnostics:/usr/diags:/bin/csh
1 Diagnostics:/usr/diags:/bin/csh
>>>
yes
no
5daemon:*:1:1:daemons:/:/bin/sh
5daemon:*:1:1:daemons:/:/bin/sh
<<<
5daemon:*:1:1:daemons:/:/bin/sh5daemon:*:1:1:daemons:/:/bin/sh 5daemon:*:1:1:daemons:/:/bin/sh
1 5daemon:*:1:1:daemons:/:/bin/sh
>>>
yes
no
Tools Owner:/bin:/dev/null
6bin:*:2:2:System Tools Owner:/bin:/dev/null
<<<
2 Owner:/bin:/dev/null
6bin:*:2:2:System Tools Owner:/bin:/dev/null6bin:*:2:2:System 6bin:*:2:2:System Tools Owner:/bin:/dev/null
1 Tools
>>>
yes
no
7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico
7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico
<<<
7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico 7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico
1 7nuucp:BJnuQbAo:6:10:UUCP.Admin:/usr/spool/uucppublic:/usr/lib/uucp/uucico
>>>
yes
no
8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp:
8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp:
<<<
8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp:8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp: 8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp:
1 8uucp:*:3:5:UUCP.Admin:/usr/lib/uucp:
>>>
yes
no
Activity Owner:/usr/adm:/bin/sh
9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh
<<<
2 Owner:/usr/adm:/bin/sh
9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh9sys:*:4:0:System 9sys:*:4:0:System Activity Owner:/usr/adm:/bin/sh
1 Activity
>>>
yes
no
Files Owner:/usr/adm:/bin/sh
10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh
<<<
2 Owner:/usr/adm:/bin/sh
10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh10adm:*:5:3:Accounting 10adm:*:5:3:Accounting Files Owner:/usr/adm:/bin/sh
1 Files
>>>
yes
no
Spooler Owner:/var/spool/lp:/bin/sh
11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh
<<<
2 Owner:/var/spool/lp:/bin/sh
11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh11lp:*:9:9:Print 11lp:*:9:9:Print Spooler Owner:/var/spool/lp:/bin/sh
1 Spooler
>>>
yes
no
Activity Owner:/auditor:/bin/sh
12auditor:*:11:0:Audit Activity Owner:/auditor:/bin/sh
<<<
2 Owner:/auditor:/bin/sh
12auditor:*:11:0:Audit Activity Owner:/auditor:/bin/sh12auditor:*:11:0:Audit 12auditor:*:11:0:Audit Activity Owner:/auditor:/bin/sh
1 Activity
>>>
yes
no
Database Owner:/dbadmin:/bin/sh
13dbadmin:*:12:0:Security Database Owner:/dbadmin:/bin/sh
<<<
2 Owner:/dbadmin:/bin/sh
13dbadmin:*:12:0:Security Database Owner:/dbadmin:/bin/sh13dbadmin:*:12:0:Security 13dbadmin:*:12:0:Security Database Owner:/dbadmin:/bin/sh
1 Database
>>>
yes
no
Killian (DO NOT REMOVE):/tmp:
14bootes:dcon:50:1:Tom Killian (DO NOT REMOVE):/tmp:
<<<
2 (DO
3 NOT
4 REMOVE):/tmp:
14bootes:dcon:50:1:Tom Killian (DO NOT REMOVE):/tmp:14bootes:dcon:50:1:Tom 14bootes:dcon:50:1:Tom Killian (DO NOT REMOVE):/tmp:
1 Killian
>>>
yes
no
Killian (DO NOT REMOVE):/tmp:
15cdjuke:dcon:51:1:Tom Killian (DO NOT REMOVE):/tmp:
<<<
2 (DO
3 NOT
4 REMOVE):/tmp:
15cdjuke:dcon:51:1:Tom Killian (DO NOT REMOVE):/tmp:15cdjuke:dcon:51:1:Tom 15cdjuke:dcon:51:1:Tom Killian (DO NOT REMOVE):/tmp:
1 Killian
>>>
yes
no
Daemon and Fsdump:/var/rfindd:/bin/sh
16rfindd:*:66:1:Rfind Daemon and Fsdump:/var/rfindd:/bin/sh
<<<
2 and
3 Fsdump:/var/rfindd:/bin/sh
16rfindd:*:66:1:Rfind Daemon and Fsdump:/var/rfindd:/bin/sh16rfindd:*:66:1:Rfind 16rfindd:*:66:1:Rfind Daemon and Fsdump:/var/rfindd:/bin/sh
1 Daemon
>>>
yes
no
Setup:/var/sysadmdesktop/EZsetup:/bin/csh
17EZsetup:*:992:998:System Setup:/var/sysadmdesktop/EZsetup:/bin/csh
<<<
17EZsetup:*:992:998:System Setup:/var/sysadmdesktop/EZsetup:/bin/csh17EZsetup:*:992:998:System 17EZsetup:*:992:998:System Setup:/var/sysadmdesktop/EZsetup:/bin/csh
1 Setup:/var/sysadmdesktop/EZsetup:/bin/csh
>>>
yes
no
User:/usr/demos:/bin/csh
18demos:*:993:997:Demonstration User:/usr/demos:/bin/csh
<<<
18demos:*:993:997:Demonstration User:/usr/demos:/bin/csh18demos:*:993:997:Demonstration 18demos:*:993:997:Demonstration User:/usr/demos:/bin/csh
1 User:/usr/demos:/bin/csh
>>>
yes
no
User:/usr/tutor:/bin/csh
19tutor:*:994:997:Tutorial User:/usr/tutor:/bin/csh
<<<
19tutor:*:994:997:Tutorial User:/usr/tutor:/bin/csh19tutor:*:994:997:Tutorial 19tutor:*:994:997:Tutorial User:/usr/tutor:/bin/csh
1 User:/usr/tutor:/bin/csh
>>>
yes
no
Space Tour:/usr/people/tour:/bin/csh
20tour:*:995:997:IRIS Space Tour:/usr/people/tour:/bin/csh
<<<
2 Tour:/usr/people/tour:/bin/csh
20tour:*:995:997:IRIS Space Tour:/usr/people/tour:/bin/csh20tour:*:995:997:IRIS 20tour:*:995:997:IRIS Space Tour:/usr/people/tour:/bin/csh
1 Space
>>>
yes
no
Account:/usr/people/guest:/bin/csh
21guest:nfP4/Wpvio/Rw:998:998:Guest Account:/usr/people/guest:/bin/csh
<<<
21guest:nfP4/Wpvio/Rw:998:998:Guest Account:/usr/people/guest:/bin/csh21guest:nfP4/Wpvio/Rw:998:998:Guest 21guest:nfP4/Wpvio/Rw:998:998:Guest Account:/usr/people/guest:/bin/csh
1 Account:/usr/people/guest:/bin/csh
>>>
yes
no
Account:/usr/people/4Dgifts:/bin/csh
224Dgifts:0nWRTZsOMt.:999:998:4Dgifts Account:/usr/people/4Dgifts:/bin/csh
<<<
224Dgifts:0nWRTZsOMt.:999:998:4Dgifts Account:/usr/people/4Dgifts:/bin/csh224Dgifts:0nWRTZsOMt.:999:998:4Dgifts 224Dgifts:0nWRTZsOMt.:999:998:4Dgifts Account:/usr/people/4Dgifts:/bin/csh
1 Account:/usr/people/4Dgifts:/bin/csh
>>>
yes
no
nobody uid:/dev/null:/dev/null
23nobody:*:60001:60001:SVR4 nobody uid:/dev/null:/dev/null
<<<
2 uid:/dev/null:/dev/null
23nobody:*:60001:60001:SVR4 nobody uid:/dev/null:/dev/null23nobody:*:60001:60001:SVR4 23nobody:*:60001:60001:SVR4 nobody uid:/dev/null:/dev/null
1 nobody
>>>
yes
no
no access:/dev/null:/dev/null
24noaccess:*:60002:60002:uid no access:/dev/null:/dev/null
<<<
2 access:/dev/null:/dev/null
24noaccess:*:60002:60002:uid no access:/dev/null:/dev/null24noaccess:*:60002:60002:uid 24noaccess:*:60002:60002:uid no access:/dev/null:/dev/null
1 no
>>>
yes
no
nobody uid:/dev/null:/dev/null
25nobody:*:-2:-2:original nobody uid:/dev/null:/dev/null
<<<
2 uid:/dev/null:/dev/null
25nobody:*:-2:-2:original nobody uid:/dev/null:/dev/null25nobody:*:-2:-2:original 25nobody:*:-2:-2:original nobody uid:/dev/null:/dev/null
1 nobody
>>>
yes
no
Owner:/usr/spool/rje:
26rje:*:8:8:RJE Owner:/usr/spool/rje:
<<<
26rje:*:8:8:RJE Owner:/usr/spool/rje:26rje:*:8:8:RJE 26rje:*:8:8:RJE Owner:/usr/spool/rje:
1 Owner:/usr/spool/rje:
>>>
yes
no
change log:/:
27changes:*:11:11:system change log:/:
<<<
2 log:/:
27changes:*:11:11:system change log:/:27changes:*:11:11:system 27changes:*:11:11:system change log:/:
1 change
>>>
yes
no
distributions:/v/adm/dist:/v/bin/sh
28dist:sorry:9999:4:file distributions:/v/adm/dist:/v/bin/sh
<<<
28dist:sorry:9999:4:file distributions:/v/adm/dist:/v/bin/sh28dist:sorry:9999:4:file 28dist:sorry:9999:4:file distributions:/v/adm/dist:/v/bin/sh
1 distributions:/v/adm/dist:/v/bin/sh
>>>
yes
no
Manual Owner:/:
29man:*:99:995:On-line Manual Owner:/:
<<<
2 Owner:/:
29man:*:99:995:On-line Manual Owner:/:29man:*:99:995:On-line 29man:*:99:995:On-line Manual Owner:/:
1 Manual
>>>
yes
no
call log [tom]:/v/adm/log:/v/bin/sh
30phoneca:*:991:991:phone call log [tom]:/v/adm/log:/v/bin/sh
<<<
2 log
3 [tom]:/v/adm/log:/v/bin/sh
30phoneca:*:991:991:phone call log [tom]:/v/adm/log:/v/bin/sh30phoneca:*:991:991:phone 30phoneca:*:991:991:phone call log [tom]:/v/adm/log:/v/bin/sh
1 call
>>>
yes
no
oot EMpNB8Zp56 0 0 Super-User,,,,,,, / /bin/sh
1r oot EMpNB8Zp56 0 0 Super-User,,,,,,, / /bin/sh
<<<
2 EMpNB8Zp56
3 0
4 0
5 Super-User,,,,,,,
6 /
7 /bin/sh
1r oot EMpNB8Zp56 0 0 Super-User,,,,,,, / /bin/sh1r 1r oot EMpNB8Zp56 0 0 Super-User,,,,,,, / /bin/sh
1 oot
>>>
yes
no
oottcsh * 0 0 Super-User running tcsh [cbm] / /bin/tcsh
2r oottcsh * 0 0 Super-User running tcsh [cbm] / /bin/tcsh
<<<
2 *
3 0
4 0
5 Super-User
6 running
7 tcsh
8 [cbm]
9 /
2r oottcsh * 0 0 Super-User running tcsh [cbm] / /bin/tcsh2r 2r oottcsh * 0 0 Super-User running tcsh [cbm] / /bin/tcsh
10 /bin/tcsh
1 oottcsh
>>>
yes
no
ysadm * 0 0 System V Administration /usr/admin /bin/sh
3s ysadm * 0 0 System V Administration /usr/admin /bin/sh
<<<
2 *
3 0
4 0
5 System
6 V
7 Administration
8 /usr/admin
9 /bin/sh
3s ysadm * 0 0 System V Administration /usr/admin /bin/sh3s 3s ysadm * 0 0 System V Administration /usr/admin /bin/sh
1 ysadm
>>>
yes
no
iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh
4d iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh
<<<
2 *
3 0
4 996
5 Hardware
6 Diagnostics
7 /usr/diags
8 /bin/csh
4d iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh4d 4d iag * 0 996 Hardware Diagnostics /usr/diags /bin/csh
1 iag
>>>
yes
no
aemon * 1 1 daemons / /bin/sh
5d aemon * 1 1 daemons / /bin/sh
<<<
2 *
3 1
4 1
5 daemons
6 /
7 /bin/sh
5d aemon * 1 1 daemons / /bin/sh5d 5d aemon * 1 1 daemons / /bin/sh
1 aemon
>>>
yes
no
in * 2 2 System Tools Owner /bin /dev/null
6b in * 2 2 System Tools Owner /bin /dev/null
<<<
2 *
3 2
4 2
5 System
6b in * 2 2 System Tools Owner /bin /dev/null6b 6b in * 2 2 System Tools Owner /bin /dev/null
6 Tools
7 Owner
8 /bin
9 /dev/null
1 in
>>>
yes
no
uucp BJnuQbAo 6 10 UUCP.Admin /usr/spool/uucppublic /usr/lib/uucp/uucico
7n uucp BJnuQbAo 6 10 UUCP.Admin /usr/spool/uucppublic /usr/lib/uucp/uucico
<<<
2 BJnuQbAo
3 6
4 10
5 UUCP.Admin
6 /usr/spool/uucppublic
7 /usr/lib/uucp/uucico
7n uucp BJnuQbAo 6 10 UUCP.Admin /usr/spool/uucppublic /usr/lib/uucp/uucico7n 7n uucp BJnuQbAo 6 10 UUCP.Admin /usr/spool/uucppublic /usr/lib/uucp/uucico
1 uucp
>>>
yes
no
ucp * 3 5 UUCP.Admin /usr/lib/uucp
8u ucp * 3 5 UUCP.Admin /usr/lib/uucp
<<<
2 *
3 3
4 5
5 UUCP.Admin
6 /usr/lib/uucp
8u ucp * 3 5 UUCP.Admin /usr/lib/uucp 8u 8u ucp * 3 5 UUCP.Admin /usr/lib/uucp
1 ucp
>>>
yes
no
ys * 4 0 System Activity Owner /usr/adm /bin/sh
9s ys * 4 0 System Activity Owner /usr/adm /bin/sh
<<<
2 *
3 4
4 0
5 System
6 Activity
7 Owner
8 /usr/adm
9 /bin/sh
9s ys * 4 0 System Activity Owner /usr/adm /bin/sh9s 9s ys * 4 0 System Activity Owner /usr/adm /bin/sh
1 ys
>>>
yes
no
adm * 5 3 Accounting Files Owner /usr/adm /bin/sh
10 adm * 5 3 Accounting Files Owner /usr/adm /bin/sh
<<<
2 *
3 5
4 3
5 Accounting
6 Files
7 Owner
8 /usr/adm
9 /bin/sh
10 adm * 5 3 Accounting Files Owner /usr/adm /bin/sh10 10 adm * 5 3 Accounting Files Owner /usr/adm /bin/sh
1 adm
>>>
yes
no
lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh
11 lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh
<<<
2 *
3 9
4 9
5 Print
6 Spooler
7 Owner
8 /var/spool/lp
9 /bin/sh
11 lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh11 11 lp * 9 9 Print Spooler Owner /var/spool/lp /bin/sh
1 lp
>>>
yes
no
auditor * 11 0 Audit Activity Owner /auditor /bin/sh
12 auditor * 11 0 Audit Activity Owner /auditor /bin/sh
<<<
2 *
3 11
4 0
5 Audit
6 Activity
7 Owner
8 /auditor
9 /bin/sh
12 auditor * 11 0 Audit Activity Owner /auditor /bin/sh12 12 auditor * 11 0 Audit Activity Owner /auditor /bin/sh
1 auditor
>>>
yes
no
dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh
13 dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh
<<<
2 *
3 12
4 0
5 Security
6 Database
7 Owner
8 /dbadmin
9 /bin/sh
13 dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh13 13 dbadmin * 12 0 Security Database Owner /dbadmin /bin/sh
1 dbadmin
>>>
yes
no
bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp
14 bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp
<<<
2 dcon
3 50
4 1
5 Tom
6 Killian
7 (DO
8 NOT
9 REMOVE)
14 bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp 14 14 bootes dcon 50 1 Tom Killian (DO NOT REMOVE) /tmp
10 /tmp
1 bootes
>>>
yes
no
cdjuke dcon 51 1 Tom Killian (DO NOT REMOVE) /tmp
15 cdjuke dcon 51 1 Tom Killian (DO NOT REMOVE) /tmp
<<<
2 dcon
3 51
4 1
5 Tom
6 Killian
7 (DO
8 NOT
9 REMOVE)
10 /tmp
15 cdjuke dcon 51 1 Tom Killian (DO NOT REMOVE) /tmp 15 15 cdjuke dcon 51 1 Tom Killian (DO NOT REMOVE) /tmp
1 cdjuke
>>>
yes
no
rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh
16 rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh
<<<
2 *
3 66
4 1
5 Rfind
6 Daemon
7 and
8 Fsdump
9 /var/rfindd
10 /bin/sh
16 rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh16 16 rfindd * 66 1 Rfind Daemon and Fsdump /var/rfindd /bin/sh
1 rfindd
>>>
yes
no
EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh
17 EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh
<<<
17 EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh17 17 EZsetup * 992 998 System Setup /var/sysadmdesktop/EZsetup /bin/csh
2 *
3 992
4 998
5 System
6 Setup
7 /var/sysadmdesktop/EZsetup
8 /bin/csh
1 EZsetup
>>>
yes
no
demos * 993 997 Demonstration User /usr/demos /bin/csh
18 demos * 993 997 Demonstration User /usr/demos /bin/csh
<<<
2 *
3 993
4 997
5 Demonstration
6 User
7 /usr/demos
8 /bin/csh
18 demos * 993 997 Demonstration User /usr/demos /bin/csh18 18 demos * 993 997 Demonstration User /usr/demos /bin/csh
1 demos
>>>
yes
no
tutor * 994 997 Tutorial User /usr/tutor /bin/csh
19 tutor * 994 997 Tutorial User /usr/tutor /bin/csh
<<<
2 *
3 994
4 997
5 Tutorial
6 User
7 /usr/tutor
8 /bin/csh
19 tutor * 994 997 Tutorial User /usr/tutor /bin/csh19 19 tutor * 994 997 Tutorial User /usr/tutor /bin/csh
1 tutor
>>>
yes
no
tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh
20 tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh
<<<
2 *
3 995
4 997
5 IRIS
6 Space
7 Tour
8 /usr/people/tour
9 /bin/csh
20 tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh20 20 tour * 995 997 IRIS Space Tour /usr/people/tour /bin/csh
1 tour
>>>
yes
no
guest nfP4/Wpvio/Rw 998 998 Guest Account /usr/people/guest /bin/csh
21 guest nfP4/Wpvio/Rw 998 998 Guest Account /usr/people/guest /bin/csh
<<<
21 guest nfP4/Wpvio/Rw 998 998 Guest Account /usr/people/guest /bin/csh21 21 guest nfP4/Wpvio/Rw 998 998 Guest Account /usr/people/guest /bin/csh
2 nfP4/Wpvio/Rw
3 998
4 998
5 Guest
6 Account
7 /usr/people/guest
8 /bin/csh
1 guest
>>>
yes
no
4Dgifts 0nWRTZsOMt. 999 998 4Dgifts Account /usr/people/4Dgifts /bin/csh
22 4Dgifts 0nWRTZsOMt. 999 998 4Dgifts Account /usr/people/4Dgifts /bin/csh
<<<
2 0nWRTZsOMt.
3 999
4 998
5 4Dgifts
6 Account
7 /usr/people/4Dgifts
8 /bin/csh
22 4Dgifts 0nWRTZsOMt. 999 998 4Dgifts Account /usr/people/4Dgifts /bin/csh22 22 4Dgifts 0nWRTZsOMt. 999 998 4Dgifts Account /usr/people/4Dgifts /bin/csh
1 4Dgifts
>>>
yes
no
nobody * 60001 60001 SVR4 nobody uid /dev/null /dev/null
23 nobody * 60001 60001 SVR4 nobody uid /dev/null /dev/null
<<<
2 *
3 60001
4 60001
5 SVR4
6 nobody
7 uid
8 /dev/null
9 /dev/null
23 nobody * 60001 60001 SVR4 nobody uid /dev/null /dev/null23 23 nobody * 60001 60001 SVR4 nobody uid /dev/null /dev/null
1 nobody
>>>
yes
no
noaccess * 60002 60002 uid no access /dev/null /dev/null
24 noaccess * 60002 60002 uid no access /dev/null /dev/null
<<<
2 *
3 60002
4 60002
5 uid
6 no
7 access
8 /dev/null
9 /dev/null
24 noaccess * 60002 60002 uid no access /dev/null /dev/null24 24 noaccess * 60002 60002 uid no access /dev/null /dev/null
1 noaccess
>>>
yes
no
nobody * -2 -2 original nobody uid /dev/null /dev/null
25 nobody * -2 -2 original nobody uid /dev/null /dev/null
<<<
2 *
3 -2
4 -2
5 original
6 nobody
7 uid
8 /dev/null
9 /dev/null
25 nobody * -2 -2 original nobody uid /dev/null /dev/null25 25 nobody * -2 -2 original nobody uid /dev/null /dev/null
1 nobody
>>>
yes
no
rje * 8 8 RJE Owner /usr/spool/rje
26 rje * 8 8 RJE Owner /usr/spool/rje
<<<
2 *
3 8
4 8
5 RJE
6 Owner
7 /usr/spool/rje
26 rje * 8 8 RJE Owner /usr/spool/rje 26 26 rje * 8 8 RJE Owner /usr/spool/rje
1 rje
>>>
yes
no
changes * 11 11 system change log /
27 changes * 11 11 system change log /
<<<
2 *
3 11
4 11
5 system
6 change
7 log
8 /
27 changes * 11 11 system change log / 27 27 changes * 11 11 system change log /
1 changes
>>>
yes
no
dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh
28 dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh
<<<
2 sorry
3 9999
4 4
5 file
6 distributions
7 /v/adm/dist
8 /v/bin/sh
28 dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh28 28 dist sorry 9999 4 file distributions /v/adm/dist /v/bin/sh
1 dist
>>>
yes
no
man * 99 995 On-line Manual Owner /
29 man * 99 995 On-line Manual Owner /
<<<
2 *
3 99
4 995
5 On-line
6 Manual
7 Owner
8 /
29 man * 99 995 On-line Manual Owner / 29 29 man * 99 995 On-line Manual Owner /
1 man
>>>
yes
no
phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh
30 phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh
<<<
2 *
3 991
4 991
5 phone
6 call
7 log
8 [tom]
9 /v/adm/log
10 /v/bin/sh
30 phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh30 30 phoneca * 991 991 phone call log [tom] /v/adm/log /v/bin/sh
1 phoneca
>>>
yes
no
|