Re: sio0 : silo overflow

2005-09-26 Thread Dmitry Mityugov
On 9/26/05, caleb [EMAIL PROTECTED] wrote:
 Hi,
 I am having some problems with the serial port (si0) connected to my
 modem. Everytime I try to download a file I get the following output on
 my console;

 kernel sio0: 1 more silo overflow

 I thought it might be the baud rate but stty displays the following
 information;

 speed 115200 baud
 lflags: echoe echoke echoctl pendin
 oflags: -oxtabs
 cflags: cs8 -parenb
 erase

 I checked the config file for the 5.4 stable kernel I am using and the
 serial driver is enabled;

 # Serial (COM) ports
 device  sio # 8250, 16[45]50 based serial ports

 Is there another serial port driver that I could add to the kernel? Is
 the serial port the problem or is it my 56K dialup modem? The serial
 port is a 16550A based port.

 compucomp# dmesg | grep sio0
 sio0: 165550A-compatible COM port port 0x2f8-0x2ff irq 3 flags 0x10 on
 acpi0
 sio0: type 16550A

 If you reply could you please cc me as I am not subscribed to the list.

Not sure if this helps but [comp.unix.bsd] NetBSD, FreeBSD, and
OpenBSD FAQ contains some information on this problem:
http://www.cs.uu.nl/wais/html/na-dir/386bsd-faq/part4.html

--
Dmitry Mityugov, St. Petersburg, Russia
I ignore all messages with confidentiality statements

We live less by imagination than despite it - Rockwell Kent, N by E
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Complete format

2005-09-26 Thread Erik Norgaard

Hi,

A month ago I started getting problems with a disk, and bought a new one 
to save as much data as posible. Now, I'd like to try to do a thorough 
format of the old disk to clear any disk errors and see if this may make 
it usable.


Is there a program that can analyse marking bad sectors unusable and 
true format the disk?


Thanks, Erik


--
Ph: +34.666334818  web: www.locolomo.org
S/MIME Certificate: www.daemonsecurity.com/ca/8D03551FFCE04F06.crt
Subject ID:  9E:AA:18:E6:94:7A:91:44:0A:E4:DD:87:73:7F:4E:82:E7:08:9C:72
Fingerprint: 5B:D5:1E:3E:47:E7:EC:1C:4C:C8:3A:19:CC:AE:14:F5:DF:18:0F:B9
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Complete format

2005-09-26 Thread Gerard Seibert
On Mon, 26 Sep 2005 10:27:36 +0200, Erik Norgaard [EMAIL PROTECTED]
Subject: Complete format
Wrote these words of wisdom:

 Hi,
 
 A month ago I started getting problems with a disk, and bought a new one 
 to save as much data as posible. Now, I'd like to try to do a thorough 
 format of the old disk to clear any disk errors and see if this may make 
 it usable.
 
 Is there a program that can analyse marking bad sectors unusable and 
 true format the disk?
 
 Thanks, Erik
 


* REPLY SEPARATOR *
On 9/26/2005 4:44:24 AM, Gerard Seibert Replied:

Gibson Research grc.com has a program called 'SpinRite'. It can
analyse a HD and attempt to repair, or if that is not possible, lock out
any bad sectors. It will create a bootup CD or disk that you use for the
operation.

The best way to run the program would be to first use the basic format
program that came with your your OS. You might consider running fdisk
/mbr prior to running the format program. It will rebuild the master
boot record. I actually needed to do that one to get a disk to book
correctly. Then, after the format program, run the SpinRite program to
complete the operation. Run SpinRite at level 5, the highest one, for
the most complete checkup.

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


Re[3]: SSI error message

2005-09-26 Thread Gerard Seibert
On Sun, 25 Sep 2005 17:39:55 -0700, Glenn Dawson [EMAIL PROTECTED]
Subject: Re[2]: SSI error message
Wrote these words of wisdom:

 At 04:24 PM 9/25/2005, Gerard Seibert wrote:
 On Sun, 25 Sep 2005 15:40:21 -0700, Glenn Dawson [EMAIL PROTECTED]
 Subject: Re: SSI error message
 Wrote these words of wisdom:
 
   At 03:22 PM 9/25/2005, Gerard Seibert wrote:
   I inserted the XBitHack on statement into a .htaccess to turn on
   the SSI function. I then made the necessary modification to the
   httpd.conf file so that the file would be used. Now, I receive this
   error message in the httpd-error.log and I have no idea how to 
  correct it.
   
   [Sun Sep 25 18:14:40 2005] [warn] [client 216.45.217.148]
   mod_include: Options +
   Includes (or IncludesNoExec) wasn't set, INCLUDES filter removed
   [Sun Sep 25 18:14:40 2005] [warn] [client 216.45.217.148]
   mod_include: Options +
   Includes (or IncludesNoExec) wasn't set, INCLUDES filter removed
  
From the apache docs on mod_include:
  
   The following directive must be given for the directories containing
   the shtml files (typically in a Directory section, but this
   directive is also valid .htaccess files if AllowOverride Options is set):
   Options +Includes
  
   -Glenn
 
 
 * REPLY SEPARATOR *
 On 9/25/2005 7:19:40 PM, Gerard Seibert Replied:
 
 Yes, I figured out that I had not set the 'Options' directive correctly.
 I corrected it, and got SSI working. However, I now have a slightly
 different situation. I wanted to get the date formatted correctly on my
 site. I tried this, but it does not work correctly:
 
 !--#config timefmt=%m/%d/%y -- !--#echo var=DATE_LOCAL --
 
 the date is still displayed in the long format, along with the time. I
 do not understand why. I copied this directly from a site that was
 demonstrating how to use SSI to display the date or time in any format
 desired. For some reason, it does not work.
 
 Those assume that your web server is setting DATE_LOCAL in it's 
 environment, and that it's paying attention to what you set timefmt to be.
 
 You can do somthing like:
 
 !--#exec cmd=/bin/date +%m/%d/%y --
 
 -Glenn

* REPLY SEPARATOR *
On 9/26/2005 5:21:37 AM, Gerard Seibert Replied:

Thanks, that worked. I wanted to change the format to %b %d, %Y but it
does not display. I thought about using a non breaking space %#160; but
that does not work either. If I leave any spaces in the format, it will
not display.  I will work on that problem at some future date.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: AMD64 question

2005-09-26 Thread Helge Preuss

Eric Murphy wrote:


[...]
however if i run make buildkernel kernconf=GREED

it runs but uses the GENERIC kernel
 

This sets the variable ${kernconf}, which is ignored, because make looks 
for ${KERNCONF}.

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


Re: Webcams and FreeBSD

2005-09-26 Thread vittorio
Alle 12:05, domenica 25 settembre 2005, Ned Harrison ha scritto:
 I'm running FreeBSD 5.4 as a desktop operating system on my home
 computer.  I would like to set up a webcam for physical security/nature
 observation while I'm away from the residence.  Something simple, I just
 want to take periodic images and store them on an external hard drive.

 In the past couple of days researching this, I get the impression that
 it may be possible to do this but I have not found specific instructions
 on how to set it up.

 Even though I am a newbie, I have been able to get things working when I
 can find the right documentation. Does anybody know of an article which
 describes setting something like this up?


 Thanks
 Ned


Even though it seems to me a poor solution, here it is the best answer to a 
thread of mine on a similar subject:

http://www.freebsd.org/cgi/getmsg.cgi?fetch=74724+0+/usr/local/www/db/text/2005/freebsd-questions/20050911.freebsd-questions

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


Re: Webcams and FreeBSD

2005-09-26 Thread John Oxley
On Sun, Sep 25, 2005 at 05:05:24AM -0500, Ned Harrison wrote:
 I'm running FreeBSD 5.4 as a desktop operating system on my home
 computer.  I would like to set up a webcam for physical security/nature
 observation while I'm away from the residence.  Something simple, I just
 want to take periodic images and store them on an external hard drive. 
 
 In the past couple of days researching this, I get the impression that
 it may be possible to do this but I have not found specific instructions
 on how to set it up.  
 
 Even though I am a newbie, I have been able to get things working when I
 can find the right documentation. Does anybody know of an article which
 describes setting something like this up?

If you are not bound to FreeBSD, I recommend installing Linux.  USB
webcams work much better under Linux, and there is a package called
motion which only records if there is a certain amount of motion
detected which is a better setup for security anyway.

-John

-- 
John Oxley
Systems Administrator
Yo!Africa
E-Mail:  john at yoafrica.com
Tel: +263 4 858404
echo '9k[l:l;ss=0lx]s[1+ldd*l=d*-l;+dsrl=2**l:+ds=d*rd*+4-d15] 
s[q]s-[d77/3*2-s;47lx-P1+d78`]s`0[d23/.5-3*s:0l`xr10P1+d24$]ds$x'|dc
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


IPFW won't go away!

2005-09-26 Thread Paul
Hi,

 

I run ipf and ipnat.  Recently I recompiled the kernel and since then ipfw
loads at boot and blocks all my traffic.

 

How do I disable it permanently or uninstall it?

 

I have checked and double checked that it is not in my /etc/rc.conf and
kernel config file.  So I don't know why it is loading:

...

sc0: System console at flags 0x100 on isa0

sc0: VGA 16 virtual consoles, flags=0x300

vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0

sio1: configured irq 3 not in bitmap of probed irqs 0

sio1: port may not be enabled

ugen0: ALCATEL Speed Touch USB, rev 1.10/0.00, addr 2

Timecounter TSC frequency 851935333 Hz quality 800

Timecounters tick every 10.000 msec

ipfw2 initialized, divert disabled, rule-based forwarding disabled, default
to deny, logging disabled

ad0: 9590MB HITACHI DK23BA-10/00E2A0D2 [19485/16/63] at ata0-master UDMA33

..

 

 

Also, the reason I recompiled was to enable apm for my laptop.  How can I
tell if this is working - I want to be able to turn the screen off and for
it to speedstep its cpu clock.

 

I'm a noob to *nix machines so try not to assume too much knowledge in
responses.

 

Thanks

 

Paul.

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


muse

2005-09-26 Thread Cristian Mijea
I am trying to broadcast live content captured via
a sound card.  And I tried to install MuSE, via ports. The system
fetched from ftp the dependencies, built them etc, and when it gets to
MuSE I receive an error. It's posted below, maybe someone is kind
enough to tell me what is wrong…..


make  all-recursive
Making all in po
Making all in intl
Making all in src
Making all in resample
Making all in shout
Making all in libmpeg
Making all in ncursesgui
Making all in libcdk
Making all in gtkgui2
if c++ -DHAVE_CONFIG_H -I. -I. -I.. -Ishout -I/usr/X11R6/include
-Incursesgui   -I/usr/local/include -DHAVE_DECL_GETOPT
-DHAVE_SYS_UIO_H  -O -pipe  -D_REENTRANT -MT pipe.o -MD -MP -MF
.deps/pipe.Tpo  -c -o pipe.o `test -f 'pipe.cpp' || echo
'./'`pipe.cpp;  then mv -f   .deps/pipe.Tpo .deps/pipe.Po;  else
rm -f .deps/pipe.Tpo; exit 1;  fi
pipe.cpp: In member function `int Pipe::read_float_intl(int, float*, int)':
pipe.cpp:122: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:124: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:150: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:151: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp: In member function `int Pipe::read_float_bidi(int, float**, int)':
pipe.cpp:228: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:230: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:257: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:258: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp: In member function `int Pipe::mix16stereo(int, int32_t*)':
pipe.cpp:313: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:315: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:328: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:329: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp: In member function `int Pipe::read(int, void*)':
pipe.cpp:376: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:378: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:385: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:386: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp: In member function `int Pipe::write(int, void*)':
pipe.cpp:422: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:426: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:433: error: ISO C++ forbids cast to non-reference type used as lvalue
pipe.cpp:434: error: ISO C++ forbids cast to non-reference type used as lvalue
*** Error code 1

Stop in /usr/ports/audio/muse/work/MuSE-0.9/src.
*** Error code 1

Stop in /usr/ports/audio/muse/work/MuSE-0.9/src.
*** Error code 1

Stop in /usr/ports/audio/muse/work/MuSE-0.9.
*** Error code 1

Stop in /usr/ports/audio/muse/work/MuSE-0.9.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: IPFW won't go away!

2005-09-26 Thread Ashley Moran

Paul wrote:

Hi,

I run ipf and ipnat.  Recently I recompiled the kernel and since then ipfw
loads at boot and blocks all my traffic.

How do I disable it permanently or uninstall it?

I have checked and double checked that it is not in my /etc/rc.conf and
kernel config file.  So I don't know why it is loading:


Thanks
Paul.


Paul - have you tried explicitly putting ipfw_enable=no in /etc/rc.conf ?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


FreeBSD 5.4 on HP ML370 G4

2005-09-26 Thread Davidson Thaba
Hi there,

I have been trying to setup FreeBSD 5.4 on a HP ML370 G4. The server has a
Smart Array 641 with raid 5 configuration. The installation goes on well but
the machine hungs on restart after completing the installation. Tried
firmware upgrade but this didn't help.

I have tested the installation on a HP ML350 with a similar RAID card and
this works fine. Anyone out there who has FreeBSD 5.4 running on am ML370
with a Smart Array 641 raid card?


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


Re: IPFW won't go away!

2005-09-26 Thread Ivailo Tanusheff
Just add:

options IPFIREWALL_DEFAULT_TO_ACCEPT

in your kernel configuration file. If you are using IPV6, also add:

options IPV6FIREWALL_DEFAULT_TO_ACCEPT

Ivailo Tanusheff
Senior System administrator
ProCredit Bank (Bulgaria) AD

tel. +359 2 921 7161
fax +359 2 921 7110
http://www.procreditbank.bg


Disclaimer: The information contained in this message is intended solely 
for the use of individual or entity to whom it is addressed and other 
authorized to receive it. It may contain confidential or legally 
privileged information. If you are not the intended recipient you are 
hereby notified that any disclosure, copying, distribution or taking any 
action in reliance on the contents of this message is strictly prohibited 
and may be unlawful. If you have received this communication in error, 
please notify us immediately by responding to this email and then delete 
it from your system. ProCredit Bank is neither liable for the proper and 
complete transmission of the information contained in this message nor for 
any delay in its receipt. 



Paul [EMAIL PROTECTED] 
Sent by: [EMAIL PROTECTED]
09/26/2005 03:02 PM

To
freebsd-questions@freebsd.org
cc

Subject
IPFW won't go away!






Hi,

 

I run ipf and ipnat.  Recently I recompiled the kernel and since then ipfw
loads at boot and blocks all my traffic.

 

How do I disable it permanently or uninstall it?

 

I have checked and double checked that it is not in my /etc/rc.conf and
kernel config file.  So I don't know why it is loading:

...

sc0: System console at flags 0x100 on isa0

sc0: VGA 16 virtual consoles, flags=0x300

vga0: Generic ISA VGA at port 0x3c0-0x3df iomem 0xa-0xb on isa0

sio1: configured irq 3 not in bitmap of probed irqs 0

sio1: port may not be enabled

ugen0: ALCATEL Speed Touch USB, rev 1.10/0.00, addr 2

Timecounter TSC frequency 851935333 Hz quality 800

Timecounters tick every 10.000 msec

ipfw2 initialized, divert disabled, rule-based forwarding disabled, 
default
to deny, logging disabled

ad0: 9590MB HITACHI DK23BA-10/00E2A0D2 [19485/16/63] at ata0-master 
UDMA33

..

 

 

Also, the reason I recompiled was to enable apm for my laptop.  How can I
tell if this is working - I want to be able to turn the screen off and for
it to speedstep its cpu clock.

 

I'm a noob to *nix machines so try not to assume too much knowledge in
responses.

 

Thanks

 

Paul.

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

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


sound in 5.4-RELEASE snd_ich.ko Interrupt storm

2005-09-26 Thread Matthias Apitz

Hello,

after loading 'sound.ko' and 'snd_ich.ko' in my i386 notebook with
5.4-RELEASE, GENERIC kernel and the following modules:

# kldstat
Id Refs AddressSize Name
 1   15 0xc040 5dde24   kernel
 21 0xc09de000 47e4 if_tap.ko
 31 0xc09e3000 d164 kqemu.ko
 4   14 0xc09f1000 56270acpi.ko
 51 0xc2784000 1c000ipl.ko
 61 0xc2867000 17000linux.ko
 72 0xc2ad2000 18000sound.ko
 91 0xc2b49000 17000radeon.ko
101 0xc2af1000 5000 snd_ich.ko

I detected that the box was running very slow and with high percentage
of interrupts; this is aparently caused by the 'snd_ich.ko' somehow
because during unload it says:

# kldunload snd_ich
Interrupt storm detected on irq11: cbb1 pcm0+++; throttling interrupt source
pcm0: detached

# kldload snd_ich
pcm0: SiS 7012 port 0x1800-0x187f,0x1c00-0x1cff irq 11 at device 2.7 on pci0
pcm0: Cirrus Logic CS4299 AC97 Codec

After 'kldunload snd_ich' and 'kldload snd_ich' sound works a while
but the Interrupt storm comes back after some time.

This problem looks similar to:
http://www.freebsd.org/cgi/query-pr.cgi?pr=80114

Is there some fix available?

Matthias
-- 
Matthias Apitz / Sisis Informationssysteme GmbH
Gruenwalder Weg 28g / D-82041 Oberhaching
Fon: ++49 89 / 61308-351, Fax: -399, Mobile ++49 170 4527211
http://www.sisis.de/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IPFW won't go away!

2005-09-26 Thread Paul
Hi,

 

Thanks for your responses so far. 

 

I have tried explicitly tried to disable it using: ipfw_enable=NO and
firewall_enable=NO in /etc/rc.conf

 

My kernel configuration file doesn't contain any IPFIREWALL options.  I did
try adding options IPFIREWALL_DEFAULT_TO_ACCEPT and recompiling/installing
but that didn't work.

 

Despite all of this it still loads up and by blocks everything! - this means
I have to type ipfw disable firewall at every boot.  I would prefer if it
wasn't there taking up cpu cycles.

 

HELP!

 

Paul

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


Console output disappears during startup/shutdown

2005-09-26 Thread Mark J. Sommer
I'm hoping someone can help me here.  I've searched archives, but I haven't 
see anyone with this exact problem.

I'm running 5.3 and for a very long time startup and shutdown were normal.  
Suddenly, it has changed so that as soon as it loads the kernel, the console 
output disappears.  I've tried booting to a serial console and get the exact 
problem there.  It's as though the device is not recognized.  This came to 
head last week when the system shutdown because of a power surge and it 
wanted to boot into single user mode for file system fixes.  Even blind, I 
could tell it wasn't accepting input from the keyboard (serial or via the 
PS/2 port).  I'm thinking its some sort of configuration of the loader, but I 
can't find it.  I have a custom kernel built with this config, in case that's 
the probem.  Any ideas about how to fix this would be greatly appreciated.

Thanks,

~Mark

kernel config file:
# LUZ -- LUZ kernel configuration file for FreeBSD/i386
#
# For more information on this file, please read the handbook section on
# Kernel Configuration Files:
#
#
http://www.FreeBSD.org/doc/en_US.ISO8859-1/books/handbook/kernelconfig-config.html
#
# The handbook is also available locally in /usr/share/doc/handbook
# if you've installed the doc distribution, otherwise always see the
# FreeBSD World Wide Web server (http://www.FreeBSD.org/) for the
# latest information.
#
# An exhaustive list of options and more detailed explanations of the
# device lines is also present in the ../../conf/NOTES and NOTES files.
# If you are in doubt as to the purpose or necessity of a line, check first
# in NOTES.
#
# $FreeBSD: src/sys/i386/conf/GENERIC,v 1.413.2.6.2.2 2004/10/24 18:02:52 
scottl Exp $

machine i386
cpu I486_CPU
cpu I586_CPU
cpu I686_CPU
ident   LUZ

# To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints # Default places to look for devices.

options SCHED_4BSD  # 4BSD scheduler
options INET# InterNETworking
#optionsINET6   # IPv6 communications protocols
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big directories
options MD_ROOT # MD is a potential root device
options NFSCLIENT   # Network Filesystem Client
options NFSSERVER   # Network Filesystem Server
options NFS_ROOT# NFS usable as /, requires NFSCLIENT
options MSDOSFS # MSDOS Filesystem
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Compatible with BSD 4.3 [KEEP THIS!]
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options SCSI_DELAY=1# Delay (in ms) before probing SCSI
options KTRACE  # ktrace(1) support
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time 
extensions
options COMPAT_LINUX
options LINPROCFS
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~215k to driver.
options ADAPTIVE_GIANT  # Giant mutex is adaptive.
options NETGRAPH_ECHO
options NETGRAPH#netgraph(4) system
options NETGRAPH_ASYNC
options NETGRAPH_BPF
options NETGRAPH_CISCO
options NETGRAPH_ECHO
options NETGRAPH_ETHER
options NETGRAPH_FRAME_RELAY
options NETGRAPH_HOLE
options NETGRAPH_IFACE
options NETGRAPH_KSOCKET
options NETGRAPH_LMI
# MPPC compression requires proprietary files (not included)
#optionsNETGRAPH_MPPC_COMPRESSION
options NETGRAPH_MPPC_ENCRYPTION
options NETGRAPH_ONE2MANY
options NETGRAPH_PPP
options NETGRAPH_PPPOE
options NETGRAPH_PPTPGRE
options NETGRAPH_RFC1490
options NETGRAPH_SOCKET
options NETGRAPH_TEE
options NETGRAPH_TTY
options NETGRAPH_UI
options NETGRAPH_VJC

help needed for ipfw rules

2005-09-26 Thread Ertan Kucukoglu

Hi,

I have a problem blocking foreign intruders for specific ports in ipfw.

One of my friends have 4.X-Stable running in production for proxy, 
e-mail, virus etc. Server also have natd and ipfw installed on it. We 
have following rule set.

-
00050 2132 1212881 divert 8668 ip from any to any via dc1
00100 1078 4537400 allow ip from any to any via lo0
002000   0 deny ip from any to 127.0.0.0/8
003000   0 deny ip from 127.0.0.0/8 to any
004000   0 allow tcp from 192.168.0.0/24 to me 23
005000   0 deny tcp from 192.168.0.69 to me 1863
005500   0 deny tcp from 192.168.0.63 to me 1863
006000   0 deny tcp from 192.168.0.69 to me 80
006500   0 deny tcp from 192.168.0.63 to me 80
010000   0 allow tcp from 192.168.0.0/16 to me 21
010100   0 deny tcp from any to me 21
011000   0 allow tcp from 212.58.X.X to me 1433 via dc1 (ip 
intentionally hided)

011100   0 deny tcp from any to me 1433 via dc1
65000 5467 3180867 allow ip from any to any
65535 4654  322885 deny ip from any to any
-

Natd is diverting port 1433 to an internal machine.

When I try with a different ip address on Internet than 212.58.x.x, and 
I can easily get connect to directed servers' 1433 port.


I'm sure that I'm missing something, but I can not recognize what it is 
at the moment. Any help will be appreciated.


Regards,

--
Ertan Küçükoğlu
[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: IPFW won't go away!

2005-09-26 Thread Bob Middaugh
Hi Paul,
How about posting your rc.conf and kernel config file.  You didn't
happen to change the ipfw options in /etc/defaults/rc.conf, and maybe
forgot?

Bob 



 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of Paul
 Sent: Monday, September 26, 2005 10:01 AM
 To: freebsd-questions@freebsd.org
 Subject: Re: IPFW won't go away!
 
 Hi,
 
  
 
 Thanks for your responses so far. 
 
  
 
 I have tried explicitly tried to disable it using: 
 ipfw_enable=NO and firewall_enable=NO in /etc/rc.conf
 
  
 
 My kernel configuration file doesn't contain any IPFIREWALL 
 options.  I did try adding options 
 IPFIREWALL_DEFAULT_TO_ACCEPT and recompiling/installing but 
 that didn't work.
 
  
 
 Despite all of this it still loads up and by blocks 
 everything! - this means I have to type ipfw disable 
 firewall at every boot.  I would prefer if it wasn't there 
 taking up cpu cycles.
 
  
 
 HELP!
 
  
 
 Paul
 
 ___
 freebsd-questions@freebsd.org mailing list 
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]

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


PHP4 PHP5 on same server?

2005-09-26 Thread Mark Bucciarelli
Is it possible install both php4 and php5 on the same server using
ports?

I'm using fastcgi so two different interpreters should be fine.  (Rename 
/usr/local/bin/php to /usr/local/bin/php5-fcgi, for example.)

Can I assume the php4 and php5 modules (for example, pear) won't step on
each other's toes?

I google around but didn't find much on this topic ... :(

m

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


Re: muse

2005-09-26 Thread Mike Hernandez
On 9/26/05, Cristian Mijea [EMAIL PROTECTED] wrote:
 I am trying to broadcast live content captured via
 a sound card.  And I tried to install MuSE, via ports.

Can Muse actually do that sort of thing? I thought it was just a
sequencer? I use darkice + shoutcast server to stream content from my
dj equipment... maybe that will work for you.


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


Re: Dual boot solution

2005-09-26 Thread K Wieland

I haven't done enough installations recently to answer.  Are you
saying that if you leave the fdisk screen with no primary partition
marked active or with the MSFT one marked active, then it switches
it to the soon-to-be-FreeBSD one?

One of the installer's help files says:

If no slice is marked Active, you will need to either install a
Boot Manager (the option for which will be presented later in the
installation) or set one Active before leaving this screen.


This was my experience.  I didn't set either of them active (even 
though the windows partition was active prior to running fdisk) and it 
defaulted to setting the BSD partition active.





Why couldn't sysinstall set the active bit to the other partition?


It could, but that wouldn't always be a good choice, would it?  IMO,
if any are already set active, it should leave them alone and not set
any others; else, set active the primary partition of the soon-to-be
FreeBSD root file system.


After I realized that something wasn't right, I tried to run sysinstall 
to set the windows partion as the active partition (which worked when I 
was installing 5.4).  In the fdisk screen in sysinstall, when I tried 
to write the changes (make the windows partition active) it would give 
me an error.  Is this something you can only do on installs, not after 
the fact?


I just submitted a PR, I'll CC you when it is processed.

Thanks for your help.

Kristopher

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


SCSI Tape Problems

2005-09-26 Thread Adam Bayless

I have this:


sa0 at ahc0 bus 0 target 3 lun 0
sa0: HP C1537A L708 Removable Sequential Access SCSI-2 device 


Connected to this:

ahc0: Adaptec 2940 Ultra SCSI adapter port 0xd000-0xd0ff mem 
0xe9511000-0xe9511fff irq 18 at device 10.0 on pci0 aic7880: Ultra

Wide Channel A, SCSI Id=7, 16/253 SCBs


Running on this:


FreeBSD 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May  8 10:21:06 UTC 2005 [EMAIL 
PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386


When I try to write to it with amanda I get this in dmesg:


ahc0: Recovery Initiated

Dump Card State Begins 

ahc0: Dumping Card State while idle, at SEQADDR 0x7
Card was paused
ACCUM = 0x4a, SINDEX = 0x37, DINDEX = 0x24, ARG_2 = 0x3
HCNT = 0x0 SCBPTR = 0x0
SCSISIGI[0x0] ERROR[0x0] SCSIBUSL[0x0] LASTPHASE[0x1]:(P_BUSFREE) 
SCSISEQ[0x12]:(ENAUTOATNP|ENRSELI) SBLKCTL[0x2]:(SELWIDE) 
SCSIRATE[0x0] SEQCTL[0x10]:(FASTMODE) SEQ_FLAGS[0xc0]:(NO_CDB_SENT|NOT_IDENTIFIED) 
SSTAT0[0x5]:(DMADONE|SDONE) SSTAT1[0xa]:(PHASECHG|BUSFREE) 
SSTAT2[0x0] SSTAT3[0x0] SIMODE0[0x0] SIMODE1[0xa4]:(ENSCSIPERR|ENSCSIRST|ENSELTIMO) 
SXFRCTL0[0x80]:(DFON) DFCNTRL[0x0] DFSTATUS[0x2d]:(FIFOEMP|DFTHRESH|HDONE|FIFOQWDEMP) 
STACK: 0x0 0x16a 0x19a 0x3

SCB count = 20
Kernel NEXTQSCB = 6
Card NEXTQSCB = 6
QINFIFO entries: 
Waiting Queue entries: 
Disconnected Queue entries: 0:14 
QOUTFIFO entries: 
Sequencer Free SCB List: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 
Sequencer SCB Info: 
  0 SCB_CONTROL[0x44]:(DISCONNECTED|DISCENB) SCB_SCSIID[0x37] 
SCB_LUN[0x0] SCB_TAG[0xe] 
  1 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  2 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  3 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  4 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  5 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  6 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  7 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  8 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  9 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
 10 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
 11 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
 12 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
 13 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
 14 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
 15 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
Pending list: 
 14 SCB_CONTROL[0x40]:(DISCENB) SCB_SCSIID[0x37] SCB_LUN[0x0] 
Kernel Free SCB list: 5 15 16 17 18 19 0 1 2 3 4 7 8 9 13 12 11 10 
Untagged Q(3): 14 


 Dump Card State Ends 
(sa0:ahc0:0:3:0): SCB 0xe - timed out
sg[0] - Addr 0xa30a000 : Length 4096
sg[1] - Addr 0xa8ab000 : Length 4096
sg[2] - Addr 0xa10c000 : Length 4096
sg[3] - Addr 0x9e8d000 : Length 4096
sg[4] - Addr 0x9d0e000 : Length 4096
sg[5] - Addr 0xa3cf000 : Length 4096
sg[6] - Addr 0xa17 : Length 4096
sg[7] - Addr 0xa3f1000 : Length 4096
(sa0:ahc0:0:3:0): Queuing a BDR SCB
ahc0: Timedout SCBs already complete. Interrupts may not be functioning.
(sa0:ahc0:0:3:0): Bus Device Reset Message Sent
(sa0:ahc0:0:3:0): no longer in timeout, status = 24b
ahc0: Bus Device Reset on A:3. 1 SCBs aborted
(sa0:ahc0:0:3:0): WRITE FILEMARKS. CDB: 10 0 0 0 2 0 
(sa0:ahc0:0:3:0): CAM Status: SCSI Status Error

(sa0:ahc0:0:3:0): SCSI Status: Check Condition
(sa0:ahc0:0:3:0): UNIT ATTENTION asc:29,0
(sa0:ahc0:0:3:0): Power on, reset, or bus device reset occurred
(sa0:ahc0:0:3:0): Unretryable error
(sa0:ahc0:0:3:0): failed to write terminating filemark(s)


I have no clue what that all this is supposed to be indicating to me.
This same drive worked fine under BSD/OS 4.something. I installed 
FreeBSD on the machine just a couple days ago and have been getting this 
result since then.


Sorry for my cluelessness! Hope someone can help.

Thanks,

Adam



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


Re: muse

2005-09-26 Thread Mark Kane

Mike Hernandez wrote:

On 9/26/05, Cristian Mijea [EMAIL PROTECTED] wrote:


I am trying to broadcast live content captured via
a sound card.  And I tried to install MuSE, via ports.



Can Muse actually do that sort of thing? I thought it was just a
sequencer? I use darkice + shoutcast server to stream content from my
dj equipment... maybe that will work for you.


I'm not sure why it won't compile, but I just wanted to say that MuSE 
and MusE are different things.


MusE is the sequencer you are thinking of. MuSE is a Multiple Streaming 
Engine, which outputs to SHOUT/Icecast servers. I use MuSE (command 
line part) for all my live streaming and it works great.


I hope a solution comes along for your compiling problem. :)

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


Re: Fw: Re: Fw: muse

2005-09-26 Thread Cristian Mijea
Tks, Albi for the reply, I will try it as soon as I'll have a little
free time and will tell you how it went.

And Mark, yes I know (first I did compile muse not MuSE and found out
that it's something else :) ). Hopefully I got it right this time and
I will also use the command line to stream to icecast.

Cristian

On 9/26/05, albi [EMAIL PROTECTED] wrote:

 hi,
 see below :

 Begin forwarded message:

 Date: Mon, 26 Sep 2005 14:48:26 +0200
 From: jaromil [EMAIL PROTECTED]
 To: albi [EMAIL PROTECTED]
 Subject: Re: Fw: muse


 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 On Mon, Sep 26, 2005 at 12:33:40PM +0200, albi wrote:
 
 
  Begin forwarded message:
 
  Date: Mon, 26 Sep 2005 15:09:02 +0300
  From: Cristian Mijea [EMAIL PROTECTED]
  To: freebsd-questions@freebsd.org
  Subject: muse
 
 
  I am trying to broadcast live content captured via
  a sound card.  And I tried to install MuSE, via ports. The system
  fetched from ftp the dependencies, built them etc, and when it gets to
  MuSE I receive an error. It's posted below, maybe someone is kind
  enough to tell me what is wrong???..

 have a look at this changeset i committed this summer
 http://devel.rastasoft.org/trac.cgi/changeset/452
 there is fix the problem. BTW some more fixes followed so they should
 update to the latest pipe.cpp code.

 i wouldn't suggest to update all muse to the current development version
 because the GTK2 GUI is broken ATM (seek doesn't works), just pipe.cpp

 i wish i find the time for a new release...

 thanks for connecting ppl :)
 ciao

 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.1 (GNU/Linux)
 Comment: Cryptographically signed mail, see http://gnupg.org

 iD8DBQFDN+4ZWLCC1ltubZcRAoWeAJ95mKVBqJRjPXuR5HhltYb4cpz8AgCfSZfg
 vEQzt+z2+pGA/F+N0lGTyXw=
 =MwDC
 -END PGP SIGNATURE-



 --
 grtjs, albi
 gpg-key: lynx -dump http://scii.nl/~albi/gpg.asc | gpg --import

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


boot on CD?

2005-09-26 Thread Michael W. Holdeman
OK so my proliant 3000 server will not boot to the ide HD that I have 
successfully loaded FreeBSD 6 beta on 3 times. So what if (and most 
improtantly HOW) I create a CD with the / and /etc on it that would get the 
kernel, and the config files from /etc, then once the kernel finds the ide 
hd, the /usr and /home could stay on teh HD?

Does this make any sense? I just want to boot the 3000 far enough for it to 
recognize the ide HD and then switch to it for the rest. And it does find it 
when it shows the drives during the boot sequence with the install CD in.

Mike
-- 
 
Michael W. Holdeman



Powered by Gentoo Linux www.gentoo.org  |
Kernel 2.6.11-ck8   |
Win4Lin 5-1-20 netraverse.com   |
Win4LinPro 6.1.1-03 win4lin.com |
|
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Compatibility with Dell PowerEdge 2600 Servers

2005-09-26 Thread jhawes
Quick question I have basically have an extra server running MS 2000 
serving one program and I would like to utilize this sever with more rolls 
and eliminate the use of MS products but before I go to a full out BSD 
Server I need to know about the RAID compatibility and will it be an issue 
recognizing the SCSI drive (3 to the RAID set).

Jason Hawes
Network Administrator
Sarnia-Lambton Children's Aid Society
Phone: (519) 336-0623 x253
Fax: (519) 336-7541
This e-mail is confidential. If you are not the intended recipient, please 
notify the sender by return e-mail and delete this message and any copies.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: Compatibility with Dell PowerEdge 2600 Servers

2005-09-26 Thread Bob Middaugh
Hi Jason,
I have a 2550 with Perc 3/DI card and I boot from CD, it freezes after
detecting 2nd RAID 5 container.  I know FreeBSD runs on Poweredge
servers, lots of people do.  If I remember correctly, one of the main
developers uses a 2650 or 2850 for dev work.  I'm going to try
changing the BIOS option for OS Install from off to on, and see if
that helps - even though it just limits the amt of available RAM in
the box to 256MB, afaik.  There's also a setting in the SCSI config
that relates to windows, I forget exactly off the top of my head.
Basically the gist of it is that you turn it off if you're planning to
run and OS other than windows.  I'm hoping to mess with this later
today.

Bob

 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 [EMAIL PROTECTED]
 Sent: Monday, September 26, 2005 11:11 AM
 To: freebsd-questions@FreeBSD.org
 Subject: Compatibility with Dell PowerEdge 2600 Servers
 
 Quick question I have basically have an extra server running 
 MS 2000 serving one program and I would like to utilize this 
 sever with more rolls and eliminate the use of MS products 
 but before I go to a full out BSD Server I need to know about 
 the RAID compatibility and will it be an issue recognizing 
 the SCSI drive (3 to the RAID set).
 
 Jason Hawes
 Network Administrator
 Sarnia-Lambton Children's Aid Society
 Phone: (519) 336-0623 x253
 Fax: (519) 336-7541
 This e-mail is confidential. If you are not the intended 
 recipient, please notify the sender by return e-mail and 
 delete this message and any copies.
 ___
 freebsd-questions@freebsd.org mailing list 
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to 
 [EMAIL PROTECTED]

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


PF default to deny

2005-09-26 Thread Matt Juszczak

hi all,

I have a firewall on my FreeBSD machine.  Someone must have taken it 
down for testing or something because I just checked today, and realized 
that it was disabled.


Checking the auth logs, attempts to login from overseas IP's, etc. have 
been occuring for at least a week.


Two quick questions:

1)  SSH, SMUX, CVSPSERVER, and MYSQL were open to the world for about a 
week. I've checked through the auth.log file, done a chkrootkit, 
checked lastlogin, etc nothing seems out of the ordinary other than 
unsuccessful attempts at random usernames, etc.  Does anyone have any 
other ideas on what I can check?


2) Is there a way to set pf to default to deny?  That way, if I disable 
it for testing, it wont kick my existing SSH session out (I'll have keep 
state set), but it will DENY any new connections.  I'd rather have to go 
to the colo place cause I messed up then get something hacked because I 
messed up.



Thanks!

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


RE: IPFW won't go away!

2005-09-26 Thread Paul
Had a look in /etc/defaults/rc.conf and it was defaulted to NO.

-My kernel config:-

machine i386
cpu I686_CPU
ident   ATLANTIS

# To statically compile in device wiring instead of /boot/device.hints
#hints  GENERIC.hints # Default places to look for
devices.

options SCHED_4BSD  # 4BSD scheduler
options INET# InterNETworking
options INET6   # IPv6 communications protocols
options FFS # Berkeley Fast Filesystem
options SOFTUPDATES # Enable FFS soft updates support
options UFS_ACL # Support for access control lists
options UFS_DIRHASH # Improve performance on big
directories
options MD_ROOT # MD is a potential root device
options NFSCLIENT   # Network Filesystem Client
options NFSSERVER   # Network Filesystem Server
options NFS_ROOT# NFS usable as /, requires
NFSCLIENT
options MSDOSFS # MSDOS Filesystem
options CD9660  # ISO 9660 Filesystem
options PROCFS  # Process filesystem (requires
PSEUDOFS)
options PSEUDOFS# Pseudo-filesystem framework
options GEOM_GPT# GUID Partition Tables.
options COMPAT_43   # Compatible with BSD 4.3 [KEEP
THIS!]
options COMPAT_FREEBSD4 # Compatible with FreeBSD4
options SCSI_DELAY=15000# Delay (in ms) before probing SCSI
options KTRACE  # ktrace(1) support
options SYSVSHM # SYSV-style shared memory
options SYSVMSG # SYSV-style message queues
options SYSVSEM # SYSV-style semaphores
options _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time
extensions
options KBD_INSTALL_CDEV# install a CDEV entry in /dev
options AHC_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~128k to driver.
options AHD_REG_PRETTY_PRINT# Print register bitfields in debug
# output.  Adds ~215k to driver.
options ADAPTIVE_GIANT  # Giant mutex is adaptive.
options IPFIREWALL_DEFAULT_TO_ACCEPT

device  apic# I/O APIC

# Bus support.  Do not remove isa, even if you have no isa slots
device  isa
device  eisa
device  pci

# Floppy drives
device  fdc

# ATA and ATAPI devices
device  ata
device  atadisk # ATA disk drives
device  ataraid # ATA RAID drives
device  atapicd # ATAPI CDROM drives
device  atapifd # ATAPI floppy drives
options ATA_STATIC_ID   # Static device numbering

# atkbdc0 controls both the keyboard and the PS/2 mouse
device  atkbdc  # AT keyboard controller
device  atkbd   # AT keyboard
device  psm # PS/2 mouse

device  vga # VGA video card driver

device  splash  # Splash screen and screen saver support

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

# Enable this for the pcvt (VT220 compatible) console driver
#device vt
#optionsXSERVER # support for X server on a vt console
#optionsFAT_CURSOR  # start with block cursor

device  agp # support several AGP chipsets

# Floating point support - do not disable.
device  npx

# Power management support (see NOTES for more options)
device  apm
# Add suspend/resume support for the i8254.
device  pmtimer

# Serial (COM) ports
device  sio # 8250, 16[45]50 based serial ports

# Parallel port
device  ppc
device  ppbus   # Parallel port bus (required)
device  lpt # Printer
device  plip# TCP/IP over parallel
device  ppi # Parallel port interface device
#device vpo # Requires scbus and da
# If you've got a dumb serial or parallel PCI card that is
# supported by the puc(4) glue driver, uncomment the following
# line to enable it (connects to the sio and/or ppc drivers):
#device puc

# PCI Ethernet NICs.
device  de  # DEC/Intel DC21x4x (``Tulip'')
device  em  # Intel PRO/1000 adapter Gigabit Ethernet
Card
device  ixgb# Intel PRO/10GbE Ethernet Card
device  txp # 3Com 3cR990 (``Typhoon'')
device  vx  # 3Com 3c590, 3c595 (``Vortex'')

# PCI Ethernet NICs that use the common MII bus controller code.
# NOTE: Be sure to keep the 'device miibus' line 

vqadmin

2005-09-26 Thread tethys ocean
I want setup vqadmin-2.3.6. FreeBSD 5.4 and qmail-1.03_4 and
qmailadmin-1.2.7,1 apache+mod_ssl-1.3.33+2.8.22 mysql-server-4.0.24_1 is
running on my system. Install vqadmin from ports and than setting up depens
on http://freebsd.qmailrocks.org/vqadmin.htm but it is not running

installaion by using port with setted up make
enable-cgibindir=/usr/local/www/cgi-bin enable-htmldir=/usr/local/www/data
install clean

my www directory contains these directory and files
bash-2.05b# ls -als
total 20
2 drwxr-xr-x 9 root wheel 512 Jul 1 21:05 .
2 drwxr-xr-x 15 root wheel 512 Jul 1 20:07 ..
2 drwxr-xr-x 3 root wheel 512 Jul 1 20:21 cgi
2 drwxr-xr-x 5 vpopmail vchkpw 512 Sep 25 14:56 cgi-bin
2 drwxr-xr-x 3 root wheel 512 Sep 25 14:51 cgi-bin-dist
2 drwxr-xr-x 6 root wheel 512 Sep 25 15:28 data
2 drwxr-xr-x 3 root wheel 1024 Sep 25 14:51 data-dist
4 drwxr-xr-x 3 root wheel 3584 Jul 1 21:05 icons
2 drwxr-xr-x 2 www www 512 Jul 1 21:05 proxy
bash-2.05b#


bash-2.05b# ls -als cgi-bin
total 10
2 drwxr-xr-x 5 vpopmail vchkpw 512 Sep 25 14:56 .
2 drwxr-xr-x 9 root wheel 512 Jul 1 21:05 ..
2 drwxr-xr-x 2 root wheel 512 Jul 1 20:21 qmailadmin
2 drwxr-xr-x 2 root wheel 512 Jul 1 20:36 sqwebmail
2 drwxr-xr-x 3 vpopmail vchkpw 512 Sep 25 14:51 vqadmin
bash-2.05b#

My httpd.conf is

VirtualHost mydomain.com http://mydomain.com
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /usr/local/www/cgi-bin/vqadmin
ServerName mydomain.com http://mydomain.com
#ServerAlias mydomain.com http://mydomain.com
ScriptAlias /cgi-bin /usr/local/www/cgi-bin
/VirtualHost


.htaccess is

AuthType Basic
AuthUserFile /usr/local/etc/apache/.htpasswd
AuthName vQadmin
require valid-user
satisfy any


but when *http://www.mydomain.com/cgi-bin/vqadmin/vqadmin.cgi*

 *Authentication Failed Username unknown*

*vQadmin was unable to determine your username, which
means your webserver is improperly configured to run
with this CGI.  For security reasons, this script
will not run without Apache htaccess lists.

vqadmin http://www.inter7.com/vqadmin/ 2.3.6

vpopmail http://www.inter7.com/vpopmail/ 5.4.10*



How I can get vqadmin management page?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: IPFW won't go away!

2005-09-26 Thread Tofik Suleymanov

Paul wrote:


Had a look in /etc/defaults/rc.conf and it was defaulted to NO.
 


Could you please post your  /boot/loader.conf  ?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: IPFW won't go away!

2005-09-26 Thread Dave McCammon
Did you install the kernel after building? At least
the one without the IPFIREWALL* option?
(in /usr/src)
make buildkernel KERNCONF=MYKERNEL
make installkernel KERNCONF=MYKERNEL

Also check /boot/loader.conf for ipfw_load=YES
and make sure /boot/defaults/loader.conf says
ipfw_load=NO.



__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


X.org/i845 refuses to set an resolution ex. default

2005-09-26 Thread Kyryll A Mirnenko aka Mirya
Got a problem while setting up a new freebsd box. Got similar configuration in 
linux box running nearby w/o problems. Here it is (an extract, full 
attached):

Section Module
Loaddbe
Loadtype1
Loadspeedo
Loadfreetype
Load   glx
Load   dri
EndSection

Section Extensions
Option Composite Enable
EndSection

Section Device
Identifier  Primary Card
VendorName  Unknown
BoardName   Intel 845
Driver i810
EndSection

Section Screen
Identifier  Primary Screen
Device  Primary Card
Monitor Primary Monitor
DefaultDepth 16

Subsection Display
Depth   8
Modes   1280x1024 1152x864 1024x768 800x600 720x576 
720x480 640x480 640x400 512x384 480x300 400x300 320x240 
320x200 
ViewPort0 0
Virtual 0 0
EndSubsection
Subsection Display
Depth   16
Modes   1280x1024 1152x864 1024x768 800x600 720x576 
720x480 640x480 640x400 512x384 480x300 400x300 320x240 
320x200 
ViewPort0 0
Virtual 0 0
EndSubsection
Subsection Display
Depth   24
Modes   1024x768 800x600 720x576 720x480 640x480 
640x400 512x384 480x300 400x300 320x240 320x200 
ViewPort0 0
Virtual 0 0
EndSubsection
EndSection

And here comes the X.org log (extract):
[ ... some more useful modes ... ]
Mode: 58 (1280x1024)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005b77
BytesPerScanline: 5120
XResolution: 1280
YResolution: 1024
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf000
LinBytesPerScanLine: 5120
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 23000
Mode: 5a (1600x1200)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005b77
BytesPerScanline: 6400
XResolution: 1600
YResolution: 1200
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf000
LinBytesPerScanLine: 6400
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 23000
Mode: 5c (1920x1440)
ModeAttributes: 0x9a
WinAAttributes: 0x7
WinBAttributes: 0x0
WinGranularity: 64
WinSize: 64
WinASegment: 0xa000
WinBSegment: 0x0
WinFuncPtr: 0xc0005b77
BytesPerScanline: 7680
XResolution: 1920
YResolution: 1440
XCharSize: 8
YCharSize: 16
NumberOfPlanes: 1
BitsPerPixel: 32
NumberOfBanks: 1
MemoryModel: 6
BankSize: 0
NumberOfImages: 0
RedMaskSize: 8
RedFieldPosition: 16
GreenMaskSize: 8
GreenFieldPosition: 8
BlueMaskSize: 8
BlueFieldPosition: 0
RsvdMaskSize: 8
RsvdFieldPosition: 24
DirectColorModeInfo: 0
PhysBasePtr: 0xf000
LinBytesPerScanLine: 7680
BnkNumberOfImagePages: 0
LinNumberOfImagePages: 0
LinRedMaskSize: 8
LinRedFieldPosition: 16
LinGreenMaskSize: 8
LinGreenFieldPosition: 8
LinBlueMaskSize: 8
LinBlueFieldPosition: 0
LinRsvdMaskSize: 8
LinRsvdFieldPosition: 24
MaxPixelClock: 23000
(II) I810(0): Primary Monitor: Using hsync range of 30.00-85.00 kHz
(II) I810(0): Primary Monitor: Using 

Re: Monitoring network connections recomendations please

2005-09-26 Thread vladone
Ntop, traffic, bwm-ng. U can find more in ports at /net/ location.

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


RE: can not mount a large FAT32 filesystem

2005-09-26 Thread Gayn Winters
 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Mikhail Teterin
 Sent: Sunday, September 25, 2005 5:54 PM
 To: [EMAIL PROTECTED]
 Subject: can not mount a large FAT32 filesystem
 
 
 Hello!
 
 I have a 4Gb flash-card with FAT32 filesystem. Whenever I try to mount
 it (on 5.x and 4.x) I get:
 
   msdos: /dev/da0s1: Invalid argument
 
 and the kernel complains:
 
   da0: reading primary partition table: error reading fsbn 0
   mountmsdosfs(): bad FAT32 filesystem
 
 The method works with smaller cards in the same card-reader. This card
 works fine inside the camera, and I can get the pictures via. PTP
 protocol using gphoto.
 
 Fdisk da0 says:
 
   *** Working on device /dev/da0 ***
   parameters extracted from in-core disklabel are:
   cylinders=7936 heads=16 sectors/track=63 (1008 blks/cyl)
 
   Figures below won't work with BIOS for partitions not in cyl 1
   parameters to be used for BIOS calculations are:
   cylinders=7936 heads=16 sectors/track=63 (1008 blks/cyl)
 
   Media sector size is 512
   Warning: BIOS sector numbering starts with sector 1
   Information from DOS bootblock is:
   The data for partition 1 is:
   sysid 12,(DOS or Windows 95 with 32 bit FAT, LBA)
   start 63, size 7998417 (3905 Meg), flag 80 (active)
   beg: cyl 0/ head 1/ sector 1;
   end: cyl 766/ head 15/ sector 63
   The data for partition 2 is:
   UNUSED
   The data for partition 3 is:
   UNUSED
   The data for partition 4 is:
   UNUSED
 
 Disklabel da0 says:
 
   # /dev/da0:
   type: SCSI
   disk: SanDisk 
   label: ImageMate II
   flags:
   bytes/sector: 512
   sectors/track: 63
   tracks/cylinder: 16
   sectors/cylinder: 1008
   cylinders: 7936
   sectors/unit: 7999489
   rpm: 3600
   interleave: 1
   trackskew: 0
   cylinderskew: 0
   headswitch: 0   # milliseconds
   track-to-track seek: 0  # milliseconds
   drivedata: 0 
 
   8 partitions:
   #size   offsetfstype   [fsize bsize bps/cpg]
 c:  79994890unused0 0 
 # (Cyl.0 - 7936*)

Perhaps someone else can help sort this out better than I can, but I do
note that fdisk doesn't seem to be using the last (logical) cylinder,
because it reports using 7998417 + 63 = 7998480 sectors which is exactly
1008 sectors less than 7936 cylinders * 1008 sectors/cylinder = 7999488
sectors.  (Why disklabel reports one more sector 7999489 is a mystery to
me.)

Assuming your BIOS supports LBA, you could try (back up first of course)
using fdisk to rewrite the label, or use fdisk to use all the logical
cylinders on the card.  Also, since you are not trying to boot from the
card, having it marked Active is unnecessary at best.

Good luck,

-gayn


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


RE: boot on CD?

2005-09-26 Thread Gayn Winters
 -Original Message-
 From: [EMAIL PROTECTED] 
 [mailto:[EMAIL PROTECTED] On Behalf Of 
 Michael W. Holdeman
 Sent: Monday, September 26, 2005 7:45 AM
 To: freebsd-questions@freebsd.org
 Subject: boot on CD?
 
 
 OK so my proliant 3000 server will not boot to the ide HD that I have 
 successfully loaded FreeBSD 6 beta on 3 times. So what if (and most 
 improtantly HOW) I create a CD with the / and /etc on it that 
 would get the 
 kernel, and the config files from /etc, then once the kernel 
 finds the ide 
 hd, the /usr and /home could stay on teh HD?
 
 Does this make any sense? I just want to boot the 3000 far 
 enough for it to 
 recognize the ide HD and then switch to it for the rest. And 
 it does find it 
 when it shows the drives during the boot sequence with the 
 install CD in.
 
 Mike

While there are many notes on creating your own distribution disk, it is
probably easier just to figure out why you can't boot from the HDD.  How
about giving us both a dmesg and an fdisk report?

-gayn


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


Re: PF default to deny

2005-09-26 Thread Peter N. M. Hansteen
Matt Juszczak [EMAIL PROTECTED] writes:

 2) Is there a way to set pf to default to deny?  

block all as your first filtering rule, followed by explicit pass
rules for the stuff you want to pass.

I thought most of the howtoish docs out there recommended that approach,
but here at least is one that does - http://www.bgnett.no/~peter/pf/

-- 
Peter N. M. Hansteen, member of the first RFC 1149 implementation team
http://www.blug.linux.no/rfc1149/ http://www.datadok.no/ http://www.nuug.no/
First, we kill all the spammers The Usenet Bard, Twice-forwarded tales

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


For administrators setting-up pf

2005-09-26 Thread Carstea Catalin
i want to setting up my firewall pf with some rules to do 2 conditions:
Deny all except:
2. permit only for 3 users access to pop3 ( ex.: nat only for 3 users
and only for pop3)
3. redirect all port  to 8080 for all users. I use proxy for cache and
log traffic.
.
--
Any help would be greatly appreciated.
regards,
Carstea Catalin
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Imap + php

2005-09-26 Thread Pierre
Hello,
 I type make bsf SSLTYPE=none and at the end I have error code 1 in 
/usr/local/directadmin/customapache/imap-2004c1/c-client

Someone can help me?
thanks 
Pierre

No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.6/111 - Release Date: 23/09/2005
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

RE: IPFW won't go away! - Solved!

2005-09-26 Thread Paul

Thanks Tofik and Dave.  It was in /boot/loader.conf


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tofik Suleymanov
Sent: 26 September 2005 17:45
To: Paul
Cc: freebsd-questions@freebsd.org
Subject: Re: IPFW won't go away!

Paul wrote:

Had a look in /etc/defaults/rc.conf and it was defaulted to NO.
  

Could you please post your  /boot/loader.conf  ?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

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


5.4 + GVINUM + RAID5 = Good?

2005-09-26 Thread Gadi Golan
Greetings,
I was curious to see whether or not GVINUM was stable enough and full
featured enough to reliabily support a RAID5.  I installed a 5.4
system and was supprised to find that VINUM was no longer supported
and that GVINUM was missing some of the basic features I was used to
in VINUM.  Specifically I was used to being required to INIT a new
RAID5 system, but GVINUM doesnt seem to support INIT yet.  Is there
any workaround for this.  Does anyone know a consistent, reasonable,
and reliable way of using GVINUM to get a RAID5 system going on 5.4?

I fully understand the limitations and complications behind using
software to do a RAID5 but I promise that for my purposes I only need
to have something that works reliabily (I dont want to loose my data)
and I want it to be cheap.  VINUM was the perfect solution in the
past, it worked fine even if it was hard to use.  Can GVINUM fill the
gap in the post-VINUM world?

Thanks for your help and thoughts,

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


Re: Configuring sound

2005-09-26 Thread Michał Masłowski
 maybe you should change rec's value to something bigger..

But it said that the recording source is mic.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


hint.apic.0.disabled

2005-09-26 Thread Omer Faruk Sen
Hi, 

It seems that there is a conflict in manual pages. Or I am missing 
something. In manual page of loader.conf it is stated to add 
hint.apic.0.disabled=1 to disable acpi totally. But also in device.hints 
manual page it is stated to add hint.apic.0.disabled=1 line to disable 
acpi. Which one is the true one? To add to device.hints or loader.conf file. 

Best Regards. 


---
Omer Faruk Sen
http://www.EnderUNIX.ORG
Software Development Team @ Turkey
http://www.Faruk.NET
For Public key: http://www.enderunix.org/ofsen/ofsen.asc
 



First Turkish Qmail book is out! Go check it.
Duydunuz mu! Turkiye'nin ilk Qmail kitabi cikti.
http://www.acikakademi.com/catalog/qmail/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: hint.apic.0.disabled

2005-09-26 Thread Tom Norris

Omer Faruk Sen wrote:
line to disable acpi. Which one is the true one? To add to device.hints 
or loader.conf file.


You could always do it to both and see if anything breaks.

Sorry I don't have a more insightful comment :(

-- Tom

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


Re: Configuring sound

2005-09-26 Thread jonas
On Mon, 26 Sep 2005 20:15:12 +0200
Micha__ Mas__owski [EMAIL PROTECTED] wrote:

  maybe you should change rec's value to something bigger..
 
 But it said that the recording source is mic.

hmm. maybe rec is some kind of 'master-control' for all recording
sources. 
btw. you forgot to tell us if you tried to change it and if that
worked...
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: SCSI Tape Problems

2005-09-26 Thread Ted Mittelstaedt

Adam,

  at the command line, type man send-pr and follow the
instructions.  This list isn't the place for submitting
bugs in FreeBSD.

Ted

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Adam Bayless
Sent: Monday, September 26, 2005 8:03 AM
To: Free BSD Questions list
Subject: SCSI Tape Problems


I have this:

 sa0 at ahc0 bus 0 target 3 lun 0
 sa0: HP C1537A L708 Removable Sequential Access SCSI-2 device 

Connected to this:

 ahc0: Adaptec 2940 Ultra SCSI adapter port 0xd000-0xd0ff mem 
 0xe9511000-0xe9511fff irq 18 at device 10.0 on pci0 aic7880: Ultra
 Wide Channel A, SCSI Id=7, 16/253 SCBs

Running on this:

 FreeBSD 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May  8 
10:21:06 UTC 2005 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC  i386

When I try to write to it with amanda I get this in dmesg:

 ahc0: Recovery Initiated
 Dump Card State Begins 
 ahc0: Dumping Card State while idle, at SEQADDR 0x7
 Card was paused
 ACCUM = 0x4a, SINDEX = 0x37, DINDEX = 0x24, ARG_2 = 0x3
 HCNT = 0x0 SCBPTR = 0x0
 SCSISIGI[0x0] ERROR[0x0] SCSIBUSL[0x0] LASTPHASE[0x1]:(P_BUSFREE) 
 SCSISEQ[0x12]:(ENAUTOATNP|ENRSELI) SBLKCTL[0x2]:(SELWIDE) 
 SCSIRATE[0x0] SEQCTL[0x10]:(FASTMODE) 
SEQ_FLAGS[0xc0]:(NO_CDB_SENT|NOT_IDENTIFIED) 
 SSTAT0[0x5]:(DMADONE|SDONE) SSTAT1[0xa]:(PHASECHG|BUSFREE) 
 SSTAT2[0x0] SSTAT3[0x0] SIMODE0[0x0] 
SIMODE1[0xa4]:(ENSCSIPERR|ENSCSIRST|ENSELTIMO) 
 SXFRCTL0[0x80]:(DFON) DFCNTRL[0x0] 
DFSTATUS[0x2d]:(FIFOEMP|DFTHRESH|HDONE|FIFOQWDEMP) 
 STACK: 0x0 0x16a 0x19a 0x3
 SCB count = 20
 Kernel NEXTQSCB = 6
 Card NEXTQSCB = 6
 QINFIFO entries: 
 Waiting Queue entries: 
 Disconnected Queue entries: 0:14 
 QOUTFIFO entries: 
 Sequencer Free SCB List: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 
 Sequencer SCB Info: 
   0 SCB_CONTROL[0x44]:(DISCONNECTED|DISCENB) SCB_SCSIID[0x37] 
 SCB_LUN[0x0] SCB_TAG[0xe] 
   1 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   2 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   3 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   4 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   5 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   6 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   7 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   8 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
   9 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  10 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  11 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  12 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  13 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  14 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
  15 SCB_CONTROL[0x0] SCB_SCSIID[0xff]:(TWIN_CHNLB|OID|TWIN_TID) 
 SCB_LUN[0xff]:(SCB_XFERLEN_ODD|LID) SCB_TAG[0xff] 
 Pending list: 
  14 SCB_CONTROL[0x40]:(DISCENB) SCB_SCSIID[0x37] SCB_LUN[0x0] 
 Kernel Free SCB list: 5 15 16 17 18 19 0 1 2 3 4 7 8 9 13 12 11 10 
 Untagged Q(3): 14 
 
  Dump Card State Ends 
 (sa0:ahc0:0:3:0): SCB 0xe - timed out
 sg[0] - Addr 0xa30a000 : Length 4096
 sg[1] - Addr 0xa8ab000 : Length 4096
 sg[2] - Addr 0xa10c000 : Length 4096
 sg[3] - Addr 0x9e8d000 : Length 4096
 sg[4] - Addr 0x9d0e000 : Length 4096
 sg[5] - Addr 0xa3cf000 : Length 4096
 sg[6] - Addr 0xa17 : Length 4096
 sg[7] - Addr 0xa3f1000 : Length 4096
 (sa0:ahc0:0:3:0): Queuing a BDR SCB
 ahc0: Timedout SCBs already complete. Interrupts may not be 
functioning.
 (sa0:ahc0:0:3:0): Bus Device Reset Message Sent
 (sa0:ahc0:0:3:0): no longer in timeout, status = 24b
 ahc0: Bus Device Reset on A:3. 1 SCBs aborted
 (sa0:ahc0:0:3:0): WRITE FILEMARKS. CDB: 10 0 0 0 2 0 
 (sa0:ahc0:0:3:0): CAM Status: SCSI Status Error
 (sa0:ahc0:0:3:0): SCSI Status: Check Condition
 (sa0:ahc0:0:3:0): UNIT ATTENTION asc:29,0
 (sa0:ahc0:0:3:0): Power on, reset, or bus device reset occurred
 (sa0:ahc0:0:3:0): Unretryable error
 (sa0:ahc0:0:3:0): failed to write terminating filemark(s)

I have no clue what that all this is supposed to be indicating to me.
This same drive worked fine under BSD/OS 4.something. I installed 
FreeBSD on the machine just a couple days ago and have been 

Re: Kernel Compiling Problems...

2005-09-26 Thread Lowell Gilbert
Kris Kennaway [EMAIL PROTECTED] writes:

 On Sun, Sep 25, 2005 at 03:32:25PM -0400, Robert Mendal wrote:
  Hello, I'm trying to make a custom kernel for my system for the first time
  and I'm having some problems. I followed the directions in the FreeBSD
  Handbook and printed my dmesg.boot file for reference as well. I don't
  believe I deleted or commented out anytihng that would be causing the error
  but I'm not really sure. The configure and make depend processes went
  fine. The error occurs during the make process.
  The error I receive is: ERROR code 1 (Undefined references to 'xpt_done')
   The error is repeated for a number of things, most of which speed past the
  screen before I can identify them.
   If anyone can give me some advice as to what I did wrong that would be much
  appreciated. Attached are my kernel conf file and my dmesg.boot file if they
  help any.
 
 You did omit something important..probably you didn't read the comment
 that says that umass requires scsi support.
 
 Kris
 
 P.S. This question comes up every few days, so a search of the
 archives would surely have answered it for you.

I occasionally consider adding dependency information to something in
the config(8) chain, but I haven't come up with an easy enough way to
do it.  The best idea I've had is to export device information
similarly to option values.  Then the device's compile stage could
test its dependencies and give a clear error message.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


gdesklet

2005-09-26 Thread Osmany Guirola Cruz
Hi ..
 i am using gdesklets but i ahva a little problem with the Calendar
desklet.Clock works perfect
when i trt to launch the calendar gdesklet i got this error
Could not find sensor 'Calendar'
/usr/X11R6/share/gnome/gdesklets/Displays/Calendar/Calendar.display


A sensor could not be found. This usually means that it has not been
installed.


but ia have it..

ls /usr/X11R6/share/gnome/gdesklets/Displays/

give me

Calendar Clock

and the log window only say

Deprecation: Sensors are deprecated since
v0.30. 
Please consider using controls and inline
scripts.   
cannot import name
admin 
/usr/X11R6/share/gnome/gdesklets/Sensors/Calendar/__init__.py   
 
 could not load source code for hilighting
  
Could not load sensor
Calendar   
cannot import name
admin 
/usr/X11R6/share/gnome/gdesklets/Sensors/Calendar/__init__.py   
 
 could not load source code for hilighting
  
==[09/26/05-14:52:35]===
 
=== Could not find sensor
'Calendar' 
==[09/26/05-14:52:35]===
 
Warning: Couldn't remove desklet with ID
id11277607558850837.  
'id11277607558850837'   
 



What can i do

Thanks


Osmany

___
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 use USB memory-stick for booting FreeBSD?

2005-09-26 Thread jonas
  I suppose one GigaByte should be enough for the base system of 5.4,
  isn't it?
 
 Definitely.  The full base system (as I mentioned above) takes about
 170 MB of disk space on i386 installations.

hi!

i would just like to add that it's a good idea to put rapidly changing
filesystems/directories (/var/log, /tmp and so on) on memory-
filesystems because usbdrives don't survive as many writeoperations
as HDs do.

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


Re: hint.apic.0.disabled

2005-09-26 Thread Lowell Gilbert
Omer Faruk Sen [EMAIL PROTECTED] writes:

 Hi, It seems that there is a conflict in manual pages. Or I am missing
 something. In manual page of loader.conf it is stated to add
 hint.apic.0.disabled=1 to disable acpi totally. But also in
 device.hints manual page it is stated to add hint.apic.0.disabled=1
 line to disable acpi. Which one is the true one? To add to
 device.hints or loader.conf file. Best Regards. ---

Please note that apic and acpi are very different things.  You
seem to be confusing them.

loader.conf(5) doesn't mention either one on my 5-STABLE system.
The example in device.hints is for acpi.  But there is
considerably more information about acpi in the acpi(4) man page,
with a lot of loader.conf tunables you can set regarding acpi.
One of them will disable it completely, but the syntax is
different than you would use in device.hints.

Also note that there is a whole chapter on Using and Debugging
FreeBSD ACPI in the FreeBSD Handbook.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


sendmail question on gateway install

2005-09-26 Thread steve lasiter
This is a follow up to an issue I still have
concerning my FreeBSD 5.4 gateway. I've done a basic
install and have disabled inetd and sendmail. My mail
server is behind my gateway. I can send mail out but
the gateway is blocking incoming request on port 25. I
have the ipf rules and ipnat rules in place but the
gateway never allows it through. I can telnet to the
192.x.x.1 address behind the gateway fine so I know my
postfix is up and running. I can do a port scan via
the internet and see that 25 is opened but when I try
to telnet into the public ip on 25 I never get in and
get a connection refused. When I check with tcpdump
-vnt port 25 and run the web port scan I see it
catching the packets. But when I run the tcpdump and
try to telnet in on 25 it never reaches it. There is
also output in my maillog even though sendmail is
disabled via rc.conf. Can anyone give me a heads up on
what configuration files need modifying to open this
up?

Thanks,

Steve L



__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Cleanup unused files and other junk ...

2005-09-26 Thread Kiffin Gish
Is there a good and dependable procedure for cleaning up the file 
systems from unused junk that just clutters valuable disc space?


I am already aware of the 'periodic daily' scripts 
'clear_tmp_enable=YES' option for the rc.conf file, but where else can 
one safely remove files.


For example, is it safe to delete all distfiles?

--
Kiffin Gish
Gouda, The Netherlands

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


Bye-bye beastie ...

2005-09-26 Thread Kiffin Gish
I would like to have a different bootup screen appearing which looks 
more professional (sorry), e.g. removing that awful looking beastie 
thingie on the side.


What's the best way to do this?

(Sorry to all those beastie lovers out there, but really)

--
Kiffin Gish
Gouda, The Netherlands

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


Re[3]: SSI error message

2005-09-26 Thread Glenn Dawson

At 02:26 AM 9/26/2005, Gerard Seibert wrote:


Thanks, that worked. I wanted to change the format to %b %d, %Y but it
does not display. I thought about using a non breaking space %#160; but
that does not work either. If I leave any spaces in the format, it will
not display.  I will work on that problem at some future date.


If you want spaces, this will work:

!--#exec cmd=/bin/date +%m\ %d\ %y --

-Glenn


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


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


Sharing data files on a dual-boot machine ...

2005-09-26 Thread Kiffin Gish
I have a dual-boot laptop running on the one hand Windows XP (sorry) and 
on the other hand good old FreeBSD.


My question: is it possible to exchange data files between both both 
operaing systems in an easy and efficient way?


For example, saving all my MP3s on a separate data partition and playing 
the same music despite which operating system I am using?


Thanks alot in advance.

--
Kiffin Gish
Gouda, The Netherlands

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


Re: Cleanup unused files and other junk ...

2005-09-26 Thread Michał Masłowski
 Is there a good and dependable procedure for cleaning up the file
 systems from unused junk that just clutters valuable disc space?

 I am already aware of the 'periodic daily' scripts
 'clear_tmp_enable=YES' option for the rc.conf file, but where else can
 one safely remove files.

 For example, is it safe to delete all distfiles?

From hier(7):
/tmp/  temporary files that are not guaranteed to persist across sys-
tem reboots,
so clearing /tmp is safe for files not used after last boot.

Deleting distfiles is safe if they aren't used.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Bye-bye beastie ...

2005-09-26 Thread Glenn Dawson

At 12:52 PM 9/26/2005, Kiffin Gish wrote:
I would like to have a different bootup screen appearing which looks 
more professional (sorry), e.g. removing that awful looking beastie 
thingie on the side.


What's the best way to do this?

(Sorry to all those beastie lovers out there, but really)


You can put beastie_disable=YES in your /boot/loader.conf to turn 
it off.  Replacing it with something else is a bit trickier.  You 
would need to replace /boot/beasier.4th.


-Glenn



--
Kiffin Gish
Gouda, The Netherlands

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


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


Re: Bye-bye beastie ...

2005-09-26 Thread Gregory Nou

Kiffin Gish wrote:

I would like to have a different bootup screen appearing which looks 
more professional (sorry), e.g. removing that awful looking beastie 
thingie on the side.


What's the best way to do this?

(Sorry to all those beastie lovers out there, but really)


from the /boot/default/loader.conf :

beastie_disable=NO   # Turn the beastie boot menu on and off

However, I strongly disagree with your decision :)

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


Re: mysql port install

2005-09-26 Thread Kevin Kinsey

eoghan wrote:


Hello
Im having a problem getting mysql (version 4.1.14) to work. Im  
installing

from ports, which was updated today. Each time i try #mysql
is get: ERROR 2002 (HY000): Can't connect to local MySQL server 
through socket '/tmp/mysql.sock' (2)

mysql.sock isnt in /tmp/ which is a problem. The manual and
searches  say that this means the server usually isnt running,
so type mysqld  to start it. But i just get command not found.
The only reference to  mysqld is in /usr/local/man/man1/mysql.1.gz
I was wondering if someone had any luck getting this port
installed?  Im using freeBSD 5.3 by the way.
Thanks
Eoghan




Surely this is a FAQ by now, and a search of the
list archives would provide the answer.  In particular,
this is _not_ hackers@ material, which might account for
the fact that I'm sounding a little terse here.  It's nothing
personal, I assure you.  I'm redirecting the cc to the appropriate
list.

Look for a mysql-server.sh script under /usr/local/etc/rc.d.  As root,
type /usr/local/etc/rc.d/mysql-server.sh start.  The server *should* 
start.


To make sure it does, add mysql_enable=YES to /etc/rc.conf.
This is part of the RCng system, and it's mentioned about
a hundred-eleventy times in ***/usr/ports/UPDATING***.  (Didja
read that one? ;-)

mysqld doesn't live in your $PATH on a FreeBSD system, so
you can't expect to call it with simply mysqld.  For its own
reasons, AFAIK, it's at /usr/local/libexec/mysqld

I have one server from a long time ago where I simply started
MySQL from cron(8) thus (which goes to show that I had similar
issues once upon a time and shouldn't be too hard on a newb, eh?):

@reboot   /usr/local/libexec/mysqld -u mysql 
--pid-file=/usr/local/var/secure.pid -h /var/db/mysql/ 


So, whatever boils your fish is fine.  But *lots* of us have MySQL
working.  ;-)

HTH,

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


open ssl??

2005-09-26 Thread Gary Kline
Can any of your security gurus clue me in on what this blurb
means?  I am slowly upgradingmy laptop, zen, and trying to
ssh back into tao.  I get:

OpenSSL version mismatch. Built against 90704f, you have 90800f

I just upgraded tao; same err.  Do I have to reboot?!!

gary


-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix

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


Re: open ssl??

2005-09-26 Thread Daniel Gerzo
Hello Gary,

Monday, September 26, 2005, 10:09:29 PM, you contributed this to our collective 
wisdom:

 Can any of your security gurus clue me in on what this blurb
 means?  I am slowly upgradingmy laptop, zen, and trying to
 ssh back into tao.  I get:

 OpenSSL version mismatch. Built against 90704f, you have 90800f

 I just upgraded tao; same err.  Do I have to reboot?!!

 gary

you have to recompile your software against new openssl libs...

-- 
Best Regards,

 DanGer, ICQ: 261701668  | e-mail protecting at: http://www.2pu.net/
 http://danger.rulez.sk  | proxy list at:http://www.proxy-web.com/
 | FreeBSD - The Power to Serve!

[ Oxymoron:  Kind Moderator ]

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


Re: mysql port install

2005-09-26 Thread Glenn Dawson

At 01:04 PM 9/26/2005, eoghan wrote:

On 26 Sep 2005, at 20:40, Glenn Dawson wrote:

Make sure you have mysqld_enableYES in your /etc/rc.conf and then
use
/usr/local/etc/rc.d/mysql-server.sh start
to start the server. (you may nee to copy mysql-server.sh from
mysql-server.sh.sample first)


Hi Glenn
Thanks! However, I get:
#/usr/local/etc/rc.d/mysql-server.sh start
This: not found
#
I have checked the dir and mysql-server.sh is there.
Any ideas?


Can you share the contents or your mysql-server.sh?

Also, I'm cc'ing this over to freebsd-questions@ which is a more 
appropriate list for this, lets continue on that list.


-Glenn


Thanks
Eoghan


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


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


Re: mysql port install

2005-09-26 Thread eoghan

On 26 Sep 2005, at 21:17, Glenn Dawson wrote:


At 01:04 PM 9/26/2005, eoghan wrote:


On 26 Sep 2005, at 20:40, Glenn Dawson wrote:


Make sure you have mysqld_enableYES in your /etc/rc.conf and then
use
/usr/local/etc/rc.d/mysql-server.sh start
to start the server. (you may nee to copy mysql-server.sh from
mysql-server.sh.sample first)



Hi Glenn
Thanks! However, I get:
#/usr/local/etc/rc.d/mysql-server.sh start
This: not found
#
I have checked the dir and mysql-server.sh is there.
Any ideas?



Can you share the contents or your mysql-server.sh?

Also, I'm cc'ing this over to freebsd-questions@ which is a more  
appropriate list for this, lets continue on that list.


-Glenn


Thanks. Sorry about the wrong list! Ive copied the contents below.

#!/bin/sh
#
# $FreeBSD: ports/databases/mysql41-server/files/mysql-server.sh.in,v  
1.3 2005/04/11 08:47:36 ale Exp $

#

# PROVIDE: mysql
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown

#
# Add the following line to /etc/rc.conf to enable mysql:
# mysql_enable (bool):Set to NO by default.
#Set it to YES to enable MySQL.
# mysql_limits (bool):Set to NO by default.
#Set it to yes to run `limits -e -U mysql`
#just before mysql starts.
# mysql_dbdir (str):Default to /var/db/mysql
#Base database directory.
# mysql_args (str):Custom additional arguments to be passed
#to mysqld_safe (default empty).
#

. /etc/rc.subr

name=mysql
rcvar=`set_rcvar`

load_rc_config $name

: ${mysql_enable=NO}
: ${mysql_limits=NO}
: ${mysql_dbdir=/var/db/mysql}
: ${mysql_args=}

mysql_user=mysql
mysql_limits_args=-e -U ${mysql_user}
pidfile=${mysql_dbdir}/`/bin/hostname`.pid
command=/usr/local/bin/mysqld_safe
command_args=--defaults-extra-file=${mysql_dbdir}/my.cnf --user=$ 
{mysql_user} --datadir=${mysql_dbdir} --pid-file=${pidfile} $ 
{mysql_args}  /dev/null 

procname=/usr/local/libexec/mysqld
start_precmd=${name}_prestart
mysql_install_db=/usr/local/bin/mysql_install_db
mysql_install_db_args=--ldata=${mysql_dbdir}

mysql_create_auth_tables()
{
eval $mysql_install_db $mysql_install_db_args /dev/null
[ $? -eq 0 ]  chown -R ${mysql_user}:${mysql_user} $ 
{mysql_dbdir}

}

mysql_prestart()
{
if [ ! -d ${mysql_dbdir}/mysql/. ]; then
mysql_create_auth_tables || return 1
fi
if checkyesno mysql_limits; then
eval `/usr/bin/limits ${mysql_limits_args}` 2/dev/null
else
return 0
fi
}

run_rc_command $1


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


Re: Sharing data files on a dual-boot machine ...

2005-09-26 Thread Kevin Kinsey

Kiffin Gish wrote:


I have a dual-boot laptop running on the one hand
Windows XP (sorry) and on the other hand good old FreeBSD.



It is kinda sorry, but it seems a little better than Window ME.

/bada bing!  :D


My question: is it possible to exchange data files between
both both operaing systems in an easy and efficient way?

For example, saving all my MP3s on a separate data partition
and playing the same music despite which operating system
I am using?



Hrm.  I'd say one way, most likely.  FreeBSD should be able
to read either FAT or NTFS partitions (I do it all the time), but
AFAIK WinXP doesn't support UFS.   So, you would want to put
your mp3s on a FAT partition, most likely, as FreeBSD doesn't
*write* NTFS very well (at all?)

However, for strictly the example you give, it shouldn't be
difficult, as long as the mp3 partition is FAT/FAT32.

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


Re: Sharing data files on a dual-boot machine ...

2005-09-26 Thread John Hoover
On 9/26/05, Kiffin Gish [EMAIL PROTECTED] wrote:

 I have a dual-boot laptop running on the one hand Windows XP (sorry) and
 on the other hand good old FreeBSD.

 My question: is it possible to exchange data files between both both
 operaing systems in an easy and efficient way?


I don't know if it would be considered the most efficient, but I've got my
Sony GRT100 set up this way. It has worked out well so far.

Three partitions
25GB NTFS (MS XP)
3GB FAT32 (Data sharing)
12GB BSD (FreeBSD)

I'm using FreeBSD's boot manager for selecting the boot partition at
startup.
Best I remember I installed the above by
1) using FreeBSD to partition and install on ad0s3
2) install XP on first partition, format FAT32 partition within XP
(admin tools - computer management - disk management)
3) reinstall FreeBSD, installing FreeBSD boot manager

You could add an entry to /etc/fstabs to mount the FAT32 partition on
startup,
I just mounted it by hand if I needed it.

John.
-
John F Hoover
[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 port install

2005-09-26 Thread Glenn Dawson

At 01:28 PM 9/26/2005, eoghan wrote:

On 26 Sep 2005, at 21:17, Glenn Dawson wrote:


At 01:04 PM 9/26/2005, eoghan wrote:


On 26 Sep 2005, at 20:40, Glenn Dawson wrote:


Make sure you have mysqld_enableYES in your /etc/rc.conf and then
use
/usr/local/etc/rc.d/mysql-server.sh start
to start the server. (you may nee to copy mysql-server.sh from
mysql-server.sh.sample first)


Hi Glenn
Thanks! However, I get:
#/usr/local/etc/rc.d/mysql-server.sh start
This: not found
#
I have checked the dir and mysql-server.sh is there.
Any ideas?


Can you share the contents or your mysql-server.sh?

Also, I'm cc'ing this over to freebsd-questions@ which is a more
appropriate list for this, lets continue on that list.

-Glenn


Thanks. Sorry about the wrong list! Ive copied the contents below.


I see a couple things, scroll down...



#!/bin/sh
#
# $FreeBSD: ports/databases/mysql41-server/files/mysql-server.sh.in,v
1.3 2005/04/11 08:47:36 ale Exp $
#

# PROVIDE: mysql
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown

#
# Add the following line to /etc/rc.conf to enable mysql:
# mysql_enable (bool):Set to NO by default.
#Set it to YES to enable MySQL.
# mysql_limits (bool):Set to NO by default.
#Set it to yes to run `limits -e -U mysql`
#just before mysql starts.
# mysql_dbdir (str):Default to /var/db/mysql
#Base database directory.
# mysql_args (str):Custom additional arguments to be passed
#to mysqld_safe (default empty).
#

. /etc/rc.subr

name=mysql
rcvar=`set_rcvar`

load_rc_config $name

: ${mysql_enable=NO}
: ${mysql_limits=NO}
: ${mysql_dbdir=/var/db/mysql}
: ${mysql_args=}

mysql_user=mysql
mysql_limits_args=-e -U ${mysql_user}
pidfile=${mysql_dbdir}/`/bin/hostname`.pid
command=/usr/local/bin/mysqld_safe
command_args=--defaults-extra-file=${mysql_dbdir}/my.cnf --user=$ 
{mysql_user} --


There's an extra space after --user=$


datadir=${mysql_dbdir} --pid-file=${pidfile} $ {mysql_args}  /dev/null 


another extra space after $ and before {mysql_args}

Not sure if those were because of the way you pasted the file, or if 
they are really there, but you'll want to check that out first.


-Glenn


procname=/usr/local/libexec/mysqld
start_precmd=${name}_prestart
mysql_install_db=/usr/local/bin/mysql_install_db
mysql_install_db_args=--ldata=${mysql_dbdir}

mysql_create_auth_tables()
{
eval $mysql_install_db $mysql_install_db_args /dev/null
[ $? -eq 0 ]  chown -R ${mysql_user}:${mysql_user} $ {mysql_dbdir}
}

mysql_prestart()
{
if [ ! -d ${mysql_dbdir}/mysql/. ]; then
mysql_create_auth_tables || return 1
fi
if checkyesno mysql_limits; then
eval `/usr/bin/limits ${mysql_limits_args}` 2/dev/null
else
return 0
fi
}

run_rc_command $1


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


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


Re: open ssl??

2005-09-26 Thread Kris Kennaway
On Mon, Sep 26, 2005 at 01:09:29PM -0700, Gary Kline wrote:
   Can any of your security gurus clue me in on what this blurb
   means?  I am slowly upgradingmy laptop, zen, and trying to
   ssh back into tao.  I get:
 
   OpenSSL version mismatch. Built against 90704f, you have 90800f
 
   I just upgraded tao; same err.  Do I have to reboot?!!

You have to rebuild whatever application that error came from, since
you upgraded your openssl to an incompatible version.

Kris



pgpw2udtTM9SZ.pgp
Description: PGP signature


Re: Sharing data files on a dual-boot machine ...

2005-09-26 Thread jonas
On Mon, 26 Sep 2005 21:57:28 +0200
Kiffin Gish [EMAIL PROTECTED] wrote:

 I have a dual-boot laptop running on the one hand Windows XP (sorry)
 and on the other hand good old FreeBSD.
 
 My question: is it possible to exchange data files between both both 
 operaing systems in an easy and efficient way?
 
 For example, saving all my MP3s on a separate data partition and
 playing the same music despite which operating system I am using?
 
 Thanks alot in advance.

hi!

freebsd can mount ntfs read only and with limited writing support
(see 'man mount_ntfs' for details. (should be enough for playing mp3s).
you can create a fat32 partition which freebsd and windows can read and
write, or a ext2fs partition and get a ext2fs driver for windows. i'm
not totally sure, but think freebsd can write ext2fs.

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


Re: Cleanup unused files and other junk ...

2005-09-26 Thread jonas
On Mon, 26 Sep 2005 21:50:21 +0200
Kiffin Gish [EMAIL PROTECTED] wrote:

 Is there a good and dependable procedure for cleaning up the file 
 systems from unused junk that just clutters valuable disc space?
 
 I am already aware of the 'periodic daily' scripts 
 'clear_tmp_enable=YES' option for the rc.conf file, but where else
 can one safely remove files.

-if you ever did a buildworld then you have the compiled base system
in  /usr/obj, which you can delete.
-you can scan your filesystem for *.core files (a process creates these
when it crashes) and delete them.
-make sure you always do a 'make clean' after installing software from
the ports. i think portupgrade can scan and cleanup all ports workdirs.

but i think in most cases much more spaces is wasted with stuff in your
homedir you forgot about ;)
well at least this is the case for me ... having a deeper look into my
$HOME/tmp and $HOME/stuff can quickly free some hundred MBs :)

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


Re: mysql port install

2005-09-26 Thread eoghan

On 26 Sep 2005, at 21:43, Glenn Dawson wrote:


Thanks. Sorry about the wrong list! Ive copied the contents below.



I see a couple things, scroll down...




#!/bin/sh
#
# $FreeBSD: ports/databases/mysql41-server/files/mysql-server.sh.in,v
1.3 2005/04/11 08:47:36 ale Exp $
#

# PROVIDE: mysql
# REQUIRE: NETWORKING SERVERS
# BEFORE: DAEMON
# KEYWORD: shutdown

#
# Add the following line to /etc/rc.conf to enable mysql:
# mysql_enable (bool):Set to NO by default.
#Set it to YES to enable MySQL.
# mysql_limits (bool):Set to NO by default.
#Set it to yes to run `limits -e -U mysql`
#just before mysql starts.
# mysql_dbdir (str):Default to /var/db/mysql
#Base database directory.
# mysql_args (str):Custom additional arguments to be passed
#to mysqld_safe (default empty).
#

. /etc/rc.subr

name=mysql
rcvar=`set_rcvar`

load_rc_config $name

: ${mysql_enable=NO}
: ${mysql_limits=NO}
: ${mysql_dbdir=/var/db/mysql}
: ${mysql_args=}

mysql_user=mysql
mysql_limits_args=-e -U ${mysql_user}
pidfile=${mysql_dbdir}/`/bin/hostname`.pid
command=/usr/local/bin/mysqld_safe
command_args=--defaults-extra-file=${mysql_dbdir}/my.cnf --user=$  
{mysql_user} --




There's an extra space after --user=$


datadir=${mysql_dbdir} --pid-file=${pidfile} $ {mysql_args}  /dev/ 
null 




another extra space after $ and before {mysql_args}

Not sure if those were because of the way you pasted the file, or  
if they are really there, but you'll want to check that out first.


-Glenn


It just the way it got pasted. I grabbed it from samba (yep, got that  
working :) )... theres no actual spaces in the file. Im not sure what  
David means? If i run pkg_info | grep mysql i see version 4.1.14 for  
client and server.

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


Re: Cleanup unused files and other junk ...

2005-09-26 Thread RW
On Monday 26 September 2005 20:50, Kiffin Gish wrote:
 Is there a good and dependable procedure for cleaning up the file
 systems from unused junk that just clutters valuable disc space?

 I am already aware of the 'periodic daily' scripts
 'clear_tmp_enable=YES' option for the rc.conf file, but where else can
 one safely remove files.

 For example, is it safe to delete all distfiles?

Deleting *all* distfiles is a bad idea if you plan on keeping your ports up to 
date; the majority of port updates involve applying patches to the same 
source files.

portupgrade comes with a utility called portsclean that will clean out 
unneccessary files from the port system.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: For administrators setting-up pf

2005-09-26 Thread Peter N. M. Hansteen
Carstea Catalin [EMAIL PROTECTED] writes:

 i want to setting up my firewall pf with some rules to do 2 conditions:
 Deny all except:
 2. permit only for 3 users access to pop3 ( ex.: nat only for 3 users
 and only for pop3)

For this, you might want to look into authpf. it lets you set up per
user rules which might be what you are looking for.

 3. redirect all port  to 8080 for all users. I use proxy for cache and
 log traffic.

You can redirect to eg squid or another proxy. All ports sounds a bit
ambitious - Daniel Hartmeier has a nice writeup on how to set up a
transparent squid at http://www.benzedrine.cx/transquid.html

-- 
Peter N. M. Hansteen, member of the first RFC 1149 implementation team
http://www.blug.linux.no/rfc1149/ http://www.datadok.no/ http://www.nuug.no/
First, we kill all the spammers The Usenet Bard, Twice-forwarded tales

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


IMAP SUPPORT

2005-09-26 Thread Pierre

I neeed install imap-2004c1 in my freeBSD 5.2.1
When I give the cmd make bsf SSLTYPE=none I get error code 1 in 
/var/www/html/imap-2004c1/c-client
Can I have help

Thanks
piereNo virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.6/111 - Release Date: 23/09/2005
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re[4]: SSI error message

2005-09-26 Thread Gerard Seibert
On Mon, 26 Sep 2005 12:52:03 -0700, Glenn Dawson [EMAIL PROTECTED]
Subject: Re[3]: SSI error message
Wrote these words of wisdom:

 At 02:26 AM 9/26/2005, Gerard Seibert wrote:
 
 Thanks, that worked. I wanted to change the format to %b %d, %Y but it
 does not display. I thought about using a non breaking space %#160; but
 that does not work either. If I leave any spaces in the format, it will
 not display.  I will work on that problem at some future date.
 
 If you want spaces, this will work:
 
 !--#exec cmd=/bin/date +%m\ %d\ %y --
 
 -Glenn
 

* REPLY SEPARATOR *
On 9/26/2005 5:22:04 PM, Gerard Seibert Replied:

Thanks, that worked. I had considered using the '\ ' combination, but I
could not find any documentation on it.


Fighting for peace is like having sex for virginity.

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


Re: open ssl??

2005-09-26 Thread Gary Kline
On Mon, Sep 26, 2005 at 04:46:01PM -0400, Kris Kennaway wrote:
 On Mon, Sep 26, 2005 at 01:09:29PM -0700, Gary Kline wrote:
  Can any of your security gurus clue me in on what this blurb
  means?  I am slowly upgradingmy laptop, zen, and trying to
  ssh back into tao.  I get:
  
  OpenSSL version mismatch. Built against 90704f, you have 90800f
  
  I just upgraded tao; same err.  Do I have to reboot?!!
 
 You have to rebuild whatever application that error came from, since
 you upgraded your openssl to an incompatible version.
 

Hm, well, thank you both, Daniel and Kris.  I didn't realize 
the Open* security apps were this tightly integrated.  Makes
sense.  --But then, it seems to me that if you (port or
otherwise) upgrade ss[hl], the makefile would upgrade the 
other.   Or else that the errs would be less cryptic.  
[[I *know* I'm behind on a lot of my ports, but *mumble*]]

I'm at my desk, logged into zen and ssh is missing the below.
What rebuilds libcrypt.so.3?

gary


q4 14:22 zen [2508] ssh tao
/libexec/ld-elf.so.1: Shared object libcrypto.so.3 not found, required
by ssh
 



-- 
   Gary Kline [EMAIL PROTECTED]   www.thought.org Public service Unix

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


Register usage for pointer access

2005-09-26 Thread Jonathon McKitrick

Other than the fact that scanning, moving, and so on use esi as the source
register and edi as the destination, is there are other reason to use one
over the other for general pointer use?

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


Re: X.org/i845 refuses to set an resolution ex. default

2005-09-26 Thread dgmm
I think the Intel chipset incorrectly reports the amount of video ram to the 
system

IIRC (It's a while ago now and I no longer use that chipset) you need 
agp_load=yes in /boot/loader.conf or compiled into the kernel and add in a 
line:

 VideoRam65536

to the device section for the video card/chipset.

I also seem to recall googling on this very topic and reading about patches 
for the i810 driver.  Try a google on 

i810 memory

or maybe

i810 resolution

HTH

Dave




On Monday 26 September 2005 17:48, Kyryll A Mirnenko aka Mirya wrote:
 Got a problem while setting up a new freebsd box. Got similar configuration
 in linux box running nearby w/o problems. Here it is (an extract, full
 attached):

 Section Module
 Loaddbe
 Loadtype1
 Loadspeedo
 Loadfreetype
 Load   glx
 Load   dri
 EndSection

 Section Extensions
 Option Composite Enable
 EndSection

 Section Device
 IdentifierPrimary Card
 VendorNameUnknown
 BoardName Intel 845
 Driver i810
 EndSection

 Section Screen
 Identifier  Primary Screen
 Device  Primary Card
 Monitor Primary Monitor
 DefaultDepth 16

 Subsection Display
 Depth   8
 Modes   1280x1024 1152x864 1024x768 800x600 720x576
 720x480 640x480 640x400 512x384 480x300 400x300 320x240
 320x200
 ViewPort0 0
   Virtual 0 0
 EndSubsection
 Subsection Display
 Depth   16
 Modes   1280x1024 1152x864 1024x768 800x600 720x576
 720x480 640x480 640x400 512x384 480x300 400x300 320x240
 320x200
 ViewPort0 0
   Virtual 0 0
 EndSubsection
 Subsection Display
 Depth   24
 Modes   1024x768 800x600 720x576 720x480 640x480
 640x400 512x384 480x300 400x300 320x240 320x200
 ViewPort0 0
   Virtual 0 0
 EndSubsection
 EndSection

 And here comes the X.org log (extract):
 [ ... some more useful modes ... ]
 Mode: 58 (1280x1024)
   ModeAttributes: 0x9a
   WinAAttributes: 0x7
   WinBAttributes: 0x0
   WinGranularity: 64
   WinSize: 64
   WinASegment: 0xa000
   WinBSegment: 0x0
   WinFuncPtr: 0xc0005b77
   BytesPerScanline: 5120
   XResolution: 1280
   YResolution: 1024
   XCharSize: 8
   YCharSize: 16
   NumberOfPlanes: 1
   BitsPerPixel: 32
   NumberOfBanks: 1
   MemoryModel: 6
   BankSize: 0
   NumberOfImages: 0
   RedMaskSize: 8
   RedFieldPosition: 16
   GreenMaskSize: 8
   GreenFieldPosition: 8
   BlueMaskSize: 8
   BlueFieldPosition: 0
   RsvdMaskSize: 8
   RsvdFieldPosition: 24
   DirectColorModeInfo: 0
   PhysBasePtr: 0xf000
   LinBytesPerScanLine: 5120
   BnkNumberOfImagePages: 0
   LinNumberOfImagePages: 0
   LinRedMaskSize: 8
   LinRedFieldPosition: 16
   LinGreenMaskSize: 8
   LinGreenFieldPosition: 8
   LinBlueMaskSize: 8
   LinBlueFieldPosition: 0
   LinRsvdMaskSize: 8
   LinRsvdFieldPosition: 24
   MaxPixelClock: 23000
 Mode: 5a (1600x1200)
   ModeAttributes: 0x9a
   WinAAttributes: 0x7
   WinBAttributes: 0x0
   WinGranularity: 64
   WinSize: 64
   WinASegment: 0xa000
   WinBSegment: 0x0
   WinFuncPtr: 0xc0005b77
   BytesPerScanline: 6400
   XResolution: 1600
   YResolution: 1200
   XCharSize: 8
   YCharSize: 16
   NumberOfPlanes: 1
   BitsPerPixel: 32
   NumberOfBanks: 1
   MemoryModel: 6
   BankSize: 0
   NumberOfImages: 0
   RedMaskSize: 8
   RedFieldPosition: 16
   GreenMaskSize: 8
   GreenFieldPosition: 8
   BlueMaskSize: 8
   BlueFieldPosition: 0
   RsvdMaskSize: 8
   RsvdFieldPosition: 24
   DirectColorModeInfo: 0
   PhysBasePtr: 0xf000
   LinBytesPerScanLine: 6400
   BnkNumberOfImagePages: 0
   LinNumberOfImagePages: 0
   LinRedMaskSize: 8
   LinRedFieldPosition: 16
   LinGreenMaskSize: 8
   LinGreenFieldPosition: 8
   LinBlueMaskSize: 8
   LinBlueFieldPosition: 0
   LinRsvdMaskSize: 8
   LinRsvdFieldPosition: 24
   MaxPixelClock: 23000
 Mode: 5c (1920x1440)
   ModeAttributes: 0x9a
   WinAAttributes: 0x7
   WinBAttributes: 0x0
   WinGranularity: 64
   WinSize: 64
   WinASegment: 0xa000
   WinBSegment: 0x0
   WinFuncPtr: 0xc0005b77
   BytesPerScanline: 7680
   XResolution: 1920
   YResolution: 1440
   XCharSize: 8
   YCharSize: 16
   NumberOfPlanes: 1
   BitsPerPixel: 32
   NumberOfBanks: 1
   MemoryModel: 6
   BankSize: 0
   NumberOfImages: 0
   RedMaskSize: 8
   RedFieldPosition: 16
   GreenMaskSize: 8
   GreenFieldPosition: 8
   BlueMaskSize: 8
   BlueFieldPosition: 0
   RsvdMaskSize: 8
   RsvdFieldPosition: 24
   DirectColorModeInfo: 0
   PhysBasePtr: 

Re[2]: open ssl??

2005-09-26 Thread Daniel Gerzo
Hello Gary,

Monday, September 26, 2005, 11:27:20 PM, you thoughtfully wrote the following:

 On Mon, Sep 26, 2005 at 04:46:01PM -0400, Kris Kennaway wrote:
 On Mon, Sep 26, 2005 at 01:09:29PM -0700, Gary Kline wrote:
  Can any of your security gurus clue me in on what this blurb
  means?  I am slowly upgradingmy laptop, zen, and trying to
  ssh back into tao.  I get:
  
  OpenSSL version mismatch. Built against 90704f, you have 90800f
  
  I just upgraded tao; same err.  Do I have to reboot?!!
 
 You have to rebuild whatever application that error came from, since
 you upgraded your openssl to an incompatible version.
 

 Hm, well, thank you both, Daniel and Kris.  I didn't realize
 the Open* security apps were this tightly integrated.  Makes
 sense.  --But then, it seems to me that if you (port or
 otherwise) upgrade ss[hl], the makefile would upgrade the 
 other.   Or else that the errs would be less cryptic.  
 [[I *know* I'm behind on a lot of my ports, but *mumble*]]

you should use utility called `portupgrade' for upgrading your ports,
so you can use something like:

# portupgrade -rR openssl

 I'm at my desk, logged into zen and ssh is missing the below.
 What rebuilds libcrypt.so.3?

 gary


 q4 14:22 zen [2508] ssh tao
 /libexec/ld-elf.so.1: Shared object libcrypto.so.3 not found, required
 by ssh

try /etc/rc.d/ldconfig restart

-- 
Best Regards,

 DanGer, ICQ: 261701668  | e-mail protecting at: http://www.2pu.net/
 http://danger.rulez.sk  | proxy list at:http://www.proxy-web.com/
 | FreeBSD - The Power to Serve!

[ Confucius say: Shit happens. ]

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


sendmail or another mail server?

2005-09-26 Thread Efren Bravo
Hi,

I've installed a fBSD and now I'm tuning it 'cause I need to put it to
serve as mail server.  
  
My questions is if sendmail is able to serve as a serious mail server or I
should try with another software for this job.  
  
In case I choose sendmail or another mail server software, exists an web
interface for them?  
  
thanks...



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


ATTN: Gary Kline

2005-09-26 Thread Kris Kennaway
You are blocking mail from me again:

[EMAIL PROTECTED]: host ns1.thought.org[216.231.43.140] said: 550 5.0.0
No SPAM (in reply to MAIL FROM command)

This has been an issue in the past..unless you can get it under
control I'll just stop bothering to read your emails, in case I'm
tempted to try to help you again.

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


Re: apache13+mod_ssl portupgrade problem..

2005-09-26 Thread Lists

Steve Monkhouse wrote:
Hi guys.. 


Ive been pulling my hair out for the last couple of hours over this to no
avail... 


FreeBSD 5.2.1-RELEASE-p8
P4 2.8
512mb RAM


I 'had' a working apache13+modssl installation along with mod_perl.
Everything was working perfectly until I decided yesterday to portupgrade
the machine.

I started off with perl being portupgraded via  'portupgrade -rR perl'

Then I did the php modules via portupgrade php-* 



Maybe i missed something, but did you also upgrade php itself? Either 
way, try a:


php -m

and then check your php error logs. I have found that problems with php 
can way

too easily segfault an apache instance.


And anything else that I missed then got done as well.. 

Everything now shows that its up-to-date eg.. 


apache+mod_ssl-1.3.33+2.8.24_1  =   up-to-date with port

however whenever I try to start apache with apachectl startssl it gives :

/usr/local/sbin/apachectl startssl: httpd started

but does not start.. nothing at all appears in the logs (error or access)
even with debug enabled.. the only message that appears is in messages

Sep 22 17:44:23 server kernel: pid 77689 (httpd), uid 0: exited on signal 11
(core dumped)

Ive searched high and low for a solution, but to no avail.. 


Ive deinstalled and reinstalled, deinstalled / install distclean etc etc but
no diff.. 


The sad thing is that this was working perfectly yesterday albeit with
versions that haven't been updated for 2 months.. 

What have I done wrong ? and how do I go about rectifying it ?? 


Any help would be GREATLY appreciated.. as my web server is still down at
the moment.. 


Thanks in advance
Steve



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


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


Re: Cleanup unused files and other junk ...

2005-09-26 Thread Micah



jonas wrote:

On Mon, 26 Sep 2005 21:50:21 +0200
Kiffin Gish [EMAIL PROTECTED] wrote:


Is there a good and dependable procedure for cleaning up the file 
systems from unused junk that just clutters valuable disc space?


I am already aware of the 'periodic daily' scripts 
'clear_tmp_enable=YES' option for the rc.conf file, but where else

can one safely remove files.



-if you ever did a buildworld then you have the compiled base system
in  /usr/obj, which you can delete.
-you can scan your filesystem for *.core files (a process creates these
when it crashes) and delete them.
-make sure you always do a 'make clean' after installing software from
the ports. i think portupgrade can scan and cleanup all ports workdirs.

but i think in most cases much more spaces is wasted with stuff in your
homedir you forgot about ;)
well at least this is the case for me ... having a deeper look into my
$HOME/tmp and $HOME/stuff can quickly free some hundred MBs :)

cya,
jonas


For finding those long forgotten things that take up MBs, I've found 
kdirstat (for KDE) to be quite useful.  Helped me free up a few 
gigabytes - all located in my home dir of course. :)


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


How to get locales working?

2005-09-26 Thread Benjamin Braatz

Hello!

I tried to set my FreeBSD box to using unicode by setting the  
following locale:

[EMAIL PROTECTED] ~ 0 $ locale
LANG=en_GB.UTF-8
LC_CTYPE=en_GB.UTF-8
LC_COLLATE=en_GB.UTF-8
LC_TIME=en_GB.UTF-8
LC_NUMERIC=en_GB.UTF-8
LC_MONETARY=en_GB.UTF-8
LC_MESSAGES=en_GB.UTF-8
LC_ALL=

This should exist according to locale -a:
[EMAIL PROTECTED] ~ 0 $ locale -a | grep en_GB.UTF-8
en_GB.UTF-8
[EMAIL PROTECTED] ~ 0 $ ls /usr/share/locale/en_GB.UTF-8/
LC_COLLATE  LC_CTYPELC_MESSAGES LC_MONETARY LC_NUMERIC  LC_TIME

However Perl, rxvt-unicode and others complain, that it does not:
[EMAIL PROTECTED] ~ 0 $ perl -e 'print Hello world!\n'
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LC_ALL = (unset),
LANG = en_GB.UTF-8
are supported and installed on your system.
perl: warning: Falling back to the standard locale (C).
Hello world!
[EMAIL PROTECTED] ~ 0 $ urxvt -h
urxvt: default locale unavailable, check LC_* and LANG variables.  
Continuing.

rxvt-unicode (urxvt) v5.7 - released: 2005-07-13
...

What's wrong here?

Thanks for any hints!

--
Benjamin Braatz
[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: ATTN: Gary Kline

2005-09-26 Thread Bill Schoolcraft

At Mon, 26 Sep 2005 it looks like Kris Kennaway composed:


You are blocking mail from me again:

[EMAIL PROTECTED]: host ns1.thought.org[216.231.43.140] said: 550 5.0.0
   No SPAM (in reply to MAIL FROM command)

This has been an issue in the past..unless you can get it under
control I'll just stop bothering to read your emails, in case I'm
tempted to try to help you again.

Thanks,
Kris


Hey Kris,

I feel for ya...

I'm in the position where I can receive mail from the FreeBSD
mailing list but can't post to it.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ATTN: Gary Kline

2005-09-26 Thread Kris Kennaway
On Mon, Sep 26, 2005 at 03:50:30PM -0700, Bill Schoolcraft wrote:
 At Mon, 26 Sep 2005 it looks like Kris Kennaway composed:
 
 You are blocking mail from me again:
 
 [EMAIL PROTECTED]: host ns1.thought.org[216.231.43.140] said: 550 
 5.0.0
No SPAM (in reply to MAIL FROM command)
 
 This has been an issue in the past..unless you can get it under
 control I'll just stop bothering to read your emails, in case I'm
 tempted to try to help you again.
 
 Thanks,
 Kris
 
 Hey Kris,
 
 I feel for ya...
 
 I'm in the position where I can receive mail from the FreeBSD
 mailing list but can't post to it.

Talk to postmaster..he's very responsive.

Kris


pgpBZupXBauCV.pgp
Description: PGP signature


Re: sendmail or another mail server?

2005-09-26 Thread Mike Jeays
On Mon, 2005-09-26 at 19:01, Efren Bravo wrote:
 Hi,
 
 I've installed a fBSD and now I'm tuning it 'cause I need to put it to
 serve as mail server.  
   
 My questions is if sendmail is able to serve as a serious mail server or I
 should try with another software for this job.  
   
 In case I choose sendmail or another mail server software, exists an web
 interface for them?  
   
 thanks...
 
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]

Sendmail can certainly be considered as a serious mail server; it is
used for a large fraction of the internet, and handles uncounted
millions of emails a day.

Postfix is a good alternative, with the benefit that it is a good bit 
easier to configure.  Both are reliable products and suitable for high
volume professional use.


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


Re: Bye-bye beastie ...

2005-09-26 Thread Peter Clutton

 Kiffin Gish wrote:

  I would like to have a different bootup screen appearing which looks
  more professional (sorry), e.g. removing that awful looking beastie
  thingie on the side.

  Here is how to change it: http://www.baldwin.cx/splash/ . Also has links
to already-correct-size images. What of? The beastie mainly. Why? Because
he's cool! But anyway, you can use your own correctly sized image of
whatever you want. The instructions are good.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Backup

2005-09-26 Thread Aguiar Magalhaes
Hi list,

can I make a copy using dd command from a HD scsi
Maxtor 36 GB to a HD IDE Sansung 40 GB ?

How can I do it ?? Is there an example ??

Thanks,

Aguiar






___ 
Novo Yahoo! Messenger com voz: ligações, Yahoo! Avatars, novos emoticons e 
muito mais. Instale agora! 
www.yahoo.com.br/messenger/
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mysql port install

2005-09-26 Thread Peter Clutton


 It just the way it got pasted. I grabbed it from samba (yep, got that
 working :) )... theres no actual spaces in the file. Im not sure what
 David means? If i run pkg_info | grep mysql i see version 4.1.14 for

  I had exactly the same problem you are having until i enabled it in
rc.conf with mysql_enable=YES .
 Every time i started the mysql-server.sh i got the socket error. As soon as
i enabled it in rc.conf , it worked fine.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


dockapp virtual desktop switcher

2005-09-26 Thread Brian John

Hello,
I am running fluxbox and I don't like the method of using the scrollbar 
and/or hotkeys to switch desktops (even though it is easy).  On my 
windows box at work I have an app called 'goscreen' installed.  It 
allows me to see a preview of what is on each desktop and click on 
whichever one I want.  Is there a dockapp similar to this for FreeBSD 
that will work on Fluxbox (I think KDE dockapps will work)?


Thanks

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


ps/2 mouse

2005-09-26 Thread brian kaczynski
My PS/2 mouse doesn't move in Xorg. I've tried the protocol on auto and ps/2 in 
xorgconfig, but nothing seems to work. I've noticed there isn't an entry in 
/dev for psm0. I'm using a keyboard, video, mouse switcher, but that shouldn't 
matter because it worked on linux before. I tried adding the mouse in 
sysinstall with the mouse daemon, but i still have no psm0, and of course, the 
mouse still doesnt work. Any help, ideas, suggestions would be wonderful. 
Thanks in advance.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Backup

2005-09-26 Thread Philip Hallstrom

On Mon, 26 Sep 2005, Aguiar Magalhaes wrote:


Hi list,

can I make a copy using dd command from a HD scsi
Maxtor 36 GB to a HD IDE Sansung 40 GB ?

How can I do it ?? Is there an example ??


http://www.freebsd.org/doc/en_US.ISO8859-1/books/faq/disks.html#NEW-HUGE-DISK

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


5-Stable: USB LG XTICK 1GB memory stick fails

2005-09-26 Thread Rob

Hello,

I can't get my LG XTICK 1GB USB memory stick
working with 5-Stable (as of Sept. 25, 2005).

Also, when I plug it in, my mouse pointer in
X disappears; I get it back by restarting the
moused daemon.

Various outputs are listed below.

Any idea what's the problem here?
Is there a way to get it work?

Thanks,
Rob.



- ls /dev/da*  
/dev/da0
---


- camcontrol devlist -v  --
scbus0 on umass-sim0 bus 0:
LG XTICK 2.00  at scbus0 target 0 lun 0 (pass0,da0)
scbus-1 on xpt0 bus 0:
   at scbus-1 target -1 lun -1 (xpt0)
---


- usbdevs -d -v  --
Controller /dev/usb0:
addr 1: full speed, self powered, config 1, UHCI root
hub(0x), Intel(0x), rev 1.00
  uhub0
 port 1 powered
 port 2 powered
Controller /dev/usb1:
addr 1: full speed, self powered, config 1, UHCI root
hub(0x), Intel(0x), rev 1.00
  uhub1
 port 1 addr 2: full speed, power 500 mA, config 1,
XTICK(0x2168), LG(0x0ea0), rev 2.00
   umass0
 port 2 powered
Controller /dev/usb2:
addr 1: full speed, self powered, config 1, UHCI root
hub(0x), Intel(0x), rev 1.00
  uhub2
 port 1 powered
 port 2 powered
Controller /dev/usb3:
addr 1: full speed, self powered, config 1, UHCI root
hub(0x), Intel(0x), rev 1.00
  uhub3
 port 1 powered
 port 2 powered
---


- dmesg output  ---
(da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0
0 0 0 0 0 
(da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI Status: Check Condition
(da0:umass-sim0:0:0:0): UNIT ATTENTION asc:28,0
(da0:umass-sim0:0:0:0): Not ready to ready change,
medium may have changed
(da0:umass-sim0:0:0:0): Retrying Command (per Sense
Data)
(da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0
0 0 0 0 0 
(da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI Status: Check Condition
(da0:umass-sim0:0:0:0): UNIT ATTENTION asc:28,0
(da0:umass-sim0:0:0:0): Not ready to ready change,
medium may have changed
(da0:umass-sim0:0:0:0): Retrying Command (per Sense
Data)
(da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0
0 0 0 0 0 
(da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI Status: Check Condition
(da0:umass-sim0:0:0:0): UNIT ATTENTION asc:28,0
(da0:umass-sim0:0:0:0): Not ready to ready change,
medium may have changed
(da0:umass-sim0:0:0:0): Retrying Command (per Sense
Data)
(da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0
0 0 0 0 0 
(da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI Status: Check Condition
(da0:umass-sim0:0:0:0): UNIT ATTENTION asc:28,0
(da0:umass-sim0:0:0:0): Not ready to ready change,
medium may have changed
(da0:umass-sim0:0:0:0): Retrying Command (per Sense
Data)
(da0:umass-sim0:0:0:0): READ CAPACITY. CDB: 25 0 0 0 0
0 0 0 0 0 
(da0:umass-sim0:0:0:0): CAM Status: SCSI Status Error
(da0:umass-sim0:0:0:0): SCSI Status: Check Condition
(da0:umass-sim0:0:0:0): UNIT ATTENTION asc:28,0
(da0:umass-sim0:0:0:0): Not ready to ready change,
medium may have changed
(da0:umass-sim0:0:0:0): Retries Exhausted
Opened disk da0 - 6
---




__ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: ps/2 mouse

2005-09-26 Thread Micah



brian kaczynski wrote:

My PS/2 mouse doesn't move in Xorg. I've tried the protocol on auto
and ps/2 in xorgconfig, but nothing seems to work. I've noticed there
isn't an entry in /dev for psm0. I'm using a keyboard, video, mouse
switcher, but that shouldn't matter because it worked on linux
before. I tried adding the mouse in sysinstall with the mouse daemon,
but i still have no psm0, and of course, the mouse still doesnt work.
Any help, ideas, suggestions would be wonderful. Thanks in advance.


When using the mouse daemon I believe you should connect to 
/dev/sysmouse not /dev/psm0.  My xorg.conf looks like:


Identifier  Mouse1
Driver  mouse
Option ProtocolAuto
Option Device  /dev/sysmouse
Option ZAxisMapping 4 5

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


Re: ps/2 mouse

2005-09-26 Thread Brian Josefsen
On Mon, Sep 26, 2005 at 09:34:35PM -0400, brian kaczynski wrote:
 My PS/2 mouse doesn't move in Xorg. I've tried the protocol on auto and ps/2 
 in xorgconfig, but nothing seems to work. I've noticed there isn't an entry 
 in /dev for psm0. I'm using a keyboard, video, mouse switcher, but that 
 shouldn't matter because it worked on linux before. I tried adding the mouse 
 in sysinstall with the mouse daemon, but i still have no psm0, and of course, 
 the mouse still doesnt work. Any help, ideas, suggestions would be wonderful. 
 Thanks in advance.

You didn't give much info on your system but i tried this once where i
had configured several Pointer sections in my XF86Config and i used
one for my old computers serial mouse, besides that there isn't anything wrong 
with
several pointers.

And the mouse daemon only handles mouse in the console

--
Med venlig hilsen / Best regards
Brian Josefsen
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


errors compilling JDK15

2005-09-26 Thread Jorge Mario G. Mazo
Hi there I've had the following problem compiling the
native jdk15.

this is the FreeBSD version:
FreeBSD verde.fish 5.4-STABLE FreeBSD 5.4-STABLE #0:
Fri Aug 12 20:17:01 COT 2005
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/VERDE  i386


This are the files in my dist dir

./  java.txt
../ jdk-1_5_0-bin-scsl.zip
bsd-jdk15-patches-2.tar.bz2 jdk-1_5_0-src-scsl.zip
j2sdk-1_4_2_08-linux-i586.bin


and I have the following line in my fstab
linprocfs   /compat/linux/proc   linprocfs
  rw 0   0




...
gmake[3]: Entering directory
`/usr/ports/java/jdk15/work/deploy/make/javaws'
/bin/mkdir -p
/usr/ports/java/jdk15/work/control/build/bsd-i586
/bin/mkdir -p
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/common/lib
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/common_g/lib
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/deployClasses
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/deployClasses_g
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/deployClassHeaders
/bin/mkdir -p
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/deployObj
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/deployObj_g
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/common/lib
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/common_g/lib
/usr/bin/gcc -I/usr/local/linux-sun-jdk1.4.2/include
-I/usr/local/linux-sun-jdk1.4.2/include/freebsd -c
/usr/ports/java/jdk15/work/control/make/../../deploy/src/common/unix/native/config.c
-o
/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/deploy/deployObj/config.o
In file included from
/usr/ports/java/jdk15/work/control/make/../../deploy/src/common/unix/native/config.c:10:
/usr/local/linux-sun-jdk1.4.2/include/jni.h:27:20:
jni_md.h: No such file or directory
In file included from
/usr/ports/java/jdk15/work/control/make/../../deploy/src/common/unix/native/config.c:10:
/usr/local/linux-sun-jdk1.4.2/include/jni.h:45: error:
syntax error before jsize
/usr/local/linux-sun-jdk1.4.2/include/jni.h:45:
warning: data definition has no type or storage class
/usr/local/linux-sun-jdk1.4.2/include/jni.h:104:
error: syntax error before jbyte
/usr/local/linux-sun-jdk1.4.2/include/jni.h:107:
error: syntax error before jint
/usr/local/linux-sun-jdk1.4.2/include/jni.h:193:
error: syntax error before jint
/usr/local/linux-sun-jdk1.4.2/include/jni.h:195:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:198:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:201:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:203:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:206:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:209:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:211:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:214:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:221:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:223:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:225:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:227:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:232:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:235:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:237:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:239:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:241:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:243:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:248:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:250:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:252:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:254:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:257:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:259:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:262:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:265:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:267:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:269:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:272:
error: syntax error before '*' token
/usr/local/linux-sun-jdk1.4.2/include/jni.h:274:
error: syntax error before '*' 

RE: Bye-bye beastie ...

2005-09-26 Thread Ted Mittelstaedt

Here you are, I'm sure this sort of thing is what you are really
dying to have on there;

# diff beastie.4th beastie.4th.cross
75,93c75,93
   2dup at-xy .  ,, 1+
   2dup at-xy . /()` 1+
   2dup at-xy . \ \___   / | 1+
   2dup at-xy . /- _  `-/  ' 1+
   2dup at-xy .(/\/ \ \   /\ 1+
   2dup at-xy ./ /   | `\ 1+
   2dup at-xy .O O   ) /| 1+
   2dup at-xy .`-^--'` ' 1+
   2dup at-xy .   (_.)  _  )   / 1+
   2dup at-xy .`.___/`/ 1+
   2dup at-xy .  `-' / 1+
   2dup at-xy . . __ / __   \ 1+
   2dup at-xy . |O)))==) \) / 1+
   2dup at-xy . '`--' `.__,' \ 1+
   2dup at-xy .  || 1+
   2dup at-xy .   \   /   /\ 1+
   2dup at-xy .  __( (_  / \__/ 1+
   2dup at-xy .,'  ,-'   | 1+
at-xy .`--{__)
---
   2dup at-xy . .==. 1+
   2dup at-xy . |  | 1+
   2dup at-xy ..'  '. 1+
   2dup at-xy .|   _    _   | 1+
   2dup at-xy .|  /_;-.__ / _\  _.-;_\  | 1+
   2dup at-xy .| `-._`'`_/'`.-' | 1+
   2dup at-xy .'.`\   /`' 1+
   2dup at-xy . | |  / | 1+
   2dup at-xy . |/-.(  | 1+
   2dup at-xy . |\_._\ | 1+
   2dup at-xy . | \ \`;| 1+
   2dup at-xy . |   |/| 1+
   2dup at-xy . | / // | 1+
   2dup at-xy . | |//  | 1+
   2dup at-xy . | \(\  | 1+
   2dup at-xy . |  ``  | 1+
   2dup at-xy . |  | 1+
   2dup at-xy . \\jgs _  _\\| \//  |//_   _ \// _ 1+
at-xy .^ `^`^ ^`` `^ ^` ``^^`  `^^` `^ `^
# 

adapted from http://www.chris.com/ascii/

(Sorry to all REASONABLE PEOPLE out there, but really!)

Ted

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of Kiffin Gish
Sent: Monday, September 26, 2005 12:52 PM
To: freebsd-questions@freebsd.org
Subject: Bye-bye beastie ...


I would like to have a different bootup screen appearing which looks 
more professional (sorry), e.g. removing that awful looking beastie 
thingie on the side.

What's the best way to do this?

(Sorry to all those beastie lovers out there, but really)

-- 
Kiffin Gish
Gouda, The Netherlands

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

-- 
No virus found in this incoming message.
Checked by AVG Anti-Virus.
Version: 7.0.344 / Virus Database: 267.11.6/111 - Release Date: 
9/23/2005

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


using procmail rules to handle old maildir

2005-09-26 Thread Brian Josefsen
Hello all

I don't know if it's appropriate to ask this question here, but now i'll
give it a try.

I've set up postfix on a new box with maildir support, and i've been
using procmail to deliver all my mail, so i now have the rules i've always
missed.

Then i've taken a tarball from the vhosting environment from the old
server, so i have now a Maildir that i use, with all my new mail in it,
and another Maildir with all the old mail.

Now i would like to sort all my old mail using the procmail rules i have
now, it could be as easy as:
cd oldmaildir
procmail  find . -type f -exec echo {} \;

but procmail don't delete the mail from the old maildir, and since there
is ~9k mail, i would hate to first filter all of it, and then go
manually through all of it again.

Anyone out there with any idea to solve this would be highly appreciated
as i depend on quick access to old mail.

FreeBSD 5.4, latest procmail, mutt zsh.

--
Med venlig hilsen / Best regards
Brian Josefsen
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


kdebase3.4.2 install error

2005-09-26 Thread eodyna
hi all,

I was wondering if someone can help me with this
install problem.

as well as the log it complains about
favicons.cpp:29:77: kdatastream.h: No such file or
directory
kiontheme.h
kimageio.h
ksimpleconfig.h
kstandardsdirs.h
kio/job.h

with the same error message

if anyone can shed somelight on how to solve this that
would be great.

ps: Im not in the group. so if you dont mind, may you
please put my email address in the to: bit

ta



 
Do you Yahoo!? 
Yahoo! Photos: Now with unlimited storage 
http://au.photos.yahoo.com

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

Re: hint.apic.0.disabled

2005-09-26 Thread Omer Faruk Sen
Sorry for that. I have missed it. Should be more careful before emailing to 
a mailing list ;) 

I also mixed loader.conf manual page with acpi manual page. 




Lowell Gilbert writes: 

Omer Faruk Sen [EMAIL PROTECTED] writes: 


Hi, It seems that there is a conflict in manual pages. Or I am missing
something. In manual page of loader.conf it is stated to add
hint.apic.0.disabled=1 to disable acpi totally. But also in
device.hints manual page it is stated to add hint.apic.0.disabled=1
line to disable acpi. Which one is the true one? To add to
device.hints or loader.conf file. Best Regards. ---


Please note that apic and acpi are very different things.  You
seem to be confusing them. 


loader.conf(5) doesn't mention either one on my 5-STABLE system.
The example in device.hints is for acpi.  But there is
considerably more information about acpi in the acpi(4) man page,
with a lot of loader.conf tunables you can set regarding acpi.
One of them will disable it completely, but the syntax is
different than you would use in device.hints. 


Also note that there is a whole chapter on Using and Debugging
FreeBSD ACPI in the FreeBSD Handbook.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]




---
Omer Faruk Sen
http://www.EnderUNIX.ORG
Software Development Team @ Turkey
http://www.Faruk.NET
For Public key: http://www.enderunix.org/ofsen/ofsen.asc
 



First Turkish Qmail book is out! Go check it.
Duydunuz mu! Turkiye'nin ilk Qmail kitabi cikti.
http://www.acikakademi.com/catalog/qmail/ 


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