美文网首页
报错解决: fatal: Out of memory, mall

报错解决: fatal: Out of memory, mall

作者: 你是不是个小傻子 | 来源:发表于2021-12-02 19:14 被阅读0次

使用云服务器git clone某个项目时,遇到如下问题:

fatal: Out of memory, malloc failed (tried to allocate 2000000000 bytes)

百度后找到如下解决方法:

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```

相关文章

网友评论

      本文标题:报错解决: fatal: Out of memory, mall

      本文链接:https://www.haomeiwen.com/subject/bxkuxrtx.html