Created
August 26, 2017 17:36
-
-
Save jeongho/ffbe9eff725fa7dc257bd59d53bfe950 to your computer and use it in GitHub Desktop.
Synology DSM 6 tips
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
# restart service | |
sudo su - | |
/usr/syno/sbin/synoservice --list | |
/usr/syno/sbin/synoservice --restart <service_name> | |
# passwordless ssh | |
#1. fix /etc/ssh/sshd_config | |
AuthorizedKeyFile .ssh/authorized_keys | |
#2. fix acl | |
chmod 755 <home_directory> | |
chmod 700 ~/.ssh | |
chmod 644 ~/.ssh/authorized_keys | |
#3. restart sshd service or reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment