Re: download source code on Linux

2008-05-14 Thread N. Raghavendra
At 2008-05-14T21:26:19+05:30, Onkar wrote:

> I want to download FreeBSD source code on Linux server. How do I go
> about it .

Assuming that you have CVS installed on your Linux machine, you can do

  cvs -d [EMAIL PROTECTED]:/home/ncvs co src

For a list of other CVS servers, and usage examples, see

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html

HTH,
Raghavendra.

-- 
N. Raghavendra <[EMAIL PROTECTED]> | http://www.retrotexts.net/
Harish-Chandra Research Institute   | http://www.mri.ernet.in/
See message headers for contact and OpenPGP information.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: download source code on Linux

2008-05-14 Thread David Kelly
On Wed, May 14, 2008 at 11:56:06AM -0500, David Kelly wrote:
> On Wed, May 14, 2008 at 10:08:08PM +0530, Onkar wrote:
> > But I am finding no files with extension .c or .h
> > [image: 
> > File:]generic.aa
> > 1392
> [...]
> > what are these ??
> 
> Tarballs.
> 
> Grab ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/6.3-RELEASE/src/
> then to get the files out of, say, scontrib, do something like this:
> 
> % cat scontrib.* | tar -xvzf -

Chuck Swiger's post caused me to relook at mine. There are .inf files in
the mix which will cause tar a bit of heartache above. This would be
better:

% cat scontrib.[ab]* | tar -xvzf -

-- 
David Kelly N4HHE, [EMAIL PROTECTED]

Whom computers would destroy, they must first drive mad.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: download source code on Linux

2008-05-14 Thread David Kelly
On Wed, May 14, 2008 at 10:08:08PM +0530, Onkar wrote:
> But I am finding no files with extension .c or .h
> [image: 
> File:]generic.aa
> 1392
[...]
> what are these ??

Tarballs.

Grab ftp://ftp.FreeBSD.org/pub/FreeBSD/releases/i386/6.3-RELEASE/src/
then to get the files out of, say, scontrib, do something like this:

% cat scontrib.* | tar -xvzf -

-- 
David Kelly N4HHE, [EMAIL PROTECTED]

Whom computers would destroy, they must first drive mad.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: download source code on Linux

2008-05-14 Thread Chuck Swiger

On May 14, 2008, at 9:38 AM, Onkar wrote:

But I am finding no files with extension .c or .h
[image: File:]generic.aa

1392

[ ... ]


what are these ??


They are a .tgz split up into pieces (via split).  You can reassemble  
via:


  cat generic.a* | tar zxf -

...but some people find using CVS/cvsup easier.

--
-Chuck

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: download source code on Linux

2008-05-14 Thread Onkar
But I am finding no files with extension .c or .h
[image: 
File:]generic.aa
1392
KB Sunday 07 May 2006 12:00:00 AM  [image:
File:]generic.ab
1392
KB Sunday 07 May 2006 12:00:00 AM  [image:
File:]generic.ac
1392
KB Sunday 07 May 2006 12:00:00 AM  [image:
File:]generic.ad
1392
KB Sunday 07 May 2006 12:00:00 AM  [image:
File:]generic.ae
1392
KB Sunday 07 May 2006 12:00:00 AM  [image:
File:]generic.af
1392
KB Sunday 07 May 2006 12:00:00 AM  [image:
File:]generic.ag
232
KB Sunday 07 May 2006 12:00:00 AM  [image:
File:]generic.inf

what are these ??

regards,
Onkar

On Wed, May 14, 2008 at 10:01 PM, Sahil Tandon <[EMAIL PROTECTED]> wrote:

> * Onkar <[EMAIL PROTECTED]> [05-14-2008]:
>
> > I want to download  FreeBSD source code on Linux server. How do I go
> about
> > it .
>
> One option is FTP:
>
>ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/7.0-RELEASE/src
>
> --
> Sahil Tandon <[EMAIL PROTECTED]>
>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: download source code on Linux

2008-05-14 Thread Sahil Tandon
* Onkar <[EMAIL PROTECTED]> [05-14-2008]:

> I want to download  FreeBSD source code on Linux server. How do I go about
> it .

One option is FTP:

ftp://ftp.freebsd.org/pub/FreeBSD/releases/i386/7.0-RELEASE/src

-- 
Sahil Tandon <[EMAIL PROTECTED]>
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"