sh SSHFS安装(稍微)更容易

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh SSHFS安装(稍微)更容易相关的知识,希望对你有一定的参考价值。

#!/bin/bash
#Example usage:
#  . /path/to/this/file/sshfs-mount.sh yourwebsite.com ubuntu /remote/file/path your-pem

mountDir=/mnt
pemDir=/your/local/pems
echo "Mounting"

if [ $4 ]
then
	ssh-add $pemDir/$4.pem
fi

if [ $1 ]
then
    echo 'IP ' $1
    if [ $2 ]
    then
    	echo 'USER' $2
    	mkdir $mountDir/$1
    	umount $mountDir/$1
    	if [ $3 ]
    	then
    		sshfs -o reconnect $2@$1:/$3 $mountDir/$1 -oauto_cache,reconnect,defer_permissions,negative_vncache,noappledouble,volname="$2@$1"
    	else
    		sshfs -o reconnect $2@$1:/ $mountDir/$1  -oauto_cache,reconnect,defer_permissions,negative_vncache,noappledouble,volname="$2@$1"
    	fi
    fi
fi

以上是关于sh SSHFS安装(稍微)更容易的主要内容,如果未能解决你的问题,请参考以下文章

sh 挂载SSHFS

SSHFS使用笔记

sh 使用sshfs_mount脚本在本地挂载/ star / institutions / rice

fuse-sshfs挂载两台服务器数据双向同步

sh sshfs的。 Montar un sistema remoto de ficheros en local mediante el comando ssh en linux。

sh sshfs的。 Montar un sistema remoto de ficheros en local mediante el comando ssh en linux。