Skip to main content

R Studio

Setting a new tmp directory

often when using packages like raster the /tmp/ directory will fill with temporary files. To prevent this you can set a new temporary directory in one of two ways details below

Temporarily set the tmp directory

note that the ~/tmp/ directory must exist and that this will use your home folder which may cause your home folder to fill up if you do not have enough free space. Free space in your home folder can be checked with: 

df -h ~/

if you do not have /tmp in your home folder you can create it with: 

mkdir ~/tmp
> tempdir()
[1] "/tmp/RtmpEpCIDc"
> newtmp <- "~/tmp/rcall"
> dir.create(newtmp, recursive = TRUE)
> Sys.setenv(TMPDIR = tools::file_path_as_absolute(newtmp))
> unlink(tempdir(), recursive = TRUE)
> tempdir(check=TRUE)
[1] "/root/tmp/rcall/RtmpmGFIia"
Permanently set the tmp directory

run the following command:

vi ~/.Renviron

and enter the following:

TMPDIR=~/tmp

You will need to quite your current R session and start a new one for it to take effect.