Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I am trying to create an folder on vm instance however I am keep getting the error saying the no space .The space storage as follow:
And the error message is :
Can any one help me plz
Your /home directory is full and needs to be cleared. To identify which directory this is, go to /home and identify which files/directories are taking up space.
$ cd /home
$ du -sh *
From here, you should be able to drill down and empty files as required.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 11 months ago.
Improve this question
I am new to Python and I wanted to try coldtype to play with variable fonts (https://coldtype.goodhertz.com/install.html), but when I type ~ $ pwd in terminal i get zsh: permission denied: /Users/myName. I already enabled auto_cd in ~/.zshrc but I still get the same error.
(i have Big Sur macOS)
I'm guessing you copied that from an example. The ~ $ part is just showing you what the prompt might look like. The part you're supposed to type is just pwd.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
I wrote some script with tkinter as a GUI and pyinstaller to convert it to an exe.
However gmail doesn’t allow me to share the file
if I share the file with google drive then windows security gets triggered
What’s a good safe and easy way for people who don’t know how to install python to use the code I write in python.
Thank you
You could use Discord. I believe you can upload an exe to Discord.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
Im pretty new in Kali and confused with the following issue:
Every time i create a text file, it is saved as a python file
If i want to open it, the python launcher for Windows tries to open the file, but it never happen.
Nevertheless, it is possible to open it with an text editor.
Why does it happen?
Where can i find the settings, so .txt documents are always loaded with gedit?
(I use an oracle vm to launch kali on my windows system)
rename your file with double quote "file.txt"
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
Hi there I have a router with OpenWrt and to enable a Startupscript, I first have to create the script.
I needt to create it in /etc/init.d/
The script is called swapon. So when I enter /etc/init.d/swapon I enter VI mode and type the script
Then I exit editing mode and type :w to save
Then it says 'error no such file or directory'
So how to create this script and let it save?
Please help.
You need to be root to edit things in /etc/. Try the following:
Make sure sudo is installed
Edit the file using sudo vi /etc/init.d/swapon
If it still complains, create the file first using sudo touch /etc/init.d/swapon
Finally, make sure the directory exists - if not, use sudo mkdir /etc/init.d
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'm following a Flask tutorial, in which I created a virtual environment to run the application.
To run the file, it asks me to run this command:
./run.py
as opposed to:
python run.py
What does the ./ do exactly and why is it necessary?
It is used because the current directory is not in $PATH. And the reason why it is not in the current directory on that list is security.
So in simple terms you can say that the ./ says 'search in the current directory for my script rather than searching at all the directories specified in $PATH'.