From Fedora Project Wiki
(tidy up migrated page)
Line 6: Line 6:
perfect for uploading specfiles, srpms, patches, personal repository etc, etc.
perfect for uploading specfiles, srpms, patches, personal repository etc, etc.


== Accessing Your fedorapeople.org Space ==


# You need an active [https://admin.fedoraproject.org/accounts/ Fedora account]
# You must be sponsored in a group (other than the CLA groups)
# To connect, use the ssh key you uploaded into your Fedora account:


== Accessing Your fedorapeople.org Space ==
<pre>
 
ssh your_fedora_username@fedorapeople.org
1. You need an active Fedora account ([https://admin.fedoraproject.org/accounts/] )
1. You must be sponsored in a group (other than the CLA groups)
1. To connect, use the ssh key you uploaded into your Fedora account:
<pre>ssh your_fedora_username@fedorapeople.org
</pre>
</pre>


== Common Answers ==
== Common Answers ==
1. Each Fedora contributor has 150 MiB of quota-controlled space.
 
1. To make a publicly viewable space, create a <code>public_html</code> directory.
* Each Fedora contributor has 150 MiB of quota-controlled space.
1. Upload files using scp, sftp, or rsync.
* To make a publicly viewable space, create a <code>public_html</code> directory.
1. Once uploaded into the users public_html directory the files are available via http at: http://your_username.fedorapeople.org/.
* Upload files using scp, sftp, or rsync.
1. Give other users access to read/write/etc files by using extended acls:
* Once uploaded into the users public_html directory the files are available via http at: http://your_username.fedorapeople.org/.
* we support extended acls. Read man pages for setfacl and getfacl for adding them to your dirs/files. This gives the user jkeating read and write access to the file, filename:
* Give other users access to read/write/etc files by using extended acls. Read man pages for setfacl and getfacl for adding them to your dirs/files. This gives the user jkeating read and write access to <code>file</code>:
<code> setfacl -m u:jkeating:rw filename </code>
 
<pre>setfacl -m u:jkeating:rw file</pre>

Revision as of 15:00, 31 May 2008

fedorapeople.org

This page covers the details on how to obtain and use your personal space on fedorapeople.org , which is a site where Fedora contributors can upload files for sharing out with the world. It is perfect for uploading specfiles, srpms, patches, personal repository etc, etc.

Accessing Your fedorapeople.org Space

  1. You need an active Fedora account
  2. You must be sponsored in a group (other than the CLA groups)
  3. To connect, use the ssh key you uploaded into your Fedora account:
ssh your_fedora_username@fedorapeople.org

Common Answers

  • Each Fedora contributor has 150 MiB of quota-controlled space.
  • To make a publicly viewable space, create a public_html directory.
  • Upload files using scp, sftp, or rsync.
  • Once uploaded into the users public_html directory the files are available via http at: http://your_username.fedorapeople.org/.
  • Give other users access to read/write/etc files by using extended acls. Read man pages for setfacl and getfacl for adding them to your dirs/files. This gives the user jkeating read and write access to file:
setfacl -m u:jkeating:rw file