File tree Expand file tree Collapse file tree 1 file changed +16
-16
lines changed
Expand file tree Collapse file tree 1 file changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -324,27 +324,27 @@ sudo usermod -aG wheel your-cern-user-name
324324
325325In case you want to create a different user than your CERN user (e.g. to create a different admin-account), follow these steps:
326326
327- - Create user:
327+ Create user:
328328
329- ``` bash
330- export USERNAME=your-desired-username
331- adduser $USERNAME
332- passwd $USERNAME
333- ```
329+ ``` bash
330+ export USERNAME=your-desired-username
331+ adduser $USERNAME
332+ passwd $USERNAME
333+ ```
334334
335- - Give sudo rights to this user _ (optional)_ :
335+ Give sudo rights to this user _ (optional)_ :
336336
337- ``` bash
338- usermod -aG wheel $USERNAME
339- ```
337+ ``` bash
338+ usermod -aG wheel $USERNAME
339+ ```
340340
341- - Allow ssh-authorization for this user for the same ssh-keys as current user, e.g. ` root ` _ (optional)_ :
341+ Allow ssh-authorization for this user for the same ssh-keys as current user, e.g. ` root ` _ (optional)_ :
342342
343- ``` bash
344- mkdir /home/$USERNAME /.ssh
345- cp ~ /.ssh/authorized_keys /home/$USERNAME /.ssh/
346- chown -R $USERNAME :$USERNAME /home/$USERNAME /.ssh/
347- ```
343+ ``` bash
344+ mkdir /home/$USERNAME /.ssh
345+ cp ~ /.ssh/authorized_keys /home/$USERNAME /.ssh/
346+ chown -R $USERNAME :$USERNAME /home/$USERNAME /.ssh/
347+ ```
348348
349349And you should now be able to login as:
350350
You can’t perform that action at this time.
0 commit comments