Skip to content

Commit 5221ba8

Browse files
committed
[#498] Added required commands to docs for increased Vagrant VM disk size;
1 parent d77a2d3 commit 5221ba8

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ Build from the docs/wiki directory: `make html`
1616
### Prerequisites
1717
Each of the applications listed below are required prior to performing the installation procedure:
1818
* Option A, you already use Linux
19-
* [Git 2.36+](https://git-scm.com/)
19+
* [Git 2.47+](https://git-scm.com/)
2020
* Linux with docker and docker compose installed
2121
* Option B, deployment of a virtual machine (VM)
22-
* [Git 2.36+](https://git-scm.com/)
23-
* [Vagrant 2.3.4+](https://www.vagrantup.com/)
24-
* [VirtualBox 7.0+](https://www.virtualbox.org/)
22+
* [Git 2.47+](https://git-scm.com/)
23+
* [Vagrant 2.4.3+](https://www.vagrantup.com/)
24+
* [VirtualBox 7.1.6+](https://www.virtualbox.org/)
2525

2626
### Installing
2727
Option B only.

Vagrantfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Vagrant.configure("2") do |config|
2020
mount_options: ["dmode=0770", "fmode=0770"]
2121

2222
### General configuration
23+
config.vm.disk :disk, size: "64GB", primary: true
2324
config.vm.provider "virtualbox" do |vbox|
2425
vbox.name = "nos3_20231101"
2526
vbox.gui = true

docs/wiki/Home.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,8 @@ According to the [NASA Software Classification guidelines](https://nodis3.gsfc.n
105105
- NASA's cFS is safety-critical flight software. Make sure you are building your applications to specification and that you are properly using the PSP and OSAL calls from within your apps.
106106
- It is best to **_not_** run cFS as sudo. If you are doing this, make sure you have configured for your host or are providing appropriate run-time arguments with cFS.
107107
6. Can NOS3 be run across multiple computers?
108-
- Yes - the satellite and ground software can be split apart and run on their own VMs. The instructions can be found [here](https://github.com/nasa/nos3/wiki/NOS3-Build-and-Run-on-Multiple-VMs).
108+
- Yes, the satellite and ground software can be split apart and run on their own VMs. The instructions can be found [here](https://github.com/nasa/nos3/wiki/NOS3-Build-and-Run-on-Multiple-VMs).
109+
7. Can the disk space be resized in the provided Virtual Machine?
110+
- Yes, the Vagrantfile can be edited to change the maximum size of a new VM pending some additional terminal commands are done as sudo
111+
- `growpart /dev/sda 3`
112+
- `lvextend -l +100%FREE -r /dev/mapper/ubuntu--vg-ubuntu--lv`

0 commit comments

Comments
 (0)