[리눅스]SWAP 메모리 생성
# Operation System/Linux2021. 4. 5. 17:50[리눅스]SWAP 메모리 생성

# free -g total used free shared buff/cache available Mem: 3 3 0 0 0 0 Swap: 1 1 0 # dd if=/dev/zero of=/swapfile bs=1M count=2048 # chmod 600 swapfile # mkswap /swapfile Setting up swapspace version 1, size = 2097148 KiB no label, UUID=15db3488-3756-4213-bc12-151e08072f42 # swapon /swapfile # vi /etc/fstab 아래 내용 추가 /swapfile swap swap defaults 0 0 # free -g total used free shared buff/cache ava..

xfs_quota: cannot set limits
# Operation System/Linux2020. 3. 13. 15:17xfs_quota: cannot set limits

xfs_quota: cannot set limits: 함수를 구현하지 않았습니다 mount정보 확인해보니 pquota옵션이 빠져있었음. # 해결방법 fstab을 수정해서 재부팅하거나 remount하는 방법 $ mount --options remount [마운트정보] 테스트해보니 remount는 안먹혀서 결국 재부팅함 ㅜ

image