錯誤描述
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
文件系統(tǒng) 1K-塊 已用 可用 已用% 掛載點(diǎn)
...
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 中創(chuàng)建新的AVD時,出現(xiàn)錯誤(No space left on device)—— on Fedora 27