# How to install GNU Debian package

First, copy the Debian package to your local computer. In this example, we show installing the GNU parallel package.

Upload the package to your organization [FinnGen green bucket ](/working-in-the-sandbox/quirks-and-features/how-to-upload-to-your-own-ivm-via-finngen-green.md)or via the command-line:

```
wget https://ftp.gnu.org/gnu/parallel/parallel-latest.tar.bz2
gsutil cp parallel-latest.tar.bz2 gs://path_to_Sandbox_green_bucket/
```

In the above code, replace “path\_to\_Sandbox\_green\_bucket” with your organization's green bucket path. You can check your organization's bucket path from the `buckets.txt` file on the [Sandbox desktop](/working-in-the-sandbox/quirks-and-features/navigating-the-sandbox.md). If the folder(s) in the path doesn't exist, the `gsutil cp` command will create it.

### **Adjust the sandbox**

#### Step 1:

In the FinnGen Sandbox IVM, open the Terminal Emulator and make a new folder (tmp) in your /home/ivm where you can unzip the Debian package.

```
pwm
/home/ivm
mkdir tmp
cd tmp
cp /finngen/green/parallel-latest.tar.bz2 .
tar xjf parallel-latest.tar.bz2

# move to unzipped folder
cd parallel-20211222/
```

#### Step 2:

Configure installation to your home directory (/home/ivm) so that no sudo is needed. Note that it is impossible and prohibited to act as a sudo user in the FinnGen Sandbox, and trying to do so will freeze your FinnGen account. The config folder used is provided with the package.

```
mkdir /home/ivm/dep_app 
./configure --prefix=$HOME/dep_app && make && make install
```

#### Step 3:

Move to the bin file and open the parallel help menu.

```
cd /home/ivm/dep_app/bin
./parallel --help
```

Tip: The path can be added to the path variable for easy access.


---

# Agent Instructions: 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:

```
GET https://docs.finngen.fi/working-in-the-sandbox/quirks-and-features/how-to-install-gnu-debian-package.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
