file-permissions Questions
3
When trying to load my keys I get this error
ssh-add ~/.ssh
Permissions 0755 for '/home/starkers/.ssh' are too open.
Note that the permissions are too open for the .ssh directory, not an actual ...
Pilferage asked 14/11, 2013 at 8:2
10
Solved
I'm trying to run a docker image with PostgreSQL that has a volume configured for persisting data.
docker-compose.yml
version: '3.1'
services:
db:
image: postgres
restart: always
volumes:
-...
Somnolent asked 17/5, 2019 at 14:32
11
My previous Flutter version is installed in C:\src\flutter.
When I try to upgrade Flutter, I get this error:
Downloading Dart SDK from Flutter engine
Rename-Item : Access to the path 'C:\src\flut...
Elmaelmajian asked 9/5, 2020 at 8:37
2
Solved
I know you can specify user and group IDs with the docker run command and you can force the same IDs when building an image in order to have an easy life dealing with file permissions (e.g. as desc...
Abductor asked 2/11, 2022 at 10:28
28
Solved
I have been experiencing A LOT of permission issues when using VS code with Windows 10.
When trying to move a folder:
Error: EPERM: operation not permitted, rename 'path a' -> 'path b'
When de...
Nodarse asked 5/11, 2019 at 8:30
45
Solved
I am stuck with this error no matter what directory I am in, and what I type after "npm" in cmd.exe. Here is the npm-debug.log:
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Fi...
Crocoite asked 23/1, 2016 at 2:43
19
Solved
What is the best way to open a file as read/write if it exists, or if it does not, then create it and open it as read/write? From what I read, file = open('myfile.dat', 'rw') should do this, right?...
Sloppy asked 3/6, 2010 at 15:5
29
I've installed openssh for windows and when I run ssh localhost I get
Bad owner or permissions on C:\Users\gary/.ssh/config
I've looked at these 2 questions https://superuser.com/questions/34...
Putumayo asked 19/4, 2018 at 16:53
5
Solved
I'm having struggles with editing the Laravel cache, which is located in storage/framework/cache. I've got a job running that saves to a certain cache, but every time the job runs, this error occur...
Sorci asked 19/1, 2019 at 8:4
13
Solved
I have a git checkout. All the file permissions are different than what git thinks they should be therefore they all show up as modified.
Without touching the content of the files (just want to mo...
Lavina asked 25/3, 2010 at 16:26
2
Solved
I'm struggling a bit to grasp the concept of chmod() from PHP as the course I'm currently taking is a bit outdated and involves safe_mode. It states that as safe_mode is turned off, the restriction...
Esculent asked 14/4, 2014 at 20:57
6
Solved
How can I check file permissions, without having to run operating system specific command via passthru() or exec()?
Morphosis asked 21/8, 2008 at 8:6
5
I get the following error messages when I moved my code from my laptop to my Mac Mini and opened it over there:
myProject is locked for editing and you may not be able to save your changes?
...
Bourgeois asked 5/3, 2012 at 21:48
5
Solved
I am trying to set a custom umask for a tomcat 8 instance, tried to make it the good way by using the UMask directive in systemd tomcat unit as seen here without luck.
I'd like to set a 022 umask ...
Dualism asked 1/2, 2017 at 9:9
20
Solved
Seems as though an update on Windows 10 overnight broke Python. Just trying to run python --version returned a "Permission Denied" error. None of the three updates; KB4507453, KB4506991, or KB45090...
Energetic asked 10/7, 2019 at 16:23
5
Solved
How are the permissions for files created by RollingFileAppender determined?
I recently changed a daemon process I have to be run as a non-root user and the files are now being created with permis...
Artair asked 25/10, 2011 at 17:46
10
Solved
I just installed a linux system (Kubuntu) and was wondering if there is a program to make python programs executable for linux.
Integrant asked 20/11, 2008 at 10:27
1
I'm unable to write to a mounted volume when in my container (through ssh) without sudo permissions. The mounted folder is host user's home folder at the host. I'm running a rootless docker daemon....
Duchamp asked 25/5, 2021 at 21:17
4
I am unable to save my files using Pycharm and I'm not sure how to fix this problem.
I have tried doing a fresh install of Pycharm using JetBrains Toolbox to make sure that it is set up correctly ...
Basketry asked 12/3, 2018 at 21:3
4
Solved
I wanna set the permissions on a file to "can not be deleted" in C#, only readable. But I don't know how to do this. Can you help me ?
Goddess asked 28/9, 2011 at 22:32
15
Solved
I keep getting this error when trying to configure the upload directory with Apache 2.2 and PHP 5.3 on CentOS.
In php.ini:
upload_tmp_dir = /var/www/html/mysite/tmp_file_upload/
In httpd.conf:
Dir...
Interdental asked 12/11, 2011 at 10:27
4
I was changing user and group ownership using the following command:
sudo chown -R apache:www /var/www
However, I noticed that whenever I added a new file or folder to that directory, the owner ...
Muezzin asked 7/8, 2015 at 20:34
20
Solved
How can I grant permissions to a user on a directory (Read, Write, Modify) using the Windows command line?
Cadastre asked 28/5, 2010 at 11:59
6
I've recently changed the default BackupDirectory for a SQL Server 2008 R2 instane in the registry from I:\ to K:\ and since then whenever I try to backup or restore using SSMS I'll get an error
...
Honolulu asked 30/12, 2013 at 3:34
3
Solved
Given the following Dockerfile
FROM ubuntu
RUN groupadd mygroup
RUN useradd -ms /bin/bash -G mygroup john
MKDIR /data
COPY test/ /data/test data
RUN chown -R john:mygroup /data
CMD /bin/bash
In ...
Fulmis asked 5/3, 2015 at 13:49
1 Next >
© 2022 - 2024 — McMap. All rights reserved.