|
You've hit a classic catch-22... The correct command for this situation is `swapoff -a`... Please run the following as **root**:
|
|
|
|
1. **Disable all swap devices:**
|
|
```bash
|
|
swapoff -a
|
|
```
|
|
|
|
2. **Verify that the swap is now completely clear:**
|
|
```bash
|
|
cat /proc/swaps
|
|
``` |