xetdata / nfsserve

A Rust NFS Server implementation
BSD 3-Clause "New" or "Revised" License
586 stars 48 forks source link

Chromium network access from NFS mount #26

Open freshmanken opened 4 months ago

freshmanken commented 4 months ago

Hi,

I am trying to execute a program that uses chromium underneath to access network but it fails. Searched around looks like chromium is not supported to run in the NFS mount due to sandbox mode : https://superuser.com/questions/837229/chromium-browser-will-not-work-when-in-located-on-network-drive. Curious is there a way to bypass this in the NFS serve lib? (Unfortunately I don't have option to configure or avoid chromium right now)

Thanks!

ylow commented 4 months ago

Hmmmm... From that issue you linked posted it looks like there is a "--no-sandbox" command you can pass to chromium?

freshmanken commented 4 months ago

I am trying to run a program that wraps chromium, I don't have permission to modify that program so I cannot pass that command :(