linux使用块设备创建swap
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
·
- 执行以下命令,新建一个分区(以2G为例)。
# fdisk /dev/vdb回显信息如下:
Command (m for help): n Partition type: p primary (0 primary, 0 extended, 4 free) e extended Select (default p): Using default response p Partition number (1-4, default 1): First sector (2048-20971519, default 2048): Using default value 2048 Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519): +2G Partition 1 of type Linux and of size 2 GiB is set Command (m for help): p Disk /dev/vdb: 10.7 GB, 10737418240 bytes, 20971520 sectors Units = sectors of 1 * 512 = 512 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk label type: dos Disk identifier: 0x1f02f438 Device Boot Start End Blocks Id System /dev/vdb1 2048 4196351 2097152 83 Linux Command (m for help): w The partition table has been altered! Calling ioctl() to re-read partition table. Syncing disks. - 执行以下命令,将新建的分区创建为swap。
mkswap /dev/vdb1 - 执行以下命令,激活swap分区。
swapon /dev/vdb1执行以下命令,查询已启动的swap。
swapon -s - 执行以下命令,查询swap分区UUID。
blkid |grep swap |awk '{print $2}' UUID="1ee90e3c-1538-453b-9240-ad430f835f6f" - 执行以下命令,实现swap开机自动挂载,将挂载信息写入/etc/fstab。
swap的UUID从步骤4.执行以下命令,查询swap分区UUID。获取。本例中执行命令如下。
echo "UUID=1ee90e3c-1538-453b-9240-ad430f835f6f swap swap defaults 0 0" >>/etc/fstab - 执行以下命令,挂载swap。
mount -a
A beautiful web dashboard for Linux
最近提交(Master分支:4 个月前 )
186a802e
added ecosystem file for PM2 5 年前
5def40a3
Add host customization support for the NodeJS version 5 年前
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐


所有评论(0)