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 | strace scanimage --test
execve("/usr/bin/scanimage", ["scanimage", "--test"], [/* 88 vars */]) = 0
brk(NULL) = 0x560533292000
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb780d44000
access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=228770, ...}) = 0
mmap(NULL, 228770, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fb780d0c000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/usr/lib64/sane/libsane.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\200b\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=112832, ...}) = 0
mmap(NULL, 1160680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fb780bf0000
mprotect(0x7fb780c0a000, 1048576, PROT_NONE) = 0
mmap(0x7fb780d0a000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1a000) = 0x7fb780d0a000
mmap(0x7fb780d0b000, 1512, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb780d0b000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0P\t\2\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=1864888, ...}) = 0
mmap(NULL, 3967488, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fb780758000
mprotect(0x7fb780918000, 2093056, PROT_NONE) = 0
mmap(0x7fb780b17000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1bf000) = 0x7fb780b17000
mmap(0x7fb780b1d000, 14848, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb780b1d000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libpthread.so.0", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360`\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0755, st_size=138744, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb780bef000
mmap(NULL, 2212904, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fb78053b000
mprotect(0x7fb780553000, 2093056, PROT_NONE) = 0
mmap(0x7fb780752000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x17000) = 0x7fb780752000
mmap(0x7fb780754000, 13352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb780754000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libnsl.so.1", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360?\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=93128, ...}) = 0
mmap(NULL, 2198104, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fb780322000
mprotect(0x7fb780338000, 2093056, PROT_NONE) = 0
mmap(0x7fb780537000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fb780537000
mmap(0x7fb780539000, 6744, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb780539000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libusb-0.1.so.4", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\27\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=30944, ...}) = 0
mmap(NULL, 2131272, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fb780119000
mprotect(0x7fb780120000, 2093056, PROT_NONE) = 0
mmap(0x7fb78031f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x6000) = 0x7fb78031f000
mmap(0x7fb780321000, 1352, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fb780321000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0V\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=1088952, ...}) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb780bee000
mmap(NULL, 3178744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fb77fe10000
mprotect(0x7fb77ff18000, 2093056, PROT_NONE) = 0
mmap(0x7fb780117000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x107000) = 0x7fb780117000
close(3) = 0
access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory)
open("/lib/x86_64-linux-gnu/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\r\0\0\0\0\0\0"..., 832) = 832
fstat(3, {st_mode=S_IFREG|0644, st_size=14608, ...}) = 0
mmap(NULL, 2109680, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fb77fc0c000
mprotect(0x7fb77fc0f000, 2093056, PROT_NONE) = 0
mmap(0x7fb77fe0e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fb77fe0e000
close(3) = 0
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb780bed000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb780bec000
mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fb780beb000
arch_prctl(ARCH_SET_FS, 0x7fb780bec700) = 0
mprotect(0x7fb780b17000, 16384, PROT_READ) = 0
mprotect(0x7fb77fe0e000, 4096, PROT_READ) = 0
mprotect(0x7fb780117000, 4096, PROT_READ) = 0
mprotect(0x7fb78031f000, 4096, PROT_READ) = 0
mprotect(0x7fb780537000, 4096, PROT_READ) = 0
mprotect(0x7fb780752000, 4096, PROT_READ) = 0
mprotect(0x560532ecf000, 4096, PROT_READ) = 0
mprotect(0x7fb780d46000, 4096, PROT_READ) = 0
munmap(0x7fb780d0c000, 228770) = 0
set_tid_address(0x7fb780bec9d0) = 15733
set_robust_list(0x7fb780bec9e0, 24) = 0
rt_sigaction(SIGRTMIN, {0x7fb780540b90, [], SA_RESTORER|SA_SIGINFO, 0x7fb78054c3d0}, NULL, 8) = 0
rt_sigaction(SIGRT_1, {0x7fb780540c20, [], SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x7fb78054c3d0}, NULL, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [RTMIN RT_1], NULL, 8) = 0
getrlimit(RLIMIT_STACK, {rlim_cur=8192*1024, rlim_max=RLIM64_INFINITY}) = 0
open("/dev/bus/usb", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=100, ...}) = 0
brk(NULL) = 0x560533292000
brk(0x5605332bb000) = 0x5605332bb000
getdents(3, /* 5 entries */, 32768) = 120
brk(0x5605332b3000) = 0x5605332b3000
close(3) = 0
open("/dev/bus/usb", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=100, ...}) = 0
getdents(3, /* 5 entries */, 32768) = 120
getdents(3, /* 0 entries */, 32768) = 0
close(3) = 0
open("/dev/bus/usb/003", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=60, ...}) = 0
getdents(3, /* 3 entries */, 32768) = 72
open("/dev/bus/usb/003/001", O_RDWR) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = 0
read(4, "\22\1\0\3\t\0\3\tk\35\3\0\7\4\3\2\1\1", 18) = 18
read(4, "\t\2\37\0\1\1\0\340", 8) = 8
read(4, "\0\t\4\0\0\1\t\0\0\0\7\5\201\3\4\0\f\0060\0\0\2\0", 23) = 23
close(4) = 0
getdents(3, /* 0 entries */, 32768) = 0
close(3) = 0
open("/dev/bus/usb/003/001", O_RDWR) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = 5
close(3) = 0
open("/dev/bus/usb/002", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=140, ...}) = 0
getdents(3, /* 7 entries */, 32768) = 168
open("/dev/bus/usb/002/007", O_RDWR) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = 0
read(4, "\22\1\0\1\0\0\0\10\371\4\223\1\0\1\0\0\3\1", 18) = 18
read(4, "\t\2U\0\3\1\0\300", 8) = 8
read(4, "\1\t\4\0\0\2\7\1\2\0\7\5\1\2@\0\0\7\5\202\2\20\0\0\t\4\1\0\3\377\377\377"..., 77) = 77
close(4) = 0
open("/dev/bus/usb/002/005", O_RDWR) = -1 EACCES (Permission denied)
open("/dev/bus/usb/002/005", O_RDONLY) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = -1 EPERM (Operation not permitted)
read(4, "\22\1\0\2\357\2\1@\362\4F\264\10'\1\2\0\1", 18) = 18
read(4, "\t\2m\3\2\1\0\200", 8) = 8
read(4, "\372\10\v\0\2\16\3\0\2\t\4\0\0\1\16\1\0\2\r$\1\0\1m\0\0l\334\2\1\1\22"..., 869) = 869
close(4) = 0
open("/dev/bus/usb/002/004", O_RDWR) = -1 EACCES (Permission denied)
open("/dev/bus/usb/002/004", O_RDONLY) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = -1 EPERM (Operation not permitted)
read(4, "\22\1\0\2\340\1\1@\207\200\334\7\1\0\0\0\0\1", 18) = 18
read(4, "\t\2\261\0\2\1\0\340", 8) = 8
read(4, "2\t\4\0\0\3\340\1\1\0\7\5\201\3@\0\1\7\5\2\2@\0\1\7\5\202\2@\0\1\t"..., 169) = 169
close(4) = 0
open("/dev/bus/usb/002/002", O_RDWR) = -1 EACCES (Permission denied)
open("/dev/bus/usb/002/002", O_RDONLY) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = -1 EPERM (Operation not permitted)
read(4, "\22\1\20\1\0\0\0\10\363\4\243\0#\20\0\2\0\1", 18) = 18
read(4, "\t\2\"\0\1\1\0\240", 8) = 8
read(4, "2\t\4\0\0\1\3\1\2\0\t!\20\1\0\1\"6\0\7\5\201\3\10\0\n", 26) = 26
close(4) = 0
open("/dev/bus/usb/002/001", O_RDWR) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = 0
read(4, "\22\1\0\2\t\0\1@k\35\2\0\7\4\3\2\1\1", 18) = 18
read(4, "\t\2\31\0\1\1\0\340", 8) = 8
read(4, "\0\t\4\0\0\1\t\0\0\0\7\5\201\3\4\0\f", 17) = 17
close(4) = 0
getdents(3, /* 0 entries */, 32768) = 0
close(3) = 0
open("/dev/bus/usb/002/007", O_RDWR) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = -1 ENOTTY (Inappropriate ioctl for device)
close(3) = 0
open("/dev/bus/usb/002/005", O_RDWR) = -1 EACCES (Permission denied)
open("/dev/bus/usb/002/005", O_RDONLY) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = -1 EPERM (Operation not permitted)
close(3) = 0
open("/dev/bus/usb/002/004", O_RDWR) = -1 EACCES (Permission denied)
open("/dev/bus/usb/002/004", O_RDONLY) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = -1 EPERM (Operation not permitted)
close(3) = 0
open("/dev/bus/usb/002/002", O_RDWR) = -1 EACCES (Permission denied)
open("/dev/bus/usb/002/002", O_RDONLY) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = -1 EPERM (Operation not permitted)
close(3) = 0
open("/dev/bus/usb/002/001", O_RDWR) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = 12
close(3) = 0
open("/dev/bus/usb/001", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=80, ...}) = 0
getdents(3, /* 4 entries */, 32768) = 96
open("/dev/bus/usb/001/002", O_RDWR) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = 0
read(4, "\22\1\0\2\t\0\1@\207\200\1\200\3\0\0\0\0\1", 18) = 18
read(4, "\t\2\31\0\1\1\0\340", 8) = 8
read(4, "\0\t\4\0\0\1\t\0\0\0\7\5\201\3\2\0\f", 17) = 17
close(4) = 0
open("/dev/bus/usb/001/001", O_RDWR) = 4
ioctl(4, USBDEVFS_CONNECTINFO, 0x7fff9ebfd2f0) = 0
read(4, "\22\1\0\2\t\0\0@k\35\2\0\7\4\3\2\1\1", 18) = 18
read(4, "\t\2\31\0\1\1\0\340", 8) = 8
read(4, "\0\t\4\0\0\1\t\0\0\0\7\5\201\3\4\0\f", 17) = 17
close(4) = 0
getdents(3, /* 0 entries */, 32768) = 0
close(3) = 0
open("/dev/bus/usb/001/002", O_RDWR) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = 9
close(3) = 0
open("/dev/bus/usb/001/001", O_RDWR) = 3
ioctl(3, USBDEVFS_IOCTL, 0x7fff9ebfeae0) = 3
close(3) = 0
open("/usr/local/Brother/sane/models2", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 3
fstat(3, {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
getdents(3, /* 4 entries */, 32768) = 112
open("/usr/local/Brother/sane/models2/ext1.ini", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=722, ...}) = 0
read(4, "[Support Model]\n0x01c9, 16,2,\"D"..., 4096) = 722
read(4, "", 4096) = 0
close(4) = 0
open("/usr/local/Brother/sane/models2/ext2.ini", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=98, ...}) = 0
read(4, "[Support Model]\n0x020d ,16,1,\"MF"..., 4096) = 98
read(4, "", 4096) = 0
close(4) = 0
getdents(3, /* 0 entries */, 32768) = 0
close(3) = 0
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(3, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
close(3) = 0
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 3
fstat(3, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(3, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 4
fstat(4, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(4, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 5
fstat(5, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(5, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 6
fstat(6, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(6, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 7
fstat(7, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(7, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 8
fstat(8, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(8, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 9
fstat(9, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(9, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 10
fstat(10, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(10, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 11
fstat(11, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(11, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 12
fstat(12, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
brk(0x5605332d4000) = 0x5605332d4000
read(12, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 13
fstat(13, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(13, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 14
fstat(14, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(14, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 15
fstat(15, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(15, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 16
fstat(16, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(16, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 17
fstat(17, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(17, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 18
fstat(18, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(18, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 19
fstat(19, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(19, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 20
fstat(20, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(20, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 21
fstat(21, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(21, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 22
fstat(22, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(22, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 23
fstat(23, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(23, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 24
fstat(24, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(24, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 25
fstat(25, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(25, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 26
fstat(26, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(26, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 27
fstat(27, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(27, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 28
fstat(28, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(28, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 29
fstat(29, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(29, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 30
fstat(30, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(30, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 31
fstat(31, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(31, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 32
fstat(32, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(32, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 33
fstat(33, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(33, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 34
fstat(34, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(34, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 35
fstat(35, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(35, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 36
fstat(36, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(36, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 37
fstat(37, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(37, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 38
fstat(38, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(38, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 39
fstat(39, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(39, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 40
fstat(40, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
brk(0x5605332f5000) = 0x5605332f5000
read(40, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 41
fstat(41, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(41, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 42
fstat(42, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(42, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 43
fstat(43, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(43, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 44
fstat(44, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(44, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 45
fstat(45, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(45, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 46
fstat(46, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(46, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 47
fstat(47, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(47, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 48
fstat(48, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(48, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 49
fstat(49, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(49, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 50
fstat(50, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(50, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 51
fstat(51, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(51, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 52
fstat(52, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(52, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 53
fstat(53, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(53, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 54
fstat(54, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(54, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 55
fstat(55, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(55, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 56
fstat(56, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(56, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 57
fstat(57, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(57, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 58
fstat(58, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(58, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 59
fstat(59, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(59, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 60
fstat(60, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(60, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 61
fstat(61, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(61, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 62
fstat(62, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(62, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 63
fstat(63, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(63, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 64
fstat(64, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(64, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 65
fstat(65, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(65, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 66
fstat(66, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(66, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 67
fstat(67, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(67, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 68
fstat(68, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(68, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 69
fstat(69, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
brk(0x560533316000) = 0x560533316000
read(69, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 70
fstat(70, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(70, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 71
fstat(71, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(71, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 72
fstat(72, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(72, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 73
fstat(73, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(73, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 74
fstat(74, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(74, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 75
fstat(75, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(75, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 76
fstat(76, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(76, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 77
fstat(77, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(77, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 78
fstat(78, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(78, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 79
fstat(79, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(79, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 80
fstat(80, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(80, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 81
fstat(81, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(81, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 82
fstat(82, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(82, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 83
fstat(83, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(83, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 84
fstat(84, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(84, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 85
fstat(85, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(85, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 86
fstat(86, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(86, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 87
fstat(87, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(87, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 88
fstat(88, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(88, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 89
fstat(89, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(89, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 90
fstat(90, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(90, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 91
fstat(91, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(91, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 92
fstat(92, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(92, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 93
fstat(93, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(93, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 94
fstat(94, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(94, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 95
fstat(95, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(95, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 96
fstat(96, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(96, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 97
fstat(97, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
brk(0x560533337000) = 0x560533337000
read(97, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 98
fstat(98, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(98, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 99
fstat(99, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(99, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 100
fstat(100, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(100, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 101
fstat(101, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(101, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 102
fstat(102, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(102, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 103
fstat(103, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(103, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 104
fstat(104, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(104, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 105
fstat(105, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(105, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 106
fstat(106, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(106, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 107
fstat(107, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(107, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 108
fstat(108, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(108, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 109
fstat(109, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(109, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 110
fstat(110, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(110, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 111
fstat(111, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(111, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 112
fstat(112, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(112, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 113
fstat(113, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(113, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 114
fstat(114, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(114, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 115
fstat(115, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(115, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 116
fstat(116, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(116, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 117
fstat(117, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(117, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 118
fstat(118, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(118, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 119
fstat(119, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(119, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 120
fstat(120, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(120, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 121
fstat(121, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(121, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 122
fstat(122, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(122, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 123
fstat(123, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(123, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 124
fstat(124, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(124, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 125
fstat(125, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(125, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 126
fstat(126, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
brk(0x560533358000) = 0x560533358000
read(126, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 127
fstat(127, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(127, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 128
fstat(128, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(128, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 129
fstat(129, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(129, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 130
fstat(130, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(130, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 131
fstat(131, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(131, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 132
fstat(132, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(132, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 133
fstat(133, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(133, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 134
fstat(134, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(134, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 135
fstat(135, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(135, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 136
fstat(136, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(136, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 137
fstat(137, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(137, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 138
fstat(138, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(138, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 139
fstat(139, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(139, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 140
fstat(140, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(140, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 141
fstat(141, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(141, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 142
fstat(142, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(142, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 143
fstat(143, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(143, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 144
fstat(144, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(144, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 145
fstat(145, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(145, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 146
fstat(146, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(146, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 147
fstat(147, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(147, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 148
fstat(148, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(148, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 149
fstat(149, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(149, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 150
fstat(150, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(150, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 151
fstat(151, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(151, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 152
fstat(152, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(152, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 153
fstat(153, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(153, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 154
fstat(154, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
brk(0x560533379000) = 0x560533379000
read(154, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 155
fstat(155, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(155, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 156
fstat(156, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(156, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 157
fstat(157, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(157, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 158
fstat(158, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(158, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 159
fstat(159, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(159, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 160
fstat(160, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(160, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 161
fstat(161, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(161, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 162
fstat(162, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(162, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 163
fstat(163, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(163, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 164
fstat(164, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(164, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 165
fstat(165, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(165, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 166
fstat(166, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(166, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 167
fstat(167, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(167, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 168
fstat(168, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(168, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 169
fstat(169, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(169, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 170
fstat(170, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(170, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 171
fstat(171, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(171, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 172
fstat(172, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(172, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 173
fstat(173, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(173, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 174
fstat(174, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(174, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 175
fstat(175, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(175, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 176
fstat(176, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(176, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 177
fstat(177, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(177, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 178
fstat(178, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(178, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 179
fstat(179, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(179, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/Brsane2.ini", O_RDONLY) = 180
fstat(180, {st_mode=S_IFREG|0644, st_size=1536, ...}) = 0
read(180, "[Support Model]\n0x0161,10,1,\"MFC"..., 4096) = 1536
open("/usr/local/Brother/sane/brsanenetdevice2.cfg", O_RDONLY) = 181
fstat(181, {st_mode=S_IFREG|0666, st_size=1, ...}) = 0
read(181, "\n", 4096) = 1
read(181, "", 4096) = 0
close(181) = 0
open("/dev/bus/usb/002/007", O_RDWR) = 181
ioctl(181, USBDEVFS_SETCONFIGURATION, 0x7fff9ebff47c) = -1 EBUSY (Device or resource busy)
ioctl(181, USBDEVFS_CLEAR_HALT, 0x7fff9ebff47c) = 0
open("/usr/local/Brother/sane//BrMfc32.log", O_WRONLY|O_CREAT|O_TRUNC, 0666) = -1 EACCES (Permission denied)
open("/usr/local/Brother/sane//BrMfc32.log", O_WRONLY|O_CREAT|O_TRUNC, 0666) = -1 EACCES (Permission denied)
open("/usr/bin/brscan-skey", O_RDONLY) = -1 ENOENT (No such file or directory)
semget(0xffffffff, 1, IPC_CREAT|IPC_EXCL|0666) = -1 EEXIST (File exists)
semget(0xffffffff, 1, IPC_CREAT|0666) = 65536
semop(65536, [{0, -1, SEM_UNDO}], 1) = 0
ioctl(181, USBDEVFS_CLAIMINTERFACE, 0x7fff9ebff3dc) = 0
ioctl(181, USBDEVFS_CONTROL, 0x7fff9ebff3c0) = 5
write(2, "scanimage: open of device bus2;d"..., 61scanimage: open of device bus2;dev1 failed: Invalid argument
) = 61
lseek(180, -86, SEEK_CUR) = 1450
lseek(179, -86, SEEK_CUR) = 1450
lseek(178, -72, SEEK_CUR) = 1464
lseek(177, -72, SEEK_CUR) = 1464
lseek(176, -86, SEEK_CUR) = 1450
lseek(175, -86, SEEK_CUR) = 1450
lseek(174, -86, SEEK_CUR) = 1450
lseek(173, -86, SEEK_CUR) = 1450
lseek(172, -86, SEEK_CUR) = 1450
lseek(171, -86, SEEK_CUR) = 1450
lseek(170, -86, SEEK_CUR) = 1450
lseek(169, -86, SEEK_CUR) = 1450
lseek(168, -86, SEEK_CUR) = 1450
lseek(167, -86, SEEK_CUR) = 1450
lseek(166, -86, SEEK_CUR) = 1450
lseek(165, -86, SEEK_CUR) = 1450
lseek(164, -86, SEEK_CUR) = 1450
lseek(163, -86, SEEK_CUR) = 1450
lseek(162, -86, SEEK_CUR) = 1450
lseek(161, -86, SEEK_CUR) = 1450
lseek(160, -86, SEEK_CUR) = 1450
lseek(159, -86, SEEK_CUR) = 1450
lseek(158, -86, SEEK_CUR) = 1450
lseek(157, -86, SEEK_CUR) = 1450
lseek(156, -72, SEEK_CUR) = 1464
lseek(155, -72, SEEK_CUR) = 1464
lseek(154, -86, SEEK_CUR) = 1450
lseek(153, -86, SEEK_CUR) = 1450
lseek(152, -72, SEEK_CUR) = 1464
lseek(151, -72, SEEK_CUR) = 1464
lseek(150, -72, SEEK_CUR) = 1464
lseek(149, -72, SEEK_CUR) = 1464
lseek(148, -72, SEEK_CUR) = 1464
lseek(147, -72, SEEK_CUR) = 1464
lseek(146, -86, SEEK_CUR) = 1450
lseek(145, -86, SEEK_CUR) = 1450
lseek(144, -86, SEEK_CUR) = 1450
lseek(143, -86, SEEK_CUR) = 1450
lseek(142, -86, SEEK_CUR) = 1450
lseek(141, -86, SEEK_CUR) = 1450
lseek(140, -86, SEEK_CUR) = 1450
lseek(139, -86, SEEK_CUR) = 1450
lseek(138, -86, SEEK_CUR) = 1450
lseek(137, -86, SEEK_CUR) = 1450
lseek(136, -86, SEEK_CUR) = 1450
lseek(135, -86, SEEK_CUR) = 1450
lseek(134, -86, SEEK_CUR) = 1450
lseek(133, -86, SEEK_CUR) = 1450
lseek(132, -86, SEEK_CUR) = 1450
lseek(131, -86, SEEK_CUR) = 1450
lseek(130, -72, SEEK_CUR) = 1464
lseek(129, -72, SEEK_CUR) = 1464
lseek(128, -72, SEEK_CUR) = 1464
lseek(127, -72, SEEK_CUR) = 1464
lseek(126, -72, SEEK_CUR) = 1464
lseek(125, -72, SEEK_CUR) = 1464
lseek(124, -72, SEEK_CUR) = 1464
lseek(123, -72, SEEK_CUR) = 1464
lseek(122, -72, SEEK_CUR) = 1464
lseek(121, -72, SEEK_CUR) = 1464
lseek(120, -72, SEEK_CUR) = 1464
lseek(119, -72, SEEK_CUR) = 1464
lseek(118, -72, SEEK_CUR) = 1464
lseek(117, -72, SEEK_CUR) = 1464
lseek(116, -86, SEEK_CUR) = 1450
lseek(115, -86, SEEK_CUR) = 1450
lseek(114, -86, SEEK_CUR) = 1450
lseek(113, -86, SEEK_CUR) = 1450
lseek(112, -86, SEEK_CUR) = 1450
lseek(111, -86, SEEK_CUR) = 1450
lseek(110, -86, SEEK_CUR) = 1450
lseek(109, -86, SEEK_CUR) = 1450
lseek(108, -72, SEEK_CUR) = 1464
lseek(107, -72, SEEK_CUR) = 1464
lseek(106, -72, SEEK_CUR) = 1464
lseek(105, -72, SEEK_CUR) = 1464
lseek(104, -86, SEEK_CUR) = 1450
lseek(103, -86, SEEK_CUR) = 1450
lseek(102, -86, SEEK_CUR) = 1450
lseek(101, -86, SEEK_CUR) = 1450
lseek(100, -86, SEEK_CUR) = 1450
lseek(99, -86, SEEK_CUR) = 1450
lseek(98, -72, SEEK_CUR) = 1464
lseek(97, -72, SEEK_CUR) = 1464
lseek(96, -72, SEEK_CUR) = 1464
lseek(95, -72, SEEK_CUR) = 1464
lseek(94, -72, SEEK_CUR) = 1464
lseek(93, -72, SEEK_CUR) = 1464
lseek(92, -86, SEEK_CUR) = 1450
lseek(91, -86, SEEK_CUR) = 1450
lseek(90, -86, SEEK_CUR) = 1450
lseek(89, -86, SEEK_CUR) = 1450
lseek(88, -86, SEEK_CUR) = 1450
lseek(87, -86, SEEK_CUR) = 1450
lseek(86, -86, SEEK_CUR) = 1450
lseek(85, -86, SEEK_CUR) = 1450
lseek(84, -86, SEEK_CUR) = 1450
lseek(83, -86, SEEK_CUR) = 1450
lseek(82, -86, SEEK_CUR) = 1450
lseek(81, -86, SEEK_CUR) = 1450
lseek(80, -72, SEEK_CUR) = 1464
lseek(79, -72, SEEK_CUR) = 1464
lseek(78, -72, SEEK_CUR) = 1464
lseek(77, -72, SEEK_CUR) = 1464
lseek(76, -86, SEEK_CUR) = 1450
lseek(75, -86, SEEK_CUR) = 1450
lseek(74, -86, SEEK_CUR) = 1450
lseek(73, -86, SEEK_CUR) = 1450
lseek(72, -86, SEEK_CUR) = 1450
lseek(71, -86, SEEK_CUR) = 1450
lseek(70, -86, SEEK_CUR) = 1450
lseek(69, -86, SEEK_CUR) = 1450
lseek(68, -86, SEEK_CUR) = 1450
lseek(67, -86, SEEK_CUR) = 1450
lseek(66, -86, SEEK_CUR) = 1450
lseek(65, -86, SEEK_CUR) = 1450
lseek(64, -86, SEEK_CUR) = 1450
lseek(63, -86, SEEK_CUR) = 1450
lseek(62, -72, SEEK_CUR) = 1464
lseek(61, -72, SEEK_CUR) = 1464
lseek(60, -86, SEEK_CUR) = 1450
lseek(59, -86, SEEK_CUR) = 1450
lseek(58, -72, SEEK_CUR) = 1464
lseek(57, -72, SEEK_CUR) = 1464
lseek(56, -72, SEEK_CUR) = 1464
lseek(55, -72, SEEK_CUR) = 1464
lseek(54, -72, SEEK_CUR) = 1464
lseek(53, -72, SEEK_CUR) = 1464
lseek(52, -72, SEEK_CUR) = 1464
lseek(51, -72, SEEK_CUR) = 1464
lseek(50, -72, SEEK_CUR) = 1464
lseek(49, -72, SEEK_CUR) = 1464
lseek(48, -72, SEEK_CUR) = 1464
lseek(47, -72, SEEK_CUR) = 1464
lseek(46, -86, SEEK_CUR) = 1450
lseek(45, -86, SEEK_CUR) = 1450
lseek(44, -86, SEEK_CUR) = 1450
lseek(43, -86, SEEK_CUR) = 1450
lseek(42, -86, SEEK_CUR) = 1450
lseek(41, -86, SEEK_CUR) = 1450
lseek(40, -86, SEEK_CUR) = 1450
lseek(39, -86, SEEK_CUR) = 1450
lseek(38, -86, SEEK_CUR) = 1450
lseek(37, -86, SEEK_CUR) = 1450
lseek(36, -86, SEEK_CUR) = 1450
lseek(35, -86, SEEK_CUR) = 1450
lseek(34, -86, SEEK_CUR) = 1450
lseek(33, -86, SEEK_CUR) = 1450
lseek(32, -86, SEEK_CUR) = 1450
lseek(31, -86, SEEK_CUR) = 1450
lseek(30, -86, SEEK_CUR) = 1450
lseek(29, -86, SEEK_CUR) = 1450
lseek(28, -86, SEEK_CUR) = 1450
lseek(27, -86, SEEK_CUR) = 1450
lseek(26, -86, SEEK_CUR) = 1450
lseek(25, -86, SEEK_CUR) = 1450
lseek(24, -72, SEEK_CUR) = 1464
lseek(23, -72, SEEK_CUR) = 1464
lseek(22, -86, SEEK_CUR) = 1450
lseek(21, -86, SEEK_CUR) = 1450
lseek(20, -72, SEEK_CUR) = 1464
lseek(19, -72, SEEK_CUR) = 1464
lseek(18, -72, SEEK_CUR) = 1464
lseek(17, -72, SEEK_CUR) = 1464
lseek(16, -72, SEEK_CUR) = 1464
lseek(15, -72, SEEK_CUR) = 1464
lseek(14, -72, SEEK_CUR) = 1464
lseek(13, -72, SEEK_CUR) = 1464
lseek(12, -86, SEEK_CUR) = 1450
lseek(11, -86, SEEK_CUR) = 1450
lseek(10, -86, SEEK_CUR) = 1450
lseek(9, -86, SEEK_CUR) = 1450
lseek(8, -72, SEEK_CUR) = 1464
lseek(7, -72, SEEK_CUR) = 1464
lseek(6, -86, SEEK_CUR) = 1450
lseek(5, -86, SEEK_CUR) = 1450
lseek(4, -72, SEEK_CUR) = 1464
lseek(3, -72, SEEK_CUR) = 1464
exit_group(1) = ?
+++ exited with 1 +++
|