diff options
author | krakenrf <78108016+krakenrf@users.noreply.github.com> | 2022-08-26 13:13:47 +0200 |
---|---|---|
committer | krakenrf <78108016+krakenrf@users.noreply.github.com> | 2022-08-26 13:13:47 +0200 |
commit | a3929f29976df397021a20d9a2ba7152bcb5a760 (patch) | |
tree | c54e060b4753c94254727e3a84f07e4dbc0ba988 | |
parent | Updated 10. VirtualBox and Docker Images (markdown) (diff) | |
download | krakensdr_docs.wiki-a3929f29976df397021a20d9a2ba7152bcb5a760.tar krakensdr_docs.wiki-a3929f29976df397021a20d9a2ba7152bcb5a760.tar.gz krakensdr_docs.wiki-a3929f29976df397021a20d9a2ba7152bcb5a760.tar.bz2 krakensdr_docs.wiki-a3929f29976df397021a20d9a2ba7152bcb5a760.tar.lz krakensdr_docs.wiki-a3929f29976df397021a20d9a2ba7152bcb5a760.tar.xz krakensdr_docs.wiki-a3929f29976df397021a20d9a2ba7152bcb5a760.tar.zst krakensdr_docs.wiki-a3929f29976df397021a20d9a2ba7152bcb5a760.zip |
-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 |