linux 安裝oracle時(shí)swap空間不足
Linux下增加swap分區(qū)大小
方法一、通過(guò)swap文件增加:
1、創(chuàng)建交換文件
[root@SOA ~]# dd if=/dev/zero of=/tmp/mem.swap bs=1M count=4096記錄了4096+0 的讀入記錄了4096+0 的寫出4294967296字節(jié)(4.3 GB)已復(fù)制,54.6386 秒,78.6 MB/秒
當(dāng)然根據(jù)bs指定的大小不同,我們也可以通過(guò)下面的文件增加:
dd if=/dev/zero of=/tmp/mem.swap bs=1M count=4096 (增加4G)或
dd if=/dev/zero of=swapfile bs=1024 count=1048576 (增加1G)
--查看swap分區(qū)大小
[root@rac2 ~]# free -m
total used free shared buffers cached
Mem: 1554 1373 181 0 118 891
-/+ buffers/cache: 363 1191
Swap: 2047 0 2047
--添加swap分區(qū)
[root@rac2 ~]# dd if=/dev/zero of=swapfile bs=1024 count=1048576
1048576+0 records in
1048576+0 records out
1073741824 bytes (1.1 GB) copied, 9.50229 s, 113 MB/s
--格式轉(zhuǎn)換并掛載
[root@rac2 ~]# mkswap /tmp/mem.swap
/tmp/mem.swap: No such file or directory
[root@rac2 ~]# mkswap swapfile
mkswap: swapfile: warning: don't erase bootbits sectors
on whole disk. Use -f to force.
Setting up swapspace version 1, size = 1048572 KiB
no label, UUID=9d12a71b-0ea1-4a16-8e8c-97e2457852d5
[root@rac2 ~]# swapon swapfile
[root@rac2 ~]# free -m
total used free shared buffers cached
Mem: 1554 1479 74 0 56 1088
-/+ buffers/cache: 335 1219
Swap: 3071 0 3071
參考:https://jingyan.baidu.com/article/6fb756ec93db10241858fb06.html