< >
Home » TX1入门教程软件篇 » TX1入门教程软件篇-实现扩展swap交换区大小

TX1入门教程软件篇-实现扩展swap交换区大小

TX1入门教程软件篇-实现扩展swap交换区大小

说明:

  • 介绍如何扩展TX1的swap交换区大小
  • 实验是在使用SD card作为启动分区,需要同时增加交换分区

步骤:

  • 创建脚本:
mkdir ~/swap/
cd ~/swap/
vim createSwapFile.sh
  • 脚本内容如下:
#!/bin/bash
#NVIDIA Jetson TX1 in 3D card
#Create a swapfile for Ubuntu at the current directory location
fallocate -l 4G swapfile
#List out the file
ls -lh swapfile
# Change permissions so that only root can use it
chmod 600 swapfile
#List out the file
ls -lh swapfile
#Set up the Linux swap area
mkswap swapfile
#Now start using the swapfile
swapon swapfile
#Show that it's now being used
swapon -s
  • 设置权限:
chmod +x createSwapFile.sh
  • 执行:
sudo ./createSwapFile.sh
  • 创建swap为4G大小swap文件。
  • 设置开机生效:
$ sudo vim /etc/fstab
  • 内容如下:
/home/ubuntu/swap/swapfile none swap sw 0 0

参考:

  • http://www.jetsonhacks.com/2014/10/04/creating-swapfile-ubuntu-nvidia-jetson-tk1/

纠错,疑问,交流: 请进入讨论区点击加入Q群

获取最新文章: 扫一扫右上角的二维码加入“创客智造”公众号


标签: tx1入门教程软件篇