Adding a user to subversion on Ubuntu

On Ununtu the password file is located at /etc/subversion/passwd To add a user to this file so subverison can reference it you can use the following command. htpasswd passwd newusername to create a new passwd file or overwrite a current one use the command htpasswd -c passwd newusername You can verify if a password is […]

Resuming a screen session on linux

Resuming a screen session If you are in a screen session on a linux computer, you can detach your session by typing Ctrl+a then d (detach). All your screens remain active and can later be resumed. You do this by typing screen -r. If there is only one session to be resumed, it will be resumed […]