diff options
-rw-r--r-- | 10.-VirtualBox,-Docker-Images-and-Install-Scripts.md (renamed from 10.-VirtualBox-and-Docker-Images.md) | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/10.-VirtualBox-and-Docker-Images.md b/10.-VirtualBox,-Docker-Images-and-Install-Scripts.md index a6d549f..96457ae 100644 --- a/10.-VirtualBox-and-Docker-Images.md +++ b/10.-VirtualBox,-Docker-Images-and-Install-Scripts.md @@ -21,4 +21,25 @@ sudo adduser $USER vboxusers Third parties have created a Docker container that you can use for installing a ready to use image of the DOA software. Note that the Docker container will not work on Windows, due Docker not supporting USB passthrough from Windows to a Linux image. Also note that the Docker container is immutable, so any settings changes you save will not persist once the image is restarted. -Docker Image Repository: https://github.com/godsic/krakensdr-containers/
\ No newline at end of file +Docker Image Repository: https://github.com/godsic/krakensdr-containers/ + +## Install Scripts + +These scripts will automatically install the drivers, all dependencies and the DOA and PR software packages in `krakensdr_doa` and `krakensdr_pr` folders. + +Start the software with the start scripts in the `krakensdr_doa` and `krakensdr_pr` folders. + +Note that the scripts may ask for your system password a few times if your system is slow. So please keep an eye on the script. + +### x86 64 Bit Systems +``` +wget https://raw.githubusercontent.com/krakenrf/krakensdr_docs/main/install_scripts/krakensdr_x86_install_doa_pr.sh +sudo chmod +x krakensdr_x86_install_doa_pr.sh +./krakensdr_x86_install_doa_pr.sh +``` +### ARM64 Systems +``` +wget https://raw.githubusercontent.com/krakenrf/krakensdr_docs/main/install_scripts/krakensdr_aarch64_install_doa_pr.sh +sudo chmod +x krakensdr_aarch64_install_doa_pr.sh +./krakensdr_aarch64_install_doa_pr.sh +```
\ No newline at end of file |