jboss5 on freebsd

2009-09-11 Thread Steel City Phantom
im trying to get the jboss 5 port to run on bsd 6.3.  ive had 4 going for a
long time now but i can't seem to get 5 to run right.  my app is huge and i
need to increase the permgen space on the jvm for it to run.
ive got this in my rc.conf

jboss5_enable=YES
jboss5_config=default
jboss5_flags=-Dprogram.name=run.sh -server -Xms1024m -Xmx1024m
-XX:PermSize=1000m -XX:MaxPermSize=1000m

it worked fine in jboss4 but for some reason 5 isn't picking it up.  any
ideas?
___
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


building a distribution server

2008-04-04 Thread Steel City Phantom
i have about 10 production servers that i want to upgrade to bsd 7 and
update all their ports in one shot.  the problem is the down time.  im
wrapping up upgrading a 6.3 to 7 and its taken over 7 hours so far.  thats
way too long for our machines to be down.

the biggest slow down is the downloading of files.  just sitting watching
things i would say 70% of the time is downloading files.  is there a way
where i can build a distribution server that has everything i could possibly
need to upgrade a machine from any 6.x to 7.0 and redo all the ports on that
machine and have a cron job keep everything up to date on that server and
when i upgrade a new machine, it simply goes to my internal distribution
server to get the files.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


tar backup script

2008-02-13 Thread Steel City Phantom
this isn't really bsd specific but i still need help with it.  im writing a
backup script  a clip from that script is this:

find /usr/local/www/data-dist/ -name config.php 
/usr/local/backupScript/include
find /usr/local/www/data-dist/ -name ClientFiles 
/usr/local/backupScript/include

tar cvf /usr/local/backupScript/files/www-client-files.tar -I
/usr/local/backupScript/include /usr/local/www/data-dist

obviously im creating an include file from a directory.  when the tar runs,
it correctly adds all the files in the include file.  but once that is
finished, for some reason tar then goes back and adds all the files that are
in the /usr/local/www/data-dist directory, even the ones in the include
file.  i was under the impression that the -I command would add ONLY the
files that are listed in the include.  why is it adding those and then after
finishing that, adding all the others?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: remounting a drive

2007-06-22 Thread Steel City Phantom

   i tried that command as well, still got the operation not permitted
   error
   Nikos Vassiliadis wrote:

On Friday 22 June 2007 00:30, Steel City Phantom wrote:
  

   tried
   mount -u rw /
   and
   mount -u rw /dev/ad1s1 /
   with the same result, no permission error
   next idea or did i get the command wrong


Yes, the command is wrong.
It is mount -u -w [ device | mount point ]

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

References

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


remounting a drive

2007-06-21 Thread Steel City Phantom

ok, i had a working bsd system.

i shut it down, and removed a drive from it to use in another computer

i turn it on and i get mounting errors, nothing unsual, can't find drives

from the manualroot prompt i put in the path to the root partition to 
the drive that is still in the machine


i boot to single user mode

im now trying to edit my fstab so i can boot normally (the drive numbers 
moved from ad1 to ad0 because i removed a hardrive)


i can see all the files, i mounted my /usr partition, but for some 
reason i can't remount the / parition to edit the fstab.  when i enter 
the command mount -o rw / i get operation not permitted.  i tried mount 
-o rw /dev/ad1s1 /  and mount -o rw /dev/ad0s1 /and got the same thing.  
ive used this in the past and it works, i don't know why its not working 
now.  any ideas?


bsd 6.2 if it matters

when i do mount
/dev/ad1s1 on / (ufs, local, read-only)
devfs on /dev (devfs, local)
/dev/ad1s1f on /usr/ (ufs, local, soft-updates)

thanks
willie

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


Re: remounting a drive

2007-06-21 Thread Steel City Phantom

   tried
   mount -u rw /
   and
   mount -u rw /dev/ad1s1 /
   with the same result, no permission error
   next idea or did i get the command wrong
   Lowell Gilbert wrote:

Steel City Phantom [1][EMAIL PROTECTED] writes:



ok, i had a working bsd system.

i shut it down, and removed a drive from it to use in another computer

i turn it on and i get mounting errors, nothing unsual, can't find drives

from the manualroot prompt i put in the path to the root partition to
the drive that is still in the machine

i boot to single user mode

im now trying to edit my fstab so i can boot normally (the drive
numbers moved from ad1 to ad0 because i removed a hardrive)

i can see all the files, i mounted my /usr partition, but for some
reason i can't remount the / parition to edit the fstab.  when i enter
the command mount -o rw / i get operation not permitted.  i tried
mount -o rw /dev/ad1s1 /  and mount -o rw /dev/ad0s1 /and got the same
thing.  ive used this in the past and it works, i don't know why its
not working now.  any ideas?

bsd 6.2 if it matters

when i do mount
/dev/ad1s1 on / (ufs, local, read-only)
devfs on /dev (devfs, local)
/dev/ad1s1f on /usr/ (ufs, local, soft-updates)


Try the -u (update) option.
___
[EMAIL PROTECTED] mailing list
[3]http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [4][EMAIL PROTECTED]

References

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


services file question

2007-02-25 Thread Steel City Phantom
I have been trying to figure out an issue with my newest bsd server.  i am 
trying to get jboss to run but nothing outside of the local machine can access 
it.  i have been working on this for a while and am completely out of ideas 
except for one, but i need a little information before i start playing

according to tcpdump when another machine goes to ip:8080 to access jboss, the 
packet does not even reach the box.  all i can think of next is the services 
file.  in order for bsd to allow traffic on a specific port, does it have to be 
listed in the services file?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Can't access service from other machines

2007-02-07 Thread Steel City Phantom
i just finished installing jboss on a bsd 6.1 machine.  i can ssh into 
the machine and nmap says the port is listening correctly (8080).  using 
lynx from the console i get to jboss just fine using both localhost and 
the static ip number.  but no other machine can access it.  other 
machines can ping it, i can ssh into it, but no other machines can hit 
port 8080.  i initially thought that it may be a firewall that was 
inadvertantly installed by the guy that put bsd on the box for me but i 
cant see where one is running, here is my process list:


secondary# ps -A
 PID  TT  STAT  TIME COMMAND
   0  ??  WLs0:00.00 [swapper]
   1  ??  ILs0:00.29 /sbin/init --
   2  ??  DL 0:05.73 [g_event]
   3  ??  DL 0:06.16 [g_up]
   4  ??  DL 0:07.65 [g_down]
   5  ??  DL 0:00.00 [thread taskq]
   6  ??  DL 0:00.00 [kqueue taskq]
   7  ??  DL 0:00.00 [acpi_task0]
   8  ??  DL 0:00.00 [acpi_task1]
   9  ??  DL 0:00.00 [acpi_task2]
  10  ??  DL 0:00.00 [ktrace]
  11  ??  RL   1341:39.95 [idle]
  12  ??  WL 0:02.06 [swi1: net]
  13  ??  WL 1:55.83 [swi4: clock sio]
  14  ??  WL 0:00.00 [swi3: vm]
  15  ??  DL 0:05.18 [yarrow]
  16  ??  WL 0:00.00 [swi5: +]
  17  ??  WL 0:00.00 [swi2: cambio]
  18  ??  WL 0:00.00 [swi6: task queue]
  19  ??  WL 0:00.00 [swi6: +]
  20  ??  WL 0:00.00 [irq9: acpi0]
  21  ??  WL 0:02.68 [irq22: dc0]
  22  ??  WL 0:01.31 [irq14: ata0]
  23  ??  WL 0:00.00 [irq15: ata1]
  24  ??  WL 0:00.00 [irq19: uhci0]
  25  ??  DL 0:00.01 [usb0]
  26  ??  DL 0:00.00 [usbtask]
  27  ??  WL 0:00.00 [irq23: uhci1]
  28  ??  DL 0:00.01 [usb1]
  29  ??  WL 0:00.00 [irq1: atkbd0]
  30  ??  WL 0:00.00 [irq12: psm0]
  31  ??  DL 0:00.54 [fdc0]
  32  ??  WL 0:00.00 [swi0: sio]
  33  ??  WL 0:00.00 [irq7: ppc0]
  34  ??  DL 0:00.12 [pagedaemon]
  35  ??  DL 0:00.00 [vmdaemon]
  36  ??  DL 0:03.34 [pagezero]
  37  ??  DL 0:00.59 [bufdaemon]
  38  ??  DL 0:11.33 [syncer]
  39  ??  DL 0:00.63 [vnlru]
  40  ??  DL 0:01.26 [softdepflush]
  41  ??  IL 0:00.00 [nfsiod 0]
  42  ??  IL 0:00.00 [nfsiod 1]
  43  ??  IL 0:00.00 [nfsiod 2]
  44  ??  IL 0:00.00 [nfsiod 3]
  45  ??  DL 0:04.77 [schedcpu]
 269  ??  Is 0:00.00 /sbin/devd
 303  ??  Ss 0:00.57 /usr/sbin/syslogd -s
 387  ??  Ss 0:00.11 /usr/sbin/usbd
 429  ??  Is 0:03.55 /usr/sbin/sshd
 435  ??  Ss 0:02.17 sendmail: accepting connections (sendmail)
 439  ??  Is 0:00.05 sendmail: Queue [EMAIL PROTECTED]:30:00 for 
/var/spool/clientmqueue (sendmail)

 445  ??  Is 0:00.30 /usr/sbin/cron -s
31308  ??  Is 0:00.06 sshd: wslepecki [priv] (sshd)
31311  ??  S  0:00.03 sshd: [EMAIL PROTECTED] (sshd)
 531  v0  Is+0:00.00 /usr/libexec/getty Pc ttyv0
 532  v1  Is+0:00.00 /usr/libexec/getty Pc ttyv1
 533  v2  Is+0:00.00 /usr/libexec/getty Pc ttyv2
 534  v3  Is+0:00.00 /usr/libexec/getty Pc ttyv3
 535  v4  Is+0:00.00 /usr/libexec/getty Pc ttyv4
 536  v5  Is+0:00.00 /usr/libexec/getty Pc ttyv5
 537  v6  Is+0:00.00 /usr/libexec/getty Pc ttyv6
 538  v7  Is+0:00.00 /usr/libexec/getty Pc ttyv7
 470 con- I  0:00.01 /bin/sh /usr/local/mysql/bin/mysqld_safe 
--datadir=/data/mysql --pid-file=/data/mysql/secondary.voicedownload.com.pid
 494 con- S  0:39.98 /usr/local/mysql/bin/mysqld 
--basedir=/usr/local/mysql --datadir=/data/mysql --user=mysql 
--pid-file=/data/mysql/secondary.voicedownload.com.pid
 595  p0- S 20:47.07 /usr/local/diablo-jdk1.5.0/bin/java -cp 
bin/run.jar:/usr/local/diablo-jdk1.5.0/lib/tools.jar org.jboss.Main

31312  p0  Is 0:00.01 -sh (sh)
31313  p0  I  0:00.01 su
31314  p0  S  0:00.03 _su (csh)
31344  p0  R+ 0:00.00 ps -A


also, if any firewall was running it would have to be listed in rc.conf, 
here is mine


# -- sysinstall generated deltas -- # Fri Dec  8 05:48:44 2006
# Created: Fri Dec  8 05:48:44 2006
# Enable network daemons for user convenience.
# Please make all changes to this file, not to /etc/defaults/rc.conf.
# This file now contains just the overrides from /etc/defaults/rc.conf.
hostname=secondary.voicedownload.com

network_interfaces=lo0 dc0
ifconfig_dc0=inet 192.168.1.16 netmask 255.255.255.0
ifconfig_lo0=inet 127.0.0.1 netmask 255.255.255.0
defaultrouter=192.168.1.1

ipv6_enable=YES
linux_enable=YES
sshd_enable=YES
usbd_enable=YES
jboss4_enable=YES
jboss4_config=default
mysql_enable=YES

im stumped, anyone else have any ideas why this wouldn't be working?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: jboss powering down my machine?

2007-01-19 Thread Steel City Phantom
i figured it out.  i tried again after a fresh reboot and was finally 
able to get an error message out of it.  KDE shut down completely and i 
got a glimse of the console window before it powered down.  it had the 
message, processor temp 87 degrees C.  preforming emergency shutdown.  
pull my heat sink and find it packed completely full of dust.  rinsed it 
off and it works perfectly again.


Steel City Phantom wrote:
when i try to launch jboss thru eclipse on my bsd 6.2 machine, it gets 
about half way thru and then the machine powers down.  as i understood 
bsd, it was not possible for that to happen.  is there a log somewhere 
that i can look at to try to figure this out?  i can't find anything 
very useful on my own.


thanks

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




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


jboss powering down my machine?

2007-01-18 Thread Steel City Phantom
when i try to launch jboss thru eclipse on my bsd 6.2 machine, it gets 
about half way thru and then the machine powers down.  as i understood 
bsd, it was not possible for that to happen.  is there a log somewhere 
that i can look at to try to figure this out?  i can't find anything 
very useful on my own.


thanks

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


Re: Root doesn't have permission to change permissions?

2007-01-03 Thread Steel City Phantom

   when i do chflags nouchg MP3 i get operation not supported.  and how
   can i have files open when the its currently unmounted?  the lock is
   the only thing in chflags that i see could make any difference.
   Robert Huff wrote:

Steel City Phantom writes:

  

 when i try to delete the mount point and recreate it i get the
 message device busy,


Not even root can dismount something while there are files open.

  

 when i try to change owners of the directory as root it says i
 don't have permission.


man chflags


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

References

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


kde and kooka

2007-01-03 Thread Steel City Phantom

sorry if this is the wrong list

i updated to kde 3.5.4 and now kooka doesn't see my scanner.  the 
scanner is listed in the boot log, sane-find-scanner finds it no 
problem.  but when i load kooka it doesn't see it.  from within kooka if 
i go to choose scanner, i don't even get a dialog box up.  is there some 
switch i forgot or don't know about when i updated kdegraphics?


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


Root doesn't have permission to change permissions?

2007-01-02 Thread Steel City Phantom
I have a mount point on my bsd 6.2 machine.  my startup does an nfs 
mount to the mount point.  i had to reboot the other machine and now my 
bsd machine can't access the mount point or the share.


drwxrwxrwx   2 4294967294  429496729464B Dec 26 18:42 MP3


here is the mount command that is used

mount 192.168.0.51:/MP3 /usr/local/drive_h/MP3

when i try to delete the mount point and recreate it i get the message 
device busy, when i try to change owners of the directory as root it 
says i don't have permission.


any ideas

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


Mysql Max start on boot

2006-12-11 Thread Steel City Phantom
Im in the middle of installing Mysql max on a bsd 6.2 box, anyone have 
an idea how to make it start on boot?  the script is in the 
/usr/local/etc/rc.d file and the mysql_enable=YES is in the rc.conf 
file but it still isn't starting.  since this is max i couldn't install 
it from the ports, i had to download the binary from mysql.


thanks

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


very strange sockets problem

2006-07-27 Thread Steel City Phantom
im running bas 6.1, java 1.5 and jboss 4.  i have a servlet that 
interfaces with a bank over a socket connection.  pretty basic setup.  
everything works fine for the current two banks that we interface with.  
i am in the process of trying to bring up a third bank.  the socket 
opens correctly, transmitts the transaction correctly, the bank 
correctly receives it, processes it, and sends me a response.  the 
moment that the response hits my read buffer, the connection drops and i 
recieve no data.


i have eliminated all hardware in between the two systems.  i dumped the 
traffic with tcpdump and the machine does actually receive the data.  me 
and my team of developers are stumped, jboss support is stumped, i was 
wondering if any of you guys could think of something.


thanks
wilie

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


Re: dumping net traffic to log file

2006-07-25 Thread Steel City Phantom

   im trying the command
   tcpdump -i em0  traffic.log
   and i get the response
   tcpdump: (no devices found) /dev/bpf0: No such file or directory
   im doing it as root.  this is a dell poweredge 2850 and we are using
   the standard gigabit network cards that came onboard.  here are the
   details on the nic
   em0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500
   options=bRXCSUM,TXCSUM,VLAN_MTU
   inet 192.168.245.246 netmask 0xff00 broadcast
   192.168.245.255
   ether 00:13:72:56:aa:ca
   media: Ethernet autoselect (100baseTX half-duplex)
   status: active
   in my dev directory em0 is mapped to net1.  when i try the same
   command with net1, i get the same thing.
   Darrin Chandler wrote:

On Mon, Jul 24, 2006 at 03:20:32PM -0400, Steel City Phantom wrote:
  

i am troubleshooting an application and am having a hell of a time with 
it.  with bsd 6.1 is there a way where i can dump all traffic coming 
over the nic to a log file so i can see exactly what is coming in?


tcpdump works nicely for this. :)

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


Re: dumping net traffic to log file

2006-07-25 Thread Steel City Phantom
Great, im making good progress here.  it seems like tcpdump only 
captures the headers, is there a way to capture the entire packet, data 
and all?


thanks guys


Chuck Swiger wrote:

Steel City Phantom wrote:
[ ...top posting is confusing... ]

   im trying the command
   tcpdump -i em0  traffic.log
   and i get the response
   tcpdump: (no devices found) /dev/bpf0: No such file or directory


You'll need to recompile your kernel with device bpf, although it is 
normally enabled in the GENERIC kernel by default.




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


dumping net traffic to log file

2006-07-24 Thread Steel City Phantom
i am troubleshooting an application and am having a hell of a time with 
it.  with bsd 6.1 is there a way where i can dump all traffic coming 
over the nic to a log file so i can see exactly what is coming in?


thanks

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


new hint to smb share problem

2006-04-04 Thread Steel City Phantom

BSD 6 with SMB mounts to win 2003 shares.

been having problems all along with error messages smb_maperror 
unmapped error 1:158, today i realized a major clue.  if i try to 
access a file thru the samba mount that has an  apostrophe in the file 
name, i get the error [file] does not seem to exist anymore.  now 
files with  apostrophe's on the local drives are no problem, just over 
the samba mounts.


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


Re: smb_maperror unmapped error 1:158

2006-03-24 Thread Steel City Phantom
i mount with the script because when i tried it with fstab, it would 
only mount read only.  even when i specified rw in the options.  i tried 
everything i could think of to get write access to it and doing the 
script like this was the only thing that worked. 

and admin is no problem.  this is a single little winblows box on a home 
network.  its purpose in life is to store these files and run quickbooks 
thru terminal sessions.  thats it.  im waiting patiently for the wine 
crew to get quickbooks running.


Alex Zbyslaw wrote:

Steel City Phantom wrote:


  im using bsd 6.  i write a script that fires on startup and shutdown
  that mounts the drives.  i mount several, but here is one of the mount
  commands
  mount_smbfs -f 0777 -d 0777 //[EMAIL PROTECTED]/MP3
  /usr/local/drive_h/MP3
  it seems like anything that accesses a file in that share will create
  the error.
  Lowell Gilbert wrote:
 

FYI, you don't need to write a script.  I would guess that 6.0 is the 
same as 5.4 in this respect.  You can set a variable in rc.conf


extra_netfs_types=smbfs:SAMBA

and then put any password info in /etc/nsmb.conf (read-only root!).

Then put an entry in /etc/fstab like:

//[EMAIL PROTECTED]/MP3 /usr/local/drive_h/MP3  smbfs   
rw  0   0


If /usr/local/drive_h/MP3 is mode 777 then you don't need -f or -d


Connecting as administrator seems like a bad idea to me.

I have no idea what causes your error.  What does a mount which works 
look like, and how does anything on Windows differ between a mount 
that works and one that doesn't?


--Alex



___
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: smb_maperror unmapped error 1:158

2006-03-23 Thread Steel City Phantom

   im using bsd 6.  i write a script that fires on startup and shutdown
   that mounts the drives.  i mount several, but here is one of the mount
   commands
   mount_smbfs -f 0777 -d 0777 //[EMAIL PROTECTED]/MP3
   /usr/local/drive_h/MP3
   it seems like anything that accesses a file in that share will create
   the error.
   Lowell Gilbert wrote:

Lowell Gilbert [1][EMAIL PROTECTED] writes:



Steel City Phantom [2][EMAIL PROTECTED] writes:



Judging from google, this has been asked a few times and never really
answered.  my bsd box mounts several shares from a win 2000 box.  not
all of the files that appear in the win 2k box, appear on the bsd box
in the mount location.  switching over from kde to the console shows a
list of errors

smb_maperror unmapped error 1:158

any ideas what this could be?


No; there is no such function in the samba port or in the base system
smbfs.  You didn't mention how you were doing the mounting, nor what
version of the OS and other software you were using, so there isn't
anything else I can think of to check for you.  [My system is -STABLE,
with the latest ports.]


Oops; I found it a few minutes later.  The error message means that
the error returned by the Windows box was a type that wasn't known to
the error handling routine.  The Samba port refers to that error as:
NT_STATUS_NOT_LOCKED, but I'm not enough of an SMB expert to know
exactly what that means.
___
[EMAIL PROTECTED] mailing list
[4]http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [5][EMAIL PROTECTED]

References

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


smb_maperror unmapped error 1:158

2006-03-22 Thread Steel City Phantom
Judging from google, this has been asked a few times and never really 
answered.  my bsd box mounts several shares from a win 2000 box.  not 
all of the files that appear in the win 2k box, appear on the bsd box in 
the mount location.  switching over from kde to the console shows a list 
of errors


smb_maperror unmapped error 1:158

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


Few thunderbird questions

2006-03-17 Thread Steel City Phantom

ok, bsd 6, kde 3.5, thunderbird 1.5, firefox 1.5

few things that are slightly annoying in thunderbird that if someone 
knows how to fix, i would be very happy.


1) when i click on a url link in thunderbird, nothing happens.  how to i 
have it open firefox and go to that url
2) when mail arrives, it does a system beep.  is there any way to map 
that to a KDE event so i can put some kind of meaningful sound to it?



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


Re: Let's make a FreeBSD ports blog! CCCCOOOL =)

2006-03-09 Thread Steel City Phantom

   This is a useful idea, but i don't think you have to go and develop a
   whole new site to make it happen.  simply take the existing ports
   search application ([1]www.freebsd.com/ports) and make some small
   modifications to it.  stuff like when the search results come up, when
   you click on the name of the app, instead of taking you to the CVS, it
   takes you to the blog for that app where the long description is the
   starting article.  then you can add all the rating stuff and whatever
   you want below that.
   also, a link to the homepage for the app would be nice.  im constantly
   searching freebsd ports and then in another tab searching google for
   the app i just found to figure out what in the world it is.
   i realize it would be double work for some maintainers but it can be
   written to be fairly automated im sure.  and the port maintainers can
   just leave it up to the users to maintain the blog part if they like.
   David Stanford wrote:

Vaaf,

14,187 ports... [2]http://www.freebsd.org/ports/. Sounds like a good idea to
me. What kind of help are you looking for?

-David

On 3/8/06, Kristian Vaaf [3][EMAIL PROTECTED] wrote:


Hey!

There are about 10.000 ports, am I right?

Not all FreeBSD users have the time to go through all
of the package descriptions. But definitely all FreeBSD users
have their share of favorite ports, and are interested in
finding new ports that may compliment their lives.

Not is the ports collection already too big for the average
human intellect. It also continues to span. New programs
appear on a daily basis, however there's nothing to
grasp their presence and determine their quality

I see this as a chance to promote FreeBSD to desktop
users, which is what this project lacks. It has everything to
make it superior to all the other open source operating
systems, but nothing to really let it out in the open.

Imagine a FreeBSD ports blog that tries to gather data
on the most popular ports, sorted by ratings, downloads etc.
In addition, it posts articles every now and then telling
people about recent discoveries made among all the 10.000
ports. This could be a great thing!

I am aware of freshports.org, this would be totally different.
I know a thing or two about design, and could make the
site look something like lounge72.com or linkdup.com.
I have high speed hosting all standing by. A splendid name
for it as well :D

So, who's game? :)

All the best,
Vaaf

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



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

References

   1. http://www.freebsd.com/ports
   2. http://www.freebsd.org/ports/
   3. mailto:[EMAIL PROTECTED]
   4. mailto:freebsd-questions@freebsd.org
   5. http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   6. mailto:[EMAIL PROTECTED]
   7. mailto:freebsd-questions@freebsd.org
   8. http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   9. mailto:[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


deleting files not releasing space

2006-03-08 Thread Steel City Phantom
i just deleted 100 megs of files out of my temp dir and df -h doesn't 
show the space freed yet.  it has done this in the past and a reboot 
will always give me my space back, but why doesn't it do it immediatly?

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


Realplayer and firefox

2006-03-06 Thread Steel City Phantom
i just got realplayer installed and its recognized in firefox in the 
about:plugins screen.  but when i go to a site that loads the reaplayer, 
firefox core dumps and crashes.  these are the lines i have in my libmap 
and i have


###
# Helix RealPlayer with 
Mozilla/Firebird/Galeon/Epiphany/Konqueror/Kazehakase

[/usr/X11R6/lib/linux-mozilla/plugins/nphelix.so]
libstdc++.so.5  libstdc++.so.5
libc.so.6   pluginwrapper/realplayer.so


and in my run-mozilla.sh i added the path 
/usr/X11R6/lib/linux-mozilla/plugins to the moz_plugin_path tag.


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


BSD+KDE replacement for SecureCRT

2006-03-05 Thread Steel City Phantom
migrating from windows to bsd, does anyone know of a replacement for 
SecureCRT.  i have been using KSSH but the only problem i have with it 
is the fact it doesn't remember passwords.  im going to try to get key 
pair logins to work when i put a particular fire out but for the time 
being, does anyone know of anything like that?


thanks

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


setting the root email address

2006-03-05 Thread Steel City Phantom
one of my servers was set up by some guys in china.  i have gotten 
everything figured out save one, somehow they got cron job results to 
email to my business account.  i can't for the life of me figure out how 
they did that.  where in bsd do i set another email address for root?

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


ok, kde stopped showing icons

2006-03-05 Thread Steel City Phantom
so i was adding a few applications to my new VERY cool KSmoothDock bar 
and the screen refreshed.  after that refresh, the KDE menu and all the 
applications under it stopped showing icons.  i tried going to the 
control center and choosing another icons set and refreshing, that 
didn't work, i tried rebooting, that didn't work.  anyone have an idea?



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


anyone notice firefox crashes a lot with BSD+KDE

2006-03-05 Thread Steel City Phantom
i ran it since about 0.9 or so on win and and it rarely crashed.  since 
i moved to BSD i crashes 1 or 2 times a day.  am i alone or is it par 
for the course.  CNN.com seems to take it out the most.

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


Re: problem with portdb

2006-03-04 Thread Steel City Phantom
i did use cvsup to update the tree and it didn't bring this down.  i 
will search the ports collection to see if it really exists and give it 
a shot


Garrett Cooper wrote:

Robert Huff wrote:


Steel City Phantom writes:

 

i have tried doing a make fetchindex and that had no effect.  i 
manually upgraded portupgrade to the latest version and it still had 
no change.  i don't have a /usr/ports/java/diablo-jdk1.3.1 but i 
have a diablo-jdk13 dir.


any ideas
  


Yes: create /usr/ports/java/diablo-jdk1.3.1 (with proper
contents) and re-run.


Robert Huff

I'm not sure how he updates the portage tree, but if he uses cvsup 
wouldn't it just erase his portage entries and he'd be back at square 
one?

-Garrett
___
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: problem with portdb

2006-03-04 Thread Steel City Phantom
ok, so i copied diablo-jdk13 to diablo-jdk1.3.1 and ran portdb -Uu again 
and tried to do another portupdate.  here is what i got.  i think im 
going to try dropping the entire ports directory and refreshing it from 
the ground up to see if that has any effect


Updating the ports index ... Generating INDEX.tmp - please wait..

make_index: jdk-1.3.1p9_5: no entry for /usr/ports/java/diablo-jdk1.3.1
Warning: Duplicate INDEX entry: freeciv-gtk-2.0.7
Warning: Duplicate INDEX entry: mod_rpaf-0.5
Done.
done
[Updating the portsdb format:bdb1_hash in /usr/ports ... - 14186 port 
entries found 
.1000.2000.3000.4000.5000.6000.7000.8000.9000.1.11000.12000.13000.14000. 
. done]

ironcity#
ironcity#
ironcity# portupgrade -an
---  Session started at: Sat, 04 Mar 2006 14:29:40 -0500
[Updating the pkgdb format:bdb1_btree in /var/db/pkg ... - 125 
packages found (-5 +22) (...)Stale dependency: mod_log_sql-1.99 -- 
apache-1.3.33_1 -- manually run 'pkgdb -F' to fix, or specify -O to force.

---  Session ended at: Sat, 04 Mar 2006 14:29:41 -0500 (consumed 00:00:00)
ironcity# pkgdb -F
---  Checking the package registry database
[Updating the pkgdb format:bdb1_btree in /var/db/pkg ... - 125 
packages found (-5 +22) (...)Invalid argument: Cannot update the pkgdb!]
ironcity#   




Steel City Phantom wrote:
i did use cvsup to update the tree and it didn't bring this down.  i 
will search the ports collection to see if it really exists and give 
it a shot


Garrett Cooper wrote:

Robert Huff wrote:


Steel City Phantom writes:

 

i have tried doing a make fetchindex and that had no effect.  i 
manually upgraded portupgrade to the latest version and it still 
had no change.  i don't have a /usr/ports/java/diablo-jdk1.3.1 but 
i have a diablo-jdk13 dir.


any ideas
  


Yes: create /usr/ports/java/diablo-jdk1.3.1 (with proper
contents) and re-run.


Robert Huff

I'm not sure how he updates the portage tree, but if he uses cvsup 
wouldn't it just erase his portage entries and he'd be back at square 
one?

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




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


Re: problem with portdb

2006-03-04 Thread Steel City Phantom

i just tried with a fresh ports tree and i get the same as below

Steel City Phantom wrote:
ok, so i copied diablo-jdk13 to diablo-jdk1.3.1 and ran portdb -Uu 
again and tried to do another portupdate.  here is what i got.  i 
think im going to try dropping the entire ports directory and 
refreshing it from the ground up to see if that has any effect


Updating the ports index ... Generating INDEX.tmp - please wait..

make_index: jdk-1.3.1p9_5: no entry for /usr/ports/java/diablo-jdk1.3.1
Warning: Duplicate INDEX entry: freeciv-gtk-2.0.7
Warning: Duplicate INDEX entry: mod_rpaf-0.5
Done.
done
[Updating the portsdb format:bdb1_hash in /usr/ports ... - 14186 
port entries found 
.1000.2000.3000.4000.5000.6000.7000.8000.9000.1.11000.12000.13000.14000. 
. done]

ironcity#
ironcity#
ironcity# portupgrade -an
---  Session started at: Sat, 04 Mar 2006 14:29:40 -0500
[Updating the pkgdb format:bdb1_btree in /var/db/pkg ... - 125 
packages found (-5 +22) (...)Stale dependency: mod_log_sql-1.99 -- 
apache-1.3.33_1 -- manually run 'pkgdb -F' to fix, or specify -O to 
force.
---  Session ended at: Sat, 04 Mar 2006 14:29:41 -0500 (consumed 
00:00:00)

ironcity# pkgdb -F
---  Checking the package registry database
[Updating the pkgdb format:bdb1_btree in /var/db/pkg ... - 125 
packages found (-5 +22) (...)Invalid argument: Cannot update the pkgdb!]
ironcity#  



Steel City Phantom wrote:
i did use cvsup to update the tree and it didn't bring this down.  i 
will search the ports collection to see if it really exists and give 
it a shot


Garrett Cooper wrote:

Robert Huff wrote:


Steel City Phantom writes:

 

i have tried doing a make fetchindex and that had no effect.  i 
manually upgraded portupgrade to the latest version and it still 
had no change.  i don't have a /usr/ports/java/diablo-jdk1.3.1 but 
i have a diablo-jdk13 dir.


any ideas
  


Yes: create /usr/ports/java/diablo-jdk1.3.1 (with proper
contents) and re-run.


Robert Huff

I'm not sure how he updates the portage tree, but if he uses cvsup 
wouldn't it just erase his portage entries and he'd be back at 
square one?

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




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


problem with portdb

2006-03-03 Thread Steel City Phantom
i have a 4.9 box that i am trying to patch.  i run cvsup to get a fresh 
tree and i run portdb -Uu and after a while i get this error


Updating the ports index ... Generating INDEX.tmp - please 
wait..jdk-1.3.1p9_5: /usr/ports/java/diablo-jdk1.3.1 non-existent -- 
dependency list incomplete

=== java/jdk13 failed
*** Error code 1
1 error

i have tried doing a make fetchindex and that had no effect.  i manually 
upgraded portupgrade to the latest version and it still had no change.  
i don't have a /usr/ports/java/diablo-jdk1.3.1 but i have a diablo-jdk13 
dir.


any ideas

___
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 print in duplex mode?

2006-03-02 Thread Steel City Phantom
duplexing is a function of the printer driver.  (in KDE) control center, 
peripherals, printers, select your printer and on the instances tab, 
settings and you can make the printer duplex from there.  How to do it 
without KDE, i don't know.  but im sure there is a config file out there 
somewhere.


oh, and the driver you are using has to support duplexing obviously

Mikhail Teterin wrote:

Hello!

I'm trying to use less paper by printing on both sides of each sheet.

The printer is capable of duplex printing, but all the postcript I send to it 
ends up printed single-sided.


The original PS is generated by a web-browser. I then try to use enscript's 
pstops utility, but can't figure out its page-specification language :-(


Would someone have a ready example:

pstops 'MagickSpell' input.ps duplex.ps

Thanks!

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


SMB Shared Printer not showing shares

2006-02-28 Thread Steel City Phantom
I have followed every howto i can find on getting printing to work with 
cups.  i finally gave up and plugged the printer into my windows machine 
and shared it there.  now, my wife's Linspire machine can see it and 
print fine (Linspire uses kde 3.4, cups, samba share).  Now my fresh new 
bsd 6 machine can't see the same smb share.  I go add printer, SMB 
Shared Printer, put in the user administrator and password, click on the 
refresh to see all the workgroups, workgroup shows fine, open the 
windows server workgroup and no server.  i go to a command prompt and do 
a smbclient -U bla -L server and i see a list of all shares, including 
the hidden ones and the printer i wish to print to. 

If i type the information in manually, then it adds the printer to cups 
but shows the status as stopped.


I have tried every combination of this i can think of, nothing seems to 
work.  you guys have any ideas?

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


Choosing cpu type when building kernel (stupid one i know)

2006-02-28 Thread Steel City Phantom
in bsd 6, i have to recompile the kernel to add atapicam.  ok, fine.  
the part of the config file that gets me is this:


machine i386
cpu I486_CPU
cpu I586_CPU
cpu I686_CPU
ident   GENERIC


the machine i386, i get.  all intel PC's since the 386 have used a 
common basic instruction set and the developers just want to build in 
something in case intel pulls an Apple Computer on us. 

the rest is what i don't understand.  486 isn't mentioned in the NOTES 
file, 586 is just pentium, and 686 is pentium pro.  I have a P4 1.4 gig 
intel chip in my system, what should these settings be?  if i remove 486 
and 686 does that give me any performance advantage or are these 
settings defaults because they are ment to be defaults and i should just 
be quiet about it.

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


does buildkernel rerun config

2006-02-28 Thread Steel City Phantom
say you are running buildkernel with a config file.  you realize you 
made a mistake and ctl-c the build.  change the config file and restart 
buildkernel.  does make buildkernel re-run the config to update the code 
configuration?  is there a way to do this without deleting /usr/src  and 
/usr/obj and bringing it down again?

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


Apparent Hack attempt filling partition

2006-02-27 Thread Steel City Phantom
It seems that on friday i had some kind of hack scanner hit one of my 
servers.  it went thru the website looking for scripts, i believe it was 
my hosting company that did it with their vulnerability scanner.  The 
problem is that for some reason, the server was kicked into a loop 
failing on a perl script that eventually filled the /var partition with 
a 1 gig error log file and brought mysql down for lack of temp space to 
run some queries.  here is the last snip of the log before it started 
repeating the can't open perl script for 1 gig of file.  anyone have any 
ideas what could have caused that? 


the server is running PHP Version 4.3.9, Apache 1.3.33 on bsd 4.10 R2P

/usr/local/www/data/goldsteins/themes/Showroom/images/FooterBack.jpg
[Sun Feb 26 10:25:59 2006] [error] [client 216.153.168.66] File does not 
exist: /usr/local/www/data/goldsteins/themes/Showroom/images/FooterBack.jpg
[Sun Feb 26 10:26:07 2006] [error] [client 216.153.168.66] File does not 
exist: /usr/local/www/data/goldsteins/themes/Showroom/images/FooterBack.jpg
[Sun Feb 26 11:41:06 2006] [error] [client 83.179.151.230] File does not 
exist: /usr/local/www/data/interiors/index2.php
[Sun Feb 26 11:41:14 2006] [error] [client 83.179.151.230] File does not 
exist: /usr/local/www/data/interiors/mambo/index2.php
[Sun Feb 26 11:41:16 2006] [error] [client 83.179.151.230] File does not 
exist: /usr/local/www/data/interiors/cvs/index2.php
[Sun Feb 26 11:41:20 2006] [error] [client 83.179.151.230] File does not 
exist: /usr/local/www/data/interiors/articles/mambo/index2.php

wget: not found
mv: ping.txt: No such file or directory
wget: not found
curl: not found
curl: not found
Can't open perl script temp2006: No such file or directory
Can't open perl script temp2006: No such file or directory
Can't open perl script temp2006: No such file or directory
Can't open perl script temp2006: No such file or directory
Can't open perl script temp2006: No such file or directory
Can't open perl script temp2006: No such file or directory
Can't open perl script temp2006: No such file or directory
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apparent Hack attempt filling partition

2006-02-27 Thread Steel City Phantom

   i looked this virus up, it said to look for perl scripts in the tmp
   dir and i don't have any of the ones the sites i found said to look
   for.  i know this server is a bit behind on updates, specifically what
   version of PHP fixed this problem.  i ask because at the moment i
   don't have that big of a window of opportunity to bring the server
   down for upgrades.
   Kees Plonsz wrote:

Steel City Phantom wrote on Monday 27 February 2006 22:56:

  

It seems that on friday i had some kind of hack scanner hit one of my
servers.  it went thru the website looking for scripts, i believe it was
my hosting company that did it with their vulnerability scanner.  The
problem is that for some reason, the server was kicked into a loop
failing on a perl script that eventually filled the /var partition with
a 1 gig error log file and brought mysql down for lack of temp space to
run some queries.  


I think that is the Net-Worm.Linux.Mare.d.
It not a special for linux but works on all *unix machines
with PHP XML-RPC library and MAMBO.
One of the files it uses is ping.txt:

  

mv: ping.txt: No such file or directory


[1]http://www.f-secure.com/v-descs/mare_d.shtml

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

References

   1. http://www.f-secure.com/v-descs/mare_d.shtml
   2. mailto:freebsd-questions@freebsd.org
   3. http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   4. mailto:[EMAIL PROTECTED]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Freebsd with multiple nic's

2006-02-27 Thread Steel City Phantom
route tables?  what do they look like.  or are you not able to see the 
connections from the machine itself.


gahn wrote:

Hi:

I am running Freebsd 5.4 and have problems with
multiple nics.

It works with two cards (intel); those cards are
active and passing traffic (I can ping other
machines). 


But I failed to make them working with third card and
fourth card; the interfaces are up, active and I can
ping those interfaces, but I can't see any machines
that connect to those two lan seqments.

I am kinda confused; up (active) and can ping
themselve but don't pass traffic?

Any help will be greatly appreciated.

Thansk

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
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]

  


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


Re: web calendar recommendation

2004-12-21 Thread Steel City Phantom
the palm support is going to be the kicker.  i don't know of anything 
other than act and outlook that palm connects too. 

take that out of the mix and ximian is your best bet.  mozilla Sunbird 
has potential, but group calendaring is a ways away

Butterworth, Thaddaeus (Manpower Contract) wrote:
I believe Ximian's Evolution would work well for that. It's in the ports
and I've heard that it works very well for shared calendaring and even
has a connector for working with MS Exchange. I haven't had the time to
actually install and configure it myself yet, but I'm planning on doing
it as soon as I can.
Thad
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Noah
Sent: Monday, December 20, 2004 11:45 PM
To: freebsd-questions@freebsd.org
Subject: web calendar recommendation
FreeBSD-4.9
well I am back to the drawing board here.  webcalendar is not very well
supported, and it does not interface that well with my Palm calendar.  I
cant
appear to upload my calendar to it.
http://www.k5n.us/webcalendar.php
can somebody please send along their recommendations for a calendar
program
that can support multiple user calendars that can then be shared for
scheduling purposes?
Any ideas please?
cheers,
Noah
___
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]
 

___
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 4.10 to 5.2 over SSH?

2004-11-27 Thread Steel City Phantom
after thinking about the question a bit, i realized its a little vage.  
i mean i have been asked to upgrade a server from 4.10 to 5.2.1 and all 
i have is remote access via ssh.  can it be done remotely?

Steel City Phantom wrote:
can it be done?  how?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


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


upgrade from 4.10 to 5.2 over SSH?

2004-11-26 Thread Steel City Phantom
can it be done?  how?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: FreeBSD and NetZero

2004-11-23 Thread Steel City Phantom
if memory serves, netzero started some kick on fastest dial up network 
on the net by implementing some kind of over the line compression.  if 
thats the case then it would be more than just a network protocol, but 
some kind of compression routine that you would need to duplicate.  i 
hate to say it but you MAY find a netzero support tech with a brain that 
would be able to confirm if im right or not.

Kevin D. Kinsey, DaleCo, S.P. wrote:
J W wrote:
I have NetZero as my Dial-Up ISP.  I would love to use freebsd as my
gateway, ratehr than use windows with ICS enabled.  Is there a way to
work around the proprietary software used by NetZero, or has any one
seen a way to make freebsd work with netzero?
Thank You,
   IDESpinner
I've not used NetZero for a long time, but did Once
Upon A Time(tm).
What happens if you simply attempt to make a
PPP connection to them from your FBSD box?
Kevin Kinsey
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


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


Re: upgrading apache 1.3.21 to apache+mod_ssl-1.3.33+2.8.22

2004-11-20 Thread Steel City Phantom
noone know how to do this?
Steel City Phantom wrote:
i have a production server hosting several sites and need to do this 
upgrade.  is there a way i can do it without uninstalling everything 
and reinstalling it all
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to 
[EMAIL PROTECTED]


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


Re: upgrading apache 1.3.21 to apache+mod_ssl-1.3.33+2.8.22

2004-11-20 Thread Steel City Phantom

   (sigh) oh well.  thanks
   Lowell Gilbert wrote:

Steel City Phantom [1][EMAIL PROTECTED] writes:



noone know how to do this?


portupgrade will help you manage it, but you're still going to need to
re-install Apache in order to upgrade Apache.



Steel City Phantom wrote:



i have a production server hosting several sites and need to do this
upgrade.  is there a way i can do it without uninstalling everything
and reinstalling it all

References

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


segmentation fault

2004-11-20 Thread Steel City Phantom
i am trying to run a portupgrade and have a problem.  portupgrade says i 
have a stale dependency and need to fix it with pkgdb, when i run that, 
i get this

guinness# pkgdb -F
---  Checking the package registry database
Stale dependency: php4-4.3.5_7 - apache-1.3.29_3 (www/apache13):
[Failed `Inappropriate file type or format'] [Updating the portsdb 
format:bdb1_btree in /usr/ports ... - 11973 port entries found 
.1000.2000.3000.4000.5000/usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:587: 
[BUG] Segmentation fault
ruby 1.8.2 (2004-07-29) [i386-freebsd4]

Abort (core dumped)
i rebuilt the ports index by going to /usr/ports and doing make index, 
but i still get this same deal.

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


upgrading apache 1.3.21 to apache+mod_ssl-1.3.33+2.8.22

2004-11-19 Thread Steel City Phantom
i have a production server hosting several sites and need to do this 
upgrade.  is there a way i can do it without uninstalling everything and 
reinstalling it all
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


system wide ports upgrade

2004-11-19 Thread Steel City Phantom
i remember there being a program out there that will go through all my 
installed apps and upgrade them with the latest versions in the ports 
collection, what was it called again?

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


looks like script kiddie tried to get me

2004-11-17 Thread Steel City Phantom
bsd 4.9, apache 1.3
my postnuke started emailing me with hack attempts.  i look at my log 
and find about a half a meg of where it looks like a script kiddie tried 
to poke in the dark at this site.  the hits are WAY too close together 
to be manual, here is a snip from the log

24.54.157.86 - - [17/Nov/2004:01:00:29 -0500] GET /etc/ HTTP/1.1 404 
288 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:29 -0500] GET /example/ HTTP/1.1 
404 292 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:30 -0500] GET /examples/ HTTP/1.1 
404 293 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:30 -0500] GET /exc/ HTTP/1.1 404 
288 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:30 -0500] GET /excel/ HTTP/1.1 404 
290 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:30 -0500] GET /exchange/ HTTP/1.1 
404 293 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:30 -0500] GET /exe/ HTTP/1.1 404 
288 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:31 -0500] GET /exec/ HTTP/1.1 404 
289 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:31 -0500] GET /export/ HTTP/1.1 
404 291 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:31 -0500] GET /external/ HTTP/1.1 
404 293 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:31 -0500] GET /f/ HTTP/1.1 404 286 
- Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:31 -0500] GET /fbsd/ HTTP/1.1 404 
289 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:31 -0500] GET /fcgi-bin/ HTTP/1.1 
404 293 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:31 -0500] GET /file/ HTTP/1.1 404 
289 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:32 -0500] GET /filemanager/ 
HTTP/1.1 404 296 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:32 -0500] GET /files/ HTTP/1.1 404 
290 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:32 -0500] GET /foldoc/ HTTP/1.1 
404 291 - Mozilla/4.75 [en] (X11, U; Nessus)
24.54.157.86 - - [17/Nov/2004:01:00:32 -0500] GET /form/ HTTP/1.1 404 
289 - Mozilla/4.75 [en] (X11, U; Nessus)

anyone have any ideas what tool they would have used to do this.  none 
of my other logs show any access so he/she just tried to hit the web 
app.  we are probably going to end up calling the police when my boss 
wakes up, but i want to get your opinions too.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: [Fwd: Re: still more sendmail trouble]

2004-11-03 Thread Steel City Phantom
HA, got it.  in my php.ini i originally had
sendmail_path = /usr/sbin/sendmail
changed it to
sendmail_path = /usr/sbin/sendmail -t -i
and it worked.
Giorgos Keramidas wrote:
On 2004-11-02 15:17, Steel City Phantom [EMAIL PROTECTED] wrote:
 

all of those are set as you suggested, here are my config files to see
if you see something i don't.
freebsd.mc -
freebsd.submit.mc ---
   

Thanks for taking the time to forward this in plain text.  It was sent
as a new message and not as a followup to the original thread, but
thanks anyway :-)
The sendmail*.mc files you posted look ok.
Have you regenerated sendmail.cf and submit.cf from these files?
Have you restarted sendmail afterwards?

 

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


still more sendmail trouble

2004-11-02 Thread Steel City Phantom
i still can't get the mail function in PHP to work.  my sendmail log 
shows this

Nov  2 10:41:36 ironcity sendmail[89186]: iA2FfagI089186: from=www, 
size=473, class=0, nrcpts=0, 
msgid=[EMAIL PROTECTED], 
[EMAIL PROTECTED]

which is a step up because before i made the changes to the rc.conf, i 
would get this

Nov  2 00:14:22 ironcity sm-msp-queue[86045]: iA1HGR7Q085413: 
[EMAIL PROTECTED], ctladdr=www (80/80), delay=11:57:55, 
xdelay=00:00:00, mailer=relay, pri=2190203, relay=[127.0.0.1], 
dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]

here is what i put in my rc.conf
   sendmail_enable=NO
   sendmail_submit_enable=YES
   sendmail_outbound_enable=NO
   sendmail_msp_queue_enable=YES
any ideas?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: still more sendmail trouble

2004-11-02 Thread Steel City Phantom

   all of those are set as you suggested, here are my config files to see
   if you see something i don't.
   freebsd.mc -
   divert(0)
   VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.mc,v 1.10.2.19
   2003/12/31 17:42:16 gshapiro Exp $')
   OSTYPE(freebsd4)
   DOMAIN(generic)
   FEATURE(access_db, `hash -o -TTMPF /etc/mail/access')
   FEATURE(blacklist_recipients)
   FEATURE(local_lmtp)
   FEATURE(mailertable, `hash -o /etc/mail/mailertable')
   FEATURE(virtusertable, `hash -o /etc/mail/virtusertable')
   dnl Uncomment to allow relaying based on your MX records.
   dnl NOTE: This can allow sites to use your server as a backup MX
   without
   dnl   your permission.
   dnl FEATURE(relay_based_on_MX)
   dnl DNS based black hole lists
   dnl 
   dnl DNS based black hole lists come and go on a regular basis
   dnl so this file will not serve as a database of the available
   servers.
   dnl For that, visit
   dnl
   [1]http://directory.google.com/Top/Computers/Internet/Abuse/Spam/Black
   lists/
   dnl Uncomment to activate Realtime Blackhole List
   dnl information available at [2]http://www.mail-abuse.com/
   dnl NOTE: This is a subscription service as of July 31, 2001
   dnl FEATURE(dnsbl)
   dnl Alternatively, you can provide your own server and rejection
   message:
   dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', `550 Mail from 
   ${client_addr}  rejected, see
   [3]http://mail-abuse.org/cgi-bin/lookup?; ${client_addr}')
   dnl Dialup users should uncomment and define this appropriately
   dnl define(`SMART_HOST', `your.isp.mail.server')
   dnl Uncomment the first line to change the location of the default
   dnl /etc/mail/local-host-names and comment out the second line.
   dnl define(`confCW_FILE', `-o /etc/mail/sendmail.cw')
   define(`confCW_FILE', `-o /etc/mail/local-host-names')
   dnl Enable for both IPv4 and IPv6 (optional)
   DAEMON_OPTIONS(`Name=IPv4, Family=inet')
   DAEMON_OPTIONS(`Name=IPv6, Family=inet6, Modifiers=O')
   define(`confBIND_OPTS', `WorkAroundBroken')
   define(`confNO_RCPT_ACTION', `add-to-undisclosed')
   define(`confPRIVACY_FLAGS', `authwarnings,noexpn,novrfy')
   MAILER(local)
   MAILER(smtp)
   freebsd.submit.mc ---
   divert(0)dnl
   VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.submit.mc,v 1.1.2.1
   2003/10/30 22:38:33 gshapiro Exp $')
   define(`confCF_VERSION', `Submit')dnl
   define(`__OSTYPE__',`')dnl dirty hack to keep proto.m4 from
   complaining
   define(`_USE_DECNET_SYNTAX_', `1')dnl support DECnet
   define(`confTIME_ZONE', `USE_TZ')dnl
   define(`confDONT_INIT_GROUPS', `True')dnl
   define(`confBIND_OPTS', `WorkAroundBroken')dnl
   dnl
   dnl If you use IPv6 only, change [127.0.0.1] to [IPv6:::1]
   FEATURE(`msp', `[127.0.0.1]')dnl
   Giorgos Keramidas wrote:

On 2004-11-02 11:15, Steel City Phantom [4][EMAIL PROTECTED] wrote:


i still can't get the mail function in PHP to work.  my sendmail log
shows this

Nov  2 10:41:36 ironcity sendmail[89186]: iA2FfagI089186: from=www,
size=473, class=0, nrcpts=0,
msgid=[5][EMAIL PROTECTED],
[EMAIL PROTECTED]


This means that the `submit' sendmail daemon is running properly on
127.0.0.1:25 and it did receive your message.



which is a step up because before i made the changes to the rc.conf, i
would get this

Nov  2 00:14:22 ironcity sm-msp-queue[86045]: iA1HGR7Q085413:
[EMAIL PROTECTED], ctladdr=www (80/80), delay=11:57:55,
xdelay=00:00:00, mailer=relay, pri=2190203, relay=[127.0.0.1],
dsn=4.0.0, stat=Deferred: Connection refused by [127.0.0.1]


No submit sendmail process here.



here is what i put in my rc.conf

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

any ideas?


Do you have a properly configured HOST.mc and HOST.submit.mc in your
/etc/mail directory[1]?

Have you generated the sendmail.cf and submit.cf configuration files in
/etc/mail and restarted sendmail after you edited rc.conf[2]?

[1] The `HOST' part should be the hostname of the machine.

[2] This should be as easy as:

# cd /etc/mail
# make  make install  make restart

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

References

   1. http://directory.google.com/Top/Computers/Internet/Abuse/Spam/Blacklists/
   2. http://www.mail-abuse.com/
   3. http://mail-abuse.org/cgi-bin/lookup
   4. mailto:[EMAIL PROTECTED]
   5. mailto:[EMAIL PROTECTED]
   6. mailto:[EMAIL PROTECTED]
   7. mailto:[EMAIL PROTECTED]
   8. http://lists.freebsd.org/mailman/listinfo/freebsd-questions
   9. mailto:[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


[Fwd: Re: still more sendmail trouble]

2004-11-02 Thread Steel City Phantom
all of those are set as you suggested, here are my config files to see 
if you see something i don't.

freebsd.mc -
divert(0)
VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.mc,v 1.10.2.19 2003/12/31 
17:42:16 gshapiro Exp $')
OSTYPE(freebsd4)
DOMAIN(generic)

FEATURE(access_db, `hash -o -TTMPF /etc/mail/access')
FEATURE(blacklist_recipients)
FEATURE(local_lmtp)
FEATURE(mailertable, `hash -o /etc/mail/mailertable')
FEATURE(virtusertable, `hash -o /etc/mail/virtusertable')
dnl Uncomment to allow relaying based on your MX records.
dnl NOTE: This can allow sites to use your server as a backup MX without
dnl   your permission.
dnl FEATURE(relay_based_on_MX)
dnl DNS based black hole lists
dnl 
dnl DNS based black hole lists come and go on a regular basis
dnl so this file will not serve as a database of the available servers.
dnl For that, visit
dnl 
http://directory.google.com/Top/Computers/Internet/Abuse/Spam/Blacklists/

dnl Uncomment to activate Realtime Blackhole List
dnl information available at http://www.mail-abuse.com/
dnl NOTE: This is a subscription service as of July 31, 2001
dnl FEATURE(dnsbl)
dnl Alternatively, you can provide your own server and rejection message:
dnl FEATURE(dnsbl, `blackholes.mail-abuse.org', `550 Mail from  
${client_addr}  rejected, see http://mail-abuse.org/cgi-bin/lookup?; 
${client_addr}')

dnl Dialup users should uncomment and define this appropriately
dnl define(`SMART_HOST', `your.isp.mail.server')
dnl Uncomment the first line to change the location of the default
dnl /etc/mail/local-host-names and comment out the second line.
dnl define(`confCW_FILE', `-o /etc/mail/sendmail.cw')
define(`confCW_FILE', `-o /etc/mail/local-host-names')
dnl Enable for both IPv4 and IPv6 (optional)
DAEMON_OPTIONS(`Name=IPv4, Family=inet')
DAEMON_OPTIONS(`Name=IPv6, Family=inet6, Modifiers=O')
define(`confBIND_OPTS', `WorkAroundBroken')
define(`confNO_RCPT_ACTION', `add-to-undisclosed')
define(`confPRIVACY_FLAGS', `authwarnings,noexpn,novrfy')
MAILER(local)
MAILER(smtp)
freebsd.submit.mc ---
divert(0)dnl
VERSIONID(`$FreeBSD: src/etc/sendmail/freebsd.submit.mc,v 1.1.2.1 
2003/10/30 22:38:33 gshapiro Exp $')
define(`confCF_VERSION', `Submit')dnl
define(`__OSTYPE__',`')dnl dirty hack to keep proto.m4 from complaining
define(`_USE_DECNET_SYNTAX_', `1')dnl support DECnet
define(`confTIME_ZONE', `USE_TZ')dnl
define(`confDONT_INIT_GROUPS', `True')dnl
define(`confBIND_OPTS', `WorkAroundBroken')dnl
dnl
dnl If you use IPv6 only, change [127.0.0.1] to [IPv6:::1]
FEATURE(`msp', `[127.0.0.1]')dnl

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


sendmail config double check

2004-11-01 Thread Steel City Phantom
my bsd LAMP machine won't send any emails through php.  i just wanted to 
doublecheck my rc.conf with you guys to make sure i have it right.  here 
are the settings

sendmail_enable=NO
sendmail_submit_enable=NO
sendmail_outbound_enable=YES
now, if my brain is straight, these settings should reject outside 
systems from trying to route mail through this machine, but the machine 
itself can generate and send mail.  am i right?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: sendmail config double check

2004-11-01 Thread Steel City Phantom

   ok, cool.  thanks.  next simple question, once i change these, how do
   i get sendmail to pick up the new settings without rebooting the
   server?
   Matthew Seaman wrote:

On Mon, Nov 01, 2004 at 01:30:15PM -0500, Steel City Phantom wrote:
  

my bsd LAMP machine won't send any emails through php.  i just wanted to 
doublecheck my rc.conf with you guys to make sure i have it right.  here 
are the settings

sendmail_enable=NO
sendmail_submit_enable=NO
sendmail_outbound_enable=YES

now, if my brain is straight, these settings should reject outside 
systems from trying to route mail through this machine, but the machine 
itself can generate and send mail.  am i right?


sendmail_enable=NO --- implies: don't run a sendmail process
listening on port 25 for incoming connections over the 'net.  CORRECT.

sendmail_submit_enable=NO --- implies: don't run a sendmail MTA
process listening on the loopback address.  WRONG.  You can't send
e-mail without an MTA process in there somewhere, and this setting is
expressly designed for 'send-only' machines.  

sendmail_outbound_enable=YES -- implies: flush the sendmail MTA queue
at intervals.  IRRELEVANT.  You don't need this if you run the
'sendmail_submit_enable' instance above, and in fact, rc.sendmail will
ignore this setting if you have 'sendmail_submit_enable=YES'.

You should also have 'sendmail_msp_queue_enable=YES' which will
flush any emails stuck in the submission queue.  But that's the
default anyhow.

In summary, you want:

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

I'm not exactly sure how PHP sends e-mail on a Unix system.  The
choices are either that it speaks SMTP directly to an MTA (which in
this case will have to be localhost port 25), or else it does what all
good unix programs should do, which is to pipe the message into the
STDIN of /usr/sbin/sendmail.  The config above should work for both of
those cases.  You will possibly need to fiddle with
/etc/mail/`hostname`.mc to setup a smart host as the next MTA to pass
the message to -- see the comments in that file for details.

Cheers,

Matthew

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


CFS, Would You?

2004-11-01 Thread Steel City Phantom
would you use CFS for a mysql database?  i have read articles that said 
it doubles the response time.  anyone tried it?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


running php4 and php5

2004-10-29 Thread Steel City Phantom
i need to configure both on my bsd machine.  i found a few pages on the 
web that had some general instructions on how to do it, but i was hoping 
someone here could tell me how to do it using the ports collection.
http://wiki.coggeshall.org/37.html looked promising, but i wanted to see 
what you guys thought first

one requirement that i have is i need to run pretty much all the php 
extentions for both of them.  so if i run php4-extensions and 
php5-extension, what am i going to screw up?
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]