Tagged Questions
3
votes
2answers
83 views
Encrypting loopback images without using a loopback device
I'm trying to design a firmware update system for an embedded Linux system. My plan is to send an image that can be mounted on the target system, so I don't need to unpack the entire file. I also want ...
1
vote
2answers
313 views
Redhat: non-root user needs to copy files to a NFS share
Typically non-root users cannot mount directories.
Running Redhat
Have 6GB tar.gz (/dir/somefile.tar.gz)
Need to move to a NFS share on another box (//somebox/somefolder/)
We have no other access. ...
5
votes
1answer
1k views
Is it possible to run a webdav fuse client with no root access?
I have seen examples showing how to use davfs2 under linux, but each has involved one of these things:
Running mount as root
Adding an entry to /etc/fstab
Running mount.davfs setuid, which, alas, ...
3
votes
3answers
2k views
Unable to mount NTFS partition from user account
I'm trying to mount a Windows ntfs partition on openSuse 11.4. When I mount it using the root account (either directly or via sudo) it mounts without problems. But when I try mounting it without any ...
2
votes
3answers
635 views
Is there a linux vfs tool that allows bind a directory in different location (like mount --bind) in user space?
For a user process, I want to mount a directory in other location but in user space without root privilieges. Something like mount --bind /origin /dest, but with a vfs wrapper. Like a usermode ...