mount /unmount

2011-07-04 Thread tethys ocean
Hi,

I have 3 question

is FreeBSD can boot and run all service while one of slice is not mount for
example /usr slice..

and second question is my mysql is in /var slice if /var is not mout can I
access mysql being root and chek all databases also can read log file on
/var

third question is can I mount any unmount slice by using just fsck  :)

thx



-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: mount /unmount

2011-07-04 Thread tethys ocean
so thx :)

I have a question again in below

On Mon, Jul 4, 2011 at 4:15 PM, Polytropon free...@edvax.de wrote:

 On Mon, 4 Jul 2011 15:28:16 +0300, tethys ocean wrote:
  Hi,
 
  I have 3 question
 
  is FreeBSD can boot and run all service while one of slice is not mount
 for
  example /usr slice..

 Check the corresponding entry in /etc/fstab where all file systems
 should be mentioned that you want to be mounted at system startup.
 For example, a proper line would look like this:

 # DeviceMountpoint  FStype  Options Dump
  Pass#
 # ---   -   --  -   -
 -
 /dev/ad0s1f /usrufs rw  2   2

 Check device names. Depending on how you're accessing disks, the
 name could also be ad0f, ada0f, da0f or something else.

 * Also keep the correct terminology: FreeBSD mounts UFS partitions,
 not slices. A slice contains a partition carrying a file system,
 usually UFS.*



*Means that /usr is not slice ?? or /var is not slice?   are all these are
UFS ?*





  and second question is my mysql is in /var slice if /var is not mout can
 I
  access mysql being root and chek all databases also can read log file on
  /var

 No. You can't access files inside a file system that isn't mounted
 (exceptions: forensic analysis, or performing a device dump).



  third question is can I mount any unmount slice by using just fsck  :)

 No. You can only mount file system that are marked clean. To
 accomplish this - yes - running fsck for the device (or the
 mount point, if listed in /etc/fstab) is required when the
 device has been uncleanly mounted previously. To mount all
 file systems, use mount -a.

 Also you should _not_ fsck a mounted partition. Unmount them
 first (if required), run fsck, then mount. In worst case, boot
 from a live system CD or DVD or USB stick and issue the fsck
 command from there (really, just worst case scenario, you
 shouldn't need this in the first place).




 --
 Polytropon
 Magdeburg, Germany
 Happy FreeBSD user since 4.0
 Andra moi ennepe, Mousa, ...




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: mount /unmount

2011-07-04 Thread tethys ocean
so so thx :)



On Mon, Jul 4, 2011 at 4:30 PM, Matthew Seaman 
m.sea...@infracaninophile.co.uk wrote:

 On 04/07/2011 13:28, tethys ocean wrote:
  is FreeBSD can boot and run all service while one of slice is not mount
 for
  example /usr slice..

 You can't run a program unless the partition containing it is mounted.
 Neither can you run a program if any command interpreter (eg. perl, php,
 bash) it uses, or any shared library is similarly not on a mounted
 partition.

 In order to facilitate working in single user mode, where just about
 every partition except the root is usually unmounted, there is a
 selection of useful applications in /rescue -- these are statically
 linked so no problems with unavailable shlibs.

  and second question is my mysql is in /var slice if /var is not mout can
 I
  access mysql being root and chek all databases also can read log file on
  /var

 MySQL's default data directory location is /var/db/mysql on FreeBSD.
 No, you need to mount /var to verify the information you require.

  third question is can I mount any unmount slice by using just fsck  :)

 If a partition was not unmounted cleanly (eg. the machine crashed, or
 the power was cut off suddenly) then fsck(8) should be used to check and
 fix any problems on the filesystem.  If you've booted into single-user
 mode, then definitely fsck any partitions before trying to mount them.


*I guess If I can do fsck without unmount partition I can lost all my data
isn't it?*




 However, any fsck'ing that the system requires should happen
 automatically if you just let the system reboot itself.  It's only
 occasionally when there are certain problems that fsck needs human input
 to resolve that you will be instructed to get onto the console and run
 fsck by hand[*].

 Generally you'ld then use mount(8) to mount any partitions.

Cheers,

Matthew

 [*] This is dependent on what sort of filesystems you are using.  For
 instance, ZFS never needs to stop and fsck in this way.  UFS+Journal
 won't need it either[+].

 [+] Sysinstall doesn't support installing a system using these
 filesystem technologies: it can be done manually, but that isn't for the
 faint of heart.

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




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: editing a binary file

2009-12-18 Thread ocean

Anton Shterenlikht wrote:

On Fri, Dec 18, 2009 at 09:33:49AM -0700, Warren Block wrote:

per...@pluto.rain.com wrote:

Greg Larkin glar...@freebsd.org wrote:

...

truncate -4 myfile should get rid of the last four bytes.  Maybe
there's a similar efficient way to truncate the start of a file.

This should do it:

dd if=oldfile of=newfile bs=1 skip=4

Or, perhaps marginally more efficient:

dd if=oldfile of=newfile bs=4 skip=1
It would be nice to avoid the file copy, but maybe there's no way to do 
that.  The small buffer size for dd will probably make copies of 
multi-gig files slow.  This might be faster:


tail -c +5 myfile  outfile
truncate -4 outfile

(Has anyone mentioned that you can edit binary files interactively with 
vi yet?  No?  Well, it's horrific and surely has interesting failure 
modes.  And there are probably disadvantages also.)


Vim, yes. I tried, but failed. At the moment dd/truncate combination
seems the most appealing. But I'll look at C/perl/python proposed
solutions as well.

many thanks



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


keeping system base update and problems with CPUTYPE

2009-12-08 Thread ocean
i've read the manual section, and there's really not much informations 
on this.


i've looked into /usr/src/Makefile and Makefile.incl i've seen there are 
options to update /usr/src using svn (wich would be my preferred option) 
or cvs, but i haven't been able to configure it in any way.


i think i could just do:
svn checkout svn://svn.freebsd.org/base/stable/8/ /usr/src

but i wanted to keep it clean and organized using make in /usr/src
can someone point me to some informations about this or help me sorting 
this out?



i think i've also found an unexpected behaviour in make buildworld, 
i've put src.conf and makefile.conf in /etc/


CPUTYPE?=pentium-m
CFLAGS= -O2 -fno-strict-aliasing -pipe

buildkernel and ports build with the cflags and added -march=pentium-m

buildworld builds with the cflags i've specified without adding -march.
that's a strane behaviour since i think buildworld should build with 
CPUTYPE defined in /etc/make.conf, if you don't define another CPUTYPE 
variable.


i've also tried to do:
make CPUTYPE=pentium-m buildworld
and also this way -march isn't added to cflags

i wanted to ask if it's my fault before filling a PR about this.

only way i found to get -march=pentium-m on buildworld is to add it 
myself to CFLAGS in make.conf.


regards
ocean
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Gnome desktop for 5 y/o

2009-12-08 Thread ocean
i think it could go fine on this computer, use gnome lite and also add 
the needed ports to have a fairly nice system (gnome-backgrounds 
etc...). compile from ports with some optimizations (-O2 
-fno-strict-aliasing and consider if -pipe could be used or not based on 
your ram memory). for firefox consider you'll have probably to use also 
linux compatibility layer with flash (don't know if it's on 6.4)


for parental control check this thread in ml:
http://lists.freebsd.org/pipermail/freebsd-questions/2007-June/152543.html
http://lists.freebsd.org/pipermail/freebsd-questions/2007-July/152728.html

regards
ocean


Charles Howse wrote:

Hi,
I have a 6.4-STABLE machine running in command line only for my Apache
webserver.
I'm thinking of installing a Gnome desktop on it for my 5 y/o grandson and
grown daughter to use so they won't be pestering me to use my pc.

The 5 y/o won't need anything except Firefox, some disk-based games and
Parental Controls.
For the Parental Controls, I need to limit the websites he can visit, and
the time of day he can use the computer.

The daughter will only need Firefox and a decent word processor.

The computer is a P3 600, 256mb ram, ATI 3D Rage IIc video, plenty of disk
space.

Will Gnome2 or gnome-lite be faster?

What is available for Parental Controls?

Should I forget it because it will be too slow based on the machine's
hardware?

--
Later,
Charles



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


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


Re: Gnome desktop for 5 y/o

2009-12-08 Thread ocean

On Tue, Dec 8, 2009 at 8:47 AM, Charles Howse cho...@charter.net
wrote:


Hi ocean, thanks for the reply.
Is there a browser that will work out of the box with flash?
Most of the
games the 5 y/o uses are flash-based.



if you install the right ports on a fbsd 8.0 maybe it could just works (it's 
being discussed in the freebsd forums:
http://forums.freebsd.org/showthread.php?t=5786
gnash could also work but it's known to have some issues so i won't recommend 
it, possibilities are firefox+flash for windows under wine which someone says 
it works, or linux emulation and firefox+flash.

for parental control there's also the opendns alternative that can block adult 
sites, though i don't know how good it works.
you could also look at this (never tried it, don't know if/how it works):
https://addons.mozilla.org/en-US/firefox/addon/1803
http://procon.mozdev.org/

also for the old computer i would recommend xfce or, since you say they only 
need a few programs, you could go with just Xorg + feh for the background + 
xfwm or openbox + a light taskbar and a nice dock-bar (wbar or simdock) were 
you will only put the applications they need to run.

if there aren't specific problems with drivers and similar, an upgrade to a 
newer freebsd version could be advisable for flash :)

regards
ocean
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


../../../dev/ath/if_ath.c:3414: error: 'const struct ath_rx_status' has no member named 'rs_flags'

2009-04-13 Thread tethys ocean
I am using  7.1-STABLE FreeBSD 7.1-STABLE #   on one of the my servers. This
server was working properly for long time. Electricty is often break down
and this server isnt behind UPS. Today I have found it as shutdown and than
opened it but some servis/daemon hasn't work (such as mysql etc) I have done
fschk etc. And than I want to update since it is working so so slow. Than I
have update source tree and rebuild kernel and make depend has been
passing well and than make state fail,  error log(stdout) is shown bellow.

[r...@witch /usr/src/sys/i386/compile/WITCH]# make
cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs
-Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline
-Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -I.
-I../../.. -I../../../contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS
-include opt_global.h -fno-common -finline-limit=8000 --param
inline-unit-growth=100 --param large-function-growth=1000
-mno-align-long-strings -mpreferred-stack-boundary=2  -mno-mmx -mno-3dnow
-mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror
../../../dev/ath/if_ath.c -I../../../dev/ath
../../../dev/ath/if_ath.c: In function 'ath_rx_tap':
../../../dev/ath/if_ath.c:3414: error: 'const struct ath_rx_status' has no
member named 'rs_flags'
../../../dev/ath/if_ath.c:3416: error: 'const struct ath_rx_status' has no
member named 'rs_flags'
*** Error code 1

Stop in /usr/src/sys/i386/compile/WITCH.

I read some mail and paper about this error it is saying this is bug freebsd
bug... but I got suspicious because I did so many times kernel
rebuild+update source tree. It hasnt fail with this stdout. Why now?

thank a lot


-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: ../../../dev/ath/if_ath.c:3414: error: 'const struct ath_rx_status' has no member named 'rs_flags'

2009-04-13 Thread tethys ocean
thank a lot i found info in UPDATING just below

20090312:
 The open-source Atheros HAL has been merged from HEAD
 to STABLE.
 The kernel compile-time option AH_SUPPORT_AR5416 has been
 added to support certain newer Atheros parts, particularly
 PCI-Express chipsets.
 The following modules are no longer available, and should be
 removed from MODULES_OVERRIDE and/or loader.conf:-
 ath_hal ath_rate_amrr ath_rate_onoe ath_rate_sample

i added some line to my loader.conf shown in below

ath_load=YES
ath_hal_load=YES
ath_rate_amrr=YES

and added to my kernel such lines

device  ath # Atheros pci/cardbus NIC's
device  ath_hal # Atheros HAL (Hardware Access Layer)
options AH_SUPPORT_AR5416   # enable AR5416 tx/rx descriptors
device  ath_rate_sample # SampleRate tx rate control for ath


but  make  fail changed just like as shown below


/usr/src/sys/modules/ath/../../dev/ath/if_ath.c: In function 'ath_rx_tap':
/usr/src/sys/modules/ath/../../dev/ath/if_ath.c:3414: error: 'const struct
ath_rx_status' has no member named 'rs_flags'
/usr/src/sys/modules/ath/../../dev/ath/if_ath.c:3416: error: 'const struct
ath_rx_status' has no member named 'rs_flags'
*** Error code 1

Stop in /usr/src/sys/modules/ath.
*** Error code 1

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





On Mon, Apr 13, 2009 at 6:03 PM, Manolis Kiagias sonic200...@gmail.comwrote:

 tethys ocean wrote:
  I am using  7.1-STABLE FreeBSD 7.1-STABLE #   on one of the my servers.
 This
  server was working properly for long time. Electricty is often break down
  and this server isnt behind UPS. Today I have found it as shutdown and
 than
  opened it but some servis/daemon hasn't work (such as mysql etc) I have
 done
  fschk etc. And than I want to update since it is working so so slow. Than
 I
  have update source tree and rebuild kernel and make depend has been
  passing well and than make state fail,  error log(stdout) is shown
 bellow.
 
  [r...@witch /usr/src/sys/i386/compile/WITCH]# make
  cc -c -O -pipe  -std=c99 -g -Wall -Wredundant-decls -Wnested-externs
  -Wstrict-prototypes  -Wmissing-prototypes -Wpointer-arith -Winline
  -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensions -nostdinc  -I.
  -I../../.. -I../../../contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS
  -include opt_global.h -fno-common -finline-limit=8000 --param
  inline-unit-growth=100 --param large-function-growth=1000
  -mno-align-long-strings -mpreferred-stack-boundary=2  -mno-mmx -mno-3dnow
  -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -Werror
  ../../../dev/ath/if_ath.c -I../../../dev/ath
  ../../../dev/ath/if_ath.c: In function 'ath_rx_tap':
  ../../../dev/ath/if_ath.c:3414: error: 'const struct ath_rx_status' has
 no
  member named 'rs_flags'
  ../../../dev/ath/if_ath.c:3416: error: 'const struct ath_rx_status' has
 no
  member named 'rs_flags'
  *** Error code 1
 
  Stop in /usr/src/sys/i386/compile/WITCH.
 
  I read some mail and paper about this error it is saying this is bug
 freebsd
  bug... but I got suspicious because I did so many times kernel
  rebuild+update source tree. It hasnt fail with this stdout. Why now?
 
  thank a lot
 

 This is probably due to the changes in the atheros driver. You will have
 to update your kernel configuration file. Please read /usr/src/UPDATING
 and this thread:

 http://lists.freebsd.org/pipermail/freebsd-questions/2009-March/195075.html




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: Segmentation fault (core dumped)

2008-11-23 Thread tethys ocean
Hi again

İ found out what problem is. users had changed some libs of python and
apache.  After reinstall apache phyton and mod_python it works. so so
thanks.

regards.



On Sat, Nov 22, 2008 at 9:23 PM, tethys ocean [EMAIL PROTECTED]wrote:

 Hi to all

 The server is give this error whenever i want to start apache22.  why?
 regards



 --
 Share now a pigeon's flight
 Bluebound along the ancient skies,
 Its women forever hair and mammal,
 A Mediterranean town may arise
 If you rip apart a pigeon's heart.




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Segmentation fault (core dumped)

2008-11-22 Thread tethys ocean
Hi to all

The server is give this error whenever i want to start apache22.  why?
regards



-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Segmentation fault (core dumped)

2008-11-22 Thread tethys ocean
I have no idea since any other people doing something but i dont know
exactly  according to their claim he doing some stuff with python  for web
and i suppose he want to restart apache

python perl etc all packet is installed.



On Sat, Nov 22, 2008 at 9:36 PM, Kevin Kinsey [EMAIL PROTECTED] wrote:

 tethys ocean wrote:

 Hi to all

 The server is give this error whenever i want to start apache22.  why?
 regards


 Well, there could be any number of reasons why this happens.
 In my experience, it's because you have Apache loading a
 broken or incompatible module.  Have you recently rebuilt
 Apache, or some other module (like Perl, PHP, Python) that
 is used by Apache?

 Kevin Kinsey
 --
 If it ain't baroque, don't fix it.
---P.D.Q. Bach




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Segmentation fault (core dumped)

2008-11-22 Thread tethys ocean
apache-2.2.9_5  =   up-to-date with port
autoconf-2.62   =   up-to-date with port
db41-4.1.25_4   =   up-to-date with port
gd-2.0.35,1 =   up-to-date with port
gdbm-1.8.3_3=   up-to-date with port
irc-2.11.2p1=   up-to-date with port
ircii-20060725_1=   up-to-date with port
nano-2.0.9  =   up-to-date with port
p5-HTML-Template-2.9_1  =   up-to-date with port
portupgrade-2.4.6,2 =   up-to-date with port
py25-MySQLdb-1.2.2  =   up-to-date with port
py25-bsddb-2.5.2_2  =   up-to-date with port
py25-django-1.0.1   =   up-to-date with port
py25-flup-1.0.1 =   up-to-date with port
py25-gdbm-2.5.2 =   up-to-date with port
python25-2.5.2_3=   up-to-date with port
rsync-3.0.4 =   up-to-date with port
ruby-1.8.6.287,1=   up-to-date with port
ruby18-bdb-0.6.4=   up-to-date with port
tcl-8.4.19,1=   up-to-date with port
unzip-5.52_5=   up-to-date with port
webalizer-2.20.1_2  =   up-to-date with port


On Sat, Nov 22, 2008 at 9:39 PM, Matthew Seaman 
[EMAIL PROTECTED] wrote:

 tethys ocean wrote:

 Hi to all

 The server is give this error whenever i want to start apache22.  why?
 regards


 Because something's wrong.

Cheers,

Matthew

 What? Not enough of an answer?  It's all the answer anyone can give
 considering the parcity of information you supply in your question.
 To debug this properly could require any or all of:

  * your httpd.conf
  * the output of
   ldd /usr/local/sbin/httpd


/usr/local/sbin/httpd:
libm.so.4 = /lib/libm.so.4 (0x280c7000)
libaprutil-1.so.3 = /usr/local/lib/libaprutil-1.so.3 (0x280dd000)
libdb41.so.1 = /usr/local/lib/libdb41.so.1 (0x280f7000)
libexpat.so.6 = /usr/local/lib/libexpat.so.6 (0x28194000)
libiconv.so.3 = /usr/local/lib/libiconv.so.3 (0x281b2000)
libapr-1.so.3 = /usr/local/lib/libapr-1.so.3 (0x2829f000)
libcrypt.so.3 = /lib/libcrypt.so.3 (0x282c1000)
libpthread.so.2 = /lib/libpthread.so.2 (0x282d9000)
libc.so.6 = /lib/libc.so.6 (0x282fe000)





  * a traceback from httpd.core, although this won't be much use unless
you've compiled httpd with debug symbols.


 locate httpd.core
/usr/local/etc/rc.d/httpd.core
/usr/ports/distfiles/tmp/lib/httpd.core





  * the result of running:

   truss -f /usr/local/sbin/httpd {+ any other arguments you usually
 use}


truss -f /usr/local/sbin/httpd
truss: cannot open /proc/curproc/mem: No such file or directory
truss: cannot open1 /proc/61323/mem: No such file or directory





  * If you're using mod_php, then the contents of
  /usr/local/etc/php/extensions.ini


extension=bcmath.so
extension=bz2.so
extension=calendar.so
extension=ctype.so
extension=curl.so
extension=pcre.so
extension=simplexml.so
extension=spl.so
extension=dom.so
extension=filter.so
extension=gd.so
extension=gettext.so
extension=hash.so
extension=iconv.so
extension=json.so
extension=mbstring.so
extension=mcrypt.so
extension=mysql.so
extension=pdo.so
extension=pdo_sqlite.so
extension=posix.so
extension=session.so
extension=sockets.so
extension=sqlite.so
extension=tokenizer.so
extension=xml.so
extension=xmlreader.so
extension=xmlwriter.so





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




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Segmentation fault (core dumped)

2008-11-22 Thread tethys ocean
i found something from bash_hist. he deinstall all pkg. (apache php and
python) while he is upgrade.  i ve reinstall apache22 and port upgraded.
than now i will reinstall all deinstalled package and fix it



On Sat, Nov 22, 2008 at 10:12 PM, Giorgos Keramidas 
[EMAIL PROTECTED] wrote:

 On Sat, 22 Nov 2008 21:53:02 +0200, tethys ocean [EMAIL PROTECTED]
 wrote:
  I have no idea since any other people doing something but i dont know
  exactly according to their claim he doing some stuff with python for
  web and i suppose he want to restart apache

 Maybe it's a good idea to avoid messing up with this particular Apache
 instance then.  If you don't know how it has been installed, and you
 cannot find out, and you are only guessing that a restart should fix
 things, then don't do that...  Geez :P





-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: pyhton apache

2008-11-01 Thread tethys ocean
On Fri, Oct 31, 2008 at 11:28 PM, Michael Powell [EMAIL PROTECTED]wrote:

 tethys ocean wrote:

  Hi all
 
  I have a problem, a freebsd box that is apache22 and python25-2.5.2_3,
  mod_python-3.3.1_2   after upgrading phyton web site has stoped with this
  error Internal Server Error
 [snip]
  [Fri Oct 31 05:05:15 2008] [notice] Digest: done
  [Fri Oct 31 05:05:16 2008] [notice] Apache/2.2.6 (FreeBSD) mod_ssl/2.2.6
  OpenSSL/0.9.7e-p1 mod_python/3.3.1 Python/2.4.4 PHP/5.2.4 with
  
 Well Apache seems to think it is still using Python 2.4.4.

  Suhosin-Patch configured -- resuming normal operations
  [Fri Oct 31 10:06:21 2008] [error] [client 195.217.151.57] client sent
  HTTP/1.1 request without hostname (see RFC2616 section 14.23):
  /w00tw00t.at.ISC.SANS.DFind:)
 
 [snip]

 I can't be of much help with this as I am not a Python expert by any means,
 but the first thing that occurs to me is to ask: did you rebuild/reinstall
 mod_python after you upgraded to python25? If not you might want to try
 that first. Restart Apache and see if it no longer shows the Python 2.4.4.

 As far as the Python environment(s), you may want to ensure that all
 vestiges of the old python24 are truly gone (especially prior to rebuilding
 mod_python).

 You may also try and find confirmation somehow whether or not the code that
 is failing on the web server is even compatible with python25. In such a
 case either update the failing code or downgrade back to python24.

 If the server is production and you just need it back up fast you may
 consider returning it to its pre-python25 upgrade condition. Then conduct
 your python25 experimentation on a non-production test box.

 Before any major change of this sort I _always_ do backup dumps of my
 server. So if something goes south I can immediately restore the server to
 the state it was in prior to mucking it up.

 -Mike


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


İ am reinstaling many times mod_python-3.3.1_2  and Python25 but in
httpd-error.log still shown *Apache/2.2.6 (FreeBSD) mod_ssl/2.2.6
OpenSSL/0.9.7e-p1 mod_python/3.3.1 Python/2.4.4 PHP/5.2.4 with Suhosin-Patch
configured -- resuming normal *operations

means apache22 is still running with *Python/2.4.4  *how can i get rid of
this?!?



ls /var/db/ports
apache22php5py-django
portupgrade *python25*ruby




 ls /var/db/pkg/
db41-4.1.25_4   *mod_python-3.3.1_2* *python25-2.5.2_3*

py24-django-1.0pkgdb.db  py24-flup-1.0.1
portupgrade-2.4.6,2 py24-setuptools-0.6c9


-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

pyhton apache

2008-10-31 Thread tethys ocean
Hi all

I have a problem, a freebsd box that is apache22 and python25-2.5.2_3,
mod_python-3.3.1_2   after upgrading phyton web site has stoped with this
error Internal Server Error
in http-errorlog[Thu Oct 30 22:26:46 2008] [error] [client 65.54.112.34]
File does not exist: /home/aleni/www-home/static/robots.txt
[Thu Oct 30 23:03:28 2008] [error] [client 38.87.44.102] File does not
exist: /home/aleni/www.tmp/static/robots.txt
[Thu Oct 30 23:08:57 2008] [error] [client 85.75.231.172] File does not
exist: /home/aleni/www-home/static/robots.txt
[Fri Oct 31 01:26:52 2008] [error] [client 212.36.146.10] File does not
exist: /home/aleni/www-home/static/robots.txt
[Fri Oct 31 05:05:15 2008] [warn] RSA server certificate CommonName (CN) `
aleni.net' does NOT match server name!?
[Fri Oct 31 05:05:15 2008] [warn] Init: SSL server IP/port conflict:
www.aleni.net:443 (/usr/local/etc/apache22/extra/httpd-vhosts.conf:105) vs.
static.aleni.net:443 (/usr/local/etc/apache22/extra/httpd-vhosts.conf:154)
[Fri Oct 31 05:05:15 2008] [warn] Init: You should not use name-based
virtual hosts in conjunction with SSL!!
*[Fri Oct 31 05:05:15 2008] [notice] mod_python: Creating 0 session mutexes
based on 256 max processes and 0 max threads.*
*[Fri Oct 31 05:05:15 2008] [notice] mod_python: using mutex_directory /tmp
*
[Fri Oct 31 05:05:15 2008] [notice] Digest: generating secret for digest
authentication ...
[Fri Oct 31 05:05:15 2008] [notice] Digest: done
[Fri Oct 31 05:05:16 2008] [notice] Apache/2.2.6 (FreeBSD) mod_ssl/2.2.6
OpenSSL/0.9.7e-p1 mod_python/3.3.1 Python/2.4.4 PHP/5.2.4 with Suhosin-Patch
configured -- resuming normal operations
[Fri Oct 31 10:06:21 2008] [error] [client 195.217.151.57] client sent
HTTP/1.1 request without hostname (see RFC2616 section 14.23):
/w00tw00t.at.ISC.SANS.DFind:)

when check apache config file

* LoadModule python_module libexec/apache22/mod_python.so
 LoadModule php5_module libexec/apache22/libphp5.so

 PythonOption mod_python.mutex_directory /tmp
 PythonOption mod_python.mutex_locks 0
*
and also in http_vhost.conf


Location /
  SetHandler mod_python
  PythonInterpreter main_interpreter
  PythonHandler trac.web.modpython_frontend
  PythonOption TracEnv /home/aleni/www/
  PythonOption TracUriRoot /
   /Location




i cant normalize server and open to web page  if any help (solution)
appreciate



-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


joomla15-1.5.3 has known vulnerabilities:

2008-09-08 Thread tethys ocean
Hi all

one of the co-locatin customer want to use joomla(lestest version 15) i want
to install from port but i ve taken this error


[EMAIL PROTECTED] /usr/ports/www/joomla15]# make install clean
===  joomla15-1.5.3 has known vulnerabilities:
= joomla -- flaw in the reset token validation.
   Reference: 
http://www.FreeBSD.org/ports/portaudit/8514b6e7-6f0f-11dd-b3db-001c2514716c.html

= Please update your ports tree and try again.
*** Error code 1

Stop in /usr/ports/www/joomla15.
[EMAIL PROTECTED] /usr/ports/www/joomla15]#

port is updated

firstly it would install i patch it but not install




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: jail stop extracting iso file

2008-09-01 Thread tethys ocean
the problem is already here at the host system (not in the jail) i wasnt
able to get rid of jail and can't access to device in jail
somehow i must access mdconfig and mount but i shouldnt stop jail.




On Sun, Aug 31, 2008 at 11:19 PM, Olli Hauer [EMAIL PROTECTED] wrote:

  In server jail and squid is running on it  as lots of another packet. i
  want
  to extract iso image in this server.  But i havent do it.
 
  #mdconfig -a -t vnode -f big_bcbcv.iso
  #mdconfig: open(/dev/mdctl): No such file or directory
 
  you can't
 
  jail doesn't allow it.

 Yes, but why don't mount the ISO at the host system and do a nullfs mount
 into the jail?

 at the host system (not in the jail)
 # mdconfig -a -t vnode -u 10 -f ${path_to_iso_image}
 # mount_cd9660 -o ro /dev/md10 /mnt/
 # mount_nullfs /mnt ${path_to_jail}/mnt

 ssh into the jail
 # pkg_add /mnt/filename


 --
 GMX Kostenlose Spiele: Einfach online spielen und Spaß haben mit Pastry
 Passion!

 http://games.entertainment.gmx.net/de/entertainment/games/free/puzzle/6169196




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: jail stop extracting iso file

2008-08-31 Thread tethys ocean
İ see, i should extract this iso image (not using tar) may i close this
jail? and can i restart correctly? i am hesitate since squid in running on
jail? process is like

[EMAIL PROTECTED] /etc]#  ps ax -o pid,jid,args
  PIDJID COMMAND
 8415  0 /usr/local/sbin/httpd -k start
10414  0 sshd: mary [priv] (sshd)
10417  0 sshd: [EMAIL PROTECTED] (sshd)
17168  0 /usr/local/sbin/squid -D
17170  0 (squid) -D (squid)
17171  0 (unlinkd) (unlinkd)
20754  0 /usr/sbin/syslogd -ss
20871  0 /usr/sbin/sshd
35688  0 sshd: andy [priv] (sshd)
35691  0 sshd: [EMAIL PROTECTED] (sshd)
42074  0 /usr/local/sbin/munin-node (perl)
48630  0 /usr/local/sbin/httpd -k start
64266  0 screen
67740  0 /usr/local/sbin/httpd -k start
71171  0 /usr/local/sbin/httpd -k start
76426  0 /usr/local/sbin/httpd -k start
92862  0 /usr/local/sbin/httpd -k start
93912  0 sshd: alex [priv] (sshd)
93929  0 sshd: [EMAIL PROTECTED] (sshd)
93955  0 screen
10418  0 -bash (bash)
35692  0 -bash (bash)
35693  0 su -
35694  0 -su (csh)
64268  0 /usr/local/bin/bash
93930  0 -bash (bash)
93932  0 su -
93933  0 -su (bash)
93954  0 screen
93956  0 /usr/local/bin/bash
94654  0 ps ax -o pid,jid,args
[EMAIL PROTECTED] /etc]#


i think so i can stop jail by this command? (but it run)

/etc/rc.d/jail start
/etc/rc.d/jail stop


OR i can kill jail process and than /etc/rc.d/jail stop  and i can disable
in sysctl jail line

#security.jail.set_hostname_allowed=1
#security.jail.socket_unixiproute_only=1
#security.jail.sysvipc_allowed=0
#security.jail.enforce_statfs=2
#security.jail.allow_raw_sockets=0
#security.jail.chflags_allowed=0
#security.jail.jailed=0

than extract iso  file and restart jail?  possible? and it contains any
risk? since squid is so so important

since i ve read  this paper
http://www.freebsd.org/doc/en/books/handbook/jails-application.html

but i wasn't able to find some jail details/setting in this server but
neverthless jail is running

regards



2008/8/31 Robert Watson [EMAIL PROTECTED]


 On Sun, 31 Aug 2008, tethys ocean wrote:

  In server jail and squid is running on it as lots of another packet. i
 want to extract iso image in this server.  But i havent do it.


 You are correct that direct manipulation of md(4) devices is not allowed in
 jail.  However, you may be running on a version FreeBSD in which tar(1) can
 be used to extract iso files, which is quite a bit more convenient for many
 uses.

 Robert N M Watson
 Computer Laboratory
 University of Cambridge



 #mdconfig -a -t vnode -f big_bcbcv.iso
 #mdconfig: open(/dev/mdctl): No such file or directory

 #ls -l /dev/md*
 #ls -ls /dev/mdctl
 ls: /dev/mdctl: No such file or directory


 i am not familiar with jail.  only i can extract my iso file. İ suppose
 that
 jail stop me, jail blocking me for access some source


 is it true?

 1-how can extract this iso file
 2-is jail stop me?  or any other trouble about my mdctl?

 regard




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

jail stop extracting iso file

2008-08-30 Thread tethys ocean
Hi all

In server jail and squid is running on it  as lots of another packet. i want
to extract iso image in this server.  But i havent do it.

#mdconfig -a -t vnode -f big_bcbcv.iso
#mdconfig: open(/dev/mdctl): No such file or directory

#ls -l /dev/md*
#ls -ls /dev/mdctl
ls: /dev/mdctl: No such file or directory


i am not familiar with jail.  only i can extract my iso file. İ suppose that
jail stop me, jail blocking me for access some source


is it true?

1-how can extract this iso file
2-is jail stop me?  or any other trouble about my mdctl?

regard
-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: upgrade from 6.3 to 7.0

2008-07-30 Thread tethys ocean
*Hi again
*

*This is a database server. I checked the port tree and saw that all of
them are updated except for mysql. Some list members have commented
that upgrading freebsd 6.2 to 7.0 stable may result in port conflicts
and installing the entire ports hierarchy rather than upgrading them
would be a better solution. However, it is necessary to compile them
again after installing the ports and this might result in conflicts
with the sources or dependencies of previous packages. I will test all
these options.*




On Sun, Jul 27, 2008 at 5:59 AM, Jerry McAllister [EMAIL PROTECTED] wrote:

 On Fri, Jul 25, 2008 at 09:25:12PM -0400, David Gurvich wrote:

  You should not do the upgrade,


 Whatever would cause you to give such poor advice?


   though you can.  ZFS is still
  experimental on FreeBSD though you can certainly use zfs pools on your
  existing system.

 It works.

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




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


upgrade from 6.3 to 7.0

2008-07-25 Thread tethys ocean
Hi

I ve got 6.3 stable database server.  Can i directly upgrade my server from
6.3 to 7.0

*default release=cvs tag=RELENG_6

*default release=cvs tag=.

and also may i add ZFS to my server if such kind of update succsessfull.  is
it possible or not and advantage and disadvantage.





-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


vulnerabilities and installation options

2008-07-16 Thread tethys ocean
Hi

Today I ve installed freeBSD 7.0 to my new server than while installing
packet to it, I ve met with difficulties about php5 and php5-extension.  2
days before I ve installed a web server I havent meet this error msg, this
server running properly.  But today I met.



  Verifying install for /usr/local/lib/php/20060613/posix.so in
/usr/ports/sysutils/php5-posix
===  php5-posix-5.2.6 has known vulnerabilities:
= php -- input validation error in posix_access function.
   Reference: 
http://www.FreeBSD.org/ports/portaudit/ee6fa2bd-406a-11dd-936a-0015af872849.html

= Please update your ports tree and try again.
*** Error code 1

Stop in /usr/ports/sysutils/php5-posix.
*** Error code 1

Stop in /usr/ports/lang/php5-extensions.
*** Error code 1

Stop in /usr/ports/lang/php5-extensions.




I ve run portupgrade -arR but result hasnt changed

I wonder

1-why today I met although this vulnerabilities is anounce in nearly May.
2-whey FreeBSD 7.0  dont give any options to user such
   a) this packet has a bla bla vulnerabilities do you want to continue
   b) or not (may be  give me and pacth this vulnerabilities if it has got.)


I can install with this options

# make -DDISABLE_VULNERABILITIES install

but I dont want since may be you have got much more better advise


-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Core(TM)2 Quad and TOP output

2008-07-15 Thread tethys ocean
#cd /usr/src/sys/i386/config/GENERIC

#cp -Rp GENERIC mykernelname

edit my kernel

#vim mykernelname


ident   GENERIC

change

ident  mykernelname

and add

# To make an SMP kernel, the next two lines are needed
 options SMP # Symmetric MultiProcessor Kernel
 device  apic# I/O APIC

secondly


[EMAIL PROTECTED] /usr/src/sys/i386/conf]# config mykernelname


[EMAIL PROTECTED] /usr/src/sys/i386/compile/mykernelname]# make depend   make
 make install

finnally

mergemaster

and reboot


On Tue, Jul 15, 2008 at 11:23 AM, Jos Chrispijn [EMAIL PROTECTED] wrote:

 Scott Bennett wrote:

 That is not necessary either. Take a look in /sys/i386/conf or
 /sys/amd64/conf, depending upon which you are using.  Then do:

 # config SMP
 # cd ../compile/SMP
 # make cleandepend  make depend  make  make install
 # shutdown -r now

 That should take care of it for you.  /sys/{i386,amd64}/conf/SMP adds
 options SMP and then includes GENERIC.


 Thanks for sharing; will put this in my FreeBSD user bible!

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




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Core(TM)2 Quad and TOP output

2008-07-14 Thread tethys ocean
Hi all

I have new server(webserver) quad core but performans is not well (according
our old webserver pent IV ). Maybe its performans depends on our web page
sourcecode. FreeBSD 6.3 stable is running on it. dmesg is in below.


1-I wonder in my TOP output can I see all CPU or not?


last pid: 19887;  load averages:  0.13,  0.04,  0.01 up 2+21:18:18
16:53:16
48 processes:  1 running, 47 sleeping
CPU:  0.0% user,  0.0% nice,  0.0% system,  0.0% interrupt,  100% idle
Mem: 119M Active, 352M Inact, 126M Wired, 48K Cache, 112M Buf, 1401M Free
Swap: 5120M Total, 5120M Free


and also another question is

2-FreeBSD 7.0 has got default multiprocessor generic kernel??? since during
installations only one generic kernel shown


CPU: Intel(R) Core(TM)2 Quad  CPU   Q9300  @ 2.50GHz (2499.97-MHz 686-class
CPU)
  Origin = GenuineIntel  Id = 0x10677  Stepping = 7

Features=0xbfebfbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CLFLUSH,DTS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE

Features2=0x8e3fdSSE3,RSVD2,MON,DS_CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,b19
  AMD Features=0x2010NX,LM
  AMD Features2=0x1LAHF
  Cores per package: 4
real memory  = 2146959360 (2047 MB)
avail memory = 2091646976 (1994 MB)
ACPI APIC Table: A_M_I_ OEMAPIC 
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
 cpu0 (BSP): APIC ID:  0
 cpu1 (AP): APIC ID:  1
 cpu2 (AP): APIC ID:  2
 cpu3 (AP): APIC ID:  3
ioapic0 Version 2.0 irqs 0-23 on motherboard
kbd1 at kbdmux0
ath_hal: 0.9.20.3 (AR5210, AR5211, AR5212, RF5111, RF5112, RF2413, RF5413)
hptrr: HPT RocketRAID controller driver v1.1 (Jan 16 2008 04:43:12)
acpi0: A_M_I_ OEMRSDT on motherboard
acpi0: Power Button (fixed)
Timecounter ACPI-fast frequency 3579545 Hz quality 1000
acpi_timer0: 24-bit timer at 3.579545MHz port 0x808-0x80b on acpi0
acpi_hpet0: High Precision Event Timer iomem 0xfed0-0xfed003ff on
acpi0
Timecounter HPET frequency 14318180 Hz quality 900
cpu0: ACPI CPU on acpi0
cpu1: ACPI CPU on acpi0
cpu2: ACPI CPU on acpi0
cpu3: ACPI CPU on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
pcib1: ACPI PCI-PCI bridge irq 16 at device 1.0 on pci0
pci1: ACPI PCI bus on pcib1
pci1: display, VGA at device 0.0 (no driver attached)
uhci0: UHCI (generic) USB controller port 0xc800-0xc81f irq 16 at device
26.0 on pci0
uhci0: [GIANT-LOCKED]
usb0: UHCI (generic) USB controller on uhci0
usb0: USB revision 1.0
uhub0: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhci1: UHCI (generic) USB controller port 0xc880-0xc89f irq 21 at device
26.1 on pci0
uhci1: [GIANT-LOCKED]
usb1: UHCI (generic) USB controller on uhci1
usb1: USB revision 1.0
uhub1: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
uhci2: UHCI (generic) USB controller port 0xcc00-0xcc1f irq 18 at device
26.2 on pci0
uhci2: [GIANT-LOCKED]
usb2: UHCI (generic) USB controller on uhci2
usb2: USB revision 1.0
uhub2: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub2: 2 ports with 2 removable, self powered
ehci0: EHCI (generic) USB 2.0 controller mem 0xfbfffc00-0xfbff irq 18
at device 26.7 on pci0
ehci0: [GIANT-LOCKED]
usb3: EHCI version 1.0
usb3: companion controllers, 2 ports each: usb0 usb1 usb2
usb3: EHCI (generic) USB 2.0 controller on ehci0
usb3: USB revision 2.0
uhub3: Intel EHCI root hub, class 9/0, rev 2.00/1.00, addr 1
uhub3: 6 ports with 6 removable, self powered
pci0: multimedia at device 27.0 (no driver attached)
pcib2: ACPI PCI-PCI bridge irq 17 at device 28.0 on pci0
pci4: ACPI PCI bus on pcib2
pcib3: ACPI PCI-PCI bridge irq 17 at device 28.4 on pci0
pci3: ACPI PCI bus on pcib3
atapci0: JMicron JMB363 SATA300 controller port
0xdc00-0xdc07,0xd880-0xd883,0xd800-0xd807,0xd480-0xd483,0xd400-0xd40f mem
0xfeafe000-0xfeaf irq 16 at device 0.0 on pci3
atapci0: AHCI called from vendor specific driver
atapci0: AHCI Version 01.00 controller with 2 ports detected
ata2: ATA channel 0 on atapci0
ata3: ATA channel 1 on atapci0
ata4: ATA channel 2 on atapci0
pcib4: ACPI PCI-PCI bridge irq 16 at device 28.5 on pci0
pci2: ACPI PCI bus on pcib4
pci2: network, ethernet at device 0.0 (no driver attached)
uhci3: UHCI (generic) USB controller port 0xc080-0xc09f irq 23 at device
29.0 on pci0
uhci3: [GIANT-LOCKED]
usb4: UHCI (generic) USB controller on uhci3
usb4: USB revision 1.0
uhub4: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub4: 2 ports with 2 removable, self powered
uhci4: UHCI (generic) USB controller port 0xc400-0xc41f irq 19 at device
29.1 on pci0
uhci4: [GIANT-LOCKED]
usb5: UHCI (generic) USB controller on uhci4
usb5: USB revision 1.0
uhub5: Intel UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub5: 2 ports with 2 removable, self powered
uhci5: UHCI (generic) USB controller port 0xc480-0xc49f irq 18 at device
29.2 on pci0
uhci5: [GIANT-LOCKED]
usb6: UHCI (generic) USB controller on uhci5
usb6: USB revision 1.0
uhub6: Intel UHCI root hub, 

Re: Core(TM)2 Quad and TOP output

2008-07-14 Thread tethys ocean
Pufz  I ve check all my server and I ve realize all my server is running
only one CPU :(  all is 6.3 stable

How  must I  add another CPU on running server.


and 7.0 will have to be stable heyoo :D

* 7.0-STABLE FreeBSD 7.0-STABLE #0: Mon Jul 14 21:59:07 EEST 2008*


On Mon, Jul 14, 2008 at 6:38 PM, Jos Chrispijn [EMAIL PROTECTED] wrote:

 Josh Carroll wrote:

 Is SMP in GENERIC now in 6.3-STABLE then?


 Nope, you have to add that line to it b4 you compile your Kernel again...

 -- Jos




-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


connect(AF_INET) to spamd at 127.0.0.1 failed, retrying (#1 of 3): Connection refused

2008-04-21 Thread tethys ocean
Hi

  I have a big problem about Spamassassin, while spamass is working  get
this error.

Apr  21 10:43:08 spamc[8027]: connect(AF_INET) to spamd at 127.0.0.1
failed, retrying (#1 of 3): Connection refused
Apr  21  10:43:09  spamc[8027]: connect(AF_INET) to spamd at 127.0.0.1
failed, retrying (#2 of 3): Connection refused
Apr  21  10:43:10  spamc[8027]: connect(AF_INET) to spamd at 127.0.0.1
failed, retrying (#3 of 3): Connection refused
Apr  21  10:43:11  spamc[8027]: connection attempt to spamd aborted
after 3 retries



what can  do?



-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Fwd: insn-attrtab.c: In function 'ppro-po_unit_ready_cost'

2008-01-26 Thread tethys ocean
Hi all

While I was make buildworld  make installworld such error occurs and
process is stoped. Whats is the meaning of this.  (FreeBSD 6.3 RELEASE)

insn-attrtab.c: In function 'ppro-po_unit_ready_cost'
insn-attrtab.c: 22086: error: stray ``' in program


-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


./iicbus_if.h: In function `IICBUS_TRANSFER':

2008-01-26 Thread tethys ocean
Hi again .

While I was being update another server which is 6.2 stable. make

./iicbus_if.h:124: warning: struct iic_msg declared inside parameter list
./iicbus_if.h:124: warning: its scope is only this definition or
declaration, which is probably not what you want
./iicbus_if.h:127: warning: struct iic_msg declared inside parameter list
./iicbus_if.h: In function `IICBUS_TRANSFER':
./iicbus_if.h:131: warning: passing arg 2 of pointer to function from
incompatible pointer type
*** Error code 1

Stop in /usr/src/sys/modules/i2c/if_ic.
*** Error code 1

Stop in /usr/src/sys/modules/i2c.
*** Error code 1

Stop in /usr/src/sys/modules.
*** Error code 1
:
-- 
Share now a pigeon's flight
Bluebound along the ancient skies,
Its women forever hair and mammal,
A Mediterranean town may arise
If you rip apart a pigeon's heart.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


PHP 5.2.4 FreeBSD 6.3-PRERELEASE squirrelmail-1.4.11

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


**
?php

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

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

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

?

**


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

I wonder this trouble is in my php config? or squirrelmail config??
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: PHP 5.2.4 FreeBSD 6.3-PRERELEASE squirrelmail-1.4.11

2007-11-15 Thread tethys ocean
Hi,

I am so sorry for make you to busy such kind of silly question. Since I
solved myself...

I must make ownership of webmail directory  www.

Now it is working ...

in FreeBSD 6.2 Stable no need to change file ownership it remains root:wheel
but 6.3 PRERELEASE We must chage to www:www

/usr/local/www/apache22/data/webmail
2 drwxr-xr-x  14 www   www512 Nov 14 01:36 webmail


Although  in httpd.conf I have got such comment line in below it doesnt work
out but now.

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps


For this meaning what change is in 6.3 I didnt understant. I solve by by
chance, trial and error.

Sincerely



On Nov 15, 2007 5:17 PM, tethys ocean [EMAIL PROTECTED] wrote:
 I am running with my newserver on   FreeBSD 6.3-PRERELEASE  PHP 5.2.4
 squirrelmail-1.4.11 now I cant configure  squirrelmail. Whenever I
 write   http://my IP/webmailI am take some *php  page that is
 download. such like content



**
 ?php

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

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

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

 ?


**


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

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

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


Re: www.freebsd.org

2007-11-10 Thread tethys ocean
Hi all

I am from TR also,  I have never heard any Turkish FreeBSD contributer
or developer except enderunix team.

Einstein  you can began building a web site than put inside your
document about FreeBSD and also your project+code tips etc, so we can
benefit all these.


And also I am agree with Kris you can share your accumulation with
enderunix team.




On Nov 10, 2007 7:50 PM, Byung-Hee HWANG [EMAIL PROTECTED] wrote:
 On Sat, 2007-11-10 at 12:27 -0500, Jerry McAllister wrote:
  On Sun, Nov 11, 2007 at 01:02:22AM +0900, Byung-Hee HWANG wrote:
 
   On Sat, 2007-11-10 at 16:59 +0200, [EMAIL PROTECTED] wrote:
Hi. We are developers. If you want , we can help to you for Turkish 
language
support.You can rely on us. We worked some projects.
  
   That's not true, you cannot help us. Please show us `uname -a';
 
  What does that mean?   Maybe they can contribute.
  Do you know some secret?

 As before i replied to Kris, that was my mistake. At that time, i knew
 einstein89 as a spammer. Again i speak, I am very sorry for the my rude
 remark, indeed..

 --
 Never get angry. Never make a threat. Reason with people.
 -- Vito Corleone, Chapter 1, page 57


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


make buildworld ....gcc bug

2007-11-07 Thread tethys ocean
When I am rebuilding world  FreeBSD 6.2 I have take error that is
shown below. What can I do!?

[EMAIL PROTECTED] /usr/src]#  make buildworld


[EMAIL PROTECTED] gcc -v
Using built-in specs.
Configured with: FreeBSD/i386 system compiler
Thread model: posix
gcc version 3.4.6 [FreeBSD] 20060305
[EMAIL PROTECTED]


/usr/src/gnu/usr.bin/binutils/ld/../../../../contrib/binutils/ld/ldemul.h:155:
warning: struct option declared inside parameter list
cc -O2 -fno-strict-aliasing -pipe -I.
-I/usr/src/gnu/usr.bin/binutils/ld -I/usr/src
/gnu/usr.bin/binutils/ld/../libbfd
-I/usr/obj/usr/src/tmp/usr/src/gnu/usr.bin/binut
ils/ld/../libbfd
-I/usr/src/gnu/usr.bin/binutils/ld/../../../../contrib/binutils/in
clude -DTARGET=\i386-obrien-freebsd\
-DDEFAULT_EMULATION=\elf_i386_fbsd\ -DSCRI
PTDIR=\/usr/obj/usr/src/tmp/usr/libdata\
-DBFD_VERSION_STRING=\2.15 [FreeBSD] 2
004-05-23\ -DBINDIR=\/usr/bin\
-DTARGET_SYSTEM_ROOT=\/usr/obj/usr/src/tmp\ -D
TOOLBINDIR=\/usr/obj/usr/src/tmp//usr/bin/libexec\ -D_GNU_SOURCE
-I/usr/src/gnu/u
sr.bin/binutils/ld/../../../../contrib/binutils/ld
-I/usr/src/gnu/usr.bin/binutils/
ld/../../../../contrib/binutils/bfd
-I/usr/obj/usr/src/tmp/legacy/usr/include -c ldlex.c
/usr/src/gnu/usr.bin/binutils/ld/../../../../contrib/binutils/ld/ldlex.l:
In function `yylex':
/usr/src/gnu/usr.bin/binutils/ld/../../../../contrib/binutils/ld/ldlex.l:579:
internal compiler error: Segmentation fault: 11
Please submit a full bug report,
with preprocessed source if appropriate.
See URL:http://gcc.gnu.org/bugs.html for instructions.
*** Error code 1

Stop in /usr/src/gnu/usr.bin/binutils/ld.
*** Error code 1

Stop in /usr/src/gnu/usr.bin/binutils.
*** Error code 1

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

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

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


tcp port error

2007-06-11 Thread tethys ocean

Hi all

I have a big problem about SMTP port . I am using qmail. Our my server cant
open smtp ports than it gives this error

## tail -f /var/log/qmail/qmail-smtpd/current
@4000466cfb8926b54f34 tcpserver: fatal: unable to figure out port number
for -x
@4000466cfb8a27ee119c tcpserver: fatal: unable to figure out port number
for -x
@4000466cfb8b29151cdc tcpserver: fatal: unable to figure out port number
for -x
@4000466cfb8c2a50e0cc tcpserver: fatal: unable to figure out port number
for -x
@4000466cfb8d2b7e0a74 tcpserver: fatal: unable to figure out port number
for -x
@4000466cfb8e2ca8ee14 tcpserver: fatal: unable to figure out port number
for -x
@4000466cfb8f2dd9fbd4 tcpserver: fatal: unable to figure out port number
for -x
@4000466cfb902f0b7ec4 tcpserver: fatal: unable to figure out port number
for -x



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


apache2.2 php5.1 mysql5

2007-01-07 Thread tethys ocean

Hi

I have FreeBSD 6.1 installed Apache 2.2 Mysql5  and also PHP5.1 but PHP5
doesnt work  Are there anybody works together it?


I did it such kinds of setting.

apache22_enable=YES
mysql_enable=YES

AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


mysql.sock deleted

2006-07-20 Thread tethys ocean

Hi all

While  doing

portupgrade -vr mysql

I lost my mysql socket . So mysql cant start.
How I can create mysql.sock
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


swith old version to the new version

2006-07-13 Thread tethys ocean

Hi All

I have some problem about How I can switch new version of program in my
system, without clean old version.

I want to install Spamasssasin so it need perl and in my server running old
version of perl(perl5) and also I install new version of perl(perl5.8) but
my system dont switch new version so I couldnt install  Spamasssassin. What
can I do?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: swith old version to the new version

2006-07-13 Thread tethys ocean

No; in document (http://www.hart.co.jp/spam/sa-clamav-e.html) only insruct
to spamassassin installation but I think perl updating process is hard and
differ from spamasssin installation, since it give some error  in below


Verifying install for p5-GSSAPI0 in /usr/ports/security/p5-GSSAPI
===   p5-GSSAPI-0.22 depends on file:
/usr/local/lib/perl5/site_perl/5.8.8/Test/More.pm - found
===   p5-GSSAPI-0.22 depends on file: /usr/local/bin/perl5.8.8 - found
===  Configuring for p5-GSSAPI-0.22

Welcome to GSSAPI.pm setup!

run perl Makefile.PL --help to see further installation options


--
Searching krb5-config command... not found! at ./Makefile.PL line 94.
*** Error code 1

Stop in /usr/ports/security/p5-GSSAPI.
*** Error code 1

Stop in /usr/ports/security/p5-Authen-SASL.
*** Error code 1

Stop in /usr/ports/net/p5-Net.
*** Error code 1

Stop in /usr/ports/www/p5-libwww.
*** Error code 1

Stop in /usr/ports/mail/p5-Mail-SpamAssassin.





On 7/13/06, Gerard Seibert [EMAIL PROTECTED] wrote:


tethys ocean wrote:

 Hi All

 I have some problem about How I can switch new version of program in my
 system, without clean old version.

 I want to install Spamasssasin so it need perl and in my server running
old
 version of perl(perl5) and also I install new version of perl(perl5.8)
but
 my system dont switch new version so I couldnt install  Spamasssassin.
What
 can I do?

Did you read all of the instructions for updating Perl prior to
attempting to install Spamassassin?


--
Gerard Seibert
[EMAIL PROTECTED]


A foolish consistency is the hobgoblin of little minds, adored by little
statesmen and philosophers and divines. With consistency a great soul
has simply nothing to do.

 Ralph Waldo Emerson
___
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]


DansGuardian Webmin Module

2006-04-18 Thread tethys ocean
Hi All

I need a Dansguardian Webmin module. İt server in SourceForce (
http://sourceforge.net/projects/dgwebminmodule/)
But I couldnt understand wbm extention file.  I checked my server with
dg-0.5.10-pr5.wbmhttp://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download


# file  dg-0.5.10-pr5.wbm
http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download
#dg-0.5.10-pr5.wbm
http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download:
gzip compressed data, from UNIX

so  I couldnt recognize this file extention and  also how I can extract this
file...

I havent got any document about  extraction and also instruction or  man
page  about DansGuardian Webmin Module

thanks a lot

 *  * *
*

*
*





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

Re: DansGuardian Webmin Module

2006-04-18 Thread tethys ocean
I so greatfull to you  for your instruction

Yes I did as if your advise but now, I think a little bit missing but I
couldnt decided what it is..

Since

*Manage DansGuardian - true web content filtering for all*
--

/usr/local/sbin/dansguardian


is shown  but not management GUI isnt it?

I can get squid management GUI but for Dansguardian not.

if I click the Module Config  button than in attachment page is come.

What I must do?


On 4/18/06, Andrew Pantyukhin [EMAIL PROTECTED] wrote:

 On 4/18/06, tethys ocean [EMAIL PROTECTED] wrote:
  Hi All
 
  I need a Dansguardian Webmin module. İt server in SourceForce (
  http://sourceforge.net/projects/dgwebminmodule/)
  But I couldnt understand wbm extention file.  I checked my server with
  dg-0.5.10-pr5.wbm
 http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download
 
 
 
  # file  dg-0.5.10-pr5.wbm
  
 http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download
 
  #dg-0.5.10-pr5.wbm
  
 http://prdownloads.sourceforge.net/dgwebminmodule/dg-0.5.10-pr5.wbm?download
 :
  gzip compressed data, from UNIX
 
  so  I couldnt recognize this file extention and  also how I can extract
 this
  file...
 
  I havent got any document about  extraction and also instruction or  man
  page  about DansGuardian Webmin Module
 
  thanks a lot
 
   *  * *
  *
 
  *
  *
 
 
 
 
 
  I check in my server file
 
  ___
  freebsd-questions@freebsd.org mailing list
  http://lists.freebsd.org/mailman/listinfo/freebsd-questions
  To unsubscribe, send any mail to 
 [EMAIL PROTECTED]
 
 

 From http://www.webmin.com/faq.html :

 How do I install new modules?

 Once you have downloaded a new module as a .wbm file,
 enter the Webmin Configuration module and click on the
 Webmin Modules button. Then use the form at the top of the
 page to install the module either from the local filesystem of
 the server Webmin is running on, or uploaded from the client
 your browser is on.

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

Dansguardian Webmin

2006-04-14 Thread tethys ocean
Hello

I ve a trouble that dansguardian management in webmin. Since Webmin 1.260and
1.270 doent support Dansguardian 2.9.4.0

I wonder Are there anybody get  manage to setting up webmin dansguardian
modulu.  Which version is suitable? How it is configured.


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


squid.pid owner

2006-04-04 Thread tethys ocean
Hello  All

We are running with squid proxy without ipfilter or pf.  Our squid block our
all outside connection. What am I do?  I wonder squid.pid's owner must be
root or squid user?

ie:proxy# ll /usr/local/squid/logs
total 52
-rw-r--r--  1 squid  squid  13479 Oct 17 12:10 access.log
-rw-r--r--  1 squid  squid  15482 Oct 17 12:12 cache.log
-rw-r--r--  1 root   squid  4 Oct 17 12:12 squid.pid
OR-rw-r--r--  1 squid   squid  4 Oct 17 12:12 squid.pid
-rw-r--r--  1 squid  squid  19330 Oct 17 12:10 store.log

which is true?!

I think it is related with squid.conf file since I have to define some acl
accept rule?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


squid.pid owner

2006-04-04 Thread tethys ocean
Hello  All

We are running with squid proxy without ipfilter or pf.  Our squid block our
all outside connection. What am I do?  I wonder squid.pid's owner must be
root or squid user?

ie:proxy# ll /usr/local/squid/logs
total 52
-rw-r--r--  1 squid  squid  13479 Oct 17 12:10 access.log
-rw-r--r--  1 squid  squid  15482 Oct 17 12:12 cache.log
-rw-r--r--  1 root   squid  4 Oct 17 12:12 squid.pid
OR-rw-r--r--  1 squid   squid  4 Oct 17 12:12 squid.pid
-rw-r--r--  1 squid  squid  19330 Oct 17 12:10 store.log

which is true?!

I think it is related with squid.conf file since I have to define some acl
accept rule?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: vqadmin

2005-09-28 Thread tethys ocean
VirtualHost my ip
ServerAdmin [EMAIL PROTECTED]
DocumentRoot /usr/local/www/cgi-bin/vqadmin
AuthUserFile /usr/local/etc/apache/.htpasswd
ServerName mydomain.com http://mydomain.com
ScriptAlias /cgi-bin /usr/local/www/cgi-bin
/VirtualHost


If I am added this line apache cant restart with this error

bash-2.05b# apachectl restart
/usr/local/sbin/apachectl restart: configuration broken, ignoring restart
/usr/local/sbin/apachectl restart: (run 'apachectl configtest' for details)
bash-2.05b# apachectl configtest
Syntax error on line 21 of /usr/local/etc/apache/VHosts.conf:
AuthUserFile not allowed here
bash-2.05b#


but I tried it as in the document

Directory /usr/local/www/cgi-bin/vqadmin
deny from all
Options ExecCGI
AllowOverride AuthConfig
Order deny,allow
/Directory


it is ok it check passwd but page come with another error page like this
*Error Syntax erorr in access lists*

error occured while initiating the interface.
Please contact the administrator if this continues.


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

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






On 27 Sep 2005 17:09:52 -0400, Lowell Gilbert 
[EMAIL PROTECTED] wrote:

 tethys ocean [EMAIL PROTECTED] writes:

  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 http://mydomain.com
  ServerAdmin [EMAIL PROTECTED]
  DocumentRoot /usr/local/www/cgi-bin/vqadmin
  ServerName mydomain.com http://mydomain.com http://mydomain.com
  #ServerAlias mydomain.com http://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*

 Does the
  AuthUserFile /usr/local/etc/apache/.htpasswd
 actually exist?

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


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]


Host unknown (Name server:XXXXXX no data known

2005-03-10 Thread tethys ocean
Hi,

I am use sendmail Version 8.12.11 recently I have lived such error
What is the meaning of this error mesages

The following addresses had permanent fatal errors
[EMAIL PROTECTED]  
 - Transcript of session follows 550 5.1.2
[EMAIL PROTECTED]... Host unknown (Name server:
[EMAIL PROTECTED]: no data known





j24Ar6Vo069160: [EMAIL PROTECTED],
ctladdr=[EMAIL PROTECTED] (514/10), delay=00:00:00,
xdelay=00:00:00, mailer=esmtp, pri=48595,
relay=02online.de, dsn=5.1.2, stat=Host unknown (Name
server: 02online.de: no data known)



j24DeTs1089745: [EMAIL PROTECTED],
ctladdr=[EMAIL PROTECTED] (514/10), delay=00:00:01,
xdelay=00:00:01, mailer=esmtp, pri=32975,
relay=mail.02online.de. [163.14.26.89], dsn=2.0.0,
stat=Sent (OK id=1D7D6E-0008QO-00)




j13Ag3tT030048:[EMAIL PROTECTED],
ctladdr=[EMAIL PROTECTED] (514/10), delay=00:00:00,
xdelay=00:00:00, mailer=esmtp,
pri=31805,[EMAIL PROTECTED], dsn=5.1.2, stat=Host
unknown (Name server: [EMAIL PROTECTED]: host not found)


j13Ag1Uh030018: to=[EMAIL PROTECTED],
delay=00:00:01, xdelay=00:00:01,mailer=amavis,
pri=31435, dsn=2.0.0, stat=Sent Feb  3 12:42:03 hypatia
sendmail[30050]: j13Ag3tT030048: j13Ag3tS030050: DSN:
Host unknown (Name server: aaa.com: host not found)


j13DtgiW057676: ruleset=check_mail,
arg1=[EMAIL PROTECTED], relay=wwxw.com
reject=553 5.1.8 [EMAIL PROTECTED]... Domain of
sender address [EMAIL PROTECTED]  does not exist
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: mountroot

2005-01-26 Thread tethys ocean
 Hi all,
 
 My disk file system was crash sice while booting
 
 Mounting root from ufs:/dev/ad0s1a
 Root mount failed:6
 
Manual root filesystem specification:
  fstype:device  Mount device using filesystem fstype
   eg. ufs:/dev/da0s1a
  ?  List valid disk boot devices
  empty line   Abort manual input

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


Re: defered mail

2005-01-06 Thread tethys ocean
 Is it depend on sendmail? As I heard that in Postfix such applications can do.

n configuration file a lot of section about defer mail. indeed it is
logical and normal it must send a mail to sender that include an
informaion about his mail defered and sendmail try after  3 or more
minutes.




On Mon, 3 Jan 2005 17:50:21 +0100, J65nko BSD [EMAIL PROTECTED] wrote:
 On Mon, 3 Jan 2005 10:23:07 +0200, tethys ocean [EMAIL PROTECTED] wrote:
  My problem is about defered mail.  On our server sendmail is running
  and sometimes some mail defered. I am researching how I can get
  managed to send defer mail information to senders?  I am taking a mail
  from root but sender didnt take a mail that consist your mail defered
  bla bla blaso I will take next tree minutes.. is it possible? if
  it is possible how I can manage?
 
  in sendmail.cf
 
   O Timeout.queuereturn=2d
   O Timeout.queuewarn=4h
   O Timeout.queuewarn.normal=4h
 
  mailq
  /var/spool/mqamavis (5 requests)
  -Q-ID- --Size-- -Q-Time-
   Sender/Recipient---
   iBVC8fpT049046-6361 Fri Dec 31 14:12 [EMAIL PROTECTED]
(host map: lookup (bbscomputer.net): deferred)
[EMAIL PROTECTED]
   iBVCIB9u051147-6361 Fri Dec 31 14:21 [EMAIL PROTECTED]
(host map: lookup (bbscomputer.net): deferred)
[EMAIL PROTECTED]
   iBVDjmck072838-   19579 Fri Dec 31 15:46 [EMAIL PROTECTED]
(host map: lookup (gesan.com.tr): deferred)
[EMAIL PROTECTED]
   iBV68HLM055154-  30 Fri Dec 31 08:08 [EMAIL PROTECTED]
(host map: lookup (active.net): deferred)
[EMAIL PROTECTED]
   iBVAnlhq030740-  354708 Fri Dec 31 12:49 [EMAIL PROTECTED]
(host map: lookup (jungletree.org): deferred)
[EMAIL PROTECTED]
   Total requests: 5
 
 As far as I can see, there is not much what you can do about it ;)
 
 $ host bbscomputer.net
 ;; connection timed out; no servers could be reached
 
 $ host gesan.com.tr
 Host gesan.com.tr not found: 2(SERVFAIL)
 
 $ host active.net
 active.net has address 12.161.44.180
 $ host -t mx active.net
 active.net mail is handled by 10 mail.active.net.
 $ host mail.active.net
 Host mail.active.net not found: 3(NXDOMAIN)
 
 $ host jungletree.org
 Host jungletree.org not found: 3(NXDOMAIN)
 
 =Adriaan=

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


defered mail

2005-01-03 Thread tethys ocean
My problem is about defered mail.  On our server sendmail is running
and sometimes some mail defered. I am researching how I can get
managed to send defer mail information to senders?  I am taking a mail
from root but sender didnt take a mail that consist your mail defered
bla bla blaso I will take next tree minutes.. is it possible? if
it is possible how I can manage?


in sendmail.cf 
 
 O Timeout.queuereturn=2d
 O Timeout.queuewarn=4h
 O Timeout.queuewarn.normal=4h 


mailq
/var/spool/mqamavis (5 requests)
-Q-ID- --Size-- -Q-Time-
 Sender/Recipient---
 iBVC8fpT049046-6361 Fri Dec 31 14:12 [EMAIL PROTECTED]
  (host map: lookup (bbscomputer.net): deferred)
  [EMAIL PROTECTED]
 iBVCIB9u051147-6361 Fri Dec 31 14:21 [EMAIL PROTECTED]
  (host map: lookup (bbscomputer.net): deferred)
  [EMAIL PROTECTED]
 iBVDjmck072838-   19579 Fri Dec 31 15:46 [EMAIL PROTECTED]
  (host map: lookup (gesan.com.tr): deferred)
  [EMAIL PROTECTED]
 iBV68HLM055154-  30 Fri Dec 31 08:08 [EMAIL PROTECTED]
  (host map: lookup (active.net): deferred)
  [EMAIL PROTECTED]
 iBVAnlhq030740-  354708 Fri Dec 31 12:49 [EMAIL PROTECTED]
  (host map: lookup (jungletree.org): deferred)
  [EMAIL PROTECTED]
 Total requests: 5
___
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 WinXP and FreeBSD 5.3

2004-12-30 Thread tethys ocean
http://ipucu.enderunix.org/view.php?id=70lang=en


On Mon, 27 Dec 2004 16:44:28 -0700, Tom Connolly [EMAIL PROTECTED] wrote:
 Hello list.  I wish to put FreeBSD 5.3 on a new hard drive and have it
 dual boot with the existing Windows XP system (separate HD).  Can I just
 simply go through the FreeBSD install and have it install the FreeBSD
 boot manager/loader on the XP drive?  I can't risk doing any damage to
 the XP system as it has a thermal analyzer program on it that won't run
 on FreeBSD (otherwise I would have no use for XP at all).  I would like
 to know if there are any gotchas or anything that could be a problem.
 I would really like to hear comments from anyone who has set up such a
 system.
 
 Thanks in advance,
 
 Tom
 
 ___
 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]


dmesg

2004-12-22 Thread tethys ocean
I have a problem abaout dmesg ..

whenever I said that dmesg sever  give sto me some different log.. 
such a 

connetsion atteöp to UDP 127.0.0.1:512 from 127.0.0.1:55519



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


bind+postfix+courier+sals+amavis+spamassian+pop3+mysql+apache+smtp-auth

2004-12-19 Thread tethys ocean
Hmmzz 
yep,  I want to do this but my packet version conflicted..

FreeBSD 5.3 stable
Mysql-server-5.0.1
Bind9-9.3.0 (for only dns cahe) 
Postfix-2.2.20041008,2  (also for GUI postfix-admin)
Courier-Imap-3.0.8.1
Cyrus-sasl-2.1.20
Apache-2.0.52_3 
Amavisd (clamav + spamassassin) 
Sqwebmail (for webmail and also very important that is user must be
change his/her passwd)

I saw openwebmail its very nice but passwd change options hasnt been
in packet so I give up using this.

why all packet is conflict each other I couldnt understantd 
A lots of virtual host and I must find POP3 competible with courier-imap
and also very very important point is SMTP-AUTH in POP3 for virtual
users and quota for virtual user and they can be change their passwd
from webmail.


and also I had look a lots of document such as
http://www.high5.net/howto/
http//yocum.org/faqs/postfix-tls-sasl.html
http://www.delouw.ch/linux/Postfix-Cyrus-Web-cyradm-HOWTO/Postfix-Cyrus-Web-cyradm-HOWTO.pdf


shortly I have a lots of virual user that must reach webmail also POP3
and prevent their mailbox from spam and virus and also they must
change own passwd and pop3 deamond must be smtp-aut depens on their
username and passwd. AND also my stafff may manage webtools (with GUI)
they can create new virtual user and may give quota and aliases
virtusertable etc...and important point I dont want to use sendmail.

:((  



On Sat, 18 Dec 2004 21:27:12 +0100, martin hudec [EMAIL PROTECTED] wrote:
 Hello,
 
 On Sat, Dec 18, 2004 at 10:10:22PM +0200 or thereabouts, tethys ocean wrote:
 
  I set that but I need pop3 because we have got a lots of virtual host
 
  I must look for  pop3  competible with courier-imap isnt it?!
 
 
 courier-imap is able to serve its maildirs (no, not mbox) using IMAP and
 POP3, both with secure variants. You can use mysql as authentication
 backend with sasl. I am using this solution with postfix as smtp
 server (also with user and virtual data in mysql), amavisd (clamav +
 spamassassin) as spam/virus filter. I am just bit sad that openwebmail
 is not working with maildirs, so I use horde/imp application instead
 to provide webmail services.
 
 
 Cheers,
 
 Martin
 
 --
 martin hudec
 
* 421 907 303 393
* [EMAIL PROTECTED]
* http://www.aeternal.net
 
 Nothing travels faster than the speed of light with the possible
 exception of bad news, which obeys its own special laws.
 
Douglas Adams, The Hitchhiker's Guide to the Galaxy
 
 

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


bind+postfix+courier+sals+amavis+spamassian+pop3+mysql+apache+smtp-auth

2004-12-18 Thread tethys ocean
Hi all,

I want to setup a mail server Freebsd 5.3 bind 9.0 (dnscahce)
+mysql4.0+postfix2.2.20040829,2+courier+sasl  etc

in the beginning of my installation I am taking such error message 

courier-mysql-0.45.4 conflicts with installed pakages(s)
postfix-2.2.20040829,2

They  install files into the same places.
Please remover..

What can I do? I looked a lots of document but I coulnt actual solutions..

any comment?!

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


bind+postfix+courier+sals+amavis+spamassian+pop3+mysql+apache+smtp-auth

2004-12-18 Thread tethys ocean
Hi,

I check confiliction package mysql pakages confilict 

and I found this document

http://www.syntheticzero.com/howto/vmail.php

and also in this paragraph

Notes for FreeBSD users: The courier-imap port in freebsd is kinda
messed up with regards to getting the mysql auth stuff to compile...
find .if !defined(WITH_MYSQL) in the Makefile and change this:

  PLIST_SUB+= MYSQLFLAG=
endif

to this:

  PLIST_SUB+= MYSQLFLAG=
  CONFIGURE_ARGS+=  \
--with-authmysql --with-mysql-libs=/usr/local/lib/mysql/ \
--with-mysql-includes=/usr/local/include/mysql
  endif


I set that but I need pop3 because we have got a lots of virtual host 

I must look for  pop3  competible with courier-imap isnt it?!

H.O.


On Sat, 18 Dec 2004 20:58:21 +0100, martin hudec [EMAIL PROTECTED] wrote:
 Hello,
 
 On Sat, Dec 18, 2004 at 09:38:52PM +0200 or thereabouts, tethys ocean wrote:
 
  I want to setup a mail server Freebsd 5.3 bind 9.0 (dnscahce)
  +mysql4.0+postfix2.2.20040829,2+courier+sasl  etc
 
  in the beginning of my installation I am taking such error message
 
  courier-mysql-0.45.4 conflicts with installed pakages(s)
  postfix-2.2.20040829,2
 
 
 you want probably to have complex mail solution, and you
 would like to use mail/courier-imap port, right?
 
 Standard mail/courier can be used as smtp server, so it is
 obvious that it would conflict with your installed postfix (or
 qmail, etc.). Look into Makefile for conflicting packages.
 
 Cheers,
 
 Martin
 
 --
 martin hudec
 
* 421 907 303 393
* [EMAIL PROTECTED]
* http://www.aeternal.net
 
 Nothing travels faster than the speed of light with the possible
 exception of bad news, which obeys its own special laws.
 
Douglas Adams, The Hitchhiker's Guide to the Galaxy
 
 

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


sendmail smtp-auth

2004-12-06 Thread tethys ocean
Hi,

Sendmail8.11 and sasl run on FreeBSD 5.2.1 RELEASE server so I wonder  smtp
auth has got or not.


after telnet localhost 25 the result can be shown in below

ehlo localhost
250-www.stockimage.co.kr Hello localhost.stockimage.co.kr [127.0.0.1],
pleased to meet you
250-ENHANCEDSTATUSCODES
250-PIPELINING
250-8BITMIME
250-SIZE
250-DSN
250-ETRN
250-DELIVERBY
250 HELP

Indeed f  it has got smtp auth result must be below?

 
ehlo server
250-sizinev
250-PIPELINING
250-SIZE 1024
250-VRFY
250-ETRN
250-AUTH GSSAPI PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250-AUTH=GSSAPI PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250 8BITMIME



250-AUTH GSSAPI PLAIN LOGIN DIGEST-MD5 CRAM-MD5
250-AUTH=GSSAPI PLAIN LOGIN DIGEST-MD5 CRAM-MD5

our user s usng  ADSL Cable an/or dial-up Dial-up connection
if their connection differ from out connection (outside of our network)
thet can get mail but coulndt send mail since mail server  reject
their IP and in log
(may be forged) 


Before me other admin enter their IP in access and add  RELAY bu it is
not exact solution.

are there any commend?


I searched in Google I get this result if our server has got smtp auth 

in the result of  telnet localhost 25 and ehlo server   must be in
below? isnt it?!?!?

 [EMAIL PROTECTED] telnet localhost smtp
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 testterm.ryuchi.org ESMTP Sendmail 8.11.0/8.11.0; Wed, 9 Aug 2000
16:33:03 +0900 (JST)
EHLO localhost
250-momiji.ryuchi.org Hello localhost [127.0.0.1], pleased to meet you
250-ENHANCEDSTATUSCODES
250-8BITMIME
250-SIZE
250-DSN
250-ONEX
250-ETRN
250-XUSR
250-AUTH CRAM-MD5
250 HELP
QUIT
221 2.0.0 testterm.ryuchi.org closing connection
Connection closed by foreign host.
[EMAIL PROTECTED]


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