Questions tagged [tmp]

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.

317 questions
0
votes
1 answer

scala-devel folder persmission Issue if the user is not root user and tmp folder has limited access - java.io.IOException: Permission denied

My Ubuntu machine has two user (root and Bikram) and tmp folder has following permission. **drwxr-xr-x 1 root root tmp** Now I have tried to run helloworld.scala (Console.println("Hello, world!")) program with the Bikram user in console $scala…
0
votes
1 answer

Get user's temp directory in makefile?

I'm trying to learn the location of the temp directory a user is configured to use. The GNU Make manual mentions TMPDIR in the Directory Variables section: [runstatedir] directory should not be cleaned except perhaps at reboot, while the general…
jww
  • 97,681
  • 90
  • 411
  • 885
0
votes
1 answer

Pyspark Systemml writing/reading from /tmp

I am running a Flask App with a systemml SVM component through pyspark. The app runs for about a day or so, then it begins to error out whenever the SVM is used to make a prediction. The error that is thrown is: Caused by:…
DMAR
  • 200
  • 1
  • 1
  • 7
0
votes
1 answer

Temp directory on root drive runs out of space when PUTing a large file into Apache

I'm putting (via curl on a client) a 10GB file up into an Apache server on Ubuntu Linux (v17.04). The root drive was pretty much full, and the ultimate destination for the PUT is a subversion root that is on a huge drive that's not root. The only…
paul_h
  • 1,859
  • 3
  • 19
  • 27
0
votes
1 answer

Unable to upload media to server with php tmp folder error

I've seen similar questions but the solutions are workarounds or hacks that only for WordPress. this is a PHP issue and i want to solve it for all applications not just WordPress, to the problem: The site media library (Wordpress) will not allow…
Michael Rogers
  • 232
  • 3
  • 22
0
votes
1 answer

Error when starting Android Emulator

I am new to Android Studio and fairly new to MacOSX and I have the following error when starting my app in an emulator 03/23 18:17:24: Launching app $ adb push /Users/Dave/AndroidStudioProjects/Cookies/app/build/outputs/apk/app-debug.apk…
user4360497
0
votes
1 answer

Drupal 8.2.6 /tmp

Drupal 8.2.6 Media Entity 8.x-1.0-alpha4 Ctools 8.x-3.0-alpha27 So after turn on CSS/JS aggregation I noticed that I can not upload images anymore. When I try to upload an image it gave me an error. So I changed my tmp directory to…
Armando Silva
  • 27
  • 1
  • 1
  • 6
0
votes
0 answers

Resize an image on upload then use the move_uploaded_file()

Is there any way to resize the $_FILES["xfile1"]["tmp_name"] before I send it off to the move_uploaded_file() function? I checked every where but nobody seems to use this function after resizing the image. ADDED* // Create image from file …
Carlitos
  • 419
  • 4
  • 20
0
votes
0 answers

sudden /tmp cleanup in iOS 9 and above

I have a small console app I'm using on my JB device (for debugging purposes), which i place in /tmp. From my experience, up unil iOS 8.4, the /tmp folder was cleared only on boot. But now, on occasion, the /tmp dir is cleared - I couldn't figure…
0
votes
0 answers

Schema "tmp" doesn't exist inside SQL generated dump file?

I'm trying to import my SQL dump to psql but there is a problem (as mentioned in the title). I'm not to sure why this happens, and what to do against it. This is the command I am using psql -U postgres -d app -1 -f postgres.sql This is the error…
riech
  • 1
  • 4
0
votes
1 answer

unable to reset permissions on mac (el capitan) for /tmp folder

On my mac, mysql suddenly stopped working after I reboot. After a lot of search, I checked my file permissions are messed up due to which mysql socket file was unable to create in tmp I tried resetting permissions using following command as per this…
yogendra689
  • 106
  • 1
  • 7
0
votes
3 answers

Callee RC: NS_ERROR_FACTORY_NOT_REGISTERED 0x80040154

I have been running VirtualBox for a few months now and I recently updated El Capitan. After do so, the VirtualBox would no longer start. The error message that displayed was: "Callee RC: NS_ERROR_FACTORY_NOT_REGISTERED 0x80040154". Does anyone…
Bobby Wilson
  • 11
  • 1
  • 1
0
votes
0 answers

NullPinterException while writing in Hadoop tmp file

Below is code snippet where goal is to write some files in hadoop /tmp directory but getting NullPointerException(as not hadoop not able to create the directory or write inside /tmp direcoty) I am using single user so no permission issues are…
Nav
  • 23
  • 1
  • 6
0
votes
1 answer

PHP glob can't read tmp

I am using wamp in win7, and I try to read c:\wamp\tmp by glob with php, but the result is an empty array print_r(glob("C:\wamp\tmp\*")); I can see any folder in c:\wamp except c:\wamp\tmp, and I make sure that folders has the same setting about…
黃聖琪
  • 3
  • 2
0
votes
1 answer

Rails 4 - how is the "/tmp" cleaned?

I am generating PDF document and storing it temporarily to the /tmp directory. Once the document is generated and stored in the directory (I am doing it as a background process with Sidekiq), then I upload it to Amazon S3 and delete it from the /tmp…
user984621
  • 46,344
  • 73
  • 224
  • 412