Skip to content

Instantly share code, notes, and snippets.

@RELATO
Last active August 29, 2015 14:25
Show Gist options
  • Save RELATO/0ef0f77bd9bc3e471d2e to your computer and use it in GitHub Desktop.
Save RELATO/0ef0f77bd9bc3e471d2e to your computer and use it in GitHub Desktop.
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