The traditional name of directories (especially on Unix and Unix-like operating systems) used to store temporary files. Also, the filename extension of temporary files.
Questions tagged [tmp]
317 questions
0
votes
1 answer
Change /tmp folder for jenkins in debian
I recently had a low disc space issue in jenkins. Although the home directory has sufficient space, the /tmp did not and it brought my master down.
I tried many ways to fix this
Discard old build and deleting old workspaces
Restarting jenkins
Tried…

aswathy
- 139
- 2
- 16
0
votes
1 answer
WSO2 tmp directory
How is it possible to clean tmp directory automatically using WSO2 settings?
A lot of files are created every day and it would be good to find a solution.
0
votes
0 answers
Which Path is good for storing the Kafka's topics data and log?
I know that Kafka set the default log directory /tmp/kafka-logs to store the logs and topics' content.
But system will clear the data in the /tmp when the machine reboot, so all the topics will disappear when I do that.
I have tried to make a new…

Nelson
- 1
- 2
0
votes
0 answers
How to set /tmp/ on server for a program that runs in python?
I am having some errors with a command-line tool deeptools bamCompare, I'm working off of an aws server. The files I am trying to process with this tool are quite large so it ends up generating a 'no space left on device error' because my /tmp/…

j---xyz
- 1
0
votes
0 answers
Directory in tmp over 90 days old | permission denied for root | all question marks for read and write | user can see root owns dir
I am trying to remove a file in my /tmp dir I have just been made aware of due to Lynis.
One security check suggested I remove all files in tmp over 90 days old.
I have a cronjob now:
find /tmp/ -type f -mtime +90 -exec rm -rf {} \; > "$report_path"…

jshwi
- 1
- 2
0
votes
0 answers
'/tmp/hadoop-Aditya' is not recognized as an internal or external command
I am getting an error when executing a simple Spark job via eclipse. Can someone please help? This is my code:
val sc=SparkSession.builder()
.master("yarn")
.appName("hive Test")
.config("spark.hadoop.fs.defaultFS","hdfs://localhost:9000")
…
0
votes
2 answers
C++ Templates: value should be compile-time constant but compiler says it's not
template class rtH{
public: static const long long int sqlc=cx*cx+cy*cy+cz*cz;
static const long long…

he77789
- 101
- 4
0
votes
0 answers
Set the date for Sunday and Saturday equal to that of Friday
I have a question about a problem with my data analysis. I have a large data set with sentiment scores for every day of the week, but I want to add the weekends to the Fridays. This for the reason that I can make stock predictions for the Monday. My…

Danny
- 1
0
votes
0 answers
Angular CLI. How can create tmp files for caches
Angular CLI. How can create tmp files for cache, to don't request every time? For example: if we add new data, then on tmp update json file, then request to tmp files, not backend. Or create files on angular but don't reload page
0
votes
1 answer
How to store in and access from , GAE /tmp to Django html?
I found this link that says we can use /tmp to store files for our instance in Google App Engine.
https://cloud.google.com/appengine/docs/standard/python3/using-temp-files
But the problem is that
1) How do i store to the \tmp folder, is it by just…

Aayush Gupta
- 504
- 1
- 5
- 28
0
votes
0 answers
Disk space error on ubuntu while trying to install a program (Lead DBS)
I'm trying to install a program and running into disk error issues. When I run the command
./LeadDBSinstaller.install
I get this error:
/tmp/mwkPH896/bundle.zip: write error (disk full?). Continue? (y/n/^C)
My df -h looks like this:…

BennyD
- 55
- 7
0
votes
1 answer
Using TfidfVectorizer with Punkt in Cloud Function
My current understanding of TfidfVectorizer is it requires nltk.download("punkt") to be run before transformation on input data, as all the default tokenizers are available in punkt. Currently, because I use TfidfVectorizer in my Cloud Function, I…

Mario Ishac
- 5,060
- 3
- 21
- 52
0
votes
1 answer
While I'm including files by Class in php, file doesn't see any variables - like they don't exists
I have created class for "creating" widgets. You call static function, pass variables and have your sweet widget.
For now it worked because I have been using variables created in widget file. But now I tried to use some "global" variable and it…

Mortimer
- 300
- 5
- 11
0
votes
0 answers
/tmp size fluctuating on Heroku
I noticed when checking the size of the tmp folder (df -h /tmp) that it's quite large ~70 GB and fluctuates a few GB every minute. I don't have anything in my application saving to the /tmp folder and am wondering what is going on? What is the…

David Hurley
- 43
- 4
0
votes
1 answer
Unable to log into file using logcat running from script as a service in AOSP 5.1
I am trying to log to a file from custom shell script started as service using init.project.rc. On using below lines in the script(ethmon.sh), i am unable to log it to file test.txt. It is not even creating the file. Any hints on this?
ethmon.sh
…

Ayush Laad
- 1
- 3