-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is there a way to make the pipe file accessible when controling using python as it is relocated and unaccessible to user, I got when using pyaudiacity
PermissionError: [Errno 13] Permission denied: '/tmp/snap-private-tmp/snap.audacity/tmp/audacity_script_pipe.to.1000'
I modified pyaudacity main file
with
USE_SNAP=True
snap_tmp = ""
if USE_SNAP:
snap_tmp="/tmp/snap-private-tmp/snap.audacity"
write_pipe_name = snap_tmp+"/tmp/audacity_script_pipe.to." + str(os.getuid())
read_pipe_name = snap_tmp+"/tmp/audacity_script_pipe.from." + str(os.getuid())
eol = "\n"and I had also to do extra sudo chown on linux behind:
sudo chown `whoami`:root /tmp/snap-private-tmp
sudo chown `whoami`:root /tmp/snap-private-tmp/snap.audacity
sudo chown -R `whoami`:root /tmp/snap-private-tmp/snap.audacity/tmpWhat changes would you like?
Access or relocating possibily to user home writable.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request