Xfce Wiki

Sub domains
 

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
contribute:dev:get-a-contributor-account [2014/03/06 12:44] – [Generating a SSH key] nickcontribute:dev:get-a-contributor-account [2019/03/24 20:52] skunnyk
Line 3: Line 3:
 ===== Who can apply for an account? ===== ===== Who can apply for an account? =====
  
-Well basically anybody, but of course it has to be Xfce related. If you want to translate, a GIT account is not needed, you should [[contribute:translate:|read this first]].\\+Well basically anybody, but of course it has to be Xfce related. 
 +If you want to translate, a GIT account is not needed, you should [[contribute:translate:|read this first]].\\
 That said, please only apply for an account only if you think that you will work on Xfce for a somewhat longer time. If you know that you will only work for a couple of weeks and then never again, please consider not applying for an Xfce account but instead continue to put patches in the [[contribute:bugs:|bug tracker]]. That said, please only apply for an account only if you think that you will work on Xfce for a somewhat longer time. If you know that you will only work for a couple of weeks and then never again, please consider not applying for an Xfce account but instead continue to put patches in the [[contribute:bugs:|bug tracker]].
  
-We also value if you show you work or patches before applying, so we have at least a bit of understanding what you're capable of and if the idea fits in the Xfce philosophy.+You can first publish your code on Gitlab.com, Gitlab.com or whatever platform to show what you have done before applying for an official Xfce account.
  
 The limitations are not there to exclude anyone -- they are there to ensure that the maintenance of accounts remains reasonable. Of course, to be clear: the Xfce sysadmins have the last word about whether or not to create an account for somebody.  The limitations are not there to exclude anyone -- they are there to ensure that the maintenance of accounts remains reasonable. Of course, to be clear: the Xfce sysadmins have the last word about whether or not to create an account for somebody. 
 +
 +
 +===== Apply for an account =====
 +
 +The easy way to get a contributor account is to contact developers on [[https://mail.xfce.org/mailman/listinfo/xfce4-dev|xfce4-dev]] mailist or to connect to IRC channel on [[https://webchat.freenode.net/?channels=%23xfce-dev&uio=d4#xfce-dev]].
 +
  
 ===== SSH ===== ===== SSH =====
Line 20: Line 27:
 SSH keys are stored in your home directory in the ''~/.ssh'' directory. To generate a key pair use the following command: SSH keys are stored in your home directory in the ''~/.ssh'' directory. To generate a key pair use the following command:
  
-  ssh-keygen -t rsa+  ssh-keygen -b 4096 -t rsa
  
-or +<note important>The Xfce servers support the types RSA and ECDSA. For RSA use sufficient bits like 2048 or 4096.</note>
- +
-  ssh-keygen -t dsa+
      
 When the command asks for the //passphrase// it is advised to set a relatively simple password. This password is used to unlock the key when you use it. For more information on how to create a pair of SSH keys, please refer to a [[http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keygen|SSH documentation]] or book. When the command asks for the //passphrase// it is advised to set a relatively simple password. This password is used to unlock the key when you use it. For more information on how to create a pair of SSH keys, please refer to a [[http://www.openbsd.org/cgi-bin/man.cgi?query=ssh-keygen|SSH documentation]] or book.
  
-<note>+<note info>
 Using a key without a passphrase is basically the same as writing down that random password. Anyone who gains access to your computer has gained access to every system you use that key with. The solution is to add a passphrase to the SSH key, for an extra layer of security. Using a key without a passphrase is basically the same as writing down that random password. Anyone who gains access to your computer has gained access to every system you use that key with. The solution is to add a passphrase to the SSH key, for an extra layer of security.
  
Line 34: Line 39:
 </note> </note>
  
-Now that you are finished generating your key pair, you will have two files: a private key and a public key. If you have accepted the default filename, they will be respectively $HOME/.ssh/id_dsa and $HOME/.ssh/id_dsa.pub or $HOME/.ssh/id_rsa and $HOME/.ssh/id_rsa.pub, depending on the type of key you have specified.+Now that you are finished generating your key pair, you will have two files: a private key and a public key. If you have accepted the default filename, they will be respectively $HOME/.ssh/id_rsa and $HOME/.ssh/id_rsa.pub, depending on the type of key you have specified.
  
 The private key **must** remain secret, do not publish it to anyone under any circumstance. The private key **must** remain secret, do not publish it to anyone under any circumstance.
  
 The public key can be published and shall be sent when you are applying for an Xfce GIT account.  The public key can be published and shall be sent when you are applying for an Xfce GIT account. 
 +