open another connection if actuall is in use
Status: Beta
Brought to you by:
qiq
If i start a job in background on a remote-fs, i can't
do anything else on the remote-fs.
For Example:
"""
# first let's mount a remote filesystem
mkdir -p ~/mount/me@server
shfsmount me@server ~/mount/me\@server
cd ~/mount/me\@server
# then start a job that needs the connection
find > home/me/content.txt &
# and now it's impossible to do anything else
ls -l
"""
oh, and sorry for my bad english...
Logged In: YES
user_id=7404
It is definietly single threaded in execution, but the find
does not have to complete before the ls will execute.