Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
tools:bitscope [2024/09/06 16:48] – created darrontools:bitscope [2024/09/07 13:03] (current) – [Server] darron
Line 1: Line 1:
 ====Bitscope==== ====Bitscope====
  
 +<wrap right>
 +{{:tools:bitscopem1.jpg?200}}
 +</wrap>
  
-Attempt to run bitscope-server on AARCH64+===AARCH64=== 
 + 
 +If on ARCH64 setup ARMHF
  
 <code> <code>
 dpkg --add-architecture armhf dpkg --add-architecture armhf
 +apt install libc6:armhf
 </code> </code>
 +
 +===Server===
 +
 +==Download==
 +
 +Fetch the binary package for the correct platform from [[http://my.bitscope.com/download/|here]].
 +
 +==Raspberry Pi OS==
 +
 +<code>
 +mkdir bitscope-server
 +cd bitscope-server
 +ar x ../bitscope-server_1.1.FK26BWAG_armhf.deb
 +tar xf data.tar.gz
 +cp usr/bin/bitscope-server /usr/local/bin/
 +</code>
 +
 +==Help==
 +
 +<code>
 +bitscope-server --help
 +
 +Usage: bitscope-server <options>
 +
 +       -h,-?,--help   | print this help
 +       -v,--verbose   | verbose output, for debugging
 +       -c,--count N   | open up to N devices (default:1)
 +       -p,--port P    | open starting at port P (default:16385)
 +       -l,--latency L | assign server latency L in ms (default:8)
 +       -d,--daemon    | start in daemon mode (from command line)
 +       -i,--install   | register the daemon. This has no effect under unix.
 +       -u,--uninstall | unregister the daemon. This has no effect under unix.
 +       -r,--run       | start the daemon. Windows does this. Do not do it manually.
 +
 +Assign a larger latency for lower CPU load if necessary. Use verbose from command
 +line only. Note that only -h and -v are implemented in this beta release.
 +</code>
 +
 +===Runit===
 +
 +<code>
 +#!/bin/bash
 +sleep 2
 +
 +#LOG
 +ulimit -aH
 +
 +#RUN
 +exec /usr/local/bin/bitscope-server -v < /dev/stderr
 +</code>
 +
 +===Resources===
 +
 +[[http://my.bitscope.com/download/|Downloads]]