make_swap.sh 230 B

12345678
  1. # Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
  2. # Full license terms provided in LICENSE.md file.
  3. sudo fallocate -l 1G /mnt/swapfile
  4. sudo chmod 600 /mnt/swapfile
  5. sudo mkswap /mnt/swapfile
  6. sudo swapon /mnt/swapfile