> For the complete documentation index, see [llms.txt](https://docs.ccv.brown.edu/oscar/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ccv.brown.edu/oscar/quickstart.md).

# Quickstart

## Connect to OSCAR

{% hint style="info" %}
This guide assumes you have an Oscar account. To request an account see [create an account](https://brown.co1.qualtrics.com/jfe/form/SV_0GtBE8kWJpmeG4B).
{% endhint %}

The simplest way to connect to Oscar is via Open OnDemand (OOD). To connect to OOD, go to <https://ood.ccv.brown.edu>[ ](https://ood.ccv.brown.edu)and log in using your Brown credentials. For more details, see the [Open OnDemand documentation](/oscar/connecting-to-oscar/open-ondemand.md).

Alternatively, you can connect to OSCAR via SSH (Terminal):

```bash
ssh <username>@ssh.ccv.brown.edu
```

{% hint style="info" %}
Windows users need an SSH client like [PuTTY](https://www.putty.org) installed. SSH is available by default on Linux and macOS. For more details, see the [SSH connection guide](/oscar/connecting-to-oscar/ssh.md).
{% endhint %}

## Submit a Job

You can submit a job using `sbatch`:

```bash
sbatch batch_scripts/hello.sh
```

You can confirm that your job ran successfully by running:

```bash
cat hello-*.out
```

For more detailed information on submitting jobs, see the [Submitting Jobs guide](/oscar/submitting-jobs/shared-machine.md).

## Transfer Files

To get specific files on to / off of Oscar, read through the [Transferring Files to and from Oscar guide](/oscar/managing-files/filetransfer.md).

## Get Help

If you encounter problems while using Oscar, check out the [Getting Help guide](broken://pages/-LcWVjwzyNcTACx_aahh), or read through the Overview page.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.ccv.brown.edu/oscar/quickstart.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
