You can test the I/O speed of your disk easily from the command line.
Login and use the mount command to check which device is the USB disk. It outputs something like
/dev/sdb1 on /media/usb type ext4 (rw,relatime,data=ordered)
You can then test the read speed with:
root@et10000:~# hdparm -tT /dev/sdb
Which in my case responds with:
/dev/sdb:
Timing buffer-cache reads: 488 MB in 0.51 seconds = 978877 kB/s
Timing buffered disk reads: 50 MB in 3.00 seconds = 17042 kB/s
You can test writing, using the mountpoint from the mount about above, with
root@et10000:~# dd if=/dev/zero of=/media/usb/output bs=8k count=10k; rm -f /media/usb/output
Which in my case responds with:
10240+0 records in
10240+0 records out
83886080 bytes (80.0MB) copied, 1.165879 seconds, 68.6MB/s
So 69MB/s write, 17MB/s read, meaning this USB device is quite slow. I would really not use this for recording and playback, it's to slow, any hickup in the data transfer would cause a buffer overflow, causing data loss and therefore hickups in your recording, or freezes in your playback.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.