You can also clear your swap by running
swapoff -a
and thenswapon -a
as root instead of rebooting to achieve the same effect.
Assim:
$ free -tm
...
Swap: 6439 196 6243
...
$ sudo swapoff -a
$ sudo swapon -a
$ free -tm
...
Swap: 6439 0 6439
...
Como observado em um comentário, se você não tiver memória suficiente, swapoff
resultará em erros de "falta de memória" e nos processos de eliminação do kernel para recuperar a RAM.