Skip to content

Commit 9dce5cc

Browse files
adityarauniyaradi
andauthored
Setup instructions for WinTAK. installs virtualbox, imports Windows a… (#204)
* Setup instructions for WinTAK. installs virtualbox, imports Windows and autoloads WinTAK. * Added requirements and plots --------- Co-authored-by: adi <[email protected]>
1 parent e22ccf0 commit 9dce5cc

File tree

3 files changed

+37
-1
lines changed

3 files changed

+37
-1
lines changed
Loading
25.1 KB
Loading

docs/ground_control_station/index.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,39 @@
11
# Ground Control Station
22

3-
The Ground Control Station (GCS) is for operators to monitor and control the robots.
3+
The Ground Control Station (GCS) is for operators to monitor and control the robots.
4+
5+
Requirements:
6+
- 60GB Hard Disk Space
7+
- min 8GB RAM
8+
- min 4 CPU Cores
9+
- Ubuntu 22.04
10+
11+
## Setup
12+
WinTAK is setup as auto start on boot and connects to Airlabs TAK-Server. Its run on Windows 11 VirtualBox Virtual Machine.
13+
14+
![Setup](asset/setup.png)
15+
16+
1. Set your `ANDREWID` as an environment variable.
17+
```bash
18+
export ANDREWID=<your_andrew_id>
19+
```
20+
2. Run the following commands to setup WinTAK running over Windows VirtualBox.
21+
```bash
22+
sudo mkdir -p "$HOME/vmware"
23+
sudo chown -R $USER:$USER "$HOME/vmware"
24+
sudo chmod -R 755 "$HOME/vmware"
25+
sudo rsync --progress -avz ${ANDREWID}@airlab-storage.andrew.cmu.edu:/volume4/dsta/atak/setup/ "$HOME/vmware"
26+
sudo dpkg -i "$HOME/vmware/virtualbox-7.1_7.1.6-167084~Ubuntu~jammy_amd64.deb"
27+
sudo apt-get install -f
28+
sudo /sbin/vboxconfig
29+
VBoxManage import "$HOME/vmware/Windows11.ova" --vsys 0 --vmname "WinTAK"
30+
31+
```
32+
3. Run WinTAK using the following commands.
33+
```bash
34+
VBoxManage startvm "WinTAK"
35+
```
36+
37+
NOTE: If it asks to reset the password, please reset to current password.
38+
39+
![WinTAK](asset/WinTAK_on_windows_virtualbox_vm.png)

0 commit comments

Comments
 (0)