May 2006 Archives

Below are some quick startup notes for me:
I was root when I did this, yes, I know.

1. cd /
2. svnadmin create svn
3. svn mkdir file:///svn/trunk file:///svn/branches file:///tags -m "creating initial repository layout"
4. Now lets import our project files.
cd /projects
svn import PING file:///svn/trunk -m "Importing my project files"
5. Now after we imported them, lets check them out
6. cd /data
7. svn co file:///svn/trunk PING
8. Now the project files have been checked out to /data/PING

Ok so now we have the files we want, how do we get them up on our apached webserver. Here is the directions I followed:

This is straight from the INSTALL doc, read it below...Additional information can be found here:
http://www.unix-tutorials.com/go.php?id=533

Reconfiguring CPAN

| | Comments (0)

just a reminder that if you want to reconfigue CPAN:
1. perl -MCPAN -e shell
2. cpan> o conf init

The init configuration option runs through all the configuration questions, which may be time consuming. For example, other o conf commands can be used to list, remove, and add mirror sites, and then to save the changes to disk.

cpan> o conf urllist
urllist
ftp://ftp.kernel.org/pub/CPAN/
Type 'o conf' to view configuration edit options


cpan> o conf urllist shift

cpan> o conf urllist push ftp://ftp-mirror.internap.com/pub/CPAN/

cpan> o conf urllist
urllist
ftp://ftp-mirror.internap.com/pub/CPAN/
Type 'o conf' to view configuration edit options


cpan> o conf commit
commit: wrote /usr/local/lib/perl5/5.6.1/CPAN/Config.pm

To manually edit the existing configuration file, either open the user-specific ~/.cpan/CPAN/MyConfig.pm directly, or locate the system-wide configuration file (stored somewhere under the perl @INC path list) to edit with the following command.

More information can be found at: http://sial.org/howto/perl/life-with-cpan/.

About this Archive

This page is an archive of entries from May 2006 listed from newest to oldest.

April 2006 is the previous archive.

July 2006 is the next archive.

Find recent content on the main index or look in the archives to find all content.