I need more disk space at /tmp and /usr folders. How will achieve this?
An error appeared:
root@kali:/home/Downloads# ./netbeans-8.1-linux.sh
Configuring the installer...
Cannot create temporary directory /tmp/.nbi-5055107.tmp
I need more disk space at /tmp and /usr folders. How will achieve this?
An error appeared:
root@kali:/home/Downloads# ./netbeans-8.1-linux.sh
Configuring the installer...
Cannot create temporary directory /tmp/.nbi-5055107.tmp
There's couple of ways you can go about this:
As shown in Update failing. Not enough space on /tmp
sudo umount /tmp
sudo mount -t tmpfs -o size=16777216,mode=1777 overflow /tmp
That will give you 16 MB in/mpt
. Adjust size=
to how much you need
$ mktemp -d -p $HOME
/home/xieerqi/tmp.zrBHbp0Yt0
That will make temporary directory in your $HOME
folder, that means you can use as much space as you need
lsblk
, andsudo parted -l
in your question? – David Foerster May 06 '16 at 22:37