我需要 /tmp 和 /usr 文件夹的更多磁盘空间。如何实现?
出现错误:
root@kali:/home/Downloads# ./netbeans-8.1-linux.sh
Configuring the installer...
Cannot create temporary directory /tmp/.nbi-5055107.tmp
答案1
有几种方法可以解决此问题:
#1,重新挂载更大容量的 /tmp
如图所示 更新失败。/tmp 上空间不足
sudo umount /tmp
sudo mount -t tmpfs -o size=16777216,mode=1777 overflow /tmp
这将为您提供 16 MB 的/mpt
。size=
根据需要进行调整
#2,在你的主目录中创建临时目录
$ mktemp -d -p $HOME
/home/xieerqi/tmp.zrBHbp0Yt0
这将在你的$HOME
文件夹中创建临时目录,这意味着你可以根据需要使用任意大小的空间