Last active
August 29, 2015 14:25
-
-
Save RELATO/0ef0f77bd9bc3e471d2e to your computer and use it in GitHub Desktop.
This file contains 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
Ubuntu-server 14.04 LTS config | |
Anonymous access configuration (basic) | |
https://www.howtoforge.com/samba-server-ubuntu-14.04-lts | |
File: /etc/samba/smb.conf | |
[global] | |
workgroup = WORKGROUP | |
server string = Samba Server %v | |
netbios name = ubuntu | |
security = user | |
map to guest = bad user | |
dns proxy = no | |
#============================ Share Definitions ============================== | |
[Anonymous] | |
path = /samba/anonymous | |
browsable =yes | |
writable = yes | |
guest ok = yes | |
read only = no | |
SSH Root Permission | |
http://askubuntu.com/questions/469143/how-to-enable-ssh-root-access-on-ubuntu-14-04 | |
File: /etc/ssh/sshd_config | |
# Authentication: | |
LoginGraceTime 120 | |
#PermitRootLogin without-password #disabled | |
#StrictModes yes #disabled | |
PermitRootLogin yes #enabled |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment