Mounting AWS SFTP as a Drive (Mac)
Guide to mounting an s3 bucket via SFTP as a drive on your computer
sshfs -o IdentityFile=RSAPublicKeyLocation -odebug,sshfs_debug,loglevel=debug -o defer_permissions -o noappledouble -o volname=patterns username@assets_sftp.boston.gov:/patterns.boston.gov/assets ~/mnt/patterns/
#!/bin/sh USERNAME=sftp_username RSAPUBLICKEYLOCATION=~/.ssh/id_rsa MOUNTLOCATION=~/mnt/patterns/ sshfs -o IdentityFile=$RSAPUBLICKEYLOCATION -o reconnect,ServerAliveInterval=15,ServerAliveCountMax=3 -o defer_permissions -o noappledouble -o volname=patterns $USERNAME@assets_sftp.boston.gov:/patterns.boston.gov/assets $MOUNTLOCATION
Last updated
Was this helpful?