错误描述
SDK manager 安装NDK时报错 No space left on device.
To install:
- NDK (ndk-bundle)
Preparing "Install NDK (revision: 17.1.4828580)".
An error occurred while preparing SDK package NDK: No space left on device.
查看磁盘使用
[hiro_wang@localhost]$ df -lk
文件系统 1K-块 已用 可用 已用% 挂载点
...
tmpfs 1524264 1524264 0 100% /tmp
...
解决办法
mkdir /opt/tmp
umount -l /tmp
mount --bind /opt/tmp /tmp
另一种办法(未验证)
# increase the size of the /tmp
mount -o remount,size=8G,noatime /tmp
参考链接
① (OK) Android Studio 3.2 中创建新的AVD时,出现错误(No space left on device)—— on Fedora 27