Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
rpisetupformix [2021/02/23 16:43] wikiadmin created |
rpisetupformix [2021/02/23 23:42] (current) wikiadmin |
||
---|---|---|---|
Line 7: | Line 7: | ||
=== Make Sure JDK 8 is Installed === | === Make Sure JDK 8 is Installed === | ||
- | ssh into your Raspberry Pi system and check the java version: | + | ssh into your Raspberry Pi system and check the java version. On Windows you can use putty to ssh. Check the documentation that came with your system for the username and password. On a Raspberry Pi 3 or 4 this username will be " |
+ | |||
+ | < | ||
+ | ssh pi@xxx.xxx.xxx.xxx | ||
+ | </ | ||
+ | |||
+ | enter the password when prompted. When you are logged in, check the java version: | ||
< | < | ||
java -version | java -version | ||
</ | </ | ||
- | you should see that it runs by printing | + | if java is installed |
< | < | ||
Line 19: | Line 26: | ||
</ | </ | ||
- | if you do not see that it is installed, or if it is not version 8, you will need to install | + | if you do not see that it is installed, or if it is not version 8, you will need to install |
=== Install the Serial Port Drivers === | === Install the Serial Port Drivers === | ||
Line 31: | Line 38: | ||
this installs so's into / | this installs so's into / | ||
- | ==== Setup the MIX Runtime Directory ==== | + | === Setup the MIX Runtime Directory === |
The MIX runtime should run as a dedicated " | The MIX runtime should run as a dedicated " | ||
To test as user " | To test as user " | ||
- | ftp the contents of the MIX directory on your development system to this " | + | ftp the contents of the MIX directory on your development system to this " |
- | ====Starting | + | ===Setup MIX=== |
The mixruntime directory on the pi should have a subdirctory called " | The mixruntime directory on the pi should have a subdirctory called " | ||
Line 46: | Line 54: | ||
cp ./ | cp ./ | ||
</ | </ | ||
+ | |||
+ | Make the file " | ||
+ | |||
+ | < | ||
+ | chmod 711 runmix.sh | ||
+ | </ | ||
+ | |||
+ | === Run MIX=== | ||
+ | In the console window use sudo ./runmix.sh to start MIX. MIX needs to run with elevated privileges. | ||
+ | |||
+ | < | ||
+ | sudo ./runmix.sh | ||
+ | </ | ||
+ | |||
+ | If MIX starts up correctly it will be waiting for a deployment connection from MIStudio, or for a web browser connection. | ||
+ | |||
+ | If you see errors, you can use the error information as a guild to understanding the problem. | ||
+ | |||
+ | If you are not deploying trial builds from MIStudio, you will see a pre-license key the first time you run MIX with a project. | ||
+ | To license MIX (for non-trial deployments), | ||
- | Make the file " |