# Swap Alanı Oluşturma

Swap alanı oluşturmadan kurulum yapmışsanız aşağıdaki adımları izleyerek hâlâ sisteminize Swap alanı oluşturabilirsiniz.

```
sudo dd if=/dev/zero of=/swap bs=1024 count=8192000
```

Buradaki **8192000**, 8000\*1024 ile elde edilmiştir ve **swap** yeni dosyamızın ismidir.

Oluşturulan dosyası swap yapalım

```
sudo mkswap /swap
```

yeni swap ı etkinleştir

```
sudo swapon /swap
```

fstab dosyasına ekleyelim

```
sudo kate /etc/fstab 
```

Açılan dosya içine aşağıdaki satırı ekleyeli

```
/swap        swap        swap    defaults        0 0
```

�test edelim

```
cat /proc/swaps
```


---

# 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://ayhanyalcinsoy.gitbook.io/pisilinux-gelistirici-klavuzu/swap-alani-olusturma.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.
