Re: cvs stupid question

2008-12-04 Thread andrew clarke
On Wed 2008-12-03 16:31:29 UTC+0100, Wojciech Puchar ([EMAIL PROTECTED]) wrote:

 export [EMAIL PROTECTED]:/home/ncvs
 cvs checkout -rRELENG_7 src

 waited over an hour, no files got fetched

 what i'm doing wrong?

Looks like the server is down:

$ export [EMAIL PROTECTED]:/home/ncvs
$ cvs checkout -rRELENG_7 src
ssh: connect to host anoncvs.FreeBSD.org port 22: Connection refused
cvs [checkout aborted]: end of file from server (consult above messages if any)

This works:

$ export [EMAIL PROTECTED]:/home/ncvs
$ cvs checkout -rRELENG_7 src
The authenticity of host 'anoncvs1.freebsd.org (216.87.78.137)' can't
be established.
DSA key fingerprint is 53:1f:15:a3:72:5c:43:f6:44:0e:6a:e9:bb:f8:01:62.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'anoncvs1.freebsd.org' (DSA) to the list of
known hosts.
cvs checkout: Updating src
U src/COPYRIGHT
U src/LOCKS
U src/MAINTAINERS
U src/Makefile
^Ccvs [checkout aborted]: received interrupt signal
$ Killed by signal 2.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


cvs stupid question

2008-12-03 Thread Wojciech Puchar

i try

export [EMAIL PROTECTED]:/home/ncvs
cvs checkout -rRELENG_7 src

waited over an hour, no files got fetched

what i'm doing wrong?

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


[stupid question] setting env variables globally

2007-10-19 Thread Aryeh M. Friedman
Is there any way to set the default value of a enviromental variable
globally.   Specifically I want JAVA_VERSION to default to 1.6 unless
the user sets it other wise.   By global I mean no matter how something
is invoked (command line, script, GUI, IPC trigger, etc.) if it checks
the value of the var it gets the same value (and I want to do this
system wide)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: [stupid question] setting env variables globally

2007-10-19 Thread Erik Trulsson
On Fri, Oct 19, 2007 at 04:14:12PM +, Aryeh M. Friedman wrote:
 Is there any way to set the default value of a enviromental variable
 globally.   Specifically I want JAVA_VERSION to default to 1.6 unless
 the user sets it other wise.   By global I mean no matter how something
 is invoked (command line, script, GUI, IPC trigger, etc.) if it checks
 the value of the var it gets the same value (and I want to do this
 system wide)

You can take a look at login.conf(5) which probably can provide what you
want.  Depending on exactly how and when (and from where) a process is
started this might not work, but is probably the best that can be done
without hacking the kernel source code.



A process normally inherits the environment from its parent process.
When a process calls some of the exec(3) functions to start a new program it
can also provide a completely new environment which can be completely
independent of the parent's.

The settings in login.conf(5) only (AFAICT) affects processes whose ancestry
can be traced back to a login(1) instance, and where the environment hasn't
been changed along the way.  This should cover most of the processes you are
interested in but perhaps not quite all of them.

If you really want *all* processes to have a certain environment variable
set to a given value you will have to modify the execve(2) system call.
I don't recommend doing this unless you know *exactly* what you are doing
and the possible consequences thereof.  





-- 
Insert your favourite quote here.
Erik Trulsson
[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: [stupid question] setting env variables globally

2007-10-19 Thread Chuck Swiger

On Oct 19, 2007, at 9:14 AM, Aryeh M. Friedman wrote:

Is there any way to set the default value of a enviromental variable
globally.   Specifically I want JAVA_VERSION to default to 1.6  
unless
the user sets it other wise.   By global I mean no matter how  
something

is invoked (command line, script, GUI, IPC trigger, etc.) if it checks
the value of the var it gets the same value (and I want to do this
system wide)


Setting variables in /etc/profile and /etc/csh.cshrc (respectively)  
will do it for the common shells; or perhaps you might look at /etc/ 
login.conf...


--
-Chuck

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


Re: [stupid question] setting env variables globally

2007-10-19 Thread Tim Daneliuk

On Fri, Oct 19, 2007 at 04:14:12PM +, Aryeh M. Friedman wrote:

Is there any way to set the default value of a enviromental variable
globally.   Specifically I want JAVA_VERSION to default to 1.6 unless
the user sets it other wise.   By global I mean no matter how something
is invoked (command line, script, GUI, IPC trigger, etc.) if it checks
the value of the var it gets the same value (and I want to do this
system wide)




For userland stuff that is invoked after a login (i.e. In some user's
login context), I have a master profile I keep in /usr/local/etc/.myprofile.
I then source this from the .profile or .bashrc  in a given user's account.

If you need this for cron jobs, there is a way to set environment variables
in the crontab entry IIRC...

HTH,


Tim Daneliuk [EMAIL PROTECTED]
PGP Key: http://www.tundraware.com/PGP/


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


SMTP stupid question

2007-06-07 Thread Albert Shih
Hi all

Well I've very classic question but google/mail-archive don't give me a
answer.

I want to configure a FreeBSD box without sendmail-daemon but I want all
all mail sent to my smtp-server.

For that I put

sendmail_enable=NO
sendmail_submit_enable=NO
sendmail_outbound_enable=NO
sendmail_msp_queue_enable=YES

I'm change in my

/etc/mail/freebsd.submit.mc

the ligne

FEATURE(`msp', `[the_adresse_of_my_smtp_server]')dnl

use make;make install to build the good sendmail.cf

But I think that's not a good solution. Because :

1/ It's work only for root (I'v got a message about permission when
I try to send a email when I'm not root)

2/ My smtp-server try to re-send to me the email to root (example
for cron message etc. is send to [EMAIL PROTECTED]).

I forget to tell I'm not controling the smtp-server.

Regards.


--
Albert SHIH
Observatoire de Paris Meudon
SIO batiment 15
Heure local/Local time:
Jeu 7 jui 2007 11:46:08 CEST
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: SMTP stupid question

2007-06-07 Thread Joel Hatton
On Thu, 7 Jun 2007 11:58:31 +0200, Albert Shih wrote:

I want to configure a FreeBSD box without sendmail-daemon but I want all
all mail sent to my smtp-server.

For that I put

sendmail_enable=NO
sendmail_submit_enable=NO
sendmail_outbound_enable=NO
sendmail_msp_queue_enable=YES

I haven't used FEATURE(`msp') before, but you'll need to enable the last
three lines above. By default, FreeBSD should be configured properly if
you don't include _any_ of the above lines in your /etc/rc.conf at all.
Grep for 'sendmail' in /etc/defaults/rc.conf and you'll see what is already
configured.

On a new system, all you should have to do to set up mail is (if in single
user mode you have to set hostname first):

cd /etc/mail
make
edit your.host.name.submit.mc 
make install
make start

If you are running 'make' on a running system after editing
freebsd.submit.mc you won't actually be installing the right file

cheers,
-- Joel Hatton --
Infrastructure Manager  | Hotline: +61 7 3365 4417
AusCERT - Australia's national CERT | Fax: +61 7 3365 7031
The University of Queensland| WWW: www.auscert.org.au
Qld 4072 Australia  | Email:   [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: SMTP stupid question

2007-06-07 Thread r17fbsd

At 05:58 AM 6/7/2007, Albert Shih wrote:
I want to configure a FreeBSD box without sendmail-daemon but I want 
all all mail sent to my smtp-server.


I usually disable sendmail completely, as you have done.  Then 
install ssmtp from the ports.  It's simple, secure, and only needs 
about 4 lines of config file to do what you want.


  -RW

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


Stupid question about mountpoints and fstab

2006-08-15 Thread Odhiambo Washington
Hello people,

I have never figured out something like this can be done, but today I 
see it. We have purchased s co-lo server. They have installed it and
given me access to do whatever you want with the box, but their
fstab has left me thirsty, wanting to know what's going on ...


sp2817a# less /etc/fstab
# DeviceMountpoint  FStype  Options DumpPass#
/dev/ad0s1b noneswapsw  0   0
/dev/ad0s1a /   ufs rw  1   1
/dev/ad0s1g /home   ufs rw  2   2
/dev/ad0s1e /tmpufs rw  2   2
/dev/ad0s1f /usrufs rw  2   2
/dev/ad0s1d /varufs rw  2   2
/dev/ad0s2  /home   ufs rw  2   2
/dev/acd0   /cdrom  cd9660  ro,noauto   0   0

sp2817a# df -h
Filesystem SizeUsed   Avail Capacity  Mounted on
/dev/ad0s1a2.9G 54M2.6G 2%/
devfs  1.0K1.0K  0B   100%/dev
/dev/ad0s1g 15G 22K 13G 0%/home
/dev/ad0s1e248M8.0K228M 0%/tmp
/dev/ad0s1f9.7G1.9G7.0G22%/usr
/dev/ad0s1d6.8G 46M6.2G 1%/var
/dev/ad0s2  72G 22K 66G 0%/home


Now, if someone can explain to me what the hell is being done with
/home in this server... ;)



-Wash

http://www.netmeister.org/news/learn2quote.html

DISCLAIMER: See http://www.wananchi.com/bms/terms.php

--
+==+
|\  _,,,---,,_ | Odhiambo Washington[EMAIL PROTECTED]
Zzz /,`.-'`'-.  ;-;;,_ | Wananchi Online Ltd.   www.wananchi.com
   |,4-  ) )-,_. ,\ (  `'-'| Tel: +254 20 313985-9  +254 20 313922
  '---''(_/--'  `-'\_) | GSM: +254 722 743223   +254 733 744121
+==+

 ... I told my doctor I got all the exercise I needed being a
pallbearer for all my friends who run and do exercises!
-- Winston Churchill
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Stupid question about mountpoints and fstab

2006-08-15 Thread Derek Ragona
Well it looks like home is on a second disk, which used 6 GB in overhead 
making the filesystem.


-Derek


At 10:41 AM 8/15/2006, Odhiambo Washington wrote:

Hello people,

I have never figured out something like this can be done, but today I
see it. We have purchased s co-lo server. They have installed it and
given me access to do whatever you want with the box, but their
fstab has left me thirsty, wanting to know what's going on ...


sp2817a# less /etc/fstab
# DeviceMountpoint  FStype  Options DumpPass#
/dev/ad0s1b noneswapsw  0   0
/dev/ad0s1a /   ufs rw  1   1
/dev/ad0s1g /home   ufs rw  2   2
/dev/ad0s1e /tmpufs rw  2   2
/dev/ad0s1f /usrufs rw  2   2
/dev/ad0s1d /varufs rw  2   2
/dev/ad0s2  /home   ufs rw  2   2
/dev/acd0   /cdrom  cd9660  ro,noauto   0   0

sp2817a# df -h
Filesystem SizeUsed   Avail Capacity  Mounted on
/dev/ad0s1a2.9G 54M2.6G 2%/
devfs  1.0K1.0K  0B   100%/dev
/dev/ad0s1g 15G 22K 13G 0%/home
/dev/ad0s1e248M8.0K228M 0%/tmp
/dev/ad0s1f9.7G1.9G7.0G22%/usr
/dev/ad0s1d6.8G 46M6.2G 1%/var
/dev/ad0s2  72G 22K 66G 0%/home


Now, if someone can explain to me what the hell is being done with
/home in this server... ;)



-Wash

http://www.netmeister.org/news/learn2quote.html

DISCLAIMER: See http://www.wananchi.com/bms/terms.php

--
+==+
|\  _,,,---,,_ | Odhiambo Washington[EMAIL PROTECTED]
Zzz /,`.-'`'-.  ;-;;,_ | Wananchi Online Ltd.   www.wananchi.com
   |,4-  ) )-,_. ,\ (  `'-'| Tel: +254 20 313985-9  +254 20 313922
  '---''(_/--'  `-'\_) | GSM: +254 722 743223   +254 733 744121
+==+

 ... I told my doctor I got all the exercise I needed being a
pallbearer for all my friends who run and do exercises!
-- Winston Churchill
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
MailScanner thanks transtec Computers for their support.

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


Re: Stupid question about mountpoints and fstab

2006-08-15 Thread Giorgos Keramidas
On 2006-08-15 18:41, Odhiambo Washington [EMAIL PROTECTED] wrote:
 Hello people,
 
 I have never figured out something like this can be done, but today I 
 see it. We have purchased s co-lo server. They have installed it and
 given me access to do whatever you want with the box, but their
 fstab has left me thirsty, wanting to know what's going on ...
 
 sp2817a# less /etc/fstab
 # DeviceMountpoint  FStype  Options DumpPass#
 /dev/ad0s1b noneswapsw  0   0
 /dev/ad0s1a /   ufs rw  1   1
 /dev/ad0s1g /home   ufs rw  2   2
 /dev/ad0s1e /tmpufs rw  2   2
 /dev/ad0s1f /usrufs rw  2   2
 /dev/ad0s1d /varufs rw  2   2
 /dev/ad0s2  /home   ufs rw  2   2
 /dev/acd0   /cdrom  cd9660  ro,noauto   0   0
 
 sp2817a# df -h
 Filesystem SizeUsed   Avail Capacity  Mounted on
 /dev/ad0s1a2.9G 54M2.6G 2%/
 devfs  1.0K1.0K  0B   100%/dev
 /dev/ad0s1g 15G 22K 13G 0%/home
 /dev/ad0s1e248M8.0K228M 0%/tmp
 /dev/ad0s1f9.7G1.9G7.0G22%/usr
 /dev/ad0s1d6.8G 46M6.2G 1%/var
 /dev/ad0s2  72G 22K 66G 0%/home
 
 
 Now, if someone can explain to me what the hell is being done with
 /home in this server... ;)

What does dumpfs print?

# dumpfs /home | head -19

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


Re: Stupid question about mountpoints and fstab

2006-08-15 Thread Alex Zbyslaw

Odhiambo Washington wrote:


Hello people,

I have never figured out something like this can be done, but today I 
see it. We have purchased s co-lo server. They have installed it and

given me access to do whatever you want with the box, but their
fstab has left me thirsty, wanting to know what's going on ...


sp2817a# less /etc/fstab
# DeviceMountpoint  FStype  Options DumpPass#
/dev/ad0s1g /home   ufs rw  2   2
/dev/ad0s2  /home   ufs rw  2   2
 


sp2817a# df -h
Filesystem SizeUsed   Avail Capacity  Mounted on
/dev/ad0s1g 15G 22K 13G 0%/home
/dev/ad0s2  72G 22K 66G 0%/home


Now, if someone can explain to me what the hell is being done with
/home in this server... ;)
 


In short, IMHO, they've cocked it up!

It's quite possible to mount two different (or even the same) disk 
partitions on the same mountpoint.  It would certainly be a valid thing 
to do if the union flag were specified.  Otherwise, I strongly suspect 
that only the last disk mounted will be written to, but you could create 
a file under /home and see what grows with df.


I suggest pointing  ad0s1g at /home2 (which you'll have to create) then 
umount /home twice, then mount /home and /home2.  Or, instead of /home2 
perhaps /usr/local, but you'd have to go via a temporary mountpoint and 
copy existing /usr/local to it.


Finally (or do nothing but) complain!

I've seen worse.  The last (Linux) colo we got, had 60+Gb for /var and 
5Gb for /home - completely backwards!


--Alex


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


Re: Stupid question about mountpoints and fstab

2006-08-15 Thread Daniel Bye
On Tue, Aug 15, 2006 at 06:41:43PM +0300, Odhiambo Washington wrote:
 Hello people,
 
 I have never figured out something like this can be done, but today I 
 see it. We have purchased s co-lo server. They have installed it and
 given me access to do whatever you want with the box, but their
 fstab has left me thirsty, wanting to know what's going on ...
 
 
 sp2817a# less /etc/fstab
 # DeviceMountpoint  FStype  Options DumpPass#
 /dev/ad0s1b noneswapsw  0   0
 /dev/ad0s1a /   ufs rw  1   1
 /dev/ad0s1g /home   ufs rw  2   2
 /dev/ad0s1e /tmpufs rw  2   2
 /dev/ad0s1f /usrufs rw  2   2
 /dev/ad0s1d /varufs rw  2   2
 /dev/ad0s2  /home   ufs rw  2   2
 /dev/acd0   /cdrom  cd9660  ro,noauto   0   0
 
 sp2817a# df -h
 Filesystem SizeUsed   Avail Capacity  Mounted on
 /dev/ad0s1a2.9G 54M2.6G 2%/
 devfs  1.0K1.0K  0B   100%/dev
 /dev/ad0s1g 15G 22K 13G 0%/home
 /dev/ad0s1e248M8.0K228M 0%/tmp
 /dev/ad0s1f9.7G1.9G7.0G22%/usr
 /dev/ad0s1d6.8G 46M6.2G 1%/var
 /dev/ad0s2  72G 22K 66G 0%/home
 
 
 Now, if someone can explain to me what the hell is being done with
 /home in this server... ;)

Erm, isn't it where your home directory will go?  ;-p

It looks to me like it might be some species of typo, or possibly a
a lesser spotted oversight.  You can easily enough create a new 
mountpoint and edit /etc/fstab accordingly, as you have been given 
carte blanche to do what you will...  As it stands, I think ad0s2 
will get mounted on top of ad0s1g, rendering it invisible and 
inaccessible.

Dan

-- 
Daniel Bye

PGP Key: http://www.slightlystrange.org/pgpkey-dan.asc
PGP Key fingerprint: D349 B109 0EB8 2554 4D75  B79A 8B17 F97C 1622 166A
 _
  ASCII ribbon campaign ( )
 - against HTML, vCards and  X
- proprietary attachments in e-mail / \


pgplu5LIMw3Mk.pgp
Description: PGP signature


Re: Stupid question about mountpoints and fstab

2006-08-15 Thread Giorgos Keramidas
On 2006-08-15 19:08, Giorgos Keramidas [EMAIL PROTECTED] wrote:
 On 2006-08-15 18:41, Odhiambo Washington [EMAIL PROTECTED] wrote:
  Hello people,
  
  I have never figured out something like this can be done, but today I 
  see it. We have purchased s co-lo server. They have installed it and
  given me access to do whatever you want with the box, but their
  fstab has left me thirsty, wanting to know what's going on ...
  
  sp2817a# less /etc/fstab
  # DeviceMountpoint  FStype  Options Dump
  Pass#
  /dev/ad0s1b noneswapsw  0   0
  /dev/ad0s1a /   ufs rw  1   1
  /dev/ad0s1g /home   ufs rw  2   2
  /dev/ad0s1e /tmpufs rw  2   2
  /dev/ad0s1f /usrufs rw  2   2
  /dev/ad0s1d /varufs rw  2   2
  /dev/ad0s2  /home   ufs rw  2   2
  /dev/acd0   /cdrom  cd9660  ro,noauto   0   0
  
  sp2817a# df -h
  Filesystem SizeUsed   Avail Capacity  Mounted on
  /dev/ad0s1a2.9G 54M2.6G 2%/
  devfs  1.0K1.0K  0B   100%/dev
  /dev/ad0s1g 15G 22K 13G 0%/home
  /dev/ad0s1e248M8.0K228M 0%/tmp
  /dev/ad0s1f9.7G1.9G7.0G22%/usr
  /dev/ad0s1d6.8G 46M6.2G 1%/var
  /dev/ad0s2  72G 22K 66G 0%/home
  
  
  Now, if someone can explain to me what the hell is being done with
  /home in this server... ;)
 
 What does dumpfs print?
 
 # dumpfs /home | head -19

Doh!  Ignore that.  I didn't realize two filesystems were mounted on top
of each other.  This shouldn't be a problem, but unless you unmount the
/dev/ad0s2 device, the 13 GB of /dev/ad0s1g will remain forever hidden.

Not much harm done, but it's a pity to waste all that space :)

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


Re: Stupid question about mountpoints and fstab

2006-08-15 Thread Jeff Rollin

if you go the /home2 root, any users whose home directories you create
on/move to /home2 will have the correct entry to /home2/therightdirectory
in /etc/passwd. obvious but easily missed!

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


Re: Stupid question about mountpoints and fstab

2006-08-15 Thread Jeff Rollin

On 15/08/06, Jeff Rollin [EMAIL PROTECTED] wrote:


if you go the /home2 root, any users whose home directories you create
on/move to /home2 will have the correct entry to /home2/therightdirectory
in /etc/passwd. obvious but easily missed!

jeff




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


stupid question - disk mirroring

2006-03-22 Thread Wojciech Puchar
what is right/best/simplest way to configure mirrored disk system? there 
was raid driver in NetBSD, but how in FreeBSD. possibility of booting from 
this set is important.


thank you (please point to RTFM)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: stupid question - disk mirroring

2006-03-22 Thread Joacim Melin

http://dannyman.toldme.com/2005/01/24/freebsd-howto-gmirror-system/

Cheers,

Joacim

On 22 mar 2006, at 15.50, Wojciech Puchar wrote:

what is right/best/simplest way to configure mirrored disk system?  
there was raid driver in NetBSD, but how in FreeBSD. possibility of  
booting from this set is important.


thank you (please point to RTFM)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions- 
[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: stupid question - disk mirroring

2006-03-22 Thread Ruben Bloemgarten
http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/raid.html


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Wojciech Puchar
Sent: March 22, 2006 3:50 PM
To: freebsd-questions@freebsd.org
Subject: stupid question - disk mirroring

what is right/best/simplest way to configure mirrored disk system? there 
was raid driver in NetBSD, but how in FreeBSD. possibility of booting from 
this set is important.

thank you (please point to RTFM)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.385 / Virus Database: 268.2.6/287 - Release Date: 03/21/2006


-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.385 / Virus Database: 268.2.6/287 - Release Date: 03/21/2006
 

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


Re: stupid question - disk mirroring

2006-03-22 Thread robert
On Wed, 2006-03-22 at 15:50 +0100, Wojciech Puchar wrote:
 what is right/best/simplest way to configure mirrored disk system? there 
 was raid driver in NetBSD, but how in FreeBSD. possibility of booting from 
 this set is important.
 
 thank you (please point to RTFM)

Here you go:

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

Works at treat.

Rob

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


Re: stupid question - disk mirroring

2006-03-22 Thread Danny Butroyd
Wojciech Puchar wrote:
 what is right/best/simplest way to configure mirrored disk system?
 there was raid driver in NetBSD, but how in FreeBSD. possibility of
 booting from this set is important.

If you are talking software raid then try Geom.  A really nice howto can
be found here:-

http://people.freebsd.org/~rse/mirror/

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


Re: a stupid question about sound

2006-03-11 Thread [EMAIL PROTECTED]
On 3/10/06, Tsu-Fan Cheng [EMAIL PROTECTED] wrote:
 hi,
I got a situation, for some reason, only root can use audio device when
 playing movies with mplayer on my freebsd 6.0/amd64 now, not user. But vlc
 is fine for both. I guess there is some audio wrapper issue but couldn't put
 a finger on it, any idea?

If you do:
ls -l /dev | grep dsp
crw-rw-rw-  1 rootwheel   0,  38 Mar 10 00:57 dsp0.0
crw-rw-rw-  1 rootwheel   0,  41 Mar  6 12:43 dsp0.1
crw-rw-rw-  1 rootwheel   0,  39 Mar  6 12:43 dspW0.0
crw-rw-rw-  1 rootwheel   0,  42 Mar  6 12:43 dspW0.1
crw-rw-rw-  1 rootwheel   0,  44 Mar  6 12:43 dspr0.1

Does it look mostly like that?

If you don't have a problem there, it might be with
mplayer.  I noticed a minor update sometime in the
last few days, but I haven't actually done the update.

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


Re: a stupid question about sound

2006-03-11 Thread Tsu-Fan Cheng
the same thing happened to mpg321 too. as a regular user, I can't run
mpg321, only root can run mpg321 to play mp3 files.

TFC

On 3/11/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

 On 3/10/06, Tsu-Fan Cheng [EMAIL PROTECTED] wrote:
  hi,
 I got a situation, for some reason, only root can use audio device
 when
  playing movies with mplayer on my freebsd 6.0/amd64 now, not user. But
 vlc
  is fine for both. I guess there is some audio wrapper issue but couldn't
 put
  a finger on it, any idea?

 If you do:
 ls -l /dev | grep dsp
 crw-rw-rw-  1 rootwheel   0,  38 Mar 10 00:57 dsp0.0
 crw-rw-rw-  1 rootwheel   0,  41 Mar  6 12:43 dsp0.1
 crw-rw-rw-  1 rootwheel   0,  39 Mar  6 12:43 dspW0.0
 crw-rw-rw-  1 rootwheel   0,  42 Mar  6 12:43 dspW0.1
 crw-rw-rw-  1 rootwheel   0,  44 Mar  6 12:43 dspr0.1

 Does it look mostly like that?

 If you don't have a problem there, it might be with
 mplayer.  I noticed a minor update sometime in the
 last few days, but I haven't actually done the update.

 --
 --

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


a stupid question about sound

2006-03-10 Thread Tsu-Fan Cheng
hi,
   I got a situation, for some reason, only root can use audio device when
playing movies with mplayer on my freebsd 6.0/amd64 now, not user. But vlc
is fine for both. I guess there is some audio wrapper issue but couldn't put
a finger on it, any idea?

many thanks!!

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


Wifi card shopping (stupid question)

2005-11-17 Thread Remington
I am planning no making a new 6.0 tower machine. I have some serious
concerns in regards to PCI wifi card support and FreeBSD. Can anyone
recommend a good PCI 802.11/g card that works with FreeBSD 6.0-R?
Preferably one that is easily found(i.e. i can go to Best Buy tomorrow
and buy one).

thanks,
remi
-- 
This message including any attachments, contains confidential
information intended for a specific individual and purpose and
is protected by law. If you are not the intended recipient, please
contact sender immediately by reply email and destroy all copies.
You are hereby notified that any disclosure, copying, or distribution
of this message, or the taking of any action based on it, is strictly
prohibited.


signature.asc
Description: This is a digitally signed message part


Re: Wifi card shopping (stupid question)

2005-11-17 Thread John Wilson
On Thu, 17 Nov 2005 17:50:45 -0800
Remington [EMAIL PROTECTED] wrote:

 I am planning no making a new 6.0 tower machine. I have some serious
 concerns in regards to PCI wifi card support and FreeBSD. Can anyone
 recommend a good PCI 802.11/g card that works with FreeBSD 6.0-R?
 Preferably one that is easily found(i.e. i can go to Best Buy tomorrow
 and buy one).
[...]

I just picked up a pair of NetGear WG311T PCI cards for two old
machines yesterday - they appear to be working flawlessly.  I've them
running with wpa_supplicant, as well, without issue under 6.0-STABLE.

Supported out of the box with ath.

ath_hal: 0.9.14.9 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413)
ath0: Atheros 5212 mem 0xfe00-0xfe00 irq 17 at device 2.0 on pci2

Got 'em at CompUSA... was too eager to wait for shipping from NewEgg. :D

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


xmms, stupid question

2005-08-10 Thread slack _usr
Hi everyone,

I'm new to FreeBSD, so I'm using DesktopBSD. But I think, it uses
FreeBSD ports collection. So, question is, where I can find only xmms
(plain player). I can find MANY MANY plugins and etc, but I can't find
simple xmms. Please, help me If someone can.

And sorry for the stupid question.

Thanks.
-- 
Slack is GOOD (maybe FreeBSD better).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: xmms, stupid question

2005-08-10 Thread Glenn Dawson

At 02:46 AM 8/10/2005, slack _usr wrote:

Hi everyone,

I'm new to FreeBSD, so I'm using DesktopBSD. But I think, it uses
FreeBSD ports collection. So, question is, where I can find only xmms
(plain player). I can find MANY MANY plugins and etc, but I can't find
simple xmms. Please, help me If someone can.

And sorry for the stupid question.


it's usually in /usr/ports/multimedia/xmms

-Glenn



Thanks.
--
Slack is GOOD (maybe FreeBSD better).
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [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: xmms, stupid question

2005-08-10 Thread RW
On Wednesday 10 August 2005 10:46, slack _usr wrote:
 Hi everyone,

 I'm new to FreeBSD, so I'm using DesktopBSD. But I think, it uses
 FreeBSD ports collection. So, question is, where I can find only xmms
 (plain player). I can find MANY MANY plugins and etc, but I can't find
 simple xmms. Please, help me If someone can.

 And sorry for the stupid question.

 Thanks.

See 'man ports' for how to search for a port
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: stupid question

2005-05-20 Thread Clement Twine
Charles Lamb wrote the following on 05/19/2005 07:25 PM:
How do you change the DNS server your freebsd machine uses?
the most stupid question is that one which was not asked :)
anyway:
vi /etc/resolv.conf
clem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: stupid question

2005-05-20 Thread Tony Shadwick
You're breaking my heart here. :)
emacs /etc/resolv.conf
*ducks*
On Fri, 20 May 2005, Clement Twine wrote:
Charles Lamb wrote the following on 05/19/2005 07:25 PM:
How do you change the DNS server your freebsd machine uses?
the most stupid question is that one which was not asked :)
anyway:
vi /etc/resolv.conf
clem.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


stupid question

2005-05-19 Thread Charles Lamb
How do you change the DNS server your freebsd machine uses?


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


Re: stupid question

2005-05-19 Thread [EMAIL PROTECTED]
On Thu, 19 May 2005 13:25:25 -0400
Charles Lamb [EMAIL PROTECTED] wrote:

 How do you change the DNS server your freebsd machine uses?

take a look at /etc/resolv.conf

and : man resolv.conf

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


Re: stupid question

2005-05-19 Thread Kent Stewart
On Thursday 19 May 2005 10:25 am, Charles Lamb wrote:
 How do you change the DNS server your freebsd machine uses?


I have a static setup. I just add them to /etc/resolv.conf.

Kent

-- 
Kent Stewart
Richland, WA

http://users.owt.com/kstewart/index.html
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


This may be a stupid question but where can I compile quanta?

2004-12-11 Thread CHris Rich
I've searched the ports on freebsd.org googled around and still can't
find where to compile quanta, am I overlooking something obvious?

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


RE: This may be a stupid question but where can I compile quanta?

2004-12-11 Thread Marcel de Reuver
 
 I've searched the ports on freebsd.org googled around and still can't
 find where to compile quanta, am I overlooking something obvious?
 

FreeBSD 5.3-Stable

whereis quanta
quanta: /usr/ports/www/quanta

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


Re: This may be a stupid question but where can I compile quanta?

2004-12-11 Thread mnavarre
On Saturday 11 December 2004 10:40 am, CHris Rich wrote:
 On Sat, 11 Dec 2004 16:43:26 +0100, Marcel de Reuver

 [EMAIL PROTECTED] wrote:
   I've searched the ports on freebsd.org googled around and still can't
   find where to compile quanta, am I overlooking something obvious?
 
  FreeBSD 5.3-Stable
 
  whereis quanta
  quanta: /usr/ports/www/quanta

 That's fine and dandy but:

 [EMAIL PROTECTED] [/home/chris]  cd /usr/ports/www/quanta
 /usr/ports/www/quanta: No such file or directory.

quanta was renamed kdewebdev for KDE 3.3. See /usr/ports/UPDATING and search 
for 20040830
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: This may be a stupid question but where can I compile quanta?

2004-12-11 Thread Chuck Swiger
CHris Rich wrote:
On Sat, 11 Dec 2004 16:43:26 +0100, Marcel de Reuver
[EMAIL PROTECTED] wrote:
I've searched the ports on freebsd.org googled around and still can't
find where to compile quanta, am I overlooking something obvious?
[ ... ]
[EMAIL PROTECTED] [/home/chris]  cd /usr/ports/www/quanta
/usr/ports/www/quanta: No such file or directory.
You probably didn't install the ports tree when you originally installed 
FreeBSD.  You can either download a precompiled package, or build the software 
yourself:

http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html
--
-Chuck
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: This may be a stupid question but where can I compile quanta?

2004-12-11 Thread CHris Rich
On Sat, 11 Dec 2004 16:43:26 +0100, Marcel de Reuver
[EMAIL PROTECTED] wrote:
 
  I've searched the ports on freebsd.org googled around and still can't
  find where to compile quanta, am I overlooking something obvious?
 
 
 FreeBSD 5.3-Stable
 
 whereis quanta
 quanta: /usr/ports/www/quanta
That's fine and dandy but:
 
[EMAIL PROTECTED] [/home/chris]  cd /usr/ports/www/quanta
/usr/ports/www/quanta: No such file or directory.
[EMAIL PROTECTED] [/home/chris]  whereis quanta
quanta:
[EMAIL PROTECTED] [/home/chris] 

uname -a by the way
FreeBSD my.computer.name 5.3-STABLE FreeBSD 5.3-STABLE #0: Thu Dec  2
18:04:07 CST 200

Thanks for the try though
-- 
Regards
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[Fwd: Re: Well here's a bit of a stupid question.]

2004-07-03 Thread Remko Lodder
and for the list as well (:
 Original Message 
Subject: Re: Well here's a bit of a stupid question.
Date: Sat, 03 Jul 2004 21:44:38 +0200
From: Remko Lodder [EMAIL PROTECTED]
To: Glenn Sieb [EMAIL PROTECTED]
References: [EMAIL PROTECTED]
Glenn Sieb wrote:
I have recently upgraded to 4.10-RELEASE, Apache2 and mod_php4 (for 
apache2)...

I seem to have lost my php binary somewhere along here... (you know, 
/usr/local/bin/php).. and when I go to /usr/ports/lang/php4-cli, I get:

/usr/ports/lang/php4-cli 545 $ make install
===  Installing for php4-cli-4.3.7_3
===  php4-cli-4.3.7_3 conflicts with installed package(s):
 mod_php4-4.3.7_3,1
 They install files into the same place.
 Please remove them first with pkg_delete(1).
*** Error code 1
Err??
Since I most certainly do not have a php cli right now... and kind of 
need it for some scripts I have running no, installing www/mod_php4 
didn't install php cli... *sigh*... any help is greatly appreciated...

Thank you in advance,
Best,
Glenn
Hi Glenn,
It's registered in the portsdatabase as being installed. Even if you
move all corresponding files it's still marked as installed:
pkg_delete mod_php4-4.3.7_3,1 and then going to /usr/ports/lang/php4-cli
 to do the make install, should work fine then..
Perhaps you can try that...
--
Kind regards,
Remko Lodder   |[EMAIL PROTECTED]
Reporter DSINet|[EMAIL PROTECTED]
Projectleader Mostly-Harmless  |[EMAIL PROTECTED]

--
Kind regards,
Remko Lodder   |[EMAIL PROTECTED]
Reporter DSINet|[EMAIL PROTECTED]
Projectleader Mostly-Harmless  |[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Stupid question

2004-05-25 Thread Albert Shih
Hi all

A stupid question :

Anyone have some idea when the 5.3 is released ? (juste some idea :
it's in middle of year or end of year)

Regards.

--
Albert SHIH
Universite de Paris 7 (Denis DIDEROT)
U.F.R. de Mathematiques.
Heure local/Local time:
Tue May 25 17:40:22 CEST 2004
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Stupid question

2004-05-25 Thread Chris
On Tuesday 25 May 2004 10:41 am, Albert Shih wrote:
 Hi all

 A stupid question :

   Anyone have some idea when the 5.3 is released ? (juste some idea :
   it's in middle of year or end of year)

 Regards.

 --
 Albert SHIH
 Universite de Paris 7 (Denis DIDEROT)
 U.F.R. de Mathematiques.
 Heure local/Local time:
 Tue May 25 17:40:22 CEST 2004

Take a look here:
http://www.freebsd.org/releases/index.html

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


A stupid question about Linux-Flashplayer6 and firefox

2004-04-02 Thread f.johan.beisser

anyone actually have sound?

I've got FreeBSD 5.2-CURRENT Mar 14 with Firefox 0.8. Latest
linuxpluginwrapper (march 10, built from ports) and the correct (as
suggested by the linuxpluginwrapper port) mappings for libmap. so, as far
as i can tell, it *should* work, but just doesn't.

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


Re: A stupid question about Linux-Flashplayer6 and firefox

2004-04-02 Thread Thomas Lippert
on or about 04/01/04-19:28 f.johan.beisser wrote:
anyone actually have sound?
Sort of, if i turn the volume all the way up i can here
the shutter clicks on canon's web site. It is definatly worse than it 
used to be, but not by much. It seems like this has always been a bit of
a problem; i just don't use flash often so i never worried about it.
I've got FreeBSD 5.2-CURRENT Mar 14 with Firefox 0.8. Latest
linuxpluginwrapper (march 10, built from ports) and the correct (as
suggested by the linuxpluginwrapper port) mappings for libmap. so, as far
as i can tell, it *should* work, but just doesn't.
---/ f. johan beisser /--+
Cheers,
-Thomas
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Maybe a stupid question but....

2004-03-09 Thread Alina Groulx
Hi everyone,

I've searched high and low for a download for FreeBSD source code in a form that I 
recognize.  I'm looking for tar.gz of the source code but am not seeing it anywhere.  
Can someone help me or perhaps let me know how I can download off the cvs site?

Alina Groulx



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


Re: Maybe a stupid question but....

2004-03-09 Thread Jeremy Faulkner
Alina Groulx wrote:
Hi everyone,

I've searched high and low for a download for FreeBSD source code in a form that I recognize.  I'm looking for tar.gz of the source code but am not seeing it anywhere.  Can someone help me or perhaps let me know how I can download off the cvs site?

Alina Groulx
All of the ftp mirrors have it in the src directory of the release or 
snapshot directory. This directory contains a shell script install.sh.
Set the DESTDIR environment variable and run the shell script. The 
source, as it existed for that snapshot or release, will be installed in 
the directory specified by DESTDIR. If you want the source code for your 
current system, have cvsup installed and want to install the source code 
into /usr/src you can simply:

cvsup -h cvsup15.freebsd.org /usr/share/examples/cvsup/standard*

--
Jeremy Faulkner http://www.gldis.ca
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Maybe a stupid question but....

2004-03-09 Thread Kevin D. Kinsey, DaleCo, S.P.
Jeremy Faulkner wrote:

Alina Groulx wrote:

Hi everyone,

I've searched high and low for a download for FreeBSD source code in 
a form that I recognize.  I'm looking for tar.gz of the source code 
but am not seeing it anywhere.  Can someone help me or perhaps let me 
know how I can download off the cvs site?

Alina Groulx


All of the ftp mirrors have it in the src directory of the release or 
snapshot directory. This directory contains a shell script install.sh.
Set the DESTDIR environment variable and run the shell script. The 
source, as it existed for that snapshot or release, will be installed 
in the directory specified by DESTDIR. If you want the source code for 
your current system, have cvsup installed and want to install the 
source code into /usr/src you can simply:

cvsup -h cvsup15.freebsd.org /usr/share/examples/cvsup/standard*

FreeBSD code is also available via anonymous cvs;
see the handbook (www.freebsd.org/handbook),
Appendix A, section 3.  The module you'd want (I
guess) is src-all
HTH,

Kevin Kinsey
DaleCo, S.P.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Maybe a stupid question but....

2004-03-09 Thread Cordula's Web
 I've searched high and low for a download for FreeBSD source code in
 a form that I recognize.  I'm looking for tar.gz of the source code
 but am not seeing it anywhere.  Can someone help me or perhaps let
 me know how I can download off the cvs site?

If you want to download via CVS:
  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/anoncvs.html

And here's the list of tags/branches:
  http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/cvs-tags.html

In any case, PLEASE use a mirror!

 Alina Groulx

-- 
Cordula's Web. http://www.cordula.ws/

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


Re: Maybe a stupid question but....

2004-03-09 Thread Jerry McAllister
 
 Hi everyone,
 
 I've searched high and low for a download for FreeBSD source code in a 
 form that I recognize.  I'm looking for tar.gz of the source code but 
 am not seeing it anywhere.  Can someone help me or perhaps let me know 
 how I can download off the cvs site?

Where have you been looking?

If you install FreeBSD and during installation elect to install source
as well along with the other stuff, it will be installed on your 
machine.   Then it will mostly be within the /usr/src directory tree.

This web page will describe it some:

 
http://www.freebsd.org/doc/en_US.ISO8859-1/books/developers-handbook/introduction-layout.html

jerry

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


Is this an stupid question?

2004-02-08 Thread Teilhard Knight
I am trying to install FreeBSD 5.2. My problem is that after being
questioned about whether I really want to carry on with the installation, I
get a message saying the root filesystem could not be created

Also, I have three CD and DVD drives, and when questioned about which to
use, I haven't got the slightest idea. But, in any case, I have tried with
the three, and the result is the same.

My system is set as:

Primary channel: Main HD (160 Gig) as master, and a CD-RW as slave

Secondary channel: A 60 Gig HD as master and a DVD-ROM as slave.

All the above in a ULTRA ATA card. There is as well a master DVD+RW in the
primary channel of the motherboard.

Thanks for reading-

Teilhard

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


stupid question

2003-08-17 Thread Eugene Vinokurov
'chmod -R o+w /' had been done on filesystem
reinstall is impossible 
chmod -R o-w / , chmod o-w /, and chmod o+w /tmp /var/tmp seem to help
What problems I have to expect ?
Is there any way to restore default permissions for system directories?
Maybe I have to check something?
Please, help

services working: sendmail, apache, mysql, proftp

p.s. sorry for my poor English
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: stupid question

2003-08-17 Thread Kirk Strauser
At 2003-08-17T12:10:23Z, Eugene Vinokurov [EMAIL PROTECTED] writes:

 Is there any way to restore default permissions for system directories?
 Maybe I have to check something?  Please, help

Look at mtree.  It can fix much of the damage.
-- 
Kirk Strauser


pgp0.pgp
Description: PGP signature


RE: Stupid question

2003-04-01 Thread Terry Tyson
Check the man pages for write and talk.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Gerard Samuel
Sent: Friday, March 28, 2003 10:17 AM
To: FreeBSD Questions
Subject: Stupid question


How does one send a message to another logged in user on the same box
via the command line??
Thanks

--
Gerard Samuel
http://www.trini0.org:81/
http://test1.trini0.org:81/


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

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


Re: Stupid question

2003-03-31 Thread Paharenko Gleb



On Fri, 28 Mar 2003, Gerard Samuel wrote:

 How does one send a message to another logged in user on the same box
 via the command line??
 Thanks

 --
 Gerard Samuel
 http://www.trini0.org:81/
 http://test1.trini0.org:81/


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

The easy is to use command write
read man write
also the cool program talk
read man talk


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


Stupid question

2003-03-28 Thread Gerard Samuel
How does one send a message to another logged in user on the same box 
via the command line??
Thanks

--
Gerard Samuel
http://www.trini0.org:81/
http://test1.trini0.org:81/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Stupid question

2003-03-28 Thread Andy Harrison
-BEGIN PGP SIGNED MESSAGE-


~
On 28-Mar-2003, Gerard Samuel wrote message Stupid question
~
 How does one send a message to another logged in user on the same box 
 via the command line??


man wall



~~ 
Andy Harrison
[EMAIL PROTECTED]
ICQ: 123472  AIM/Y!: AHinMaine
[full headers for details]

-BEGIN PGP SIGNATURE-
Version: PGP 6.5.8

iQCVAwUBPoSc6lPEkLgodAWVAQGqTQP/UZEul9FwFkKiS8WI0NvSy3F6JXXA+F2N
6Mq0G4BE5SUR91gtdNPYc+soupZoXJo/7U0938ayk4ndjWdc5E1ot2pS9Pt3412C
7IuJ3ts5cf9uF4nRnf3csm+TaxPLUjvDqDgOvpDcw1ii2gw60P9U5poq/iKacQt/
HnfWh+e5qWY=
=kyWW
-END PGP SIGNATURE-
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Stupid question

2003-03-28 Thread Matthew Seaman
On Fri, Mar 28, 2003 at 11:17:10AM -0500, Gerard Samuel wrote:
 How does one send a message to another logged in user on the same box 
 via the command line??

write(1)
talk(1) --- if you have the talk service enabled in /etc/inetd.conf

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Stupid question

2003-03-28 Thread Gerard Samuel
Thanks everyone.  It was write the command I was after.

Gerard Samuel wrote:

How does one send a message to another logged in user on the same box 
via the command line??
Thanks

--
Gerard Samuel
http://www.trini0.org:81/
http://test1.trini0.org:81/
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


stupid question

2003-02-25 Thread Antoine Jacoutot
Hi ! 
 
I am sure it is a common question, but I can't find the answer: 
- how can I save my defined settings when building a port ? 
Putting them in /etc/make.conf does not seem to work. 
For exemple, if I want to build imapd with drac support, I go make 
WITH_DRAC=yes install, but I would love to go like make install, putting 
WITH_DRAC=yes in some configuration file somewhere so I don't have to write 
nor remember it all the time (especially when upgrading). 
 
Is that even possible ? 
 
Thanks in advance. 
 
--  
Antoine Jacoutot  
[EMAIL PROTECTED]  
http://www.lphp.org  
Unix is user friendly. He's just very picky about who his friends are...   
   

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


saving port settings (Was: stupid question)

2003-02-25 Thread Mike Meyer
In [EMAIL PROTECTED], Antoine Jacoutot [EMAIL PROTECTED] typed:

First, next time choose a better subect. Nearly every original post is
a question.

 I am sure it is a common question, but I can't find the answer: 
 - how can I save my defined settings when building a port ? 
 Putting them in /etc/make.conf does not seem to work. 
 For exemple, if I want to build imapd with drac support, I go make 
 WITH_DRAC=yes install, but I would love to go like make install, putting 
 WITH_DRAC=yes in some configuration file somewhere so I don't have to write 
 nor remember it all the time (especially when upgrading). 
 Is that even possible ? 

Use portupgrade, from the ports tree. Then you can do portupgrade
imapd to update it, and it'll look in $(PREFIX)/etc/pkgtools.conf to
see what settings you want to use.

mike
-- 
Mike Meyer [EMAIL PROTECTED]  http://www.mired.org/consulting.html
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: stupid question

2003-02-25 Thread Giorgos Keramidas
On 2003-02-25 19:43, Antoine Jacoutot [EMAIL PROTECTED] wrote:
 I am sure it is a common question, but I can't find the answer: -
 how can I save my defined settings when building a port?

 Putting them in /etc/make.conf does not seem to work.

Why not?  What did you put in /etc/make.conf?

I just tried rebuiding textproc/ispell with ISPELL_FR=yes in my
make.conf file.  Ports correctly tries to build ispell with French
support by typing:

# cd /usr/ports/txtproc/ispell
# make

 For exemple, if I want to build imapd with drac support, I go make
 WITH_DRAC=yes install, but I would love to go like make install,
 putting WITH_DRAC=yes in some configuration file somewhere so I
 don't have to write nor remember it all the time (especially when
 upgrading).

 Is that even possible ?

Another possibility is to create a metaport, that depends on other
ports.  I call mine my-workstation, and I have created it under
/usr/ports/misc/my-workstation.  The purpose of this port is not to
build anything or install anything of its own; just to have proper
dependencies for all the programs I usually want around.  The Makefile
of that port includes:

# Feature customization for the `contained' ports.
.MAKEFLAGS+=WITHOUT_X11=YES \
ISPELL_FR=YES \
ISPELL_IT=YES \
WITH_SSL=YES

These flags are passed down to all the dependencies of the port, when
it's installed.  This way, all the ports that my-workstation pulls in
by dependencies will compile without X11 support, ispell will include
both Italian and French support, Pine will have SSL support compiled
in by default, etc.

- Giorgos


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: saving port settings (Was: stupid question)

2003-02-25 Thread Antoine Jacoutot
 First, next time choose a better subect. Nearly every original post is
 a question.

Sorry about this.

 Use portupgrade, from the ports tree. Then you can do portupgrade
 imapd to update it, and it'll look in $(PREFIX)/etc/pkgtools.conf to
 see what settings you want to use.

Hum I can't find anything to resolve my problem within that file.

Thanks anyway.

ANTOINE


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: stupid question

2003-02-25 Thread Antoine Jacoutot
On Tuesday 25 February 2003 20:51, Giorgos Keramidas wrote:
  Putting them in /etc/make.conf does not seem to work.

 Why not?  What did you put in /etc/make.conf?

Well, besides some settings, I put WITH_DRAC=yes...

 I just tried rebuiding textproc/ispell with ISPELL_FR=yes in my
 make.conf file.  Ports correctly tries to build ispell with French

OK, I'll give a nother try...

 Another possibility is to create a metaport, that depends on other
 ports.  I call mine my-workstation, and I have created it under
 /usr/ports/misc/my-workstation.  The purpose of this port is not to
 build anything or install anything of its own; just to have proper
 dependencies for all the programs I usually want around.  The Makefile
 of that port includes:

Well, this does not sound like an easy solution to deploy.

Thanks a lot.

ANTOINE


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: saving port settings (Was: stupid question)

2003-02-25 Thread Mike Meyer
In [EMAIL PROTECTED], Antoine Jacoutot [EMAIL PROTECTED] typed:
  Use portupgrade, from the ports tree. Then you can do portupgrade
  imapd to update it, and it'll look in $(PREFIX)/etc/pkgtools.conf to
  see what settings you want to use.
 Hum I can't find anything to resolve my problem within that file.

Quoting the comments in my copy of that file:

  # MAKE_ARGS: hash
  #
  # This is a hash of ports glob = arguments mapping.  portupgrade(1)
  # and portinstall(1) look it up to pick command line arguments to
  # pass to make(1).  You can use wildcards (ports glob).  If a
  # port/package matches multiple entries, all the arguments are
  # joined using the space as separator.
  #
  # cf. -m/--make-args of portupgrade(1), ports_glob(1)
  #
  # e.g.:
  #   MAKE_ARGS = {
  # 'databases/mysql323-*' = 'WITH_CHARSET=ujis',
  #   }

That looks like exactly what you're looking for.

mike
-- 
Mike Meyer [EMAIL PROTECTED]  http://www.mired.org/consulting.html
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: saving port settings (Was: stupid question)

2003-02-25 Thread Antoine Jacoutot
On Tuesday 25 February 2003 23:37, Mike Meyer wrote:
   # e.g.:
   #   MAKE_ARGS = {
   # 'databases/mysql323-*' = 'WITH_CHARSET=ujis',
   #   }
 That looks like exactly what you're looking for.

Sorry, I didn't see it... Well, this is great ;-) 
It only work for portupgrade though, right ? There's no other place to save 
those args... like an /etc/make.ports.conf ? 
Thank you so so much... 
 
Regards. 
 
ANTOINE


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: saving port settings (Was: stupid question)

2003-02-25 Thread Philip Hallstrom
# e.g.:
#   MAKE_ARGS = {
# 'databases/mysql323-*' = 'WITH_CHARSET=ujis',
#   }
  That looks like exactly what you're looking for.

 Sorry, I didn't see it... Well, this is great ;-)
 It only work for portupgrade though, right ? There's no other place to save
 those args... like an /etc/make.ports.conf ?
 Thank you so so much...

/etc/make.conf

will work, but it will define whatever you set for *everything* you do
with make... works for me though (I set all the various LITE and
WITHOUT_X11 stuff that ports seem to check for)


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message