Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Interactics authored Mar 14, 2021
1 parent d53c5c0 commit b3bee50
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,16 @@ copy `vimrc.txt` and paste at `~/.vimrc`


copy `terminator_setting.txt` and paste at `~/.config/terminator/config`

## Memory Swap
sudo swapoff -v /swapfile # 비활성화
sudo fallocate -l 8G /swapfile # 8G 설정
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile

# /etc/fstab 에서
swapfile none swap sw 0 0

# 확인
free -m

0 comments on commit b3bee50

Please sign in to comment.