Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Kobo Reader > Kobo Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 07-31-2014, 12:34 PM   #1
Ken Maltby
Wizard
Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.
 
Ken Maltby's Avatar
 
Posts: 4,466
Karma: 6900052
Join Date: Dec 2009
Location: The Heart of Texas
Device: Boox Note2, AuraHD, PDA,
Serial terminal program for use on Kobo?

I am trying to get this working on my AuraHD. I seem to have the Bluetooth part working but I don't have anything running on the Kobo serial side, that shows a response.

So anyone know of some sort of terminal that will run on the kobo?

Luck;
Ken
Ken Maltby is offline   Reply With Quote
Old 08-01-2014, 05:07 AM   #2
hawhill
Wizard
hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.hawhill ought to be getting tired of karma fortunes by now.
 
hawhill's Avatar
 
Posts: 1,379
Karma: 2155307
Join Date: Nov 2010
Location: Goettingen, Germany
Device: Kindle Paperwhite, Kobo Mini
Just to understand this correctly: You want to attach that bluetooth module to the AuraHD using the serial interface, right? And now you want to use your AuraHD to connect to other bluetooth devices (using the bluetooth serial port profile?) - or do you want to use a bluetooth-enabled PC to connect to the AuraHD?

If the latter is what you aim for, you need to run a getty on the serial line - well, isn't there one running already?

If the former is your goal, you might need to stop getty, use a decent terminal emulator plus e.g. minicom/nanocom or similar. Also, you need to read up on configuration of your adapter for the setup of the bluetooth connection. It might even be difficult or impossible to use the adapter that way - well, out of the box. Under the hood, almost all these adapters are the same and there is software (proprietary, on Windows) to program these thingies. They are actually little microcontrollers with bluetooth functionality.
hawhill is offline   Reply With Quote
Advert
Old 08-01-2014, 10:36 AM   #3
Ken Maltby
Wizard
Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.
 
Ken Maltby's Avatar
 
Posts: 4,466
Karma: 6900052
Join Date: Dec 2009
Location: The Heart of Texas
Device: Boox Note2, AuraHD, PDA,
Quote:
Originally Posted by hawhill View Post
Just to understand this correctly: You want to attach that bluetooth module to the AuraHD using the serial interface, right? And now you want to use your AuraHD to connect to other bluetooth devices (using the bluetooth serial port profile?) - or do you want to use a bluetooth-enabled PC to connect to the AuraHD?

If the latter is what you aim for, you need to run a getty on the serial line - well, isn't there one running already?

If the former is your goal, you might need to stop getty, use a decent terminal emulator plus e.g. minicom/nanocom or similar. Also, you need to read up on configuration of your adapter for the setup of the bluetooth connection. It might even be difficult or impossible to use the adapter that way - well, out of the box. Under the hood, almost all these adapters are the same and there is software (proprietary, on Windows) to program these thingies. They are actually little microcontrollers with bluetooth functionality.
Basically the latter. Win7 sees it as "Standard Serial over Bluetooth link (COM#)", two of them (one Tx and one Rx, I presume). Under Bluetooth Devices it appears as "HC-06" and the Properties "Services" has "Serial port (SPP) 'Dev B' COM9". Using PuTTY on serial COM9 lets me "pair" (the Bluetooth side/link) and if I short the Tx and Rx pins I can see what I type coming back in PuTTY. So it is working just as if it were a cable connecting two serial ports.

Where I am stuck is working with the serial port on my AuraHD, I tried "setserial" in tshering's kbterminal and only get the description of the command. Got it now, (operator error)
----------------------
Edit: It appears that grep finds 3 functioning? uarts at:
/dev/ttymxc0, /dev/ttymxc1 and /dev/ttymxc2. If I am reading it right, ttymxc0 is the one to the bootloader/Linux and is the one I am trying to connect to. It should be "J5" in the attached photo (I stole from a web site).
It is at 115200, which could be my problem. The other two are at 9600 that I need to talk to the Bluetooth device serial side. I don't know what they connect to on the Kobo.

So if I were to set ttymxc0 to 9600, I still would want to send commands to change the Bluetooth device serial side's baudrate (as described here)

--------------------------------------------------
With ttymxc0 set to 9600 there was some screen processing related messages appearing in PuTTY on my PC. This makes sense with the use made of tty0 in the MX reference design.
Set ttymxc0 back to 115200 for now. But it looks like that is the right physical connection point.
---------------------------------------------------
This sounds promising:
busybox provides "setconsole" and "setlogcons", which are able to redirect
the system console (which runs on serial) somewhere else (like /dev/null or
some telnet-pty, if desired) on-the-fly.

This might be another idea than simply to discard the console by redirecting
it completely to /dev/null.

Regards,
Sebastian
-------------------------------------------


"stty" might work if I could get the arguments right.

I guess I should break down and try and get tty over wifi working. (Telnet)

Luck;
Ken
Attached Thumbnails
Click image for larger version

Name:	auraHD.jpg
Views:	903
Size:	603.0 KB
ID:	126257  

Last edited by Ken Maltby; 08-03-2014 at 11:03 AM.
Ken Maltby is offline   Reply With Quote
Old 08-02-2014, 11:08 AM   #4
Ken Maltby
Wizard
Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.
 
Ken Maltby's Avatar
 
Posts: 4,466
Karma: 6900052
Join Date: Dec 2009
Location: The Heart of Texas
Device: Boox Note2, AuraHD, PDA,
<Bump> for edits.

The functional path:

PC>USB>BT adapter~H06 BT side>H06 Serial side>TTL serial port on AuraHD PCB enumerated as ttymxc0. This can give me the console/kernel messages in Putty, on my PC, just as it is, with ttymxc0 set to 9600.

Last edited by Ken Maltby; 08-03-2014 at 12:50 PM.
Ken Maltby is offline   Reply With Quote
Old 12-16-2016, 01:08 PM   #5
Markismus
Guru
Markismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicing
 
Markismus's Avatar
 
Posts: 948
Karma: 149907
Join Date: Jul 2013
Location: Rotterdam
Device: HiSenseA5ProCC, Cracked OnyxNotePro, Note5, Kobo Glo, Aura
Hey Ken,

I am trying to get the serial connection to work on my old AuraHD (with a cracked screen). I've got the serial connectors hooked up to a TTL2USB connector, have a program maintain a connection to it at 115200@ 8 N 1, but to no avail!

The serial setup is the same as the one I used to put Openwrt on my router, so there should not be a technical problem there. Any ideas? I tried both serial headers.

Image of the PCB

Last edited by Markismus; 12-17-2016 at 09:17 AM.
Markismus is offline   Reply With Quote
Advert
Old 12-16-2016, 04:31 PM   #6
Ken Maltby
Wizard
Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.
 
Ken Maltby's Avatar
 
Posts: 4,466
Karma: 6900052
Join Date: Dec 2009
Location: The Heart of Texas
Device: Boox Note2, AuraHD, PDA,
It looks like you are on the right serial port, (but your image needs to be within the 600x600 rules). Have you tried 9600? Something in your chain of devices may like that better.

Luck;
Ken
Ken Maltby is offline   Reply With Quote
Old 12-16-2016, 05:14 PM   #7
Markismus
Guru
Markismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicing
 
Markismus's Avatar
 
Posts: 948
Karma: 149907
Join Date: Jul 2013
Location: Rotterdam
Device: HiSenseA5ProCC, Cracked OnyxNotePro, Note5, Kobo Glo, Aura
Didn't upload the image, but used bb-code, so I circumvented the rules, I guess.


Tried 9600, no luck.
Markismus is offline   Reply With Quote
Old 12-17-2016, 07:56 AM   #8
Markismus
Guru
Markismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicing
 
Markismus's Avatar
 
Posts: 948
Karma: 149907
Join Date: Jul 2013
Location: Rotterdam
Device: HiSenseA5ProCC, Cracked OnyxNotePro, Note5, Kobo Glo, Aura
So there is not something I have enable to run during boot in the Kobo-system to ensure there is something talking to th serial interface?
Markismus is offline   Reply With Quote
Old 12-17-2016, 10:50 AM   #9
Ken Maltby
Wizard
Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.Ken Maltby ought to be getting tired of karma fortunes by now.
 
Ken Maltby's Avatar
 
Posts: 4,466
Karma: 6900052
Join Date: Dec 2009
Location: The Heart of Texas
Device: Boox Note2, AuraHD, PDA,
Quote:
Originally Posted by Markismus View Post
So there is not something I have enable to run during boot in the Kobo-system to ensure there is something talking to th serial interface?
As I remember it, stdout & error out are already directed to that port. I left off playing with it after I got the blutooth working, but couldn't get a proper setup on my AuraHD to have it do something. I am recharging that one now and will take a look at getting the serial interface over blutooth working better. It must have been over six months since I last played with that device and it still had a 60% charge, it was on the KSM poweroff.

Luck;
Ken
Ken Maltby is offline   Reply With Quote
Old 12-17-2016, 11:58 AM   #10
Markismus
Guru
Markismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicing
 
Markismus's Avatar
 
Posts: 948
Karma: 149907
Join Date: Jul 2013
Location: Rotterdam
Device: HiSenseA5ProCC, Cracked OnyxNotePro, Note5, Kobo Glo, Aura
Serial connection to Kobo on Linux Arch

Alright, this is what I had to do to make it work with an USB-to-TTL:
1. check whether USB device is connected:
Code:
$ lsusb | grep "HL-340"
Bus 005 Device 002: ID 1a86:7523 QinHeng Electronics HL-340 USB-Serial adapter
2. Check system messages about serial connection:
Code:
$ dmesg |grep "serial"
[92309.094547] serial 00:04: disabled
[92310.680945] serial 00:04: activated
[101326.082727] usbcore: registered new interface driver usbserial
[101326.082744] usbcore: registered new interface driver usbserial_generic
[101326.082757] usbserial: USB Serial support registered for generic
[101326.084350] usbserial: USB Serial support registered for ch341-uart
3. Check whether device is generating data:
Code:
sudo cat /dev/ttyUSB0 
~en���`�8�)HF��NɍCqH3)s)�,����h��(F׸�yz����B���
��J�rB
      ���!Բ����
V��5���s>H<[J�<db������H�2�Ш�ʑ"�
�Ȅ�*�ذ��*�1��(B
               �4��7�|�zRwJ�N�0%n�\��u��$HE<���,u�hT��b$�_������L��̤J�
                                                                      ��
��
!����|���
������W�����ƌ��*H��F������Ʀ������+�����
,�������<�������4���������eBJJ��j������Ʀ�������
                                               ����f4��,'����������<n��,�������)����������
           �(!����̤�������Ɔ�����<쌌��������4����
                                               ����������ƌ�����0��c���4�����������ƌ���쌌����0�����
                   �����Ɔ������ƌ�����0���)g���Ɔ$��4����L������4�쌌�v����<����������0���0����0�����L	�H��^[[A
�1DU�hB�&�T*Ѥ
At this point I got rather irritated, as switching the connections around from Rx and Tx on the USB2TTL to the ones on the PCM Rx and Tx generated the same kind of gibberish. This let me to remember to change the access rights on the device:
4: Change access rights to device:
Code:
$ ll *USB*
crw-rw---- 1 root uucp 188, 0 17 dec 15:23 ttyUSB0
[markismus@debiel dev]$ sudo chmod 777 ttyUSB0 
[markismus@debiel dev]$ ll *USB*
crwxrwxrwx 1 root uucp 188, 0 17 dec 15:23 ttyUSB0
5: Start
Code:
cutecom
, open /dev/ttyUSB0 115200 @ 8-N-1 and reset AuraHD:
Code:
[17:54:09:099] ␊
[17:54:09:099] ␍␊
[17:54:09:099] ␍U-Boot 2009.08-dirty-svn ( 3<0xe6><0x9c><0x88> 01 2013 - 11:22:42)␊
[17:54:09:123] ␍␊
[17:54:09:123] ␍CPU:   Freescale i.MX50 family 1.1V at 800 MHz␊
[17:54:09:123] ␍mx50 pll1: 800MHz␊
[17:54:09:123] ␍mx50 pll2: 400MHz␊
[17:54:09:123] ␍mx50 pll3: 216MHz␊
[17:54:09:123] ␍ipg clock     : 66666666Hz␊
[17:54:09:123] ␍ipg per clock : 66666666Hz␊
[17:54:09:123] ␍uart clock    : 24000000Hz␊
[17:54:09:123] ␍ahb clock     : 133333333Hz␊
[17:54:09:123] ␍axi_a clock   : 400000000Hz␊
[17:54:09:128] ␍axi_b clock   : 200000000Hz␊
[17:54:09:128] ␍weim_clock    : 100000000Hz␊
[17:54:09:132] ␍ddr clock     : 200000000Hz␊
[17:54:09:137] ␍esdhc1 clock  : 80000000Hz␊
[17:54:09:137] ␍esdhc2 clock  : 80000000Hz␊
[17:54:09:141] ␍esdhc3 clock  : 80000000Hz␊
[17:54:09:141] ␍esdhc4 clock  : 80000000Hz␊
[17:54:09:141] ␍Board: MX50 RDP board␊
[17:54:09:145] ␍Boot Reason: [POR]␊
[17:54:09:150] ␍Boot Device: SD␊
[17:54:09:150] ␍I2C:   ready␊
[17:54:09:150] ␍DRAM:  512 MB␊
[17:54:09:150] ␍MMC:   FSL_ESDHC: 0, FSL_ESDHC: 1, FSL_ESDHC: 2␊
[17:54:09:442] ␍In:    serial␊
[17:54:09:732] ␍Out:   serial␊
[17:54:09:732] ␍Err:   serial␊
[17:54:09:739] ␍[_get_sd_number] g_sd_number:2␊
[17:54:09:878] ␍␊
[17:54:09:889] ␍MMC read: dev # 2, block # 1023, count 1 partition # 0 ... ␊
[17:54:09:889] ␍1 blocks read: OK␊
[17:54:09:910] ␍␊
[17:54:09:910] ␍MMC read: dev # 2, block # 1024, count 1 partition # 0 ... ␊
[17:54:09:917] ␍1 blocks read: OK␊
[17:54:09:941] ␍ram p=70000000,size=536870912␊
[17:54:09:950] ␍␊
[17:54:09:950] ␍MMC read: dev # 2, block # 18431, count 1 partition # 0 ... ␊
[17:54:09:958] ␍1 blocks read: OK␊
[17:54:09:976] ␍no "logo" bin header␊
[17:54:09:986] ␍␊
[17:54:09:986] ␍MMC read: dev # 2, block # 14335, count 1 partition # 0 ... ␊
[17:54:09:986] ␍1 blocks read: OK␊
[17:54:10:009] ␍␊
[17:54:10:009] ␍MMC read: dev # 2, block # 14336, count 2301 partition # 0 ... ␊
[17:54:10:021] ␍2301 blocks read: OK␊
[17:54:10:133] ␍Kernel RAM visiable size=510M->510M␊
[17:54:10:141] ␍init TPS65185 power ...␊
[17:54:10:141] ␍Relock PLL1 to 1GHz ...␊
[17:54:10:260] ␍mx50 pll1: 1000MHz␊
[17:54:10:272] ␍mx50 pll2: 400MHz␊
[17:54:10:272] ␍mx50 pll3: 216MHz␊
[17:54:10:272] ␍ipg clock     : 66666666Hz␊
[17:54:10:272] ␍ipg per clock : 66666666Hz␊
[17:54:10:272] ␍uart clock    : 24000000Hz␊
[17:54:10:281] ␍ahb clock     : 133333333Hz␊
[17:54:10:281] ␍axi_a clock   : 400000000Hz␊
[17:54:10:281] ␍axi_b clock   : 200000000Hz␊
[17:54:10:281] ␍weim_clock    : 100000000Hz␊
[17:54:10:289] ␍ddr clock     : 200000000Hz␊
[17:54:10:289] ␍esdhc1 clock  : 80000000Hz␊
[17:54:10:289] ␍esdhc2 clock  : 80000000Hz␊
[17:54:10:299] ␍esdhc3 clock  : 80000000Hz␊
[17:54:10:299] ␍esdhc4 clock  : 80000000Hz␊
[17:54:10:299] ␍Hit any key to stop autoboot:  0 ␊
[17:54:10:307] ␍␊
[17:54:10:385] ␍MMC read: dev # 2, block # 2047, count 1 partition # 0 ... ␊
[17:54:10:391] ␍1 blocks read: OK␊
[17:54:10:414] ␍no kernel image signature !␊
[17:54:10:425] ␍␊
[17:54:10:425] ␍MMC read: dev # 2, block # 2048, count 8192 partition # 0 ... ␊
[17:54:10:425] ␍8192 blocks read: OK␊
[17:54:10:732] ␍## Booting kernel from Legacy Image at 70800000 ...␊
[17:54:10:781] ␍   Image Name:   r6427_#1027 Mar 28 15:02:51␊
[17:54:10:788] ␍   Created:      2013-03-28   7:02:55 UTC␊
[17:54:10:795] ␍   Image Type:   ARM Linux Kernel Image (uncompressed)␊
[17:54:10:795] ␍   Data Size:    1934696 Bytes =  1.8 MB␊
[17:54:10:801] ␍   Load Address: 70008000␊
[17:54:10:801] ␍   Entry Point:  70008000␊
[17:54:10:807] ␍   Loading Kernel Image ... OK␊
[17:54:11:432] ␍OK␊
[17:54:11:432] ␍␊
[17:54:11:432] ␍Starting kernel ...␊
[17:54:11:432] ␍␊
[17:54:11:439] ␍Uncompressing Linux... done, booting the kernel.␍␊
[17:54:12:112] [zForce_ir_touch_recv_data-206] command BootComplete (0)...␊
[17:54:12:116] ␍1+0 records in␍␊
[17:54:12:804] 1+0 records out␍␊
[17:54:12:815] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:12:815] 1+0 records in␍␊
[17:54:12:815] ␍␊
[17:54:12:815] 1+0 records out␍␊
[17:54:12:815] ␍␊
[17:54:12:823] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:12:823] ␍␊
[17:54:12:823] 1+0 records in␍␊
[17:54:12:830] ␍␊
[17:54:12:830] ␍␊
[17:54:12:830] ␍␊
[17:54:12:830] 1+0 records out␍␊
[17:54:12:830] ␍␊
[17:54:12:830] ␍␊
[17:54:12:830] ␍␊
[17:54:12:830] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] 1+0 records in␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] ␍␊
[17:54:12:839] 1+0 records out␍␊
[17:54:12:849] ␍␊
[17:54:12:849] ␍␊
[17:54:12:849] ␍␊
[17:54:12:849] ␍␊
[17:54:12:849] ␍␊
[17:54:12:849] ␍␊
[17:54:12:849] ␍␊
[17:54:12:849] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] 1+0 records in␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:859] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] 1+0 records out␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:878] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] 1+0 records in␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] 1+0 records out␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:905] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] 1+0 records in␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:943] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] 1+0 records out␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] cannot open /dev/null␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] 1+0 records in␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:12:990] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] 1+0 records out␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] ␍␊
[17:54:13:074] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] cannot open /dev/null␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] 1+0 records in␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:185] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:245] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:277] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:291] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:366] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:380] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:395] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:442] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:454] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:491] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:502] ␍␊
[17:54:13:527] [PROGRESS_BAR-2916] No progess ...␊
[17:54:13:529] ␍␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:540] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:550] ␍␊
[17:54:13:598] ␍␊
[17:54:13:598] ␍␊
[17:54:13:598] ␍␊
[17:54:13:598] ␍␊
[17:54:13:598] ␍␊
[17:54:13:598] ␍␊
[17:54:13:598] ␍␊
[17:54:13:598] 1+0 records out␍␊
[17:54:13:598] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:605] ␍␊
[17:54:13:632] ␍␊
[17:54:13:632] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:666] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:681] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:787] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:800] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:867] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:881] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:954] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:972] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] 512 bytes (512B) copied, 0.000292 seconds, 1.7MB/s␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] cannot open /dev/null␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:13:992] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:035] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] 1+0 records in␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] dosfsck 3.0.6, 04 Oct 2009, FAT32, LFN␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] <0x13>␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:14:130] ␍␊
[17:54:15:131] FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!␊
[17:54:15:138] ␍<0x11>
Markismus is offline   Reply With Quote
Old 12-17-2016, 03:38 PM   #11
Markismus
Guru
Markismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicing
 
Markismus's Avatar
 
Posts: 948
Karma: 149907
Join Date: Jul 2013
Location: Rotterdam
Device: HiSenseA5ProCC, Cracked OnyxNotePro, Note5, Kobo Glo, Aura
What intrigues me most at this moment is the line:
Code:
[17:54:10:299] ␍Hit any key to stop autoboot:  0
When reinstalling my router with Openwrt, basically turning it into a Linux machine, I had to short a connection (using a screwdriver) to trigger a different boot mode, that allowed me to upload system images of Uboot and the filesystem. The message from uboot was identical.

But how to hit a key?
Markismus is offline   Reply With Quote
Old 12-18-2016, 04:44 AM   #12
very_rude_Turnip
Enthusiast
very_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enough
 
Posts: 36
Karma: 560
Join Date: Dec 2016
Device: Kobo Aura v2
Hi. Openwrt/LEDE hackery person here.

First off, I apologize if I've skipped over something that makes any of this irrelvant. I only briefly skimmed the conversation and I'm totally new to ereaders (just got my first Kobo).

Your baud is always going to be 115200 unless you specifically know otherwise, so don't bother with 9600; this thing isn't a Cisco.

Have you guys checked voltage levels on these devices? A lot of modern SoCs are going 1.8V instead of TTL/3.3V, and this is the kind of device that would want to be as low-power as possible. I don't know anything about these devices yet, so I don't know.

It is also possible that they specifically cut the traces or grounded-out the rx for production models of the device. Get out yer multimeter.

Oh crap. I just noticed that your USB-to-serial is a ch341. Personal opinion: ch341s are notoriously bad and I threw all of mine away years ago after much frustration. Get a FTDI or something else to make sure that it's not actually your adapter that is causing the problems. I learned this one the hard way: ch341 serial adapters are cheap for a reason.
very_rude_Turnip is offline   Reply With Quote
Old 12-18-2016, 05:29 AM   #13
Markismus
Guru
Markismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicingMarkismus causes much rejoicing
 
Markismus's Avatar
 
Posts: 948
Karma: 149907
Join Date: Jul 2013
Location: Rotterdam
Device: HiSenseA5ProCC, Cracked OnyxNotePro, Note5, Kobo Glo, Aura
@very_rude_Turnip Welcome to the discussion!

Two questions about those voltages:

1) searching for 1.8V FTDI on AliExpress generated no results.

2) If the serial port on the device side is already powered, you don't have to connect the Vc. Does it still matter whether your TTL2USB is set to 1.8V or 3.3V or 5V?

Last edited by Markismus; 12-18-2016 at 05:56 AM.
Markismus is offline   Reply With Quote
Old 12-18-2016, 08:06 AM   #14
very_rude_Turnip
Enthusiast
very_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enough
 
Posts: 36
Karma: 560
Join Date: Dec 2016
Device: Kobo Aura v2
Quote:
Originally Posted by Markismus View Post
@very_rude_Turnip Welcome to the discussion!

Two questions about those voltages:

1) searching for 1.8V FTDI on AliExpress generated no results.

2) If the serial port on the device side is already powered, you don't have to connect the Vc. Does it still matter whether your TTL2USB is set to 1.8V or 3.3V or 5V?
Yes, you are not going to find a 1.8V adapter -- not enough market demand yet. You would need to make a level shifter with a breadboard to step down from 3.3V to 1.8V. The only devices I have run into that are 1.8V on the serial port so far are a couple of phones, but even some routers (ipq806x) are 1.8V now.

A device like this would never be 5V. It's probably 3.3V. Small possibility of 1.8V.

I don't recommend connecting Vcc at all -- just ground tx and rx. Your serial port is already powered by the USB side.

I just cracked open my new Aura v2. There's the serial port. 4GB MicroSD card in there too -- no soldiered in. Interesting.

I will see if I can connect.
very_rude_Turnip is offline   Reply With Quote
Old 12-18-2016, 08:14 AM   #15
very_rude_Turnip
Enthusiast
very_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enoughvery_rude_Turnip will become famous soon enough
 
Posts: 36
Karma: 560
Join Date: Dec 2016
Device: Kobo Aura v2
Logged in fine for me using my pl2303 based ttl level adapter. Definitely try another serial adapter chip. ch341 = garbage! Get a pl2303 or FTDI. (Try to buy real and not China-fakes) Also double check the obvious stuff like connection, cables, etc.

Code:
>picocom -b 115200 /dev/ttyUSB0
picocom v1.7

port is        : /dev/ttyUSB0
flowcontrol    : none
baudrate is    : 115200
parity is      : none
databits are   : 8
escape is      : C-a
local echo is  : no
noinit is      : no
noreset is     : no
nolock is      : no
send_cmd is    : sz -vv
receive_cmd is : rz -vv
imap is        : 
omap is        : 
emap is        : crcrlf,delbs,

Terminal ready

(none) login: 
(none) login: 
(none) login: 
(none) login: root
[root@(none) ~]# 
[root@(none) ~]# 
[root@(none) ~]# ls
bin         etc         libexec     mnt         sbin        usr
dev         fs.md5sum   linuxrc     proc        sys         var
drivers     lib         lost+found  root        tmp
[root@(none) ~]# uname -a
Linux (none) 3.0.35+ #5021 PREEMPT Thu Aug 18 10:24:50 CST 2016 armv7l GNU/Linux
[root@(none) ~]# 
[root@(none) ~]# cat /proc/cpu
cat: read error: Is a directory
[root@(none) ~]# ��?[}
-sh: ?[}: not found
[root@(none) ~]# cat /proc/cpu
cpu/     cpuinfo
[root@(none) ~]# cat /proc/cpuinfo 
Processor       : ARMv7 Processor rev 10 (v7l)
BogoMIPS        : 1988.29
Features        : swp half thumb fastmult vfp edsp neon vfpv3 
CPU implementer : 0x41
CPU architecture: 7
CPU variant     : 0x2
CPU part        : 0xc09
CPU revision    : 10

Hardware        : Freescale i.MX 6SoloLite NTX Board
Revision        : 60200
Serial          : NOPENOPENOPE
I got into uboot too after rebooting. Interesting stuff. I guess I can recover this way if I fk up my device now.

I am in the process of dd copying my sdcard so that I have a backup. I can also then inspect the filesystem.

Last edited by very_rude_Turnip; 12-18-2016 at 08:26 AM.
very_rude_Turnip is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Terminal program for PB622/623 jtt PocketBook Developer's Corner 92 12-22-2024 05:39 PM
Terminal program for PB622/PB623 jtt PocketBook 3 09-03-2013 08:41 PM
Kobo beta program piratepanda Kobo Reader 7 11-09-2012 10:07 AM
Feasibility of Kindle as a Serial Terminal? bax21 Kindle Developer's Corner 5 07-03-2012 03:30 AM
Touch Kobo Touch Extended Warranty Program SensualPoet Kobo Reader 1 07-17-2011 04:08 AM


All times are GMT -4. The time now is 12:00 AM.


MobileRead.com is a privately owned, operated and funded community.