Ensure there is enough space in /tmp and that the installation package is not corrupt Signal caught, cleaning up
在安装CUDA9.0时出现这样的报错,原因是/tmp目录下空间不足、在参考了几篇博客之后,下面给出我的解决方法:
首先在某个空间大的分区建立一个目录
mkdir -p "$HOME/debs/Tmp"
然后以root身份进入/tmp,把/tmp换成指向那个新建目录的软链接
ln -s "$HOME/debs" /tmp
cuda9.0成功安装!再次领悟了软链接的魅力!
至此结束!