255 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
122
views
Looking for a VSCode FTP extension with SSH FS-like features
I'm trying to find a Visual Studio Code extension that allows me to connect to an FTP server with functionality similar to what the SSH FS extension provides.
I previously used SSH FS and appreciated ...
1
vote
2
answers
284
views
sshfs does not seem to work in Colab Enterprise notebook
I've been trying to use sshfs to connect a notebook running in Colab Enterprise to my local machine (running an ssh server) and mount a local directory into the remote Runtime. But I get the error ...
0
votes
1
answer
389
views
Standard input redirection in "net use" command is not working
I need to provide access to a remote folder on a shared hosting from a few Windows computers. This hosting service offers me SSH and just only one user account. It's not possible to create more SSH ...
0
votes
0
answers
227
views
git - git status slow on remote machine after executing git status on local machine which mounts remote using sshfs
I have a local machine(Centos 7) that mounts a repo from remote machine(Centos 6) using sshfs(2.10). And I can connect them both using ssh in my laptop. My daily workflow is opening my laptop, ssh to ...
1
vote
1
answer
641
views
Sending a password to sshfs inside a GUI front end
I am trying to make a front end for sshfs in Linux where the user connects with a key + password. I want to be able to send the password to ssh when it asks, then have sshfs stay running when the gui ...
0
votes
1
answer
555
views
Permission denied for writing in sshfs with Docker
I am trying to mount a sshfs for a service. There is my Docker Stack config:
...
myservice:
...
volumes:
- "sshfs_volume:/home/app/web/media:rw"
...
volumes:
sshfs_volume:
...
-1
votes
1
answer
288
views
Autocreate folder for sshfs mount without root permissions
I'd like to be able access files from a server using sshfs. For this, sshfs needs a folder as a mount point.
When I insert a usb drive and open it via my file manager (thunar), a folder in /run/media/$...
0
votes
0
answers
513
views
Script to automatically mount sshfs shares is not executed by KDE autostart
I have a remote file server that I would like to access via SSHFS. For authentication I have disabled passwords and use key based authentication with ssh-agent. To automatically mount the share on my ...
0
votes
2
answers
139
views
ssh, remote file, docker
I usually work on projects with microservices and I am fighting issues with performance using my local laptop with a docker center, for now, I have created a remote environment in AWS where I have my ...
0
votes
2
answers
116
views
Trying to send passwrod via expect script in sshfs
I have server that has 2fa and does not allow login using ssh keys. I want to connect via FTP, I am using sshfs.
Normal sshfs user@host:/remote/ /local/ works fine. But I wanted to pass the passwrod ...
0
votes
2
answers
1k
views
Unable to mount SSHFS directory with rw permission
I have a directory on a CentOS 7.6 machine that I want to mount on another machine that runs RedHat 7.9.
On the RedHat machine, I add this line to /etc/fstab:
[email protected]:/mnt/Scan-PDF /mnt/...
1
vote
0
answers
504
views
VSCode on SSHFS virutel disk and Git project
I'm using VS Code and a workspace on a Windows network drive via SSHFS. There's no issue here, it works without any problem.
However, I've decided to version my code and finally start using Git. I've ...
0
votes
0
answers
386
views
Mount folder using SSH in Kubernetes / Azure
I'm able to mount a folder using SSH when I run my docker container locally (outside Kubernetes/Azure):
docker volume create --driver vieux/sshfs -o sshcmd=[user]@[IP]:/location_on_server -o password=[...
0
votes
1
answer
71
views
Remove all files in *that* directory except *these* files - dangerous in remote directory?
I'm writing a small bash script for deploying a bunch of files to a specific remote directory. The process is as follows:
Mount remote directory (sshfs)
Remove everything except these few files
Copy ...
2
votes
1
answer
607
views
Use connection pooling with python sshfs (fsspec) in Python
I'm using sshfs to fetch video files from a remote SSH storage:
@app.get("/video/{filename}")
async def video_endpoint(
filename, range: str = Header(None), db=Depends(get_db)
): # ...