blob: 490b2c7a6fbe619f984726f755dd2702c02ed366 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
sshfs \
-o compression=no \
-o idmap=user \
-o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 \
ubuntu@10.167.131.24:/home/ubuntu \
/home/devi/sshfs/lxc/ubuntu2204_python
sshfs \
-o compression=no \
-o idmap=user \
-o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 \
ubuntu@10.167.131.30:/home/ubuntu \
/home/devi/sshfs/lxc/ubuntu2204_js
|