Linux如何创建交换分区
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1 创建交换分区
例如创建一个 8M大小的交换分区.
# dd if=/dev/zero of=/swap1 bs=1024 count=10240
说明:从/dev/zero设备读取字节到/swap1文件. bs代表每块大小以k为单位,bs=1024表示每块1M. count=10240表示总共10M
2 格式化交换分区
# mkswap -c swap1
# sync
说明:-c代表检查分区物理损坏的区域,标记后绕过坏道.
Sync确保格式化信息被写入物理文件swap1里.
3 激活交换分区
# swapon swap1
如果要重启机器后仍然生效,则要求修改/etc/fstab
#device mountpoint type options dump fsck
/dev/hda6 swap swap defaults 0 0
/swap1 none swap defaults 0 1
4 关闭交换分区
# swapoff swap1
删除/etc/fstab中的相应记录
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)