[[include in-progress (not found)]]
SourceForge.net provides support for managing project web and developer web content, and uploading file releases using SCP through our File management service.
SCP (Secure copy) is part of the SSH protocol suite.
Authenticating via SCP requires the use of a "combined" username for the project web space. The combined username is composed of your SourceForge.net account username and the project UNIX name for which you want to upload or download files. A comma (",") is used as a delimiter between these two components.
Example:
SourceForge.net username: jsmith
User jsmith has a project with the UNIX name: fooproject
Combined username: jsmith,fooproject
Note: The Developer web space only requires the use of your SourceForge.net account name.
The password for both cases is always the password associated with your SourceForge.net user account.
SCP clients include:
FRS Hostname: frs.sourceforge.net
Path: /home/frs/project/P/PR/PROJECT_UNIX_NAME/ - Substitute your project UNIX name data for /P/PR/PROJECT_UNIX_NAME
Username: Your SourceForge.net Username
Password: Your SourceForge.net Password
An example session might look like (where Username="jsmith", Project UNIX name="fooproject",Release dir is "Rel_1"):
[jsmith@linux ~]$ scp FILE jsmith,fooproject@frs.sourceforge.net:/home/frs/project/f/fo/fooproject/Rel_1
Connecting to frs.sourceforge.net...
The authenticity of host 'frs.sourceforge.net (216.34.181.57)' can't be established.
RSA key fingerprint is 68:b3:26:02:a0:07:e4:78:d4:ec:7f:2f:6a:4d:32:c5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'frs.sourceforge.net,216.34.181.57' (RSA) to the list of known hosts.
jsmith@frs.sourceforge.net's password:
FILE 100% 241 0.2KB/s 00:01
Developer web Hostname: frs.sourceforge.net
Path: userweb/htdocs/
Username: Your SourceForge.net Username
Password: Your SourceForge.net Password
An example session might look like (where Username="jsmith"):
[jsmith@linux ~]$ scp FILE jsmith@frs.sourceforge.net:userweb/htdocs
Connecting to frs.sourceforge.net...
The authenticity of host 'frs.sourceforge.net (216.34.181.57)' can't be established.
RSA key fingerprint is 68:b3:26:02:a0:07:e4:78:d4:ec:7f:2f:6a:4d:32:c5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'frs.sourceforge.net,216.34.181.57' (RSA) to the list of known hosts.
jsmith@frs.sourceforge.net's password:
FILE 100% 241 0.2KB/s 00:01
Project web Hostname: web.sourceforge.net
Path: htdocs/
Username: Combine your SourceForge.net Username with your SourceForge.net project UNIX name using a comma ( "," ) See Example
Password: Your SourceForge.net Password
An example session might look like the following for Username "jsmith" uploading a file for his project with a UNIX name of "fooproject":
[jsmith@linux ~]$ scp barfile jsmith,fooproject@web.sourceforge.net:htdocs
Connecting to web.sourceforge.net...
The authenticity of host 'web.sourceforge.net (216.34.181.57)' can't be established.
RSA key fingerprint is 68:b3:26:02:a0:07:e4:78:d4:ec:7f:2f:6a:4d:32:c5.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'web.sourceforge.net,216.34.181.57' (RSA) to the list of known hosts.
jsmith,fooproject@web.sourceforge.net's password:
barfile 100% 241 0.2KB/s 00:01