Changes between Version 24 and Version 25 of DevelopmentServer


Ignore:
Timestamp:
11/05/10 13:01:00 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentServer

    v24 v25  
    2121 
    2222Users can be added and also put in the sudo group with one command: 
     23 
    2324{{{ 
    2425kiwi:~# adduser -G sudo newusername 
    2526}}} 
    2627 
    27 /etc/sudoers is set up so that people don't need to type their passwords when sudo'ing. If users also set up ssh keys then this means that people can use very long, essentially uncrackable, passwords but never actually need to remember or use them unless they lose their local ssh key or they need to login via the consol. 
     28/etc/sudoers is set up so that people don't need to type their passwords when sudo'ing.  
     29 
     30If you want to create a user and allow them to have ssh access but '''not''' sudo then they need to be in the sshaccess group: 
     31 
     32{{{ 
     33kiwi:~# adduser -G sshaccess newusername 
     34}}} 
     35 
     36If users set up ssh keys then this means that people can use very long, essentially uncrackable, passwords but never actually need to remember or use them unless they lose their local ssh key or they need to login via the consol. 
    2837 
    2938== live2dev ==