ubuntu ssh远程执行shell脚本,ssh挂载远程文件夹到本地

1,首先写好要运行的脚本 vi test.sh, 加上执行权限 chmod +x test.sh

2,把脚本文件放到远程服务器对应的用户目录

3,在远程用户目录下建立一个文件.bash_profile,写入自己的环境配置,(如果有该文件,就直接添加就行)

4,在本机执行 ssh [email protected] "source ~/.bash_profile;~/test.sh"

5,这样就不会出现找不到自己的环境变量了



一,ssh 挂载远程文件夹

1,sudo apt-get install sshfs

2,在/etc/fstab 中添加

sshfs#[email protected]:/ /mnt/user     fuse      user,_netdev,exec,reconnect    ,uid=1000,gid=1000,idmap=user,allow_other  0   0




你可能感兴趣的:(ubuntu ssh远程执行shell脚本,ssh挂载远程文件夹到本地)