Re: gemeral questions (noobish)

2008-08-03 Thread Norberto Meijome
On Sat, 2 Aug 2008 22:35:40 +0200
mcassar [EMAIL PROTECTED] wrote:

 so most of you _do_ use or prefer csup/cvsup more than portsnap, right? 

Welcome! :)

yes and no :P I like portsnap. faster.

For my ports, i run this script ( ~/bin/update_ports.sh)

#!/bin/sh
sudo portsnap fetch  sudo portsnap update
---
( sudo is the port security/sudo and it allows for fine grained control
root-access to certain commands only )

There are 2 ports that will help you with management of your ports/packages -
ports-mgmt/portupgrade and ports-mgmt/portmaster ( which
means /usr/ports/ports-mgmt/portupgrade/ , etc... )  - they can tell you what
needs updating,etc (can't remember if it is in the handbook...)

Anyway, for my src tree:
1) my /etc/make.conf has :
[...]
SUP_UPDATE=YES
SUP=/usr/bin/csup
SUPFLAGS=-g -L 2 -P m
SUPFILE=/usr/local/etc/standard-supfile
NO_PORTSUPDATE=true
[...]

-
the NO_PORTSUPDATE=true is so the std supfile doesn't pull in ports too. (maybe
i don't need it anymore, but it really doesn't break anything).

The /usr/local/etc/standard-supfile is :

*default host=cvsup5.FreeBSD.org
*default base=/var/db
*default prefix=/usr

## next line can have a date to peg src tree to a particular date : 
date=2007.12.05.01.00.00
*default release=cvs tag=RELENG_7 

*default delete use-rel-suffix

*default compress
src-all
--

and to update, 
cd /usr/src  sudo make update


Mind you, I am tracking STABLE. and use this because i have a custom kernel
(just because i can :P ). For those of my machines which use GENERIC,i just use
freebsd-update as explained by Giorgios already.

Any issues, just shoot more emails :)

Have fun!
B
_
{Beto|Norberto|Numard} Meijome

Quantum Logic Chicken:
  The chicken is distributed probabalistically on all sides of the
  road until you observe it on the side of your course.

I speak for myself, not my employer. Contents may be hot. Slippery when wet.
Reading disclaimers makes you go blind. Writing them is worse. You have been
Warned.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: gemeral questions (noobish)

2008-08-03 Thread Fraser Tweedale
On Sun, Aug 03, 2008 at 04:06:40PM +1000, Norberto Meijome wrote:
 On Sat, 2 Aug 2008 22:35:40 +0200
 mcassar [EMAIL PROTECTED] wrote:
 
  so most of you _do_ use or prefer csup/cvsup more than portsnap, right? 
 
 Welcome! :)
 
 yes and no :P I like portsnap. faster.
 
 For my ports, i run this script ( ~/bin/update_ports.sh)
 
 #!/bin/sh
 sudo portsnap fetch  sudo portsnap update
 
 [snip]
 

Did you know you can specifiy fetch and update at the same time?

sudo portsnap fetch update

...and save calling portsnap twice :)

frase



pgpdgJvWmlO6K.pgp
Description: PGP signature


Re: Client only supports checkout mode

2008-08-03 Thread Manolis Kiagias

kalin m wrote:

hi all...

why would i get : Client only supports checkout mode when i do;
csup /cvsup_file

on a new freebsd 7 install

what does it mean?!


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




It means you are trying to use a supfile that works in cvs mode.

In cvs mode, the client does not simply checkout the latest version of 
the files from the repository, instead it retrieves the ,v files that 
make up the whole repository. Effectively this means you are creating a 
local copy of the repository, while in checkout mode you just get the 
latest revision of every file.


CVS mode is mostly necessary if you wish to have quick access to all 
versions of a file (and the revision history) and mostly useful for 
developers. In other cases (for example, to update your ports tree) 
checkout mode is sufficient.


And now, here is the catch: Many people need to use checkout mode often, 
so csup was created and added to the base system. Csup is a rewrite (in 
C) of the well know cvsup utility (that exists in ports). But csup *does 
not* support cvs mode. So if you are trying to use a supfile that 
operates in cvs mode, you will get the Client only supports checkout mode


If you really need to use a cvs mode supfile, you will need to pkg_add 
-r cvsup-without-gui (or build it from ports) and then use the cvsup 
command instead of csup. A cvs mode supfile contains the line:


default release = cvs

while in a simple checkout supfile, this line also contains a tag, e.g. 
(my ports supfile):


default release = cvs tag=.

The tag simply requests a particular revision of the files (a checkout), 
and in the case of . it simply means the latest revision (head)


You can get a nice description of all options in the Handbook:

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


Re: jail_box_ip=insert hundreds of ips here

2008-08-03 Thread Matthew Seaman

Redd Vinylene wrote:

Can something similar be used for my

ifconfig_rl0_aliasN=inet 66.252.2.N netmask 255.255.255.255

as well?


You'ld have to write a loop:

for N in $( jot 124 4 ) ; do
   eval ifconfig_rl0_alias$N=\inet 66.252.2.$N netmask 255.255.255.255\
done

Cheers,

Matthew

--
Dr Matthew J Seaman MA, D.Phil.   7 Priory Courtyard
 Flat 3
PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate
 Kent, CT11 9PW



signature.asc
Description: OpenPGP digital signature


Re: gemeral questions (noobish)

2008-08-03 Thread Gonzalo Nemmi
On Sunday 03 August 2008 03:18:23 Fraser Tweedale wrote:
 On Sun, Aug 03, 2008 at 04:06:40PM +1000, Norberto Meijome wrote:
  On Sat, 2 Aug 2008 22:35:40 +0200
 
  mcassar [EMAIL PROTECTED] wrote:
   so most of you _do_ use or prefer csup/cvsup more than portsnap, right?
 
  Welcome! :)
 
  yes and no :P I like portsnap. faster.
 
  For my ports, i run this script ( ~/bin/update_ports.sh)
 
  #!/bin/sh
  sudo portsnap fetch  sudo portsnap update
 
  [snip]

 Did you know you can specifiy fetch and update at the same time?

   sudo portsnap fetch update

 ...and save calling portsnap twice :)

 frase

And do it via cron?

[EMAIL PROTECTED] ~]% grep port /etc/crontab
# keep the port index updated and e-mail me a list of ports to update
0   3   *   *   *   rootportsnap -I cron update  
pkg_version -vIL=

(Im pretty sure I took that from the The Best of FreeBSD Basics but I can't 
find the original article ... I know it's buried in here somewhere though: 
http://www.onlamp.com/pub/ct/15... so .. Credit goes to Dru Lavigne. :) )

That results on a daily e-mail from cron that looks like this:

 Cron [EMAIL PROTECTED] portsnap -I cron update  pkg_version -vIL=
From: Cron Daemon [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Date: 2008-08-01 03:07
   
ImageMagick-6.4.1.8needs updating (index has 6.4.2.5)
en-openoffice.org-US-2.4.0_3   needs updating (index has 2.4.1)
ffmpeg-2007.10.04_4needs updating (index has 
2008.07.27_1)
ghostscript-gpl-8.61_4 needs updating (index has 8.62_3)
gnupg-2.0.9_1  needs updating (index has 2.0.9_2)
gnutls-2.4.1   needs updating (index has 2.4.1_1)
kaffeine-0.8.6_1   needs updating (index has 0.8.7)
kdegraphics-3.5.8_2needs updating (index has 3.5.8_3)
libgphoto2-2.4.2   needs updating (index has 2.4.2_1)
libxine-1.1.12_1   needs updating (index has 1.1.14)
linux-doom3-1.1.1286,0 needs updating (index has 
1.3.1.1304,1)
pciids-20080312needs updating (index has 20080726)
portmaster-2.5 needs updating (index has 2.6)
samba-libsmbclient-3.0.30  needs updating (index has 3.0.31_1)
speex-1.2.b2,1 needs updating (index has 1.2.r1_1,1)

Then I get to decide whether or not to update a port, every port or do nothing 
and when to do it :D

BTW: I use csup for the base system and portsnap and and friends for the ports 
collection :)

Welcome and: have fun !
-- 
Blessings
Gonzalo Nemmi
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: gemeral questions (noobish)

2008-08-03 Thread Gonzalo Nemmi
On Sunday 03 August 2008 05:41:19 you wrote:
 On Sun, Aug 03, 2008 at 05:31:35AM -0300, Gonzalo Nemmi wrote:
  On Sunday 03 August 2008 03:18:23 Fraser Tweedale wrote:
   On Sun, Aug 03, 2008 at 04:06:40PM +1000, Norberto Meijome wrote:
On Sat, 2 Aug 2008 22:35:40 +0200
   
mcassar [EMAIL PROTECTED] wrote:
 so most of you _do_ use or prefer csup/cvsup more than portsnap,
 right?
   
Welcome! :)
   
yes and no :P I like portsnap. faster.
   
For my ports, i run this script ( ~/bin/update_ports.sh)
   
#!/bin/sh
sudo portsnap fetch  sudo portsnap update
   
[snip]
  
   Did you know you can specifiy fetch and update at the same time?
  
 sudo portsnap fetch update
  
   ...and save calling portsnap twice :)
  
   frase
 
  And do it via cron?
 
  [EMAIL PROTECTED] ~]% grep port /etc/crontab
  # keep the port index updated and e-mail me a list of ports to update
  0   3   *   *   *   rootportsnap -I cron update
   pkg_version -vIL=
 
  (Im pretty sure I took that from the The Best of FreeBSD Basics but I
  can't find the original article ... I know it's buried in here somewhere
  though: http://www.onlamp.com/pub/ct/15... so .. Credit goes to Dru
  Lavigne. :) )
 
  That results on a daily e-mail from cron that looks like this:
 
   Cron [EMAIL PROTECTED] portsnap -I cron update  pkg_version -vIL=
  From: Cron Daemon [EMAIL PROTECTED]
  To: [EMAIL PROTECTED]
  Date: 2008-08-01 03:07
 
  ImageMagick-6.4.1.8needs updating (index has
  6.4.2.5) en-openoffice.org-US-2.4.0_3   needs updating (index
  has 2.4.1) ffmpeg-2007.10.04_4needs updating (index
  has 2008.07.27_1)
  ghostscript-gpl-8.61_4 needs updating (index has 8.62_3)
  gnupg-2.0.9_1  needs updating (index has
  2.0.9_2) gnutls-2.4.1   needs updating (index
  has 2.4.1_1) kaffeine-0.8.6_1   needs updating
  (index has 0.8.7) kdegraphics-3.5.8_2needs updating
  (index has 3.5.8_3) libgphoto2-2.4.2   needs
  updating (index has 2.4.2_1) libxine-1.1.12_1  
  needs updating (index has 1.1.14) linux-doom3-1.1.1286,0
  needs updating (index has 1.3.1.1304,1)
  pciids-20080312needs updating (index has
  20080726) portmaster-2.5 needs updating (index
  has 2.6) samba-libsmbclient-3.0.30  needs updating (index
  has 3.0.31_1) speex-1.2.b2,1 needs updating
  (index has 1.2.r1_1,1)
 
  Then I get to decide whether or not to update a port, every port or do
  nothing and when to do it :D
 
  BTW: I use csup for the base system and portsnap and and friends for the
  ports collection :)
 
  Welcome and: have fun !
  --
  Blessings
  Gonzalo Nemmi

 Well, yes.  `portsnap cron update` if running from cron. My point was that
 you can do fetch and update in one operation :)

Oh sure !

But check this out, this is interesting (at least for me): by using the -I 
flag I only update the INDEX file and not the whole port tree.

From man portsnap:
-I   For the update command, update INDEX files, but not the rest
  of the ports tree.

Now why would I want to do that?
Well .. bandwith basically.. since Im running portsnap cron update via cron, 
on a daily basis, I don't want to hammer the repos for no real reason ;)

By using the -I flag, I can get a report with the info I need, and only then, 
when there's a really good reason for it, I update the ports tree.

 I too use csup for src and portsnap for ports.  Portsnap is (at least in my
 experience) far faster and more bandwith efficient.

100% agreed.


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


Re: gemeral questions (noobish)

2008-08-03 Thread RW
On Sun, 3 Aug 2008 05:57:00 -0300
Gonzalo Nemmi [EMAIL PROTECTED] wrote:

 On Sunday 03 August 2008 05:41:19 you wrote:

  Well, yes.  `portsnap cron update` if running from cron. My point
  was that you can do fetch and update in one operation :)
 
 Oh sure !
 
 But check this out, this is interesting (at least for me): by using
 the -I flag I only update the INDEX file and not the whole port tree.
 
 From man portsnap:
 -I   For the update command, update INDEX files, but not the
 rest of the ports tree.
 
 Now why would I want to do that?
 Well .. bandwith basically.. since Im running portsnap cron update
 via cron, on a daily basis, I don't want to hammer the repos for no
 real reason ;)

I don't think that makes a difference, the -I option prevents
portsnap from updating the ports tree from the local compressed
snapshot, but AFAIK you're still updating the snapshot from the server.



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


xampp under FreeBSD

2008-08-03 Thread Markus Mueller

hello list,

I have installed xampp (www.xampp.org), but I can't start it with 
brandelf -t lampp start.

have someone an idea, how I can start lampp on freebsd ?






___ 
Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: http://mail.yahoo.de


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


Make Free Calls Worldwide - Invitation From Mohd. Aijaz

2008-08-03 Thread TringMe
Dear TringMe User,

Mohd. Aijaz has invited you to join TringMe and make worldwide calls FREE from 
your mobile and web. 

TringMe is the simplest way make and receive worldwide calls from the web for 
FREE* … just click  call !! No software to download, No software to install.

Break free from the traditional telephony paradigm and embrace the next 
generation telephony:
- Make and receive calls between Web, Instant Messengers, Phones, SIP URIs etc 
!!
- Retrieve voicemails from any device or directly from the web. Have it mailed 
to you as text !!

Reduce your dependency on the expensive cellular minutes
- Access the same set services from TringMe's powerful MobileVoIP client
- Use WiFi, 2.5G/3G data networks to make and receive cheap calls, retrieve 
voicemails and much more !!

Join TringMe by clicking on the following link (or copy/paste in your browser)

http://tringme.com/myinvite.php?e=freebsd-questions%40freebsd.orgf=13847-2483659572ic=4c7e0a380ff8aa1a

Feel free to write to us at [EMAIL PROTECTED] if you need any assistance. 

Regards,
TringMe Support
http://www.tringme.com/

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


Re: gemeral questions (noobish)

2008-08-03 Thread Chris Whitehouse

Norberto Meijome wrote:

On Sat, 2 Aug 2008 22:35:40 +0200
mcassar [EMAIL PROTECTED] wrote:

so most of you _do_ use or prefer csup/cvsup more than portsnap, right? 



There are 2 ports that will help you with management of your ports/packages -
ports-mgmt/portupgrade and ports-mgmt/portmaster ( which
means /usr/ports/ports-mgmt/portupgrade/ , etc... )  - they can tell you what
needs updating,etc (can't remember if it is in the handbook...)


three on my machine, the two above and ports-mgmt/portmanager. I use 
csup and portmanager - it's simple and very thorough.


Chris


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


Re: xampp under FreeBSD

2008-08-03 Thread nawcom
well, brandelf is used to mark which ABI you want to use in order to run 
the binary, so the command you show isn't going to work.


I guess I don't understand the need to use XAMPP when every part is 
fully supported via ports. My suggestion is to follow one of the many 
HOWTO guides for setting up Apache/PHP/MySQL for FreeBSD you can find 
via google. Even if you got everything working under linux_base I 
wouldn't be surprised that more issues would come up, let alone keeping 
your server secure at the same time. If you have any more specific 
questions let us know, but if you need some help setting up your web 
server there are a ton of HOWTO sites that will help you out.

-nawcom


Markus Mueller wrote:

hello list,

I have installed xampp (www.xampp.org), but I can't start it with 
brandelf -t lampp start.

have someone an idea, how I can start lampp on freebsd ?





   
___ Der frühe 
Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: 
http://mail.yahoo.de


___
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: keyboard!!

2008-08-03 Thread David Newman

On 7/31/08 2:02 PM, David Gurvich wrote:


So you have also been lusting after one of these keyboards?  Has anyone
actually ordered and used one of these and what is the opinion on them?


I can vouch for the Endurapro, which combines the buckling-spring feel 
of an old AT keyboard with a TrackPoint pointer and a USB connector:


http://pckeyboards.stores.yahoo.net/en104wh.html

The action is slower than on mushmatic keyboards that come with modern 
PCs, but that was always true.


Someone else asked about double-row keyboards like those for 3270 or 
5250 terminals; Unicomp sells those too:


http://pckeyboards.stores.yahoo.net/122keyterkey.html

dn

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


Konqueror crashes with javascript

2008-08-03 Thread David Gurvich
When javascript is enabled visiting 'www.osnews.com' causes an 'illegal
instruction' in konqueror and crashes with no other error messages. 
Regardless, konqueror should not crash that way.  How does one report
such a bug and how can more information be found?  All I see is the
'illegal instruction' and 'exited on signal 4' in the log.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Multicast routing howto?

2008-08-03 Thread Kurt Buff
I've put together a router for work - it's a 7-Stable box, with 3
dual-port NICs in it.

It's in use by our test/dev folks, and I've been asked to
enable/configure multicast on it. It has one port on the production
LAN (192.168.123.0/24), and the other 5 on the test/dev networks
(10.0.0.0/24, 1.0/24, 2.0/24, 3.0/24 and  4.0/24). Obviously, we're
only running IPv4, and it's working just fine with the static routes
I've set up.

I just this weekend upgraded it from 6.3 to 7-stable, and per this link:

http://www.freebsd.org/doc/en/books/handbook/network-routing.html

I recompiled the kernel after putting in options MROUTING in the
kernel config, but haven't put mrouted on, as it's deprecated in the
above handbook link.

I've perused man pages for pim and rc.conf, but cannot find not much
else on how to configure it, even after googling a bit to

Anyone care to point me to a howto on setting this up?

Many thanks,

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


SMP aware programming

2008-08-03 Thread Nikola Knežević

Hi,

I'm about to port ModelNet (a large-scale internet emulator) from  
FreeBSD 4 to FreeBSD 7. It is implemented as a module. Well, changing  
couple of headers and structs will probably solve the thing, but I  
would like to make it SMP aware. Since it emulates a lot of nodes,  
each of which is doing some processing, I would like to group them,  
so ones are executing on one core, other on second and so on...


Can someone give me some pointers to some good tutorial, text,  
documentation? I know about multiprogramming, but I never did anything  
in a kernel.


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


Re: setting the other end's TCP segment size

2008-08-03 Thread perryh
   Is there a simple way for a FreeBSD system to cause its
   peer to use a transmit segment size of, say, 640 bytes --
   so that the peer will never try to send a packet larger
   than that?
  
   I'm trying to get around a network packet-size problem. 
   In case it matters, the other end is SunOS 4.1.1 on a
   sun3, and I've been unable to find a way to limit its
   packet size directly.
...
   Each tcp conversation can have it's own size set along
   with a bunch of other params.
 
  Good point.  The TCP_MAXSEG can reduce the maximum segment
  size for a single TCP connection to something smaller than
  the interface MTU :)

That would be OK, provided I could somehow arrange for it to apply
to all conversations with this particular destination (which is
what the next item seems to do :)

 Just adding that MTU can be set per destination with the help
 of route(8) and the -mtu modifier.

That would be better than setting the local mtu -- which has been
causing other problems although it takes care of the original --
and it is a better match to the physical situation.  (The culprit
is neither the Sun nor the FreeBSD system, but the physical link
between the Sun and the hub.)

What I haven't been able to come up with is a way of making such
a setting permanent.  If I've communicated with the Sun recently
enough, netstat -r -W reports a line like this (some spaces
removed, for length, and I've no longer got xl0's mtu set low)

Destination   Gateway   Flags Refs Use  Mtu Netif Expire
192.168.200.3 08:00:20:00:a7:a6 UHLW 1  34 1500   xl0   1184

Now if I do

# route change 192.168.200.3 -lock -mtu 640

the mtu column changes to 640 and it works fine, but only until
the routing entry expires.  Adding -static makes no difference
-- the entry still expires and loses the mtu specification.

I've been unable to come up with a route command that will *create*
an entry like that (vs modifying an existing one), nor that will
transform a transient entry into a permanent one.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Handling of daily and weekly mails

2008-08-03 Thread Maximillian Dornseif


Maximillian Dornseif wrote:
 
 I wonder what the canonical approach is to handling hundreds of status
 mails like the ons generated by periodic.
 

A first step to reducing the mail tsunami is adding

daily_status_security_inline=YES 

to /etc/periodic.conf.

--md
-- 
View this message in context: 
http://www.nabble.com/Handling-of-daily-and-weekly-mails-tp18748908p18803108.html
Sent from the freebsd-questions mailing list archive at Nabble.com.

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


Re: keyboard!!

2008-08-03 Thread John Almberg
I suppose this is mentioning the obvious, but in case anyone thinks  
IBM Model M keyboards are hard to find, just check eBay. You can get  
them in good condition for around $25. Good condition meaning it will  
last another 10 years (at least.)


-- John

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


FreePbx

2008-08-03 Thread orv

Hi,
Does anyone have  a recipe for installing freepbx on FreeBSD 6-3 
stable. There does not seem to be a port for it and googling does not 
reveal anything helpfull so far.


I found the following which mentions a port however the port is no 
longer around. http://aussievoip.com/wiki/index.php?page=freePBX-FreeBSD.


Thanks

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


console video modes and console screensavers

2008-08-03 Thread R Dicaire
Hi folks...I was using allscreens mode of MODE_282 but I noticed the
console screensaver never kicked in. When I went back to a standard
80x25 mode, screensaver works. Is this normal behaviour?

-- 
aRDy Music and Rick Dicaire present:
http://www.ardynet.com
http://www.ardynet.com:9000/ardymusic.ogg.m3u
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreePbx

2008-08-03 Thread Sean Cavanaugh
freepbx is based on asterisk which is in ports with better web based 
administration pages.


--
From: orv [EMAIL PROTECTED]
Sent: Sunday, August 03, 2008 7:13 PM
To: freebsd-questions@freebsd.org
Subject: FreePbx


Hi,
Does anyone have  a recipe for installing freepbx on FreeBSD 6-3 stable. 
There does not seem to be a port for it and googling does not reveal 
anything helpfull so far.


I found the following which mentions a port however the port is no longer 
around. http://aussievoip.com/wiki/index.php?page=freePBX-FreeBSD.


Thanks

___
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]


building only part of the world

2008-08-03 Thread perryh
How would I go about building, not the entire world, but only
a small part of it?

If I just cd to the desired subdirectory and type make -n
-- intending to find out what it would try to do -- I get a
warning about not having changed the object directory.

I suppose I'm supposed to type something along the lines of

  make -n OBJ=something

but what should I be setting OBJ to?  An attempt to find(1)
some of the expected output files, so as to discover where
they are conventionally located, found nothing.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Flashplugin

2008-08-03 Thread Conrad J. Sabatier
On Sat, 7 Jun 2008 15:00:27 -0500
Derek Graham [EMAIL PROTECTED] wrote:

 Hey all,
 
 I have tried using swfdec-plugin to do flash, but it doesnt seem to
 work too well at least with firefox. 
 One ... I prefer being able to select what flash loads automaticly and 
 Two ... I like to be able to see the flash video but all it does is
 freeze
 
 I can't seem to get linux-flashplugin7 anymore due to the restricted
 status. Flashplugin9 locks up also, which we all know already. I have
 heard gnash doesnt do much better... Anyone have a solution that works
 halfway?

I just installed the HEAD version of Gnash today, and I must say, it's
working much, much better than the official release version (0.8.3).
Sites that malfunctioned before are now displaying properly at last!

See http://www.gnu.org/software/gnash/#downloading for instructions on
how to get the source code.  You'll also need to install devel/bazaar-ng
in order to fetch it.

-- 
PROOF OF GOD #483. ARGUMENT FROM PROBABLE PROOF
  (1) God exists.
  (2) Can I prove it?  Probably.
  (3) Therefore, God exists.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: console video modes and console screensavers

2008-08-03 Thread Gonzalo Nemmi
On Sunday 03 August 2008 20:34:50 R Dicaire wrote:
 Hi folks...I was using allscreens mode of MODE_282 but I noticed the
 console screensaver never kicked in. When I went back to a standard
 80x25 mode, screensaver works. Is this normal behaviour?

Apparently it is ..
My kernel conf looks like this (relevant part only):

# VGA
device  vga # VGA video card driver

# Vesa support and options
options VESA# VESA support (man syscons)
options SC_PIXEL_MODE   # SC Screen Resolution (man syscons)
options SC_KERNEL_CONS_ATTR=(FG_LIGHTRED|BG_BLACK) # Kernel message will 
be printed red on black

# Splash and ScreenSaver support
device  splash  # Splash screen and screen saver support

# syscons is the default console driver, resembling an SCO console
device  sc

on /etc/rc.d

allscreens_flags=MODE_280

On that scenario, the only working screensaver seems to be logo_saver ... 
the rest of the screensavers don't work.

More info in here:

http://lists.freebsd.org/pipermail/freebsd-stable/2008-July/thread.html#43720

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


Re: console video modes and console screensavers

2008-08-03 Thread R Dicaire
On Sun, Aug 3, 2008 at 9:50 PM, Gonzalo Nemmi [EMAIL PROTECTED] wrote:
 On that scenario, the only working screensaver seems to be logo_saver ...
 the rest of the screensavers don't work.

Indeed, that works for me using MODE_282, thank you very much.

-- 
aRDy Music and Rick Dicaire present:
http://www.ardynet.com
http://www.ardynet.com:9000/ardymusic.ogg.m3u
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Flashplugin

2008-08-03 Thread Sam Fourman Jr.
On Sun, Aug 3, 2008 at 8:47 PM, Conrad J. Sabatier [EMAIL PROTECTED] wrote:
 On Sat, 7 Jun 2008 15:00:27 -0500
 Derek Graham [EMAIL PROTECTED] wrote:

 Hey all,

 I have tried using swfdec-plugin to do flash, but it doesnt seem to
 work too well at least with firefox.
 One ... I prefer being able to select what flash loads automaticly and
 Two ... I like to be able to see the flash video but all it does is
 freeze

 I can't seem to get linux-flashplugin7 anymore due to the restricted
 status. Flashplugin9 locks up also, which we all know already. I have
 heard gnash doesnt do much better... Anyone have a solution that works
 halfway?

 I just installed the HEAD version of Gnash today, and I must say, it's
 working much, much better than the official release version (0.8.3).
 Sites that malfunctioned before are now displaying properly at last!

maybe the gnash-devel port should be updated

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


Printing with lpd

2008-08-03 Thread Martin Schweizer
Hello

I'm playing around with lpd. My setup: a FreeBSD 7.0 server and a attached HP 
LaserJet 2840N (connected via ethernet), my 
/etc/printcap:
hplj2840|lp|Hewlett Packard LaserJet 2840C:\
:sh:\
:lp=:rm=hplj2840:rp=raw:sd=/var/spool/lpd/hplj2840:\
:lf=/var/log/lpd-errs:\
:if=/usr/local/libexec/if-simple:

and if-simple:
/usr/local/bin/recode latin1..ibmpc

The prints are ok so fare (incl. the german umlauts). If I print text mails out 
from mutt the seems ok too. But if the 
mails has some incorrect wrapped lines ( 72 caracters) the lines are not 
wrapped on the output.  What do I worng here?

Kind regards,

-- 

Martin Schweizer
[EMAIL PROTECTED]

PC-Service M. Schweizer GmbH; Bannholzstrasse 6; CH-8608 Bubikon
Tel. +41 55 243 30 00; Fax: +41 55 243 33 22; http://www.pc-service.ch;
public key : http://www.pc-service.ch/pgp/public_key.asc; 
fingerprint: EC21 CA4D 5C78 BC2D 73B7  10F9 C1AE 1691 D30F D239;

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