can someone help me out with the vmcore.0 information?

2008-09-21 Thread Jonathan Horne
i have a server that just contantly panics and reboots. its a fairly fresh 
install of 7.0-p4.

i have never had a server behave like this and i have no idea really where to 
start.  this is the first line of vmcore.0, is this pertinant?

vmcore.0:sys/i386/i386/bios.c: sig '%s' from 0x%0x to 0x%0x offset %d out of 
BIOS bounds 0x%0x - 0x%0x

if anyone can tell me where to begin for troubleshooting errors like this, i 
would really appreciate the pointers.  the ISP has supposedtly already 
performed a memory check (from within the running OS tho, not a bootable 
memtest86 disk, which the latter would have been what i preferred...).

thanks,
Jonathan



  

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


server is crashing constantly

2008-09-13 Thread Jonathan Horne
I have a new web server for a moderately high traffic website that i have 
recently deployed for a friend.  it has apache22, php5, and mysql50 on it 
(latest from ports).  this server is crashing 2-3 times a day, and thus far i 
have no idea where to start troubleshooting this.

That is what im getting in the /var/log/messages.

Sep 13 20:09:25 rps savecore: reboot after panic: page fault
Sep 13 20:09:25 rps savecore: writing core to vmcore.0


Here is the uname:
FreeBSD rps.rangerpowersports.com 7.0-RELEASE-p4 FreeBSD 7.0-RELEASE-p4 #0: Fri 
Sep  5 01:58:09 CDT 2008 [EMAIL PROTECTED]:/usr/obj/usr/src/sys/RPS  i386

Any ideas or recommendations about where to start looking to track this down 
would really be appreciated.

Thanks,
Jonathan



  

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


Re: rolling own mesh soln using BSD?

2008-04-21 Thread Jonathan Horne

Rogelio wrote:

I'm looking to roll my own mesh solution using BSD and was wondering if
anyone had any pointers on hardware, cards, software packages, etc.
Up to this point, I've either played with the little solutions (e.g. dd-wrt)
or the bigger ones (Cisco, BelAir, etc).

I'm looking to experiment around with something in between -- more robust
than the dd-wrt, but not as expensive as the big player equipment.

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


it sounds like your talking about bsd as a firewall, and if so, take a 
look at www.pfsense.org.


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


Re: Problem creating sendmail.cf file from .mc using /usr/bin/m4

2008-03-19 Thread Jonathan Horne
On Wednesday 19 March 2008 09:43:34 am Stephen Allen wrote:
 Hello,

 When I run /usr/bin/m4 freebsd.mc, the output looks ok, except that none
 of the define() lines show up in the output - even when running m4 on an
 unaltered freebsd.mc.

 Can anyone help?

 Many thanks,
 Steve


the generally accepted way, is to:

cd /etc/mail
make all

then, there will appear some configuration files that are of the name of the 
server.  make all your edits to the [hostname].mc.  then, finish up with:

make all install restart

dont bother trying to edit the freebsd.mc file... mergemaster will stomp your 
changes with a fresh copy of that file each time you upgrade.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Outgoing FTP connections with pf and ftp-proxy

2008-01-28 Thread Jonathan Horne
On Sunday 27 January 2008 03:31:21 pm NetOpsCenter wrote:
 Matthias Kellermann wrote:
  Hi list,
 
  I'm trying to get outgoing FTP sessions to work with pf and
  ftp/ftp-proxy in a NAT environment.
 
  My simple config on a test machine looks like this:
  --
  int_if = rl0
  localnet = 192.168.0.0/24
  tcp_services = { ssh, domain, www, https, ftp }
  udp_services = { domain }
 
  nat on $int_if from $localnet to any - ($int_if)
 
  rdr pass proto tcp from any to any port ftp - 127.0.0.1 port 8021
 
  block all
 
  pass from $localnet to any keep state
  pass proto udp to any port $udp_services keep state
 
  pass out proto tcp to any port $tcp_services keep state
 
  pass in proto tcp from any to any user proxy keep state
  pass in proto tcp from any to any port ssh keep state
  --
 
  FTP login works fine. But if I want to do a ls on the FTP server I get
  the following error on the client (no matter if NAT client or gateway):
 
  425 Failed to establish connection.
 
  Any idea whats wrong with my setup?
 
  Thanks,
  Matthias

 Aloha Matthias,

 I am having the same ftp problem on  servers that are on  an ATM 5 IP
 circuit.  There is no NAT involved with one of these. The outbound FTP
 goes out but I cant get the files to list when I go  inbound  from
 outside on an recognized IP.
 SSH on the same box works fine.
 It would make my day to get this working.

  ~Al Plant - Honolulu, Hawaii -  Phone:  808-284-2740
   + http://hawaiidakine.com + http://freebsdinfo.org + [EMAIL PROTECTED] +
   + http://aloha50.net   - Supporting - FreeBSD 6.* - 7.* +
 All that's really worth doing is what we do for others.- Lewis Carrol


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

what about adding port 20 to your tcp_services definition (or perhaps pf will 
accept the word 'ftp-data') ?

hth,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: USB / umass / automount

2008-01-22 Thread Jonathan Horne
On Tuesday 22 January 2008 06:13:17 pm Chris Hill wrote:
 On Tue, 22 Jan 2008, David Alanis wrote:
  Quoting Oliver Peter [EMAIL PROTECTED]:
  Hi,
 
  What is currently the best way to attach and detach umass-devices
  automatically?
 
  Bye
  Oliver
 
  --
  Oliver PETER, email: [EMAIL PROTECTED], ICQ# 113969174
  Worker bees can leave.  Even drones can fly away.
  The Queen is their slave.
 
  Could you just edit your fstab to have:
 
  /dev/umass-device /umass /umass-type auto 0 0

 
 This will not make the auto-mounter daemon happen; rather, it will cause
 the system to try to mount /dev/umass-device at boot time. If the umass
 device is not connected at boot time, the system will need manual
 intervention in order to boot. Probably not what the OP wants. Besides,
 auto is the default anyway.

 --
 Chris Hill   [EMAIL PROTECTED]
 ** [ Busy Expunging | ]


sysutils/desktopbsd-tools.  not automatic, but at least there is a little tray 
icon you can click on to control the mounting/unmounting.  works well for me.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


check processes started by inetd

2008-01-20 Thread Jonathan Horne
how can i check to see the processes that have been started by inetd?  i mean 
other than reading the inetd.conf file... but something like top or something 
that shows me the processes that are actually running?

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


Re: check processes started by inetd

2008-01-20 Thread Jonathan Horne
On Sunday 20 January 2008 10:06:12 am Aryeh M. Friedman wrote:
 Jonathan Horne wrote:
  how can i check to see the processes that have been started by
  inetd?  i mean other than reading the inetd.conf file... but
  something like top or something that shows me the processes that
  are actually running?

 Telnet to the port they are on


well thats actually the problem im trying to troubleshoot... why the ports are 
not accessable.
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


running your own tinderbox

2008-01-20 Thread Jonathan Horne
anyone running their own tinderbox?   i signed up for the tinderbox list (at 
the authors site), but so far its been dead.  im interested in learning to 
run my own for the ports and worlds i need for my systems, so im looking for 
some tips, tricks, or caveats.

anyone?

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


upgraded from 62-p10 to 6.3-RELEASE

2008-01-19 Thread Jonathan Horne
... and something i never expected to happen... happened.

my backup app (veritas netbackup) relies on compat4x and compat5x to operate.  
ive never had any previous issues getting netbackup to run, but after the 6.3 
upgrade, suddenly the compat 4x and 5x ports were uninstalled?  i reinstalled 
them again, but this didnt help.  i have no idea where to go with this issue 
now, except to start a new system from scratch and see where that leads me.

stranger still... i have several 7.0 systems, and they all work without a 
hitch.  btw, the netbackup agent specifies that is compatible with FreeBSD 
4.5, but with the compat4x and 5x packages, the agent has never had any 
trouble operating.

did something change in 6.3 that would affect how applications operate with 
the compat libraries?

at a loss,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Dual Processor?

2008-01-19 Thread Jonathan Horne
On Saturday 19 January 2008 10:30:49 am Chris Maness wrote:
 Is there a way to see if the system is utilizing both processors on a
 two processor system?  I seem to remember the top command in Linux
 showed the load balance between the two processors (I could be wrong it
 has been a while since I used it).  Is there some ap that can display
 these kinds of statistics?

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

its still top, it just doesnt display the same way it does in linux.  look for 
a column C:

 PID USERNAMETHR PRI NICE   SIZERES STATE  C   TIME   WCPU COMMAND
 2211 jhorne1  960   125M 50892K CPU1   0  18.9H  4.59% Xorg
35271 jhorne1  960   107M 88500K select 1  20:03  0.44% opera
 2301 jhorne1  960 81652K 50320K select 0 100:57  0.20% kstars

the C column tells you what processor the thread is using.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ftp setup - asap - giotissl

2008-01-19 Thread Jonathan Horne
On Saturday 19 January 2008 06:28:15 am Giotis Eugen wrote:
 hello
 i am looking at
 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/packages-using.ht
ml im trying to setup my ftp server.
 I can not connect to my ftp via the ftp softwares.
 I tried with windows (FlashFXP and smartFXP) and via the Terminal of Linux
 CentOS5.


 # ftp -a *ftp2.FreeBSD.org*
 Connected to ftp2.FreeBSD.org.
 220 ftp2.FreeBSD.org FTP server (Version 6.00LS) ready.
 ---
 ftp3...
 331 Guest login ok, send your email address as password.
 230-
 230- This machine is in Vienna, VA, USA, hosted by Verio.
 230- Questions? E-mail [EMAIL PROTECTED]
 230-
 230-
 230 Guest login ok, access restrictions apply.
 Remote system type is UNIX.
 Using binary mode to transfer files.
 ftp cd /pub/FreeBSD/ports/packages/sysutils/
 250 CWD command successful.
ftp get lsof-4.56.4.tgz
 - I recieve the
 following error:
ftp get 1sof-4.56.4.tar.gz local:
 1sof-4.56.4.tar.gz remote: 1sof-4.56.4.tar.gz
229 Entering Extended Passive Mode
 (|||54352|) 550 1sof-4.56.4.tar.gz: No such file or directory.

 local: lsof-4.56.4.tgz remote: lsof-4.56.4.tgz
 200 PORT command successful.
 150 Opening BINARY mode data connection for 'lsof-4.56.4.tgz' (92375
 bytes). 100% |**| 92375
   00:00 ETA 226 Transfer complete.
 92375 bytes received in 5.60 seconds (16.11 KB/s)
 ftp exit
 # pkg_add *lsof-4.56.4.tgz**








 *

 Can anyone help me ?

by your examples, im having difficulty understanding that the issue is.  i 
dont see any output from connecting to *your* ftp server, and the associated 
errors.

can you be more specific about what is not working?
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


using restore to recover a freebsd system

2008-01-13 Thread Jonathan Horne
ive been practicing using dump and restore.  the dumping is easy... i think.  
my dump command is as such:

dump -0uLaf /opt/backups/athena-root-0 /

/opt is an NFS mounted share from another server.  the dump completed without 
errors.  however, when i restore, i do this:

1) install a new drive in the system
2) boot to livefs cd, use the sysinstaller to fdisk and label the new drive
3) use configure to activate the network interface
4) drop to fixit shell
5) mount my nfs share via its IP (no resolv seems to be working, even if i 
make a resolv.conf)

at this point, i have tried restoring the automatically mounted slices that 
label made, and i have also tried unmounting everything, and remounting 
single slices (ie, instead of /mnt, and then usr mounted under /mnt/usr, 
having them all non-tree-like mounted to /mnt/root /mnt/usr /mnt/var, etc).

every time, restore begins by complaining that it expected file , but got 
file .  it goes for a bit, and then dumps.  it also complains that file 
system is full, but i ahve checked and rechecked that i have the right file 
systems mounted to each mount (ie, not mounting a 500mb temp to where usr 
needs to be).  my restore command was as such:

cd /mnt/usr
restore /opt/backups/athena-usr-0

root actually does complete, but usr dumps, and bombs out.  can anyone give me 
some pointers for successfully using restore to reload a dump?  im trying to 
nail this process down from a total disaster recovery point of view.

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


Re: mowlid maydhane

2008-01-12 Thread Jonathan Horne
On Saturday 12 January 2008 09:42:57 am marwalba marwlaba wrote:
 Dear: freeBSD


 hi my name is mowlid maydhane i live in london i really want to know if you
 can send me complate UNIX BSD source code.

 if there is any money to be paid i would be greatful if let me know.

 i really need this information please, please send into my email if know
 any thing.



your first best bet, is to visit here, and download it for free:

http://www.freebsd.org/where.html

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: How to run GUI under root in FreeBSD?

2008-01-10 Thread Jonathan Horne
On Thursday 10 January 2008 06:52:38 am Unga wrote:
 Hi all

 I want to run ddd debugger under root.

 I ran following before become root:
 xhost localhost

 Under root:
 echo $DISPLAY

 :0.0

 When I run ddd:
 Xlib: connection to :0.0 refused by server
 Xlib: No protocol specified

 Error: Can't open display: :0.0

 What else I should do in FreeBSD? I'm running
 7.0-PRERELEASE on i386 with KDE 3.5.8.

 Appreciate very much a reply.

 Best Regards
 Unga

im not sure if its the best or correct way, but i was able to run an app (not 
ddd, i dont have that on my system) as root by doing this:

(as my user)
xhost +

(then su - up to root)
xcalc -display :0

nothing else to it.  also, you might take a look at the man for xhost to see 
how to narrow down the access, because the '+' only gives you a nice 
little you are now wide open for connections message.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache virtual directories / VirtualHost overlap

2008-01-09 Thread Jonathan Horne

zbigniew szalbot wrote:

Hello,

Schiz0 pisze:
On Jan 9, 2008 11:00 AM, zbigniew szalbot 
[EMAIL PROTECTED] wrote:

 Hello,

 Can you help me solve what probably is a very simple problem with
 virtual directories. I need to define two different virtual hosts for
 the same IP.

 So I defined:

 NameVirtualHost 83.19.156.210

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/
 ServerName lists.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/blog/
 ServerName blog.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 However, when I restart apache, I get:
 [Wed Jan 09 16:59:34 2008] [warn] _default_ VirtualHost overlap on port
 80, the first has precedence

 What do I need to change to make it right?

 Many thanks!

 Zbigniew Szalbot
 ___

Try adding the port to the IP addresses. For example:

NameVirtualHost 83.19.156.210:80
VirtualHost 83.19.156.210:80
And also for the other VirtualHost block too.
  


I actually solved it by following advice from:
http://httpd.apache.org/docs/2.0/vhosts/name-based.html

However, the problem is that the blog.lc-words.com does not serve the 
site I want it to serve. But instead serves the default site which is 
lists.lc-words.com


Thanks!

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


if it were me, id move the blog directory up on, to /usr/local/www/blog. 
 otherwise, what apache is telling you, is that if the configuration 
even worked, that someone could view the content of blog as if it were 
a directory of the top level's site.  along with moving the directory up 
one (and editing the virtual host's line to reflect the move), add the 
folder as a 'Directory statement' in your configuration:


Directory /usr/local/www/blog
AllowOverride None
Order Allow,deny
Allow from all
/Directory

hth,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache virtual directories / VirtualHost overlap

2008-01-09 Thread Jonathan Horne

Jonathan Horne wrote:

zbigniew szalbot wrote:




 So I defined:

 NameVirtualHost 83.19.156.210

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/
 ServerName lists.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost

 VirtualHost 83.19.156.210
 ServerAdmin [EMAIL PROTECTED]
 DocumentRoot /usr/local/www/data/blog/
 ServerName blog.lc-words.com
 ErrorLog /var/log/httpd-error.log
 CustomLog /var/log/httpd-access.log common
 /VirtualHost



also, try this setting up a vhost for the actual host, then 'child' 
vhosts for the different sites that you want to host. an example:


# Virtual Hosts
NameVirtualHost *:80

# VH for actualhost.example.com
VirtualHost *:80
ServerName actualhost.example.com
UserDir disable
DocumentRoot /usr/local/www/apache22/data/
ErrorLog /var/log/httpd/error.log
CustomLog /var/log/httpd/actualhost.example.com_log combined
/VirtualHost

# VH for blog
VirtualHost *:80
ServerName blog.example.com
UserDir disable
DocumentRoot /usr/local/www/blog
ErrorLog /var/log/httpd/error.log
CustomLog /var/log/httpd/blog.example.com_log combined
/VirtualHost

# VH for lists
VirtualHost *:80
ServerName lists.example.com
ServerAlias lists.example.com
DocumentRoot /usr/local/www/lists
ErrorLog /var/log/httpd/error.log
CustomLog /var/log/httpd/lists.example.com_log combined
/VirtualHost

i believe the specifying ServerName is critically important to 
sucessfully wrangling all your vhosts into the proper DocumentRoot(s).


hth,
--
Jonathan Horne
http://www.dfwlp.org
[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: one solved ; yet one new issue.

2008-01-04 Thread Jonathan Horne
how about the contents of /etc/mail/local-host-names?  is your domain listed, 
so that it will process mails?


- Message from [EMAIL PROTECTED] -



   People,

   the reason the client queue couldn't be created was because the spool
   directory was not set 770.  Nw, outgoing mail, locally is being refused.
   Cany anybody help me with these issues?



 Jan  4 15:01:07 tao sendmail[21840]: m04N16F5021840: from=kline,  
 size=549, class=0, nrcpts=1,  
 msgid=[EMAIL PROTECTED], [EMAIL PROTECTED]
 Jan  4 15:01:07 tao sendmail[21840]: m04N16F5021840:  
 [EMAIL PROTECTED], ctladdr=kline (1004/1004),  
 delay=00:00:01, xdelay=00:00:00, mailer=relay, pri=30549,  
 relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection  
 refused by [127.0.0.1]


   And::

 Jan  4 15:08:19 tao sendmail[21855]: m04N8Jok021855: from=kline,  
 size=543, class=0, nrcpts=1,  
 msgid=[EMAIL PROTECTED], [EMAIL PROTECTED]
 Jan  4 15:08:19 tao sendmail[21855]: m04N8Jok021855:  
 [EMAIL PROTECTED], ctladdr=kline (1004/1004),  
 delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30543,  
 relay=[127.0.0.1] [127.0.0.1], dsn=4.0.0, stat=Deferred: Connection  
 refused by [127.0.0.1]



 --
 Gary Kline  Seattle BSD Users' Group (seabug)  | [EMAIL PROTECTED]
 Thought Unlimited Org's Alternate Email Site
   http://www.magnesium.net/~kline
To live is not a necessity; but to live honorably...is a necessity. -Kant

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



-- 
Jonathan Horne
http://www.dfwlp.org
[EMAIL PROTECTED]


This message was sent using MIMP, the Mobile Internet Messaging Program.

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


Re: outgoing mail STOPPED.

2008-01-03 Thread Jonathan Horne
On Thursday 03 January 2008 06:22:38 pm Gary Kline wrote:
 This is from my OLD tao:
 2 drwxrwx---  2 smmsp  smmsp   512 Jan  3 15:59 clientmqueue

possible chmod 770 the clientmqueue on the new?

seems like i had a similar trouble when i migrated my sendmail server into a 
jail a while back.  (and mine's currently a 770).

good luck,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: outgoing mail STOPPED.

2008-01-03 Thread Jonathan Horne
On Thursday 03 January 2008 08:55:44 pm Jonathan Horne wrote:
 On Thursday 03 January 2008 06:22:38 pm Gary Kline wrote:
  This is from my OLD tao:
  2 drwxrwx---  2 smmsp  smmsp   512 Jan  3 15:59 clientmqueue

 possible chmod 770 the clientmqueue on the new?

 seems like i had a similar trouble when i migrated my sendmail server into
 a jail a while back.  (and mine's currently a 770).

 good luck,

if that turns out to be what it was, you can check stuck mail with

mailq

and then, you can flush it on thru with 

/usr/sbin/sendmail -v -q -C/etc/mail/sendmail.cf

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Drop in replacement for imap-UW?

2007-12-31 Thread Jonathan Horne
On Monday 31 December 2007 01:42:14 pm Joe in MPLS wrote:
 I've been running imap-UW on FreeBSD 6.x STABLE for a while. Clients are
 mostly Thunderbird, TREOs and Horde (running on the same box.

 I'm having issues when multiple clients try to access the same user's
 mailbox. Typically the TREO will do a scheduled check for new mail while
 Thunderbird has it already open. Research indicates that this is a
 limitation of the UW imapd implementation.

 Can anyone recommend a good and secure imapd implementation that won't
 require a ton of reconfiguration? Mostly I'd like the replacement to be
 able to use all the existing end-user imap folders and mail spools. All
 users have accounts and mail spools on the box. There's no virtual users
 or database authentication backends to deal with.

 TIA ...jgm

im not having any trouble using kmail from my freebsd desktop, thunderbird 
from my mac, and outlook from my pocketpc all at the same time, using 
dovecot.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: I installed FreeBSD, but managed to completely fail at getting the man pages installed.

2007-12-31 Thread Jonathan Horne
On Monday 31 December 2007 01:53:15 pm Jim Stapleton wrote:
 Thanks. I feel stupid now (through my own stupidity and not the fault
 of anyone here but me).

 I should have looked at that before. I have always done a minimal
 install of FreeBSD (well, for 6.1 and 6.2, didn't use FreeBSD before
 that), and have not had any problems getting the man pages before. Is
 this new, or is my memory going/gone?

 -Jim


the man pages all magically appear after a buildworld and upgrade, so you 
probably just never noticed in the past.  i only do minimal installs too, and 
a while back, i remember i had the same issue.  i had some systems with man 
pages, and some systems without.  took me a bit to figure out that the ones 
that had them, were all updated, and the ones without, were all 'fresh' 
RELEASE installs.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: 7B4 scheduling question

2007-12-30 Thread Jonathan Horne
On Sunday 30 December 2007 05:27:15 am Kris Kennaway wrote:
 Yes, ULE is the recommended scheduler.

out of curiosity, if the ULE is becoming the standard, then why does the 
GENERIC config still have the 4BSD as the default?

im curious to know, since im rebuilding a badly-behaving 7.0-RC1 box that was 
locking up under the loads of building kernel.  (installed at BETA4, now 
building up to RC1 as i type...)

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


gui system information apps

2007-12-30 Thread Jonathan Horne
what are some good 'desktop-docked' system info apps (that run well in 
freebsd), that might be similar in function to grkellm?

i saw many screenshots of beautiful apps for superkaramba, but was pretty 
disappointed that most of them only understand linux devices and fstabs.  was 
wondering what gui apps my peers might be enjoying.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: remote x session

2007-12-30 Thread Jonathan Horne
On Thursday 27 December 2007 02:35:05 am Steve Franks wrote:
 Perhaps I misunderstand, but I use x11vnc on the 'server' and
 vncviewer or tightvnc on the 'client'.  There are several pages to
 google on tunneling it thru ssh, and it's much better with latency
 than sending x iteslf over ssh, I'm told.  If you start x11vnc with no
 options, it will export the current session/desktop, but there is a
 switch to have it spawn a new x session also.  All the other vnc ports
 only spawn new sessions, and I usually use it to help my wife fix
 problems when I'm away at the office ;)

 Best,
 Steve

well ultimately, im looking for something that i can operate a headless server 
with.  the server itself wouldnt be pre-logged into any x session (be it kde, 
gnome, xfce or whatever), so thats why im trying to get its x session into a 
window of my local desktop.

i need to read up on x11vnc, and if it would do that, then i would open to 
looking at that to fill my need.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
freebsd08 [EMAIL PROTECTED] dfwlp.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: remote x session

2007-12-30 Thread Jonathan Horne
On Sunday 30 December 2007 09:00:27 pm Darren Spruell wrote:
 There is the XDMCP option, which allows you to remotely connect to an
 X display manager for full, remote display sessions. This isn't
 regarded to be a secure solution by most people.

 If your remote system is a server, do you have a need for remote
 desktop access? If you have one or two X applications on the remote
 server, could you just get by with SSH X11 forwarding to access those
 applications from your management station's display?

 DS

well, the part i didnt mention before, was the method behind the madness.  its 
actually a jail-host, with 3 jails running. my intention, is to keep the 
latest of kde, gnome, and xfce built on each, and just remotely attach to (or 
forward) its x session from my main workstation.  i vision it basically 
working just like when i sit down to my workstation, and type 'startx'.

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


remote x session

2007-12-24 Thread Jonathan Horne
i have been wanting to set up the ability to open an entirely new x session to 
another box, in a window of my currently running session.  xnest is one way 
of doing this, but i was wondering if there are any others (perhaps, a little 
easier to configure and get going) ?

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: remote x session

2007-12-24 Thread Jonathan Horne
On Monday 24 December 2007 01:11:12 pm Jeremy Gransden wrote:
 On 12/24/07, Jonathan Horne [EMAIL PROTECTED] wrote:
  i have been wanting to set up the ability to open an entirely new x
  session to
  another box, in a window of my currently running session.  xnest is one
  way
  of doing this, but i was wondering if there are any others (perhaps, a
  little
  easier to configure and get going) ?
 
  cheers,
  --
  Jonathan Horne
  http://dfwlpiki.dfwlp.org
  [EMAIL PROTECTED]
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
  [EMAIL PROTECTED]

 Can you forward X through ssh? Or is that not what you are looking for?


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

i did finally get ssh to forwared X, but it only worked with 

ssh -Y [host]

im not sure yet why ssh -X doesnt work, but ive not yet finished reading about 
the ins and outs of what security settings im overriding with the -Y.

i was able to start xclock as a test.  but what i would really like to be able 
to accomplish, would be to get the entire 'startx' to work over an ssh 
session, and have it open as another window on my desktop.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: BIND9 won't start

2007-12-23 Thread Jonathan Horne
On Sunday 23 December 2007 02:52:43 pm QADMOS wrote:
 Hi everyone,

 i'm having a hard time with bind9.

 I'm trying to set up an authoritative dns server.

 Unfortunately when i try to launch it with an 'rndc start' i get this

 error message :
   rndc: connect failed: 127.0.0.1#953: connection refused

 I've reviewed my conf files but frankly i couldn't see what was wrong.
 I've actually rewritten them from scratch several times to really check
 that nothing was missing and couldn't see anything was wrong. The
 localhost.rev file is configured correctly. I've also tried to
 regenerate new rndc.keys and edit named.conf accordingly but to no avail.

 I've also considered a possible file permissions in /etc/namedb and in
 /var/run/named issue but that didn't yield much either.

 Finally the biggest trouble is that nothing is logged in any log file !
 nothing in /var/log/messages nothing in /var/log/all.log nothing
 anywhere so i'm really confused here about what direction to investigate.

 Has anyone ever encountered such an issue ?

 Thx in advance for any help.

do you get same problem with:

/etc/rc.d/named start

?

-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: BIND9 won't start

2007-12-23 Thread Jonathan Horne

QADMOS wrote:

Gelsema, P (Patrick) a écrit :

On Sun, December 23, 2007 23:04, QADMOS wrote:
 

Jonathan Horne a écrit :
   

On Sunday 23 December 2007 02:52:43 pm QADMOS wrote:

 

Hi everyone,

i'm having a hard time with bind9.

I'm trying to set up an authoritative dns server.

Unfortunately when i try to launch it with an 'rndc start' i get this

error message :
  rndc: connect failed: 127.0.0.1#953: connection refused

I've reviewed my conf files but frankly i couldn't see what was 
wrong.
I've actually rewritten them from scratch several times to really 
check

that nothing was missing and couldn't see anything was wrong. The
localhost.rev file is configured correctly. I've also tried to
regenerate new rndc.keys and edit named.conf accordingly but to no
avail.

I've also considered a possible file permissions in /etc/namedb 
and in

/var/run/named issue but that didn't yield much either.

Finally the biggest trouble is that nothing is logged in any log 
file !

nothing in /var/log/messages nothing in /var/log/all.log nothing
anywhere so i'm really confused here about what direction to
investigate.

Has anyone ever encountered such an issue ?

Thx in advance for any help.



do you get same problem with:

/etc/rc.d/named start

?


  

Well i've also tried that actually and when i do that :
1/ nothing is logged
2/ nothing is launched either



Do you have the following in rc.conf?

hulk# cat /etc/rc.conf | grep named
named_enable=YES

To me it seems your problem lies in the fact that named is not starting,
so rndc can not control anything.

Rgds,

Patrick

 

there's just no error message despite that the named is not running
(checked with ps waux | grep named )



Well Patrick i followed your suggestion and rebooted (it didn't do 
much after just editing rc.conf) the box and now /etc/rc.d/named 
start works fine annd named is running, 'rndc' still has the same 
problem though (???)


I'm a bit befuddled though, because i don't understand why it's 
necessary to use the named_enable directive to have named running ? I 
understand this is necessary if you want the daemon to run at boot 
time but why is this necessary if you want to run it manually once the 
box is on ?


In any case thx a lot for your help :)


the entries in the rc.conf are there for system security.  [something] 
might be installed, but its not supposed to be allowed to run unless the 
system admin knows about it.


otherwise, there is always 'forcestart' intead of 'start'.

cheers,

--
Jonathan Horne
http://www.dfwlp.org
[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: No audio whatever....

2007-12-17 Thread Jonathan Horne

Gary Kline wrote:

I realize this may have no easy answer, but suddenly,
after a portupgrade -aP. I have no sound.  catting
/deev/snstat does tell me that my sound card is there.
my volme  is set to 100%.   Where else shoulf I be
looking.

gary




speaking of catting

ive had to on more than one occasion, make sure that my cat didnt bite 
thru my audio wire.

--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: Connecting networks

2007-12-11 Thread Jonathan Horne

Alaor Barroso de Carvalho Neto wrote:

Guyz,
here's my netstat-r output:

Routing tables

Internet:
Destination Gateway Flags Refs Use Netif Expire
default 192.168.1.80 UGS 0 4 xl0
10.10/16 link#4 UC 0 0 xl2
localhost localhost UH 0 0 lo0
192.168.1 link#2 UC 0 0 xl0
zion.administrativ 00:00:54:19:e7:9a UHLW 1 16 xl0 1151
192.168.1.80 00:0e:a6:60:cb:24 UHLW 2 0 xl0 904
192.168.2 link#3 UC 0 0 xl1
192.168.2.2 00:e0:7d:07:8c:cd UHLW 1 6 xl1 1143
200.252.164 link#1 UC 0 0 em0

Internet6:
...

I have 4 network cards, em0 is connected to the external world (not yet),
the xl0 is connected to my private network 192.168.1 with the ip
192.168.1.244, the xl1 is connectedto another private network 192.168.2 with
the ip 192.168.2.90 and the xl3 is connected to other school network
10.10.0with the ip
10.10.0.50, what I want know is that a machine A in network 192.168.2, with
a ip, for example 192.168.2.2, could ping to a machine B in the network
192.168.1, with the ip, for example, 192.168.1.10. And it's not working. My
pf firewall just pass all. In rc.conf I just set gateway_enable=YES and
configured the networks interfaces.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]
  
out of curiosity, are you pinging from the 4-interfaced-connected BSD 
box, or some other workstation that is trying to use the BSD box as its 
gateway?


--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: 7.0BETA4 cannot install. acd0: TIMEOUT - READ_BIG retrying (1 retry left)

2007-12-08 Thread Jonathan Horne
On Saturday 08 December 2007 01:11:49 pm Robert Gray wrote:
 I've tried to install both
 7.0-BETA4-i386-bootonly.iso and
 7.0-BETA4-i386-disc1.iso

 on a Dell Optiplex 745, Model# DCTR with

 acd0: CDROM TSSTcorp CD-ROM TS-L162C/DE05 at ata3-master UDMA33

 The booting doesn't get past the acd0: TIMEOUT - READ_BIG retrying
 error.

 6.2 installs fine.

 Any ideas on what to try?

 Thanks
 robert

md5sum matched on the downloaded 7.0 .iso file?
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: still fumbling around with poor network speed

2007-11-24 Thread Jonathan Horne
On Friday 23 November 2007 15:57:21 Jonathan Horne wrote:
 ive been chasing this problem around for about a week now.  ive got a
 7.0 betaX box that started out as a beta 1.5.  no problems with
 anything.

 then, i upgraded it (via cvs) to 2.0, and i instantly noticed a
 problem with serving the /usr volume via NFS to my laptop.  moving my
 workstation to 3.0 didnt help either.  the 7.0beta box showed outbound
 traffic about 200k.  exact same behavior today, accessing it via SMB
 from an OSX mac.

 strange thing is, when i use scp to transfer large files, they go at
 almost 200mbit.  as far as i know, scp uses TCP only.  but NFS and
 SMB, do they not use UDP?  and if so, what can i do to try to
 troubleshoot how poorly UDP packets are working?

 ive tried changing the cable, changing the switch port, and its the
 same thing each time.  i have one other 7.0 server, thats not
 experiencing this either (but it also has a different ethernet card.

 as i type this, im wondering if this could be related to the bge
 driver?  i know many people have complained about bge in the past, and
 i never seemed to have noticed anything wrong with mine... but could
 that have changed for me as time passes and sourcecode evolves?

 if anyone can help shed light on this, id really appreciate it.

*sigh* i just finished reinstalling 6.2-RELEASE, and now the speed is back 
where it should be.  just downloaded a 600mb .iso file via NFS from FreeBSD 
to a mac, and it was flying.

so i guess it must be the bge driver.  anyone else having trouble with the bge 
driver, and NFS or SMB in 7.0?
-- 
Jonathan Horne
http://www.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


problems with self-built packages

2007-11-24 Thread Jonathan Horne
for a while now, ive been experimenting with building a package of everything 
i build from ports, or via portupgrade, and then using said packages to 
quickly update other systems on my network.  never had any problems, until 
recently.  lately, it seems like a port here or there will be missing a 
critical piece from the bzip file thats created in ports/packages/All.

i have seen this in the past few revisions of apache2.2(the rc script and data 
directory missing), and today, xorg-server did the same thing (this time, the 
file 'startx' was left out).

does anyone else keep the packages they build, and if so, are you also seeing 
issues like this?
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


still fumbling around with poor network speed

2007-11-23 Thread Jonathan Horne
ive been chasing this problem around for about a week now.  ive got a  
7.0 betaX box that started out as a beta 1.5.  no problems with  
anything.


then, i upgraded it (via cvs) to 2.0, and i instantly noticed a  
problem with serving the /usr volume via NFS to my laptop.  moving my  
workstation to 3.0 didnt help either.  the 7.0beta box showed outbound  
traffic about 200k.  exact same behavior today, accessing it via SMB  
from an OSX mac.


strange thing is, when i use scp to transfer large files, they go at  
almost 200mbit.  as far as i know, scp uses TCP only.  but NFS and  
SMB, do they not use UDP?  and if so, what can i do to try to  
troubleshoot how poorly UDP packets are working?


ive tried changing the cable, changing the switch port, and its the  
same thing each time.  i have one other 7.0 server, thats not  
experiencing this either (but it also has a different ethernet card.


as i type this, im wondering if this could be related to the bge  
driver?  i know many people have complained about bge in the past, and  
i never seemed to have noticed anything wrong with mine... but could  
that have changed for me as time passes and sourcecode evolves?


if anyone can help shed light on this, id really appreciate it.
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: very poor NFS performance from a beta3

2007-11-18 Thread Jonathan Horne
On Sunday 18 November 2007 05:59:12 am Kris Kennaway wrote:
 Jonathan Horne wrote:
  i updated my workstatino to beta3, and then got on a 6.2-p8 machine and
  mounted /usr/src and /usr/obj from the beta3.   tried to installkernel,
  but it moved as painful pace.  would get to the point where it moves
  kernel to kernel.old, and would just pause for a long time.  file
  transfer showed about 104k.
 
  i took this same 6.2-p8 box, and mounted src and obj from my main 6.2
  build server, and reinstalled the 6.2-p8 kernel, and speed was as
  expected.
 
  is there anywhere i can being looking to troubleshoot this problem (as to
  why the 7.0b3 would serve NFS so slowly)?

 This is usually because your NIC has mis-negotiated and is unable to
 pass packets properly.

 Kris

and another reason why this is so peculiar, is that when my desktop was at 
7.0b2, i installed b2 to another laptop (not the same system as the 6.2p8), 
and it was perfectly normal.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: very poor NFS performance from a beta3

2007-11-18 Thread Jonathan Horne
On Sunday 18 November 2007 05:59:12 am Kris Kennaway wrote:
 Jonathan Horne wrote:
  i updated my workstatino to beta3, and then got on a 6.2-p8 machine and
  mounted /usr/src and /usr/obj from the beta3.   tried to installkernel,
  but it moved as painful pace.  would get to the point where it moves
  kernel to kernel.old, and would just pause for a long time.  file
  transfer showed about 104k.
 
  i took this same 6.2-p8 box, and mounted src and obj from my main 6.2
  build server, and reinstalled the 6.2-p8 kernel, and speed was as
  expected.
 
  is there anywhere i can being looking to troubleshoot this problem (as to
  why the 7.0b3 would serve NFS so slowly)?

 This is usually because your NIC has mis-negotiated and is unable to
 pass packets properly.

 Kris

kris, thanks for your reply.  whats the best way to tell if i have 
mis-negotiated?  is just 'ifconfig' sufficient?  i was wondering about this 
earlier, and reboots of the hosts as well as the switches yielded no 
different results.

also, i did a few other tests as well.  i can scp to/from the 7.0b3 and 6.2p8 
from/to each other as well as other hosts on the network at what i would call 
normal speeds (6-10 megabytes/sec).  also, i can 'cp -vpnRP' directory trees 
from/to the same with normal results.  only installing kernel from the 7.0 to 
the 6.2 stalls out.
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


very poor NFS performance from a beta3

2007-11-16 Thread Jonathan Horne
i updated my workstatino to beta3, and then got on a 6.2-p8 machine and 
mounted /usr/src and /usr/obj from the beta3.   tried to installkernel, but 
it moved as painful pace.  would get to the point where it moves kernel to 
kernel.old, and would just pause for a long time.  file transfer showed about 
104k.

i took this same 6.2-p8 box, and mounted src and obj from my main 6.2 build 
server, and reinstalled the 6.2-p8 kernel, and speed was as expected.

is there anywhere i can being looking to troubleshoot this problem (as to why 
the 7.0b3 would serve NFS so slowly)?
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: selfbuild packages repository

2007-11-15 Thread Jonathan Horne

Quoting Doug Poland [EMAIL PROTECTED]:


Jonathan Horne wrote:
lately, ive been exclusively doing 'make package-recursive' and   
'portupgrade -apP', and have thus collected quite a lot of packages  
 over the past 6 months (which use to keep multiple systems updated).


on my NFS server, my /usr/ports/packages/All directory has built up  
 many incrementing versions of the same packages.  is there a way  
to  keep the ./All directory culled back match whatever is in  
./Latest?


im not a programmer and am about as novice as you can get when it   
comes to shell scripting, but im seeing somethign that could   
compare ./Latest with ./All, and anything that is linked from   
Latest to All would be kept, and anything that no longer has a   
symlink, would be purged.


can anyone help me out with a nice way of doing this?


I think that's what portsclean -P is all about.

--
Regards,
Doug


perfect!!  i knew there had to be an easy way, and im not surprised to  
find out that portsclean takes care of the job.  funny, that ive been  
using -C and -D forever.  :)


cheers,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


selfbuild packages repository

2007-11-15 Thread Jonathan Horne
lately, ive been exclusively doing 'make package-recursive' and  
'portupgrade -apP', and have thus collected quite a lot of packages  
over the past 6 months (which use to keep multiple systems updated).


on my NFS server, my /usr/ports/packages/All directory has built up  
many incrementing versions of the same packages.  is there a way to  
keep the ./All directory culled back match whatever is in ./Latest?


im not a programmer and am about as novice as you can get when it  
comes to shell scripting, but im seeing somethign that could compare  
./Latest with ./All, and anything that is linked from Latest to All  
would be kept, and anything that no longer has a symlink, would be  
purged.


can anyone help me out with a nice way of doing this?
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: PHP 5.2.4 FreeBSD 6.3-PRERELEASE squirrelmail-1.4.11

2007-11-15 Thread Jonathan Horne

Quoting tethys ocean [EMAIL PROTECTED]:


I am running with my newserver on   FreeBSD 6.3-PRERELEASE  PHP 5.2.4
squirrelmail-1.4.11 now I cant configure  squirrelmail. Whenever I
write   http://my IP/webmailI am take some *php  page that is
download. such like content


**
?php

/**
 * index.php
 *
 * Redirects to the login page.
 *
 * @copyright copy; 1999-2007 The SquirrelMail Project Team
 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
 * @version $Id: index.php 12127 2007-01-13 20:07:24Z kink $
 * @package squirrelmail
 */

// Are we configured yet?
if( ! file_exists ( 'config/config.php' ) ) {
echo 'htmlbodypstrongERROR:/strong Config file ' .
'quot;ttconfig/config.php/ttquot; not found. You need to ' .
'configure SquirrelMail before you can use it./p/body/html';
exit;
}

// If we are, go ahead to the login page.
header('Location: src/login.php');

?

**


and also I cant browse configtest page  and also test.php

I wonder this trouble is in my php config? or squirrelmail config??


most likely, its a problem that you didnt update your httpd.conf.   
take a look at /usr/ports/lang/php5/pkg-message.mod


cheers,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


a curious jails question

2007-11-15 Thread Jonathan Horne
ive been building jails for a while, and have always used the  
canonical method as listed out in the handbook.  today, i tried  
something new.  i have read that instead of doing:


make world ...
make distribution ...

that you can instead:

make installworld ...
make distribution ...

... (assuming your jailhost has already build the latest version) and  
save yourself a ton of time.  well, i tried it, and everything seemed  
to be fine, until i tried starting it with the /etc/rc script.   
ld-elf.so.1 complains that libssl.so.5 cant be found 2 times, but all  
my -p8 systems seem to have /usr/lib/libssl.so.4.  i also went back  
and reverified my newver.sh from the sources that were built and  
installed world from, and it does say 6.2 RELEASE-p8.


so how on earth can it even know libssl.so.5 exists, if libssl.so.4  
must be the correct version?


thanks,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: unimpressive buildworld time (was: impressive buildworld time)

2007-11-15 Thread Jonathan Horne
On Wednesday 14 November 2007 03:45:07 pm Aryeh M. Friedman wrote:
  Impressive ;-) My main machine (with an Athlon XP @ 2GHz) takes ~2
  hours to build kernel and world (I use a script to do that). My
  other box is running -CURRENT and takes ~11 hours to build kernel
  and world (Celeron 500...).
 
  Just to supply some numbers that go the other direction :-)

 With no -j and running gnome and doing other things in the foreground
 (watching a avi) 1 hr 3 mins on a e6850 w/ 4 gig (amd64)

p4 540 3.2GHz, 1GB ram:

--
 World build completed on Thu Nov 15 19:15:05 CST 2007
--

real63m8.635s
user102m44.096s
sys 10m44.889s
[EMAIL PROTECTED] /usr/src]#

heh, i have appropriately renamed the thread.  :)  with -j 8

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


jails in 6.3 and 7.0

2007-11-14 Thread Jonathan Horne
I was reading a while back that the jails tcp system was getting an overhaul, 
possibly in the 7.0 release.  I don't remember all the particulars, but things 
along the lines to make jails function even more like a real (independant) 
system.  I believe one of the improvments might have been a separate virtual 
interface, thus allowing he jail to have its own pf configuration.

I've not seen anything else on this topic, so I was wondering if anyone might 
know if that's going to make in to 7 (and possibly backported to 6.3)?

-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using MIMP, the Mobile Internet Messaging Program.

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


cups builds on one, but rejected by another?

2007-11-14 Thread Jonathan Horne
my jails server (6.2-p8) just ran portupgrade fine, and cups was one of its 
items it updated:

[EMAIL PROTECTED] ~]# pkg_info | grep cups-
cups-base-1.3.3_2   Common UNIX Printing System

but my 7.0-b2 desktop, refuses to build the same package:

===  cups-base-1.3.3_2 has known vulnerabilities:
= cups -- off-by-one buffer overflow.
   Reference: 
http://www.FreeBSD.org/ports/portaudit/8dd9722c-8e97-11dc-b8f6-001c2514716c.html
= Please update your ports tree and try again.
*** Error code 1

what would be the differences between the 2 systems that one would build it, 
and the other reject the same port?  ive not tweaked any port security 
settings on either one, so this is some curious behavior to me.

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: cups builds on one, but rejected by another?

2007-11-14 Thread Jonathan Horne
On Wednesday 14 November 2007 03:39:47 pm Jonathan Horne wrote:
 my jails server (6.2-p8) just ran portupgrade fine, and cups was one of its
 items it updated:

 [EMAIL PROTECTED] ~]# pkg_info | grep cups-
 cups-base-1.3.3_2   Common UNIX Printing System

 but my 7.0-b2 desktop, refuses to build the same package:

 ===  cups-base-1.3.3_2 has known vulnerabilities:
 = cups -- off-by-one buffer overflow.
Reference:
 http://www.FreeBSD.org/ports/portaudit/8dd9722c-8e97-11dc-b8f6-001c2514716
c.html = Please update your ports tree and try again.
 *** Error code 1

 what would be the differences between the 2 systems that one would build
 it, and the other reject the same port?  ive not tweaked any port security
 settings on either one, so this is some curious behavior to me.

 thanks,

another interesting thing, when you read the portaudit page for this, it says:

Affects:
cups-base 1.3.3_1

but yet 1.3.3_2 still is rejected.
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: cups builds on one, but rejected by another?

2007-11-14 Thread Jonathan Horne
On Wednesday 14 November 2007 03:57:26 pm Kris Kennaway wrote:
 Jonathan Horne wrote:
  On Wednesday 14 November 2007 03:39:47 pm Jonathan Horne wrote:
  my jails server (6.2-p8) just ran portupgrade fine, and cups was one of
  its items it updated:
 
  [EMAIL PROTECTED] ~]# pkg_info | grep cups-
  cups-base-1.3.3_2   Common UNIX Printing System
 
  but my 7.0-b2 desktop, refuses to build the same package:
 
  ===  cups-base-1.3.3_2 has known vulnerabilities:
  = cups -- off-by-one buffer overflow.
 Reference:
  http://www.FreeBSD.org/ports/portaudit/8dd9722c-8e97-11dc-b8f6-001c2514
 716 c.html = Please update your ports tree and try again.
  *** Error code 1
 
  what would be the differences between the 2 systems that one would build
  it, and the other reject the same port?  ive not tweaked any port
  security settings on either one, so this is some curious behavior to me.
 
  thanks,
 
  another interesting thing, when you read the portaudit page for this, it
  says:
 
  Affects:
  cups-base 1.3.3_1
 
  but yet 1.3.3_2 still is rejected.

 One or the other has either a stale portaudit database or ports tree.

 Kris

what is the method for updating the portaudit database?  both have had their 
ports trees updated today, the 7.0 box multiple times.

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: cups builds on one, but rejected by another?

2007-11-14 Thread Jonathan Horne
On Wednesday 14 November 2007 04:32:12 pm Kurt Buff wrote:
 On 11/14/07, Jonathan Horne [EMAIL PROTECTED] wrote:
  On Wednesday 14 November 2007 03:57:26 pm Kris Kennaway wrote:
   Jonathan Horne wrote:
On Wednesday 14 November 2007 03:39:47 pm Jonathan Horne wrote:
my jails server (6.2-p8) just ran portupgrade fine, and cups was one
of its items it updated:
   
[EMAIL PROTECTED] ~]# pkg_info | grep cups-
cups-base-1.3.3_2   Common UNIX Printing System
   
but my 7.0-b2 desktop, refuses to build the same package:
   
===  cups-base-1.3.3_2 has known vulnerabilities:
= cups -- off-by-one buffer overflow.
   Reference:
http://www.FreeBSD.org/ports/portaudit/8dd9722c-8e97-11dc-b8f6-001c
   2514 716 c.html = Please update your ports tree and try again.
*** Error code 1
   
what would be the differences between the 2 systems that one would
build it, and the other reject the same port?  ive not tweaked any
port security settings on either one, so this is some curious
behavior to me.
   
thanks,
   
another interesting thing, when you read the portaudit page for this,
it says:
   
Affects:
cups-base 1.3.3_1
   
but yet 1.3.3_2 still is rejected.
  
   One or the other has either a stale portaudit database or ports tree.
  
   Kris
 
  what is the method for updating the portaudit database?  both have had
  their ports trees updated today, the 7.0 box multiple times.
 
  thanks,
  --
  Jonathan Horne
  http://dfwlpiki.dfwlp.org
  [EMAIL PROTECTED]

 I ran into a similar issue with cups - what does 'portaudit -aF' give
 on each machine?
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

interesting, portaudit seems to be part of the 7.0 base system now.  on my 
BETA2 box:

[EMAIL PROTECTED] /usr/ports]# portaudit -aF
auditfile.tbz 100% of   45 kB  100 kBps
New database installed.
Affected package: cups-base-1.3.3
Type of problem: xpdf -- multiple remote Stream.CC vulnerabilities.
Reference: 
http://www.FreeBSD.org/ports/portaudit/2747fc39-915b-11dc-9239-001c2514716c.html

Affected package: cups-base-1.3.3
Type of problem: cups -- off-by-one buffer overflow.
Reference: 
http://www.FreeBSD.org/ports/portaudit/8dd9722c-8e97-11dc-b8f6-001c2514716c.html

2 problem(s) in your installed packages found.

You are advised to update or deinstall the affected package(s) immediately.

portaudit is not installed on my 6.2 server, so i have no data to print for 
that one.

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


what changed recently with browser plugins?

2007-11-11 Thread Jonathan Horne
i want to say it was early to mid-october, that standard opera and firefox 
stopped working (upon upgrade) with the plugins (flash).  previously, most 
flash that i would encounter worked fine in opera, which was my preference 
since java (such as weathermaps on www.noaa.gov) worked without a hitch as 
well.

now that time has passed, flashplugin has stopped working with standard opera, 
and now that im woefully using linux-opera, the java stuff doesnt work like i 
would expect.

is there anyway to get my updated system to behave like it used to? (mostly 
pertaining to flash, as java still works right under 'standard' opera).

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: Beastie 3D-rendered

2007-11-11 Thread Jonathan Horne
On Sunday 11 November 2007 02:14:38 pm Chris Haulmark wrote:
  Look what happened to Beastie:
 
  http://www.tilolit.de/images/tb/wallpapers/teufel.jpg

 Very nice!

 It's my wallpaper now!

 Chris

heh, looks straight out of an animated show my son watches... jimmy 
neutron!   :)

a very interesting rendering of beastie, to say the least!
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


disk drive serial number

2007-11-11 Thread Jonathan Horne
is there a way to get the serial number from a drive from within the OS?  im 
trying to audit the drives in my file server, but without pulling the thing 
from the rack and cracking it open.  they are just standard sata drives, not 
on any sort of raid controller (ie, i know 3ware cards are capable of pulling 
the drive info).

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: disk drive serial number

2007-11-11 Thread Jonathan Horne
On Sunday 11 November 2007 05:52:54 pm Erik Trulsson wrote:
 The serial number can (for ATA/SATA) disks be shown with atacontrol(8)
 (e.g. atacontrol cap ad4) or with smartctl(8) from the
 sysutils/smartmontools port (supports both ATA/SATA and SCSI disks)
 (e.g. smartctl -a /dev/ad4)

thank you sir, that was exactly what i needed.

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


unable to update nvidia-driver

2007-11-10 Thread Jonathan Horne
been trying to portupgrade my nvidia-driver for a few days now, on 7.0b2.  i 
got this error a few days ago, then this morning, i portupgraded xorg-server 
thinking it might be expecting a piece from there, but stil no joy.  same 
error each time:


===  Checking if x11/nvidia-driver already installed
mv: rename /usr/local/lib/xorg/modules/libwfb.so 
to /usr/local/lib/xorg/modules/XXX-libwfb.so.%%.xorg-server-1.4_2,1: No such 
file or directory
*** Error code 1

anyone know how to correct this?  im scared to uninstall the nvidia-driver 
that is currently working, for fear the new one might not work at all!

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


freebsd using sendmail with tls

2007-11-10 Thread Jonathan Horne
i know, slightly off topic, but is *on* a freebsd server... right?

my smtp is the only remaining part of my email system, that has no encryption 
options, and i think i would like to add tls (even tho i rarely send smtp 
mail from outside my lan).  my setup is right now, fairly basic (only 
includes spamassassin, sasl2, and procmail).  even tho i dont much about it, 
i say tls instead of ssl, as i have a few outlook clients, that would surely 
annoy me 'do you really want to use this certificate', and it would surely be 
each time i sent a mail.  im also assuming that hopefully tls might not do 
this.

before i spend hours and hours googling out my instructions on how to so do, 
does the tls session operate over the standard port 25, or is this what is 
referred to as the smtps port?  and if so, can the server accept either 
version over the same port?

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: install

2007-11-08 Thread Jonathan Horne

Quoting Heiko Wundram (Beenic) [EMAIL PROTECTED]:


Am Donnerstag, 8. November 2007 17:09:06 schrieb Leonard Lilla:

snip lots of whining


Sorry if my reply seems elitist, but if you really think the installation is
that bad, now is the perfect chance and time for you to become involved with
FreeBSD by making it better.

If you can't or won't do that, please stop complaining, and for your  
 own good,

move on.

--
Heiko Wundram
Product  Application Development


well said.

plus, there is always:   
http://www.google.com/search?hl=enq=how+to+make+a+freebsd+dvd.iso


--
Jonathan Horne
http://www.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: Rebuilding kernel/system to a state back-in-time?

2007-11-05 Thread Jonathan Horne

Quoting Erik Cederstrand [EMAIL PROTECTED]:




Should be tag=RELENG_6_2


...


That should suffice.


This assumes you're already running 6.2. As long as you don't switch
branches (or choose a date before the branch occurred!), you should be
good to go.

Erik


i would agree with erik's advice, as IMO its quite sound (when it  
comes to operating a server as opposed to a desktop).  however, i  
would add this detail so that there can be some what and why to go  
with it:


RELENG_6_2 will take you to 6.2-RELEASE-p8.  it *will* be back in  
time, but it will be only 'critical' patches since the intial  
6.2-RELEASE.


IMO, (and forgive me, i generally dont spew my opinions where they  
arent welcome or asked for), RELENG_6_2 is better for a server over  
RELENG_6 (aka, -STABLE), as it doesnt include items that are not  
critically required for secure and stable operation.  remember, that  
the true -STABLE branch has items merged in from -CURRENT (call it  
back-ported?).


let say, you already know that -p8 is the latest 6.2 revision.  you  
get on a server, you log in, and it says 6.2-RELEASE-p8.  you already  
know that this system is up to date.  if you log in, and see  
6.2-STABLE... you dont immediately know when this system was last  
rebuilt without doing some other version checks first.  i have to be  
honest, when it comes to managing a farm full of servers, i like my  
visual version checks... the same way i like my women:


easy.

cheers,
--
Jonathan Horne
DFWLP Network Consulting Services
[EMAIL PROTECTED]
http://www.dfwlp.com
214.287.4373 - mobile


This message was sent using IMP, the Internet Messaging Program.

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


ok... what did i miss?

2007-11-04 Thread Jonathan Horne
all my 6.2 computers say the correct time, but my 7.0 BETA-2 says an hour 
ahead (as in, it didnt make the DST change last night on its own).  same 
timezone is selected on all computers.

did i miss some setting to obey DST changes or something?

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: ok... what did i miss?

2007-11-04 Thread Jonathan Horne
On Sunday 04 November 2007 05:13:45 Aryeh M. Friedman wrote:
 Jonathan Horne wrote:
  all my 6.2 computers say the correct time, but my 7.0 BETA-2 says an hour
  ahead (as in, it didnt make the DST change last night on its own).  same
  timezone is selected on all computers.
 
  did i miss some setting to obey DST changes or something?

 No mine are even wacker (i.e. it is 11:12 est but I get the following
 out of date:
 06:13:08 EST 2007 but 11:12 out of the gnome clock)


welll i figured mine out at least.  ntpd wasnt running, so it was 
showing whatever time my bios is saying.

:)  i love it when i overlook the simplest thing! hehe

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: Is there a way to compare what is in the ports tree with what is installed?

2007-11-04 Thread Jonathan Horne

Quoting RW [EMAIL PROTECTED]:


On Mon, 05 Nov 2007 14:53:48 +1300
Brett Davidson [EMAIL PROTECTED] wrote:


ie. If I had a particular version of the ports tree on a server, how
could I check to see if any of the programs in that tree were
actually installed?

Is there a simple command or sequence of commands to do this?


see pkg_version[1]
___


after i update my ports, and i want to see what currently needs to be updated:

pkg_version -v|grep needs

this will give you a run down of everything that has a newer version  
in your ports tree.

--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


not sure which list for 7beta items...

2007-11-03 Thread Jonathan Horne
now that 7.0 is in official beta, which list should i post to  
concerning issues im having (specifically, unreliability of the  
built-in iwi driver)?


thanks,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: i keep getting this when i buildkernel on 7.0 beta 1.5...

2007-11-02 Thread Jonathan Horne

Quoting Boris Samorodov [EMAIL PROTECTED]:


On Fri, 02 Nov 2007 09:16:30 -0500 Jonathan Horne wrote:


Quoting Boris Samorodov [EMAIL PROTECTED]:



 On Thu, 1 Nov 2007 20:20:10 -0500 Jonathan Horne wrote:

 awk -f /usr/src/sys/modules/zlib/../../conf/kmod_syms.awk zlib.kld
 export_syms | xargs -J% objcopy % zlib.kld
 ld -Bshareable  -d -warn-common -o zlib.ko.debug zlib.kld
 objcopy --only-keep-debug zlib.ko.debug zlib.ko.symbols
 objcopy --strip-debug --add-gnu-debuglink=zlib.ko.symbols zlib.ko.debug
 zlib.ko
 1 error
 *** Error code 2
 1 error
 *** Error code 2
 1 error
 [EMAIL PROTECTED] /usr/src]#


 anyone able to tell me wha to do?

 Remove a -j option from the make command and get a real error
 message.


 WBR
 --
 Boris Samorodov (bsam)
 Research Engineer, http://www.ipt.ru Telephone  Internet SP
 FreeBSD committer, http://www.FreeBSD.org The Power To Serve
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to   
[EMAIL PROTECTED]





without the -j, this is where i appear to be hanging up:



uipc_syscalls.o(.text+0x3c1): In function `sctp_generic_recvmsg':
/usr/src/sys/kern/uipc_syscalls.c:2600: undefined reference to
sctp_sorecvmsg'
uipc_syscalls.o(.text+0x21a2): In function `sctp_generic_sendmsg_iov':
/usr/src/sys/kern/uipc_syscalls.c:2478: undefined reference to
sctp_lower_sosend'
uipc_syscalls.o(.text+0x249d): In function `sctp_generic_sendmsg':
/usr/src/sys/kern/uipc_syscalls.c:2371: undefined reference to
sctp_lower_sosend'
uipc_syscalls.o(.text+0x266c): In function `sctp_peeloff':
/usr/src/sys/kern/uipc_syscalls.c:2238: undefined reference to
sctp_can_peel_off'
uipc_syscalls.o(.text+0x28e6):/usr/src/sys/kern/uipc_syscalls.c:2279:
undefined reference to `sctp_do_peeloff'
rtsock.o(.text+0xb7d): In function `rt_newaddrmsg':
/usr/src/sys/net/rtsock.c:897: undefined reference to `sctp_addr_change'
in_proto.o(.data+0xa8): undefined reference to `sctp_input'
in_proto.o(.data+0xb0): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xb4): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xbc): undefined reference to `sctp_init'
in_proto.o(.data+0xc8): undefined reference to `sctp_drain'
in_proto.o(.data+0xcc): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0xdc): undefined reference to `sctp_input'
in_proto.o(.data+0xe4): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xe8): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xfc): undefined reference to `sctp_drain'
in_proto.o(.data+0x100): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0x110): undefined reference to `sctp_input'
in_proto.o(.data+0x118): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0x11c): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0x130): undefined reference to `sctp_drain'
in_proto.o(.data+0x134): undefined reference to `sctp_usrreqs'
*** Error code 1



Stop in /usr/obj/usr/src/sys/HPDC7100.
*** Error code 1



Stop in /usr/src.
*** Error code 1



Stop in /usr/src.



anything i can do to get around that?  the only thing in my kernel
config that differs from GENERIC, is the removal of the INET6 line,


From /sys/conf/NOTES:
-
# SCTP is a NEW transport protocol defined by
# RFC2960 updated by RFC3309 and RFC3758.. and
# soon to have a new base RFC and many many more
# extensions. This release supports all the extensions
# including many drafts (most about to become RFC's).
# It is the premeier SCTP implementation in the NET
# and is quite well tested.
#
# Note YOU MUST have both INET and INET6 defined.
# you don't have to enable V6, but SCTP is
# dual stacked and so far we have not teased apart
# the V6 and V4.. since an association can span
# both a V6 and V4 address at the SAME time :-)
-


and addition of 'options SMP' (and, the ident).



WBR
--
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone  Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve



well i appear to have fallen prey to the oldest trick in the book...  
so remind me not to get involved in land wars in asia.  :)


also, if i would have just 'read' the GENERIC config file before i  
started editing it, i would have noticed that 'options SMP' is now  
already included!


*slaps forehead!*

cheers,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: problem of install 7.0 on notebook

2007-11-02 Thread Jonathan Horne

Quoting Jonathan Horne [EMAIL PROTECTED]:


Quoting David Yeske [EMAIL PROTECTED]:


On 11/2/07, Zhang hw [EMAIL PROTECTED] wrote:

I have now could work on my notebook with freebsd 6.2-release and
6.3-prerelease, but there are still some problems such as acpi. So I
want to have a try of freebsd 7.0-beta-1.5, but I can't install it,
the boot process stop at pci probing:
pcib2:PCI-PCI brige at device 4.0 on pci0
pci16:PCI-PCI bus on pcib2
if acpi enable, it maybe show as:
pcib2:ACPI PCI-PCI brige...
pci16:ACPI...
my cpu is athlon 64x2, I've tried both amd64 and i386 versions.
Help!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to   
[EMAIL PROTECTED]




What happens if you boot verbose?  That might better indicate where
the kernel is hanging.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



without the -j, this appears to be wherei am hanging up:

uipc_syscalls.o(.text+0x3c1): In function `sctp_generic_recvmsg':
/usr/src/sys/kern/uipc_syscalls.c:2600: undefined reference to
`sctp_sorecvmsg'
uipc_syscalls.o(.text+0x21a2): In function `sctp_generic_sendmsg_iov':
/usr/src/sys/kern/uipc_syscalls.c:2478: undefined reference to
`sctp_lower_sosend'
uipc_syscalls.o(.text+0x249d): In function `sctp_generic_sendmsg':
/usr/src/sys/kern/uipc_syscalls.c:2371: undefined reference to
`sctp_lower_sosend'
uipc_syscalls.o(.text+0x266c): In function `sctp_peeloff':
/usr/src/sys/kern/uipc_syscalls.c:2238: undefined reference to
`sctp_can_peel_off'
uipc_syscalls.o(.text+0x28e6):/usr/src/sys/kern/uipc_syscalls.c:2279:
undefined reference to `sctp_do_peeloff'
rtsock.o(.text+0xb7d): In function `rt_newaddrmsg':
/usr/src/sys/net/rtsock.c:897: undefined reference to `sctp_addr_change'
in_proto.o(.data+0xa8): undefined reference to `sctp_input'
in_proto.o(.data+0xb0): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xb4): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xbc): undefined reference to `sctp_init'
in_proto.o(.data+0xc8): undefined reference to `sctp_drain'
in_proto.o(.data+0xcc): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0xdc): undefined reference to `sctp_input'
in_proto.o(.data+0xe4): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xe8): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xfc): undefined reference to `sctp_drain'
in_proto.o(.data+0x100): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0x110): undefined reference to `sctp_input'
in_proto.o(.data+0x118): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0x11c): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0x130): undefined reference to `sctp_drain'
in_proto.o(.data+0x134): undefined reference to `sctp_usrreqs'
*** Error code 1

Stop in /usr/obj/usr/src/sys/HPDC7100.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


my apologies all, the above reply did not pertain to this thread.   
please exuse me while i finish the rest of my coffee!!

--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: curious DNS behavior on a 7.0...

2007-11-02 Thread Jonathan Horne

Quoting Steve Bertrand [EMAIL PROTECTED]:


CONCLUSION:

If the last poster is right and it's only the browser is failing because
it uses it's own faulty internal DNS resolver, then this is obviously a
serious hindrance to the implementation of IPv6.


so a browser behavior, and not an operating system or name server  
behavior?  as far as i know, my name servers dont know how to speak  
ipv6 either, as they are 6.2p8's without INET6 in their kernel  
configs.  so, my browser of choice is opera, but admittedly, i dont  
recall ever seeing a setting i can change concerning this behavior.   
how then, would one go about elminating ipv6 behavior from a browser?



Of course most 'users'
aren't on the 'Internet' if their MSN page doesn't display, and will
take the path of least cost to make it work ;)


not sure if that was intended for me or not... if so, my retort is if  
i wanted path of least cost (in terms of time and trouble)... i would  
have just got on my ibook which 'just works'  (har har  :)  *shrug*  
all i know is that my other systems that have no ipv6 at all, arent  
able to produce such behavior.


cheers,
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: i keep getting this when i buildkernel on 7.0 beta 1.5...

2007-11-02 Thread Jonathan Horne

Quoting Boris Samorodov [EMAIL PROTECTED]:


On Thu, 1 Nov 2007 20:20:10 -0500 Jonathan Horne wrote:


awk -f /usr/src/sys/modules/zlib/../../conf/kmod_syms.awk zlib.kld
export_syms | xargs -J% objcopy % zlib.kld
ld -Bshareable  -d -warn-common -o zlib.ko.debug zlib.kld
objcopy --only-keep-debug zlib.ko.debug zlib.ko.symbols
objcopy --strip-debug --add-gnu-debuglink=zlib.ko.symbols zlib.ko.debug
zlib.ko
1 error
*** Error code 2
1 error
*** Error code 2
1 error
[EMAIL PROTECTED] /usr/src]#




anyone able to tell me wha to do?


Remove a -j option from the make command and get a real error
message.


WBR
--
Boris Samorodov (bsam)
Research Engineer, http://www.ipt.ru Telephone  Internet SP
FreeBSD committer, http://www.FreeBSD.org The Power To Serve
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



without the -j, this is where i appear to be hanging up:

uipc_syscalls.o(.text+0x3c1): In function `sctp_generic_recvmsg':
/usr/src/sys/kern/uipc_syscalls.c:2600: undefined reference to  
`sctp_sorecvmsg'

uipc_syscalls.o(.text+0x21a2): In function `sctp_generic_sendmsg_iov':
/usr/src/sys/kern/uipc_syscalls.c:2478: undefined reference to  
`sctp_lower_sosend'

uipc_syscalls.o(.text+0x249d): In function `sctp_generic_sendmsg':
/usr/src/sys/kern/uipc_syscalls.c:2371: undefined reference to  
`sctp_lower_sosend'

uipc_syscalls.o(.text+0x266c): In function `sctp_peeloff':
/usr/src/sys/kern/uipc_syscalls.c:2238: undefined reference to  
`sctp_can_peel_off'
uipc_syscalls.o(.text+0x28e6):/usr/src/sys/kern/uipc_syscalls.c:2279:  
undefined reference to `sctp_do_peeloff'

rtsock.o(.text+0xb7d): In function `rt_newaddrmsg':
/usr/src/sys/net/rtsock.c:897: undefined reference to `sctp_addr_change'
in_proto.o(.data+0xa8): undefined reference to `sctp_input'
in_proto.o(.data+0xb0): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xb4): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xbc): undefined reference to `sctp_init'
in_proto.o(.data+0xc8): undefined reference to `sctp_drain'
in_proto.o(.data+0xcc): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0xdc): undefined reference to `sctp_input'
in_proto.o(.data+0xe4): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xe8): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xfc): undefined reference to `sctp_drain'
in_proto.o(.data+0x100): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0x110): undefined reference to `sctp_input'
in_proto.o(.data+0x118): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0x11c): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0x130): undefined reference to `sctp_drain'
in_proto.o(.data+0x134): undefined reference to `sctp_usrreqs'
*** Error code 1

Stop in /usr/obj/usr/src/sys/HPDC7100.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

anything i can do to get around that?  the only thing in my kernel  
config that differs from GENERIC, is the removal of the INET6 line,  
and addition of 'options SMP' (and, the ident).

--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: problem of install 7.0 on notebook

2007-11-02 Thread Jonathan Horne

Quoting David Yeske [EMAIL PROTECTED]:


On 11/2/07, Zhang hw [EMAIL PROTECTED] wrote:

I have now could work on my notebook with freebsd 6.2-release and
6.3-prerelease, but there are still some problems such as acpi. So I
want to have a try of freebsd 7.0-beta-1.5, but I can't install it,
the boot process stop at pci probing:
pcib2:PCI-PCI brige at device 4.0 on pci0
pci16:PCI-PCI bus on pcib2
if acpi enable, it maybe show as:
pcib2:ACPI PCI-PCI brige...
pci16:ACPI...
my cpu is athlon 64x2, I've tried both amd64 and i386 versions.
Help!
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



What happens if you boot verbose?  That might better indicate where
the kernel is hanging.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



without the -j, this appears to be wherei am hanging up:

uipc_syscalls.o(.text+0x3c1): In function `sctp_generic_recvmsg':
/usr/src/sys/kern/uipc_syscalls.c:2600: undefined reference to  
`sctp_sorecvmsg'

uipc_syscalls.o(.text+0x21a2): In function `sctp_generic_sendmsg_iov':
/usr/src/sys/kern/uipc_syscalls.c:2478: undefined reference to  
`sctp_lower_sosend'

uipc_syscalls.o(.text+0x249d): In function `sctp_generic_sendmsg':
/usr/src/sys/kern/uipc_syscalls.c:2371: undefined reference to  
`sctp_lower_sosend'

uipc_syscalls.o(.text+0x266c): In function `sctp_peeloff':
/usr/src/sys/kern/uipc_syscalls.c:2238: undefined reference to  
`sctp_can_peel_off'
uipc_syscalls.o(.text+0x28e6):/usr/src/sys/kern/uipc_syscalls.c:2279:  
undefined reference to `sctp_do_peeloff'

rtsock.o(.text+0xb7d): In function `rt_newaddrmsg':
/usr/src/sys/net/rtsock.c:897: undefined reference to `sctp_addr_change'
in_proto.o(.data+0xa8): undefined reference to `sctp_input'
in_proto.o(.data+0xb0): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xb4): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xbc): undefined reference to `sctp_init'
in_proto.o(.data+0xc8): undefined reference to `sctp_drain'
in_proto.o(.data+0xcc): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0xdc): undefined reference to `sctp_input'
in_proto.o(.data+0xe4): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0xe8): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0xfc): undefined reference to `sctp_drain'
in_proto.o(.data+0x100): undefined reference to `sctp_usrreqs'
in_proto.o(.data+0x110): undefined reference to `sctp_input'
in_proto.o(.data+0x118): undefined reference to `sctp_ctlinput'
in_proto.o(.data+0x11c): undefined reference to `sctp_ctloutput'
in_proto.o(.data+0x130): undefined reference to `sctp_drain'
in_proto.o(.data+0x134): undefined reference to `sctp_usrreqs'
*** Error code 1

Stop in /usr/obj/usr/src/sys/HPDC7100.
*** Error code 1

Stop in /usr/src.
*** Error code 1

Stop in /usr/src.

--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


curious DNS behavior on a 7.0...

2007-11-01 Thread Jonathan Horne
reading the /etc/defaults/rc.conf, ipv6 appears disabled by default:

### IPv6 options: ###
ipv6_enable=NO# Set to YES to set up for IPv6.

however, right now new every website i browse is penalized with a 10-20 
second delay before the page finally starts loading.  tcpdump is full of 
these:

20:38:57.915695 IP athena.dfwlp.com.59056  castor.dfwlp.com.domain: 3505+ 
? www.srh.noaa.gov. (34)

arent 's ipv6 lookups?  as i mentioned in another thread, i cant get the 
kernel to compile right now (thus eliminating the INET6 line), so im trying 
to figure another way out to stop this behavior).

any ideas would be appreciated.  cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


i keep getting this when i buildkernel on 7.0 beta 1.5...

2007-11-01 Thread Jonathan Horne
awk -f /usr/src/sys/modules/zlib/../../conf/kmod_syms.awk zlib.kld  
export_syms | xargs -J% objcopy % zlib.kld
ld -Bshareable  -d -warn-common -o zlib.ko.debug zlib.kld
objcopy --only-keep-debug zlib.ko.debug zlib.ko.symbols
objcopy --strip-debug --add-gnu-debuglink=zlib.ko.symbols zlib.ko.debug 
zlib.ko
1 error
*** Error code 2
1 error
*** Error code 2
1 error
[EMAIL PROTECTED] /usr/src]#


anyone able to tell me wha to do?
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


best way to distribute an item to everyones homedir?

2007-10-28 Thread Jonathan Horne
I have a FreeBSD server I am upgrading for a client, currently running pop3, 
migrating it to IMAP.  I need to distribute a Maildir and its contents, 
a .procmailrc and a .procmail/  to each of about 45 users.

What would be the best, most efficient way to do so?

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: Recommended servers for FreeBSD

2007-10-28 Thread Jonathan Horne

Quoting Andrew Wasilczuk [EMAIL PROTECTED]:


Hi,

I'm interested to see what servers people use for FreeBSD.  I used to
buy the IBM xSeries x306 for firewalls and web servers and the x206 for
low budget file servers, but both aren't being sold anymore.  I recently
got a few IBM x3200 and x3550.  They are really nicely built and I
hardly have any problems.  However, the on-board RAID controllers
(Adaptec AIC-9580W) aren't supported under FreeBSD so I fit them with
3ware 9000 series RAID cards.  Although I really like those 3ware cards,
it seems like an extra expense that could be avoided.

What servers do you guys buy and why?  I would really like to have the
on-board RAID supported. Do HP servers play well with FreeBSD?  If yes,
which models would you recommend?


Many thanks,


Andrew.

--
  __/_/_  w: http://darq.com/
 __/_/_   m: 07971 10 20 88
  / / t: 020 7100 1447
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]



I have deployed many types of HP servers with FreeBSD 6.x, so far,  
none of them have had any issues (all using HP supplied or onboard  
RAID).  ML110 (G3 i think), ML150 G3 are my most recent, all the way  
back to the original ML530 G1, all no problems.

--
Jonathan Horne
http://www.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: Cloning a Windows Xp single hard drive to RAID 0 array

2007-10-22 Thread Jonathan Horne
On Sunday 21 October 2007 08:55:31 Frank Gaenger wrote:
 I have a system built on a Gigabyte GA-M59SLI-S5   motherboard. At
 present it has only one 250GB SATA hard drive. I would like to modify
 the system by installing two (2) SATA 320 GB drives in RAID
 configuration. I have read the info on your web site about cloning a
 hard drive to RAID configuration by using Acronis True Image software.
 This article is silent on the matter of getting RAID and SCSI drivers
 for Windows XP to use.

 My question is: How is the F6 requirement for loading RAID and SCSI
 drivers handled. I have these drivers, copied to a floppy, from the
 Gigabyte CD disk that came with the motherboard package. Would
 appreciate some guidance on  this question.

 Thanks for the consideration.

 Frank

er... thats a windows configuration question, that likely wont get answered 
well here.
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


portupgrade ignoring a pacakge

2007-10-14 Thread Jonathan Horne
i have had a crazy month with my ports and keeping things updates (more 
specific to successfully building a kde set, but thats not what i want to ask 
about right now).  a minute ago, i tried to update my ports on my jail-host 
server.  autoconf was one of the recent problem, and now i see that the 2.59 
now aligns with the 2.61 as its upgrade path (where, before i think it didnt 
show up).  now, im getting:

[EMAIL PROTECTED] ~]# portupgrade -apP
---  Skipping 'devel/autoconf261' (autoconf-2.59_3) because it has already 
been ignored
** Listing the failed packages (*:skipped / !:failed)
* devel/autoconf261 (autoconf-2.59_3)
---  Packages processed: 0 done, 66 ignored, 1 skipped and 0 failed

so, how can i un-ignore something that portupgrade has apparently already 
ignored?
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: question about Intel PRO/1000 GT dual port

2007-10-11 Thread Jonathan Horne

Quoting Robert Huff [EMAIL PROTECTED]:



Does anyone out there have one?
If so, which connector is identified as em0 - upper or lower?


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



on mine, em0 is the upper.

cheers,
--
Jonathan Horne
http://www.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: Can't build kdelibs. Errors in cups-util.c

2007-10-03 Thread Jonathan Horne

Quoting John Murphy [EMAIL PROTECTED]:


Can't build kdelibs. Errors in cups-util.c

I posted to the cups-1.3.3 not compiling anymore in FreeBSD 7.0
thread because this seemed a similar (cups) problem to that one.

http://docs.FreeBSD.org/cgi/mid.cgi?20071002233308.06dfa5bd
For the full details.

The errors are:

cups-util.c: In function `cupsGetConf':
cups-util.c:111: error: dereferencing pointer to incomplete type
cups-util.c:119: error: dereferencing pointer to incomplete type
cups-util.c:138: error: dereferencing pointer to incomplete type
cups-util.c:213: warning: `httpRead' is deprecated (declared at   
/usr/local/include/cups/http.h:361)

cups-util.c: In function `cupsPutConf':
cups-util.c:308: warning: `httpWrite' is deprecated (declared at   
/usr/local/include/cups/http.h:371)
cups-util.c:312: warning: `httpWrite' is deprecated (declared at   
/usr/local/include/cups/http.h:371)

cups-util.c:337: error: dereferencing pointer to incomplete type
cups-util.c:345: error: dereferencing pointer to incomplete type
cups-util.c:364: error: dereferencing pointer to incomplete type
cups-util.c: In function `cups_local_auth':
cups-util.c:454: warning: passing arg 1 of `httpAddrLocalhost' from   
incompatible pointer type


I tried the suggestion to:

make deinstall
make clean
make reinstall

in the cups-base port directory.

Even though my problem wasn't with cups-base itself. No change.

I tried to make WITHOUT_CUPS=yes install in x11/kdelibs (I don't
actually have a printer). No change.

I then (stupidly) made deinstall etc. in x11/kdelibs, which had
the undesireable side effect of breaking my kde desktop env.

I keep running csup in the hope that it gets fixed, but there's
a good chance the problem is between chair and keyboard. Please
help with any suggestion.

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



looks like a patch might have been completed.  hopefully will soon be  
committed to ports.


http://mail.kde.org/pipermail/kde-freebsd/2007-October/001549.html

--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: Any advice for a Partition Plan for a multi-jailed Server?

2007-09-26 Thread Jonathan Horne
On Wednesday 26 September 2007 15:33:12 Federico Lorenzi wrote:
 On 9/26/07, Aliya Harbouri [EMAIL PROTECTED] wrote:
  Hi!
 
  I'm setting up a jailed server. I'm hoping to eventually use
  sysutils/ezjail to deaden the pain a bit!

 I gave that a shot once, but I found manual jail configuration to be
 better.

  First step, have to get the disks partitioned! They're unpacked, at least
  ;-)
 
  I've read lots of comments like,
 
You should never setup your FreeBSD systems the way Linux or other
  *nix's set them up.

 You shouldn't ^-^

  So, I'm looking for some Wisdom on how best to partition for the usage
  I'm planning.
 
  The server's goal state is 4 jails, plus the non-jailed host:
 
  jail-1: DNS services {Bind9  RBLDNSD}
  jail-2: WebServer{Apache 22x + PHP5 + Perl 588 + MySQL 50x}
  jail-3: mail server  {Exim 468 + Spamassassin + ClamAV, etc.}
  jail-4: an analysis/monitoring toolkit {Snort, Nagios, Nessus, etc.}
 
  I've got two identical 250 GB SATA2 drives available for this box.
 
  Although I have not yet grokked the whole What's in a jail's dirs?
  issue, my initial stab at 'slices' is ~:
 
  drive 2:
  /   2GB

 A bit big, but fine

  /boot   2GB

 Nope, FreeBSD doesn't need / want a /boot

  /tmp2GB

 Fine

  /swap   16GBMachine has 8GB RAM, so swap = 2X RAM

 A bit of overkill, but what the hell, you have the space

  /usr50GB

 What exactly do you plan on running on the host?

  /jails  178GB

 Fine...

  drive 2:
  /var100GB

 Huh? Refer to /usr above.

  /data   100GB   MailStore, DBs, www source files, etc.

 Fine again...

  /home   20GB

 Fine again..

  I'll betcha some of that's silly or wasteful.

 You'd be correct there :)

 I'm sure you could fit everything on one disk... Jails are really small,
 it's just your data that takes up space. If you could get everything in
 250GB (which i think you could easily) RAID 1 might be a nice thing to have

 HTH

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

youll do just as fine to hit 'A-S-Q during the partitioning portion, and 
taking the defaults.  FreeBSD installer will take the best options, and put 
all the remaining space as /usr.

i just put my jails under /usr/jails.

keep the host as simple as possible, as building multiple jails will just 
multiply your complexity quickly enough.

i would also agree with Frederico... do a RAID1 with your (2) 250GB drives.

cheers,

-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: Stress testing/burning in HDD's

2007-09-26 Thread Jonathan Horne
On Wednesday 26 September 2007 15:59:25 Don O'Neil wrote:
 I have an array that has a drive that keeps timing out/failing... So I need
 to replace it. However, I want to stress test/burn in a replacement disk
 first.

 What is the best way to do this?

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

it will surely get plenty of burn-in as it replicates the array.

for a server's disk, i dont think there is any way, or technical reason 
to ease it into service.  just swap it in.  its either gonna run right 
away, or be DOA out of the box.  (well, thats my experience, at least).

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: pf redirect question

2007-09-26 Thread Jonathan Horne
On Wednesday 26 September 2007 02:28:48 Nikos Vassiliadis wrote:
 No, don't use the IP on your server. Why you should do such a thing?


why not?  i did specify that the old server is decommissioning and would be 
permenantly downed.

 You just have to make sure that packets ($old_server - $world)
 are routed through your $pf box. I guess that's the case for you.
 pf will just translate the destination address from $old_server
 to $new_server.


yes, any client or server would be able to route across the wan to the new ip 
at the other end.

 BUT, which is this service you are talking about? Cause that's not
 feasible with everything.

 Nikos

ultimately, i want to route some Mcafee ePolicy clients to use another server.  
weve installed our new agent on all our machines, but i still have a handful 
of clients that are roamers who are checking in via the vpn concentrator, 
which i cannot physically get to their machines to perform their upgrade.  if 
i can re-route their check-in server to our new server (and yes, the inbound 
vpn also uses all the same routes  to other sites as our internal core 
switches),  that would a) not knock those roaming clients off antivirus 
updates, b) i could also use the same trick to upgrade our server farm, and 
c) our new york office is lagging way behind on their client upgrades, and 
this would help them out as well (by directing anyone remaining over to the 
new server, which is in chicago).

so far, i was trying it out, by trying to redirect port 80 on my laptop, to a 
monitoring service on the server at 10.22.192.131:8080, but it would just die 
if i tried to telnet to my laptops port 80 (from some other machine, not the 
laptop or test server).

was my syntax in my example incorrect?

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: pf redirect question

2007-09-26 Thread Jonathan Horne
On Wednesday 26 September 2007 08:10:18 Nikos Vassiliadis wrote:
 Please CC me when replying to me, since I will
 see your replies in no time. Otherwise your reply
 might not be seen, since it ends up in another
 directory in my maildir.

 On Wednesday 26 September 2007 15:18, Jonathan Horne wrote:
  On Wednesday 26 September 2007 02:28:48 Nikos Vassiliadis wrote:
   No, don't use the IP on your server. Why you should do such a thing?
 
  why not?  i did specify that the old server is decommissioning and would
  be permenantly downed.

 Because the IP you will use on the host running FreeBSD and PF has
 nothing to do with FreeBSD and PF. If you do this, you understand
 that packets will be processed locally by FreeBSD's TCP/IP stack
 and not forwarded to the new server, right?

 You only want PF to alter the address from old server to new server
 as I said previously. Not accept the packet as if destined for localhost!

   You just have to make sure that packets ($old_server - $world)
   are routed through your $pf box. I guess that's the case for you.
   pf will just translate the destination address from $old_server
   to $new_server.
 
  yes, any client or server would be able to route across the wan to the
  new ip at the other end.

 Something like this:
 client-aclient-b

 ( internet cloud )

 (pf)(new-server)


 (old-server)

   BUT, which is this service you are talking about? Cause that's not
   feasible with everything.
 
  ultimately, i want to route some Mcafee ePolicy clients to use another
  server.

 Yes, I know nothing about it. Is redirecting TCP port 8080 enough?

 [snip]

  was my syntax in my example incorrect?

 Yes, try removing the interface, just to be more general,
 until you figure it out. Something like:
 rdr inet proto tcp from any to x.x.x.x port = ssh - y.y.y.y port 22

 And use pfctl -vsnat to check the state of the rdr command, like this:
   [ Evaluations: 3434  Packets: 14Bytes: 840 States: 0 
]

 Be sure that every host involved is reachable from the pf box.

 Nikos

well, the example you sent me worked... but just for a moment.  as soon as i 
changed it (and restarted pf, its not worked since.  if im going to get this 
to work, this is actually more of the diagram im working with here:

(pf) --- (old server) -- client-a
|
(SITE-A)  (vpn-client-b)
|
(internet-cloud)  (SITE-B) --- (new server)
|
(SITE-C)
|
(client-c)

where you see SITE-x, consider that the appropricate clusters of routers, 
vpn-endpoints/concentrators.  client-a, old server, and pf are same-lan, 
other objects are all across a wan at different subnets, but all can reach 
all.  (client-b's vpn concentrator is located in the SITE-A routers).

so, if it worked one time and then stopped after a change... where could i be 
going wrong now?  after a change like that, do arp or routing tables need to 
be flushed (and if so, at both the pf, and possibly test subject (but maybe 
not the recieving end of the rdr... i cant see how the receiver would care)

man, if i can get this to work reliably, this is going to save a ton of time 
and trouble!

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


pf redirect question

2007-09-25 Thread Jonathan Horne
i have a server at my office i need to decomission, only problem, there are a 
handful of client that are still talking to it.

i was wondering if it feasable to down the server, take its IP and stick it on 
our FreeBSD server, and then use pf with rdr statements to redirect any 
traffic from stragglers to the service on the other new server?

i was trying to to proof it with a line like this in my pf.conf on my laptop:

rdr on $ext_if proto tcp from any to $ext_if port 80 - 10.22.192.131 port 
8080

just to see if i could get an http request to my laptop to redirect over to 
the 8080 on the other ip, but so far nothing.

a) is what im trying to do... tcpifically possible?
b) if yes, can someone point me in the right direction?

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: pf redirect question

2007-09-25 Thread Jonathan Horne
On Tuesday 25 September 2007 17:22:12 Mel wrote:
 On Tuesday 25 September 2007 16:46:58 Jonathan Horne wrote:
  i have a server at my office i need to decomission, only problem, there
  are a handful of client that are still talking to it.
 
  i was wondering if it feasable to down the server, take its IP and stick
  it on our FreeBSD server, and then use pf with rdr statements to redirect
  any traffic from stragglers to the service on the other new server?
 
  i was trying to to proof it with a line like this in my pf.conf on my
  laptop:
 
  rdr on $ext_if proto tcp from any to $ext_if port 80 - 10.22.192.131
  port 8080
 
  just to see if i could get an http request to my laptop to redirect over
  to the 8080 on the other ip, but so far nothing.
 
  a) is what im trying to do... tcpifically possible?

 Yes, but a network layout would help. Also, why not put the old IP on the
 new machine?

because the new machine is on a different subnet, across a vpn link.

what other info would you need, that you might be able to help me with an 
example?

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: anyone have a favorite laptop?

2007-09-24 Thread Jonathan Horne
On Monday 24 September 2007 13:00:33 Steve Franks wrote:
 The freebsd laptop page is a nice resource, but it's a bit heavy on
 specifics (i.e. I have a laptop I want to install on), not so good
 generally (want to buy a laptop).  So anyone have realworld advice?
 I'm not against something used in the 1GHz+ range.

 I have a compaq that is %#*!^$.  The pcmcia will not work, the
 ndiswrapper for the broadcom panics, etc.  So, compaq is right out
 (the've always maintained their poor reputation, no?) - so compaq is
 out.  Seems gateway has an equally bad rap

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

checking in from my HP NC6000, all hardware operational, no issues to speak 
of.  (p4 1.8, intel 2200 wireless, broadcom ethernet, intel sound).  also, 
the pushbutton to enable/disable the wireless works, but the hardware volume 
control does not.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: downgrading to an earlier version of the same port

2007-09-20 Thread Jonathan Horne
On Thursday 20 September 2007 19:37:10 Aryeh Friedman wrote:
 On my machine it appears that jdk-1.5.0.12,1 is broken and I want to
 downgrade to a previous cvsup of the same port (I don't know the exact
 tag but it is the one using patch set 4)... how do I go about doing
 this?
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to
 [EMAIL PROTECTED]

i do this from time to time, byjust making an edit to my ports-supfile.  
normally, there is a line like this in your ports-supfile:

*default release=cvs tag=.

i comment that line out, and put one right below it like this:

# *default release=cvs tag=.
*default release=cvs tag=. date=2007.06.01.01.01.01

as you can see, ive added a date 'keyword' (see man csup), and as you can 
likely see, the format is year.month.day.hour.minute.second.  put in the 
date/time that you want to go back to, and then:

csup -g -L 2 -i ports/java/diablo-jdk15 ports-supfile

and just that one port should roll back to the date/time you specified in your 
ports-supfile.  remember, to comment out your new date-line, and un-comment 
your original date-keyword-less line, so that the next time you csup you dont 
run your whole ports tree backwards in time.

oh, and a good resource to find exactly what date you need to specify that you 
want to go back to (remember to choose a time *before* the change you want to 
avoid), is to check here:

http://www.freebsd.org/cgi/cvsweb.cgi/ports/#dirlist

find your port's Makefile, check the date of the revision, and step back a 
day, an hour, or whatever you need.

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


xnest question

2007-09-14 Thread Jonathan Horne
ive installed xorg-nestserver-1.2.0,1 on another local-lan computer, and im 
trying to attach to it using different versions of examples im finding around 
the net, but so far no joy.  im trying to start a desktop session from the 
other computer to my desktop, in a new window.

does anyone have experience with this using freebsd, and maybe have some tips 
for me?
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: a quick jails question

2007-09-05 Thread Jonathan Horne

Quoting Adam J Richardson [EMAIL PROTECTED]:


Jonathan Horne wrote:

will a NFS server run in a jail?

im guessing no, that it falls into the funny services category   
(like snmp) that wont run right in a jail.


thanks,


Hi Jonathan.

Forgive my curiosity, but why would you run NFS in a jail?

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


well, right now i have one physical server, running 4 jails (my web,  
mail, and 2 dns).  my file server, is actually my desktop.  i would  
like to transfer this data to my server (so that the data lives on the  
RAID), and just do a new jail that i serve my files from (also,  
transferring build duties over to this physical server, via the  
file-server jail).


i still need to test if it still works the same (im guessing yes, but  
i really dont know until i try it) to build my world and kernels that  
i need from a jailed host, but i have a long way to go on that  
project.  also need to make sure samba still works as expected, and a  
couple other things.


all, so i dont have to make sure my desktop is onlie if i need to  
access some files  :).


cheers,  (and first list-post, from my new horde install!  woot!)
--
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]


This message was sent using IMP, the Internet Messaging Program.

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


Re: Sadly, my tinker-time has run out....

2007-09-02 Thread Jonathan Horne
On Sunday 02 September 2007 07:31:41 Mike Jeays wrote:
 On Sunday 02 September 2007 02:22, Michael Hauber wrote:
  Hey, all...
 
  I've been a user of FreeBSD and OpenBSD for quite a while now.
  Unfortunatly, I haven't had much time to tinker lately, and that's
  unlikely to change in the near future.  Sadly, I need to get an OS that
  my wife would be more comfortable using and that wouldn't be as
  time-comsuming to make it more comfortable for her.
 
  I downloaded the uberyl live CD and found that ubuntu seems to pick up on
  everything I have on the laptop (as well as all the attachments), so I'm
  downloading it now.
 
  Because I've put so much time into getting this FreeBSD install where it
  is now (and because I favor the BSDs), I'm still a bit hesitant...  Has
  anyone here had much experience with ubunu as a desktop? 
  Negatives/positives?
 
  Kind of OT, I guess...  I'd just rather hear it from someone in this
  group rather than the inevitable, Oh yeah.  You won't be sorry. from
  the ubuntu folk (salespitches == fingernails on a chalkboard :) ).
 
  Thanks,
 
  Mike
 
 
  PS.  Yes, I've played with PC-BSD.  Unfortunately, that's still more work
  than I have time for.

 I am one of those sad cases who used FreeBSD for many years as my primary
 desktop at home, and then switched to Ubuntu about 6 months ago.  I still
 run FreeBSD on an older server, that runs round the clock and is 100%
 reliable.

 I was only slightly frustrated by FreeBSD, mainly because of my inability
 to get a Hauuppage TV card to work, even after a few queries on this list. 
 I also found that other multimedia software seemed more available and
 easier to set up - I not saying they were impossible, just that I seemed to
 be spending more time trying to get them to work than I wanted.

 Ubuntu works very well 'out of the box', and their Synaptic tool for
 finding and installing software is excellent. I am now running VirtualBox
 under Ubuntu, and it works extremely well; I can run W2K and XP for
 occasional use as guests, and what seems like full speed. (Much faster than
 QEMU, which I used before.)  Both KDE and GNOME work fine, and for basic
 work with Firefox, Thunderbird, OpenOffice and Postgresql, there is nothing
 much to choose between FreeBSD and Ubuntu from an office user's point of
 view.  Both work great.  Both seem rock solid, and recover well from the
 occasional power outages I get at my new home.  (Ought to get a battery
 backup before disaster hits one day, I suppose).  All the development tools
 are a few mouse-clicks away.

 I may switch back one day, as I like FreeBSD very much for its sound design
 and underlying philosophy.  I feel 'guilty' about having changed!

from my experience as an admin over at openaddict.com, ubuntu really seems to 
have ascended quickly thru the ranks of the quality distributions.  if you 
take a look at distrowatch.com, ubuntu is also the most highest clicked on 
distro.  based on behavior from what i see from the linux community, it looks 
like:

  Oh yeah.  You won't be sorry.

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


a quick jails question

2007-09-01 Thread Jonathan Horne
will a NFS server run in a jail?

im guessing no, that it falls into the funny services category (like snmp) 
that wont run right in a jail.

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


mysql in a jail not starting

2007-08-30 Thread Jonathan Horne
i have had many jails, and have never really had any problems with them until 
this one.  for some reason, mysql wont start.  nothing else is having any 
trouble starting, which is strange.

is there a log file i can look in that might give me some clues as to whats 
going on?  mysql_enable=YES is in my rc.conf, and when i start it i get: 

antares# /usr/local/etc/rc.d/mysql-server start
Starting mysql.
antares# /usr/local/etc/rc.d/mysql-server status
mysql is not running.

any tips for troubleshooting this would be apprciated.  TIA,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: mysql in a jail not starting

2007-08-30 Thread Jonathan Horne
On Thursday 30 August 2007 14:34:34 Beech Rintoul wrote:
 Read the *.err files in /var/db/mysql. It should tell you why it's
 failing.

 Beech

thanks, that led me right to it!

antares# /usr/local/etc/rc.d/mysql-server status
mysql is running as pid 1738.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: FreeBSD Hostname Question - Whats The Proper Way

2007-08-29 Thread Jonathan Horne
On Wednesday 29 August 2007 19:05:06 Peter Pluta wrote:
 I have a box with 5 ip's pointing to it. Most of the things I run (http,
 smtp) are virtual or allow me to specify the hostname (postfix) - so I'm
 wondering what the machines hostname should be? By default it's
 localhost.localdomain. This has always confused me from the begining when I
 first started using FreeBSD, can anyone chime in? It would greatly
 appreciated.

 Thanks!

its fairly simple actually.  example:

my system's name is athena.  my domain, is dfwlp.com... thus my computer is 
athena.dfwlp.com.  the hostname command can show you waht your current 
hostname is:

[EMAIL PROTECTED] ~] $ hostname
athena.dfwlp.com

also, there is a line in /etc/rc.conf that specifys the system's hostname when 
you start up:

[EMAIL PROTECTED] ~] $ cat /etc/rc.conf|grep hostname
hostname=athena.dfwlp.com

finally, when you are installing freebsd, during the network configuration 
page, the Host: box would be where i would put athena, and the Domain: 
box would be where i put dfwlp.com (when you set your domain, you dont put 
the . in front of the domain name, ie, dont put .dfwlp.com in the domain 
box).

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: FreeBSD Hostname Question - Whats The Proper Way

2007-08-29 Thread Jonathan Horne
On Wednesday 29 August 2007 19:19:58 Peter Pluta wrote:
 How does one pick a domain?
 Just any old domain? 

thats often how it goes!  mine was originally dfwlanparty... but dfwlp just 
became the shortend version of what the community referred to it as.  i 
bought the domain just out of convenience many moons ago :)

 I keep visualizing a domain as in 3-4 servers each of 
 which has a hostname mail, web, etc..

fairly close, some times you will actually find servers that actually are 
named web mail, or have names after services.  myself, i have names that 
ive chosen, and then use DNS to link the common services to them.  example, 
if you do a:

host castor.dfwlp.com

youll find that castor is my server that handles www.dfwlp.com.  so, if you 
have a specific name in mind, dont be afraid to use it!  you can always go 
back later and use DNS to give your box as many jobs as you need (ie, you 
can DNS both www and mail to the same server, if you need to).

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: OT: Workgroup not available. The network name cannot be found. on Windows 2000 Pro SP4

2007-08-29 Thread Jonathan Horne
On Wednesday 29 August 2007 19:40:09 L Goodwin wrote:
 I apologize for asking this question, but people who
 know UNIX often know a lot about operating systems in
 general.

 I have a client with a Windows 2000 Pro SP4 host. He
 cycled power without shutting down Windows, and now
 the Windows network (Network Neighborhood) is hosed.
 When he tries to access Network Neighborhood (from
 Windows Explorer), he get Workgroup not available.
 The network name cannot be found..

 This host can ping other hosts on LAN and has Internet
 access, and other hosts on LAN see this host and can
 access its shared resources (filesytem and printer),
 AND connect to it via VPN (it is set up as a VPN
 Host).

 What is the correct procedure for recovering from
 this mishap? TIA! :-)


youll probably want to start here:

http://groups.google.com/groups/dir?sel=33607436expand=1

... and now that thats out of the way... let the flames begin!
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: USB Problem on a HP Compaq DC7600

2007-08-28 Thread Jonathan Horne
i have a DC7100, a very similar machine (same southbridge, i believe).  none 
of my USB worked worth a damn until late 6.1.  6.2 has been totally reliable.

during 6.1, updating my BIOS upgraded my situation from not worth a damn 
to hit and miss.

broadcom nic also works fine in later versions too.  if you require 6.0 (and 
not so much hardware hassle), you might try a different (not so fancy) 
computer.
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: FreeBSD 4.11 binary compatibility (libm.so.2, etc)

2007-08-28 Thread Jonathan Horne
On Tuesday 28 August 2007 17:35:55 Kris Kennaway wrote:
 On Tue, Aug 28, 2007 at 03:31:25PM -0700, Thomas D. Dean wrote:
  It provides a temporary solution in some cases, when you need to get
  going.  It is not a long term solution.

 It's bogus because a) the real solution exists and is trivial (install
 the relevant compat port), and b) your advice *will* break
 applications.

 Shared library revision numbers are bumped for a good reason, of
 course, namely because there are changes made that break backwards
 compatibility.

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

it would be interesting to know what kinds of apps break from doing this... i 
link 6 things to get my netbackup agent working, and so far everything works 
like clockwork.

i remember back in tredhat fedora, i learned this behavior because i want to 
remember, that tons of libs were always linked by default.  once i moved to 
freebsd, i really didnt think anything of it, because i was always told that 
these types of things were backwards compatible, and they were symlinked 
specifically because of this (ie, it was intended by the distro provider, 
becuase some app they included was asking for an older revision of a lib).  
ive not looked at a linux in about 2 years, but i want to say it was so 
common as to be normal to see linked libs.

anyway... /ramble.

cheers,

-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: FBSD-friendly UPS for home needs

2007-08-25 Thread Jonathan Horne
On Saturday 25 August 2007 12:53:19 Robert Huff wrote:
 Zbigniew Szalbot writes:
   I am going to get a UPS device for my home freebsd gateway/router
   and wonder if there is anything that you would recommend? At work
   I use APC units and there is a dedicated software to manage it
   (apcupsd). Not sure if that's the case with other manufacturers?
   I'd like to get something that could be managed by software and
   at the some time not too expensive... you know home
   budget...erm...

   Assuming the manufacturer does not provide a program - and few
 do - the preferred software for APC (and compatible) units is
 apcupsd; for others, it seems to be nut (sysutils/nut).
 Check carefully to make sure it works with your UPS.


   Robert Huff




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

ill put in another vote for an APC with sysutile/apcupsd.  here is some 
example output of the what the software pulls from the unit:

[EMAIL PROTECTED] ~] $ apcaccess
APC  : 001,037,0912
DATE : Sat Aug 25 12:57:45 CDT 2007
HOSTNAME : athena.dfwlp.com
RELEASE  : 3.14.1
VERSION  : 3.14.1 (04 May 2007) freebsd
UPSNAME  : Athena APC RS 1500
CABLE: USB Cable
MODEL: Back-UPS RS 1500
UPSMODE  : Stand Alone
STARTTIME: Sat Aug 25 07:56:21 CDT 2007
STATUS   : ONLINE
LINEV: 118.0 Volts
LOADPCT  :  18.0 Percent Load Capacity
BCHARGE  : 100.0 Percent
TIMELEFT :  49.0 Minutes
MBATTCHG : 5 Percent
MINTIMEL : 3 Minutes
MAXTIME  : 0 Seconds
SENSE: High
LOTRANS  : 097.0 Volts
HITRANS  : 138.0 Volts
ALARMDEL : Always
BATTV: 27.1 Volts
LASTXFER : Low line voltage
NUMXFERS : 0
TONBATT  : 0 seconds
CUMONBATT: 0 seconds
XOFFBATT : N/A
SELFTEST : NO
STATFLAG : 0x0708 Status Flag
MANDATE  : 2006-09-19
SERIALNO : BBlalalalalalalalala
BATTDATE : 2001-09-25
NOMINV   : 120
NOMBATTV :  24.0
FIRMWARE : 8.g9 .D USB FW:g9
APCMODEL : Back-UPS RS 1500
END APC  : Sat Aug 25 12:57:49 CDT 2007

(as you can see, its USB connected too, which is a nice convenience)

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


best way to keep track of new developments

2007-08-24 Thread Jonathan Horne
im due for a new laptop at work, which will likely be an HP NC6400 (our 
standard).  an otherwise really nice laptop, but with 2 showstoppers:

intel 3945 wireless
ati x1300 graphics

i know there has been some development here and there to try to get these guys 
to work in freebsd.  whats the best way to keep track of who owns these 
projects, and to follow with intrest how the work is going?  ive been testing 
freebsd with these NC6400s (before they are deployed out to the users who 
they were ordered for), and so far, these are the first 2 pieces of hardware 
that have not worked out of the box for me.

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: NFS /etc/exports question..

2007-08-21 Thread Jonathan Horne
On Tuesday 21 August 2007 13:16:54 Glenn Sieb wrote:
 /u2 -alldirs...

first up, that line negates the need for:

/u2/opt/portage  -alldirs

alldirs, is all dirs!  anything underneath is then redundant.

 /u2 -alldirs -maproot=root important1.domain.com important2.domain.com

probably requires correctly configured DNS or proper entries in the hosts 
files.  while you are working this problem out, i would eliminate that line, 
as it might be conflicting with:

/u2 -alldirs -network 127.0.0.0 -mask 255.255.255.0
/u2 -alldirs -network 10.0.5.0 -mask 255.255.255.0

... either of those lines.

cheers,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: NFS /etc/exports question..

2007-08-21 Thread Jonathan Horne
On Tuesday 21 August 2007 14:44:29 Glenn Sieb wrote:
 Hi Jonathan!

 Jonathan Horne wrote:
  On Tuesday 21 August 2007 13:16:54 Glenn Sieb wrote:
  /u2 -alldirs...
 
  first up, that line negates the need for:
 
  /u2/opt/portage  -alldirs
 
  alldirs, is all dirs!  anything underneath is then redundant.

 Understood. Fixed that.

  /u2 -alldirs -maproot=root important1.domain.com important2.domain.com
 
  probably requires correctly configured DNS or proper entries in the hosts
  files.  while you are working this problem out, i would eliminate that
 
  line, as it might be conflicting with:
 /u2 -alldirs -network 127.0.0.0 -mask 255.255.255.0
 /u2 -alldirs -network 10.0.5.0 -mask 255.255.255.0

 Yes, because this was the question I had originally.. :) How can I make
 sure that I get -maproot=root on those two named boxes, which live inside
 the 127.0.0.0/255 network, while still allowing the rest of the boxes
 present in both other subnets to access the shared *without*
 -maproot=root? The errors I posted were specifically complaining about the
 127.0.0.0 and 10.0.5.0 network lines (note, for security I am not posting
 the real network ranges).

 The two boxes in question, do have working DNS, and are boxes we use as
 our NIS masters, so I need to be able to create home directories on the
 fileserver, where the home directories live, hence needing maproot.

 The other boxes in the 127.0.0.0/255 range are other servers in my
 cluster, which need to mount directories from the fileserver--and in my
 case, a lot  of users have sudo capability for testing/development
 purposes, so I don't want them having -maproot=root capability on those
 other servers.

 10.0.5.0 is a range of IPs where my users mount their home directories and
 shared tools directories on their desktop boxes.

 Does this clear up my question?

 Thanks in advance!
 Best,
 --Glenn


then, probably eliminate just:

/u2/opt/portage -maproot=root -alldirs -network 127.0.0.0 -mask 255.255.255.0
/u2/opt/portage -maproot=root -alldirs -network 10.0.5.0 -mask 255.255.255.0

and see what happens.
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


SAS (serial attached SCSI)

2007-08-20 Thread Jonathan Horne
anyone running any SAS with FreeBSD?

i have a client who is needing a new server, and everything in their 
pricerange is comming with SAS now, instead of standard SCSI.  the company 
president is an old timer, and only knows the word SCSI  :)

other than telling him well this is the new SCSI, i am wondering if anyone 
else is successfully using this technology thus far.

thanks,
-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: Resolution problem with i810 and Xorg 7.2

2007-08-10 Thread Jonathan Horne
On Friday 10 August 2007 12:26:46 Doug Poland wrote:
 Hello,

 I've got a Compaq nx7400 running on 6.2-STABLE with Xorg 7.2.  Despite
 my best efforts, I'm unable to get the screen into 1680x1050
 resolution.  I have followed the instructions in the handbook but the
 issue appears to be getting /dev/agpgart recognized.

 Here's some relevant data...
...[snip]

were you using the sysutils/915resolution ?

-- 
Jonathan Horne
http://dfwlpiki.dfwlp.org
[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: Resolution problem with i810 and Xorg 7.2

2007-08-10 Thread Jonathan Horne
On Friday 10 August 2007 14:19:00 Doug Poland wrote:
 nope

im 99% sure thats where your solution will lie.

http://www.geocities.com/stomljen/

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


  1   2   3   4   5   >