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.

280 questions
-1
votes
4 answers

TMPro not found in Visual Studio Code

I'm using Visual Studio Code to write my code for Unity. The following extension I've added to Visual Studio Code: C#, Debugger for Unity, Unity Code Snippets & Unity Tools Using TMPro to work with TextMeshPro components throws me this error:…
Spoon
  • 67
  • 2
  • 8
-1
votes
2 answers

Cannot create directory in tmp(overthewire bandit24)

I'm trying to solve bandit24 on overthe wire on ubuntu virtual machine. I have already seen the solution. But i have a problem,when i try to create a directory on tmp as bandit24@bandit i get this message: Cannot create directory…
-1
votes
2 answers

How to merge the first N words of multiple tmp files using cmd

How to merge the first N words of multiple tmp files using cmd. I tried merging the first line but when I check the text file, it is showing 4 lines for every 1 line in the tmp files EXAMPLE: TMP FILE 1: FILE NAME: GALILEO1 CONTENT: SAMPLE WORDS TO…
-1
votes
2 answers

Change MySQL /tmp to /somedrive/mysqltmp in centos 7 for error code 28

I am trying to change the temp location for MySQL from default /tmp to /somedrive/mysqltmp as i am getting Errcode: 28 - No space left on device Solution: 1 I tried to add a line in /etc/my.cnf as tmpdir=/somedrive/mysqltmp then issued sudo…
s_mj
  • 609
  • 5
  • 21
-1
votes
1 answer

No space left on device MANJARO

I am using Manjaro Linux and i want to install Android Studio Beta from "Manjaro Package Manager". When I press the "install" button, it downloads 845 megabytes of data. And then I get a "no space left on device" error. But there is 45 gigabytes. I…
-1
votes
1 answer

Where do tmp files go after Bash finishes with a "local" variable?

I really screwed myself over recently. I have a function which will swap the contents of two files: function swap() { local TMPFILE=tmp.$$ mv "$1" "$TMPFILE" mv "$2" "$1" mv "$TMPFILE""$2" } ^ As you can see…
nargetdev
  • 23
  • 1
  • 5
-2
votes
1 answer

Understanding node `tmp` package

I'm not sure how to use the tmp package of node correctly. Maybe someone can give me an example Filename generation It is possible with this library to generate a unique filename in the specified directory. var tmp =…
Michael
  • 1,932
  • 2
  • 28
  • 37
-2
votes
1 answer

php tmpfile() - Could not create temporary files

I'm using Mac OSX, and when I try to create a temporary file, I get this message: $temp_file = tmpfile(); Could not create temporary files for attachments. Your tmp directory may be unwritable by PHP I checked the directory, and here's what I…
redolent
  • 3,699
  • 5
  • 30
  • 42
-3
votes
1 answer

Uploading a file to Google Signed URL with PHP cURL

I am trying to upload a file to a Google Signed URL with cURL in PHP. I have the file being posted from a form and can access it with the $_FILES var. However the file that actually gets uploaded is not the right file and I think it is to do with…
Paddy Hallihan
  • 1,426
  • 2
  • 19
  • 49
-4
votes
2 answers

Why does GIT ignore tmp folders?

Just noticed (after 4 years) that git seems to automatically ignore any tmp folder in any subdirectory of my project. Now, I'm quite happy with that but it worries me: are there other things it's ignoring by default? My .gitignore does have a line…
1 2 3
18
19