Last active
August 3, 2017 19:25
-
-
Save dsoares/fde7844a1d1ddb255d5ee962a9d720ad to your computer and use it in GitHub Desktop.
Revisions
-
dsoares revised this gist
Aug 3, 2017 . 1 changed file with 6 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,6 +18,12 @@ Installing SSHFS is not straightforward. One must download the source, install t After reading the Macfusion [issue #52](https://github.com/mgorbach/macfusion2/issues/52) on the project page, i found a [fork of Macfusion](https://github.com/ElDeveloper/macfusion2/) that works with Mac OS X Sierra. It's the easiest way of getting `mount` to work with `ssh` without the hassle of having to `brew install` glib and other tons of software. OK. I resintalled Mac OS X Sierra. I only had to: 1. Install ([osxfuse](http://osxfuse.github.io)) **with the compatibility layer** and its project [SSHFS](https://github.com/osxfuse/sshfs/) 2. Install a release from this [fork of Macfusion](https://github.com/ElDeveloper/macfusion2/) ##### 3. NTFS and Mac OS X An NTFS partition could be mounted on Mac OS X but i could not write to it. -
dsoares renamed this gist
Jan 3, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
dsoares revised this gist
Jan 3, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ # Issues with Mac OS X Sierra ##### 1. Could not ssh from my Mac to my usual linux servers The solution was to add this to my ssh config: -
dsoares revised this gist
Dec 10, 2016 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -17,3 +17,10 @@ The alternatives: Installing SSHFS is not straightforward. One must download the source, install the dependencies (libfuse, glib, ...) and then `config && make && make install`. Also, the [Homebrew formula of SSHFS](https://github.com/Homebrew/homebrew-fuse/blob/master/Formula/sshfs.rb) - which in turn install osxfuse - is outdated (as the time of this writing, sshfs-2.5.0 and osxfuse-2.8.3 from 2014, while the latest versions are sshdfs-2.8 and osxfuse-3.5.3). After reading the Macfusion [issue #52](https://github.com/mgorbach/macfusion2/issues/52) on the project page, i found a [fork of Macfusion](https://github.com/ElDeveloper/macfusion2/) that works with Mac OS X Sierra. It's the easiest way of getting `mount` to work with `ssh` without the hassle of having to `brew install` glib and other tons of software. ##### 3. NTFS and Mac OS X An NTFS partition could be mounted on Mac OS X but i could not write to it. Solution: [Mounty](http://enjoygineering.com/mounty/), a very tiny app that re-mounts the NTFS partition in read-write mode. Clean and simple. -
dsoares created this gist
Oct 28, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ # Issues with Mac OS X Sierra ##### 1. Could not ssh to my usual servers The solution was to add this to my ssh config: PubkeyAcceptedKeyTypes +ssh-dss ##### 2. Macfusion says: "You can’t use this version of the application “Macfusion.app” with this version of macOS." Well, the last commit on [github](http://github.com) was in 2008 so one day it would stop working... The alternatives: - Fuse for OSX ([osxfuse](http://osxfuse.github.io)) and its project [SSHFS](https://github.com/osxfuse/sshfs/). - I've read something about [bindfs](http://binfs.org). Installing SSHFS is not straightforward. One must download the source, install the dependencies (libfuse, glib, ...) and then `config && make && make install`. Also, the [Homebrew formula of SSHFS](https://github.com/Homebrew/homebrew-fuse/blob/master/Formula/sshfs.rb) - which in turn install osxfuse - is outdated (as the time of this writing, sshfs-2.5.0 and osxfuse-2.8.3 from 2014, while the latest versions are sshdfs-2.8 and osxfuse-3.5.3). After reading the Macfusion [issue #52](https://github.com/mgorbach/macfusion2/issues/52) on the project page, i found a [fork of Macfusion](https://github.com/ElDeveloper/macfusion2/) that works with Mac OS X Sierra. It's the easiest way of getting `mount` to work with `ssh` without the hassle of having to `brew install` glib and other tons of software.