Last active
November 11, 2015 12:00
-
-
Save smamran/1971a0351eef45a84659 to your computer and use it in GitHub Desktop.
Linux Configuration
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 characters
| ################# Mobatake openssh server install ########## | |
| Try un-installing and then installing openssh-server: | |
| sudo apt-get remove openssh-client openssh-server | |
| and then | |
| sudo apt-get install openssh-client openssh-server | |
| This worked for me. If you still can not connect, try | |
| ############################################################# | |
| At least for 14.04, apt-file says: | |
| [romano:~] % apt-file search netinet/sctp.h | |
| libsctp-dev: /usr/include/netinet/sctp.h | |
| so to compile any code that | |
| #includes the file sctp.h you need to install the package libsctp-dev and its dependences via | |
| sudo apt-get install libsctp-dev | |
| If you want to do this at low level (kernel direct syscall access etc.) | |
| you should probably replicate all the boilerplate code of the library --- | |
| why would you do that? You don't do that with sys_open() and friend, you use libc to get these nicely wrapped up. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment