Computer/Solaris

Solaris Swap 공간 늘리기

짱이네 2009. 1. 9. 11:07
 

Solaris Swap 공간 늘리기 

- shlee

swap공간 부족으로 application stop현상 발생시 memory를 추가하기 전에 임시방편사용


# swap -s

총: 29832k 바이트 할당 + 5256k 예약 = 35088k 사용, 6756928k 사용 가능


# df -k
파일시스템           K바이트    사용    가용   용량    설치지점
/dev/dsk/c1t0d0s0    9821621 4184001 5539404    44%    /
/proc                      0       0       0     0%    /proc
mnttab                     0       0       0     0%    /etc/mnttab
fd                         0       0       0     0%    /dev/fd
swap                 6754960      40 6754920     1%    /var/run
swap                 6754920       0 6754920     0%    /tmp

/dev/dsk/c1t0d0s1    16516485   16401 16334920     1%    /swap
/dev/dsk/c1t0d0s2    8671022 1057721 7526591    13%    /data

# mkfile -v 1g /data/swapfile     (swap 늘릴 파일 생성 1g 생성)
/data/swapfile 1073741824 bytes
#
# cd /data
# ls -l
총 2098208
drwx------   2 root     root        8192 12월 22일  14:55 lost+found
-rw------T   1 root     other    1073741824  1월  9일  10:00 swapfile
#
# swap -a /data/swapfile  (swap
운영 체제 충돌 덤프가 이전에 사용 불가능하게 됨 --
새 덤프 장치를 선택하기 위해 dumpadm(1M) -d swap을 호출 중
# ls -l
총 2098208
drwx------   2 root     root        8192 12월 22일  14:55 lost+found
-rw------T   1 root     other    1073741824  1월  9일  10:01 swapfile


# df -k
파일시스템           K바이트    사용    가용   용량    설치지점
/dev/dsk/c1t0d0s0    9821621 4184001 5539404    44%    /
/proc                      0       0       0     0%    /proc
mnttab                     0       0       0     0%    /etc/mnttab
fd                         0       0       0     0%    /dev/fd
swap                 7803496      40 7803456     1%    /var/run
swap                 7803456       0 7803456     0%    /tmp

/dev/dsk/c1t0d0s1    16516485   16401 16334920     1%    /swap
/dev/dsk/c1t0d0s2    8671022 1057721 7526591    13%    /data


# swap -s

총: 29664k 바이트 할당 + 5424k 예약 = 35088k 사용, 7805512k 사용 가능



반응형