使用云服务器git clone某个项目时,遇到如下问题:
fatal: Out of memory, malloc failed (tried to allocate xxxxx bytes)
解决方法增大swap空间:
在shelll里直接输入如下五行
sudo mkdir -p /opt/temp
sudo dd if=/dev/zero of=/opt/temp/swapfile bs=1M count=1024
sudo chmod 600 /opt/temp/swapfile
sudo mkswap /opt/temp/swapfile
sudo swapon /opt/temp/swapfile