Skip to content

Commit

Permalink
merge m-series docs with rest of installation
Browse files Browse the repository at this point in the history
  • Loading branch information
skara9 committed Aug 5, 2024
1 parent e593388 commit 7f4b5c9
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 188 deletions.
16 changes: 11 additions & 5 deletions _docs/developer/getting_started/vm_install_using_vagrant.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ If you using an Intel-based Mac, you will follow the instructions below._

* [Ruby](https://www.ruby-lang.org/en/downloads)
* [Git](https://git-scm.com/downloads)
* [VirtualBox](https://www.virtualbox.org/wiki/Download_Old_Builds_6_1)
* [VirtualBox](https://www.virtualbox.org/wiki/Download_Old_Builds_6_1) (or [QEMU](https://www.qemu.org) instead for M-series macOS)
* [Vagrant](https://www.vagrantup.com)


Expand All @@ -133,9 +133,9 @@ If you using an Intel-based Mac, you will follow the instructions below._
install [Homebrew](http://brew.sh/), if you don't have it, and then run:

```
brew install --cask virtualbox
brew install --cask vagrant
vagrant plugin install vagrant-timezone
brew install --cask virtualbox # if on Intel chip
brew install qemu && vagrant plugin install vagrant-qemu # if on M-series chip
```
* **Windows**
Expand Down Expand Up @@ -234,7 +234,7 @@ If you using an Intel-based Mac, you will follow the instructions below._
If you have an AMD processor you can choose to download a pre-made
VM that is created weekly OR you can create the VM from scratch
(which will take substantially more time). If you have an ARM chip
(e.g., the Apple Silicon Mac M1/M2/M3), you must create the VM from
(such as Apple M-series), you must create the VM from
scratch.
Expand All @@ -248,9 +248,15 @@ If you using an Intel-based Mac, you will follow the instructions below._
use a pre-packaged Submitty VM. This will have all of Submitty
already setup. Vagrant will build your VM for you.
To create the virtual machine, run:
```
vagrant up
vagrant up --provider=virtualbox
```
Replace `virtualbox` with `qemu` if on M-series macOS.
***Note:** The vagrant up command provisions the virtual machine on the first run.
For subsequent runs, you do not need to append the `--provider` flag as the VM is
already created.*
If you wish to use a specific version of the pre-packaged Submitty VM, on Linux or Mac type:
```
Expand Down

This file was deleted.

0 comments on commit 7f4b5c9

Please sign in to comment.