Plugin System.UnauthorisedAccessException on Linux

Status
Not open for further replies.

Gaia

Member
Pronouns
she/her
Code:
Error type: System.UnauthorizedAccessException
   Message: Access to the path 'c:\Penumbra\hs-Shredded Sweater-1.1.0-K1ps\.hs-hashes' is denied.
   HResult: 0x80070005
   at System.IO.FileSystem.SetAttributes(String fullPath, FileAttributes attributes)
   at Heliosphere.DownloadTask.CreateDirectories() in /_/DownloadTask.cs:line 326
   at Heliosphere.DownloadTask.Run() in /_/DownloadTask.cs:line 163

Happens with any mod I try to download; of note is that the directories do get created properly, it just then can't go inside of them I guess?
Only thing I can think of is that it's something to do with my Penumbra folder being on an NTFS drive and symlinked into the game's wineprefix (which I have done for dual-booting purposes); but Penumbra itself has no such issues with installing, accessing, and editing mods, so I'm not sure why HS would be different.
 
Solution
fixed it by changing the entry in fstab like this:
Code:
UUID=asdfghjkl   /mnt/Data    ntfs defaults,rw,user,exec,uid=1000,gid=1000,umask=000,windows_names    0   0
Might or might not be overkill in some parts but it does the job.
fixed it by changing the entry in fstab like this:
Code:
UUID=asdfghjkl   /mnt/Data    ntfs defaults,rw,user,exec,uid=1000,gid=1000,umask=000,windows_names    0   0
Might or might not be overkill in some parts but it does the job.
 
Solution
I'm having the same or similar problem:


Code:
Error type: System.UnauthorizedAccessException
   Message: Access to the path 'c1201e0246_dwn.mdl' is denied.
   HResult: 0x80070005
   at System.IO.FileSystem.RemoveDirectoryRecursive(String fullPath, WIN32_FIND_DATA& findData, Boolean topLevel)
   at Heliosphere.DownloadTask.<CreateDirectories>b1394() in //DownloadTask.cs:line 357
   at Polly.ResiliencePipeline.<>c.<Execute>b290(ResilienceContext , Action state)
--- End of stack trace from previous location ---
   at Polly.ResiliencePipeline.Execute(Action callback)
   at Heliosphere.DownloadTask.CreateDirectories() in //DownloadTask.cs:line 357
   at Heliosphere.DownloadTask.Run() in //DownloadTask.cs:line 173

but I'm a linux newbie and my friend warned me about making these changes, said to not mess with fstab, also my hdd is not ntfs, but ext4.
 
Sorry, I can't help with filesystem misconfigurations. You'll have to figure out why the access is being denied; it's not a Heliosphere-caused issue.
 
Status
Not open for further replies.
Back
Top