소스 검색

swapon: add page (#1996)

Shashank Shekhar 7 년 전
부모
커밋
726b272e12
1개의 변경된 파일23개의 추가작업 그리고 0개의 파일을 삭제
  1. 23 0
      pages/linux/swapon.md

+ 23 - 0
pages/linux/swapon.md

@@ -0,0 +1,23 @@
+# swapon
+
+> Enables device or file for swapping.
+
+- Get swap information:
+
+`swapon -s`
+
+- Enable a given swap partition:
+
+`swapon {{/dev/sdb7}}`
+
+- Enable a given swap file:
+
+`swapon {{path/to/file}}`
+
+- Enable all swap areas:
+
+`swapon -a`
+
+- Enable swap by label of a device or file:
+
+`swapon -L {{swap1}}`