https://github.com/lostjared/uxload
load program on one linux system from another
https://github.com/lostjared/uxload
Last synced: 3 months ago
JSON representation
load program on one linux system from another
- Host: GitHub
- URL: https://github.com/lostjared/uxload
- Owner: lostjared
- License: lgpl-3.0
- Created: 2017-09-09T03:21:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-22T18:47:20.000Z (over 8 years ago)
- Last Synced: 2024-12-31T05:17:51.206Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 1.58 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# uxload
This program will setup a server where you can load a program
on one system from another. I got the idea from ps3load/wiiload but I made this
so I could test between my ASUS Tinker board and my main system without having to log in to ssh and copy files each time
with scp.
To compile requires autoconf, automake, g++
use
$ ./autogen.sh && ./configure && make
then if you want to install
$ sudo make install
How to use:
on the system to load the program:
open terminal and enter the directory where program should run
put a text file called ip.cfg in that directory and put a list of accepted ip addresses.
run the program with port ot listen on:
$ uxload -l port
You can manually specify the ip config file as shell variable UXLOAD_CFG
on the system to send the program:
First export UXLOAD_NET as a shell variable in bash with IP address of uxload server
with the format ip:port so
export UXLOAD_NET=192.168.8.145:10241
would be valid.
open terminal and enter directory where program you want to send is and use
$ uxload -s program

