Coredumps settings for user programm

2013-06-10 Thread Vagner
Hello!
Tell me please, can i setting coredumps write mechanism for write only
stack of programm and current frame?

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vagner[at]bsdway.ru
email: putrya[at]playform.ru
email: root.vagner[at]gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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: IPC Shared memory segment

2013-03-20 Thread Vagner
The solution was given at revision 233760.
Link for description:
http://svnweb.freebsd.org/base?view=revisionrevision=233760
Thanks to all!

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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


IPC Shared memory segment

2013-03-19 Thread Vagner
Hi all!
Tell me please, how may I remove shared memory segment like this:

T:m shmid:65537 shmkey:0 mode:--rw-rw-rw- owner:root group:wheel creator:root 
cgroup:wheel
NATTCH:2 SEGSZ:1048576000 CPID:2982 LPID:54375 ATIME:10:29:12 DTIME:15:56:14 
CTIME:10:51:00

Pid 2982 and pid 54375 is killed.

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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: Login class and limit

2012-12-07 Thread Vagner
On 17:47 Thu 06 Dec , Lowell Gilbert wrote:
 Vagner vag...@bsdway.ru writes:
 
  On 06:53 Thu 06 Dec , Charles Swiger wrote:
 
  su -, su -l, and sudo -i provide a login shell, which gets the
  limits setup by login.conf.  Normally daemons are started at boot
  via rc mechanism (or perhaps get spawned from inetd) and do not
  have a login shell associated with them to setup the limits.
  
  Either use one of the su/sudo flavors I mention above, or /bin/sh -l
  to provide a login env to the process?
 
  ie means to implement restrictions limits(1) and login.conf(5) for daemons 
  is not possible?
 
 It's possible, but you would have to use a login shell, which is usually
 inconvenient for a daemon (not having an attached terminal for I/O).
 
 The usual way to do this is to start the daemon in a script that
 explicitly sets the limits with /usr/bin/limits (or maybe ulimit, but
 limits(1) seems more common). Several ports do this, for example.
 

Thx for all! I try starting daemon with explicitly sets from rc script.
Thanks again!

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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


Login class and limit

2012-12-06 Thread Vagner
Hi all!
I need help configuring limits for users at FreeBSD 8.3.
I set next options and parametrs at login.conf(5):
 mydaemon:\
   :cputime=5s:\
   :memoryuse=500m:\
   :vmemoryuse=500m:\
   :tc=default:

changed class for user, running cap_mkdb(1). But if i running process
a user with the class mydaemon, which uses cpu time  5s , process not
finished.

 # sudo -u daemon limits
 Resource limits (current):
   cputime  infinity secs

but:

 # su - daemon -c 'limits'
 Resource limits (current):
   cputime 5 secs

Why? And how can i running process without su(1) to apply limits for
my user class?
Thx!

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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: Login class and limit

2012-12-06 Thread Vagner
On 06:53 Thu 06 Dec , Charles Swiger wrote:
 Hi--
 
 On Dec 6, 2012, at 6:32 AM, Vagner vag...@bsdway.ru wrote:
  Hi all!
  I need help configuring limits for users at FreeBSD 8.3.
  I set next options and parametrs at login.conf(5):
 [ ? ]
  
  # sudo -u daemon limits
  Resource limits (current):
   cputime  infinity secs
  
  but:
  
  # su - daemon -c 'limits'
  Resource limits (current):
   cputime 5 secs
  
  Why? And how can i running process without su(1) to apply limits for
  my user class?
 
 su -, su -l, and sudo -i provide a login shell, which gets the
 limits setup by login.conf.  Normally daemons are started at boot
 via rc mechanism (or perhaps get spawned from inetd) and do not
 have a login shell associated with them to setup the limits.
 
 Either use one of the su/sudo flavors I mention above, or /bin/sh -l
 to provide a login env to the process?
 
 Regards,
 -- 
 -Chuck
 
 

ie means to implement restrictions limits(1) and login.conf(5) for daemons is 
not possible?

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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


VM queue

2012-11-29 Thread Vagner
Hi guys!
I running big process on my machine and the memory pages of some other process 
been moved to swap.
I run swapoff(8) for clean swap partition and after swapon(8). Ok.
After, i run top(1) and ps(1) to see that the pages were returned. But i
see next:

 last pid: 25743;  load averages:  0.29,  0.21,  0.23  up
 0+14:33:07  13:01:22
 89 processes:  1 running, 87 sleeping, 1 zombie
 CPU:  4.7% user,  0.0% nice,  1.0% system,  0.1% interrupt, 94.1% idle
 Mem: 537M Active, 478M Inact, 913M Wired, 9316K Cache, 817M Buf, 5883M
 Free
 Swap: 10G Total, 10G Free
 
 PID USERNAMETHR PRI NICE   SIZERES   SWSZ STATE   C   TIME \
 WCPU  TSWAP COMMAND
 
 2464 root1   230 29292K 0K  2796K kqread  1   0:00 \
 0.00%   3413 hald-addo
 120 root  1  520  9920K 0K  1260K pause   0   0:00 \
 0.00%   3413 adjkerntz

and this:

 $ ps -auxww | awk '{if (NR==1) print $0}{if ($8 ~ /W/) print $0}'|less
 USER PID  %CPU %MEM VSZRSS TT  STAT STARTED   TIME\
 COMMAND
 root 120   0,0  0,09920  0 ??  IWs  -  0:00,00\
 adjkerntz -i
 root2464   0,0  0,0   29292  0 ??  IW   -  0:00,00\
 hald-addon-mouse-sysmouse: /dev/psm0 (hald-addon-mouse-sy)

Swap size == 0  RSS == 0. Why? Where is my memory page?

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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: PXE tftp - double boot

2012-10-30 Thread Vagner
On 17:57 Mon 29 Oct , Rick Miller wrote:
 On Mon, Oct 29, 2012 at 4:57 PM, Vagner vag...@bsdway.ru wrote:
  Hello!
  Tell me please, how can i boot from tftp server (throught pxe) several
  copies FreeBSD from different path (For example: /pxeroot/freebsd1 and
  /pxeroot/freebsd2)?
  I see variale rootpath at source sys/boot/i386/libi386/pxe.c. I
  compiled several pxeboot files (there i changed variable rootpath from / 
  to /pxeroot/freebsd[1-2]), and i booted this files throught pxelinux.
  Booting stoped at boot kernel.
 
 This blog post may help
 you...http://blog.hostileadmin.com/2012/05/04/pxe-booting-into-a-freebsd-installation/
 
 In the grub2pxe Configuration section, you can see that the kernel and
 initrd (or mfsroot) images are variable-ized (if that's a word).
 Perhaps you could use a similar approach to accomplish the same.
 
 Obviously, in that post, Grub2pxe replaced FreeBSD's pxeboot.bs and
 was chained to pxelinux.
 
 -- 
 Take care
 Rick Miller

Thanks for your reply!

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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


management for VM objects

2012-10-30 Thread Vagner
Hi!
This questions about Inactive queue and Swap layer in VM management
system at FreeBSD. For test, i running dd (for put ufs cache to Inactive), and 
i get this:

1132580 wire
896796 act
5583964 inact
281852 cache
112252 free
836960 buf

in swap: 20M

It is good. Lets start run programm like:

typedef char * pchar;
pchar a[1024*1024*4];
for(size_t i = 0; i  1024*1024*2; i++)
{
a[i] = (pchar)malloc(1024);
if(a[i]) *(a[i]) = 'F';
}

Get this:

1156420 wire
3070196 act
3465316 inact
206352 cache
109160 free
836960 buf

in swap: 20M

After i call free() pages put to free.

But, why condition is not satisfied from this page:
http://www.freebsd.org/doc/en_US.ISO8859-1/articles/vm-design/freeing-pages.html?
My durty pages don't written to their backing store before being
reusable. I don't understeand this:(

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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


PXE tftp - double boot

2012-10-29 Thread Vagner
Hello!
Tell me please, how can i boot from tftp server (throught pxe) several
copies FreeBSD from different path (For example: /pxeroot/freebsd1 and
/pxeroot/freebsd2)?  
I see variale rootpath at source sys/boot/i386/libi386/pxe.c. I
compiled several pxeboot files (there i changed variable rootpath from / to 
/pxeroot/freebsd[1-2]), and i booted this files throught pxelinux.
Booting stoped at boot kernel. 

-- 
Respectfully,
Stanislav Putrya
System administrator
FotoStrana.Ru Ltd.
ICQ IM: 328585847
Jabber-GoogleTalk: root.vagner
mob.phone SPB: +79215788755
mob.phone RND: +79525600664
email: vag...@bsdway.ru
email: put...@playform.ru
email: root.vag...@gmail.com
site: bsdway.ru
site: fotostrana.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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


proper syntax for wifi

2011-12-04 Thread george vagner

Ok I have a wireless interface ath0 and a wired re0 interface.

I would like to have hostapd running on the wireless interface and allow
access to the wired network also.

For the most part I have this working on most systems with one exception,
one of my clients cant connect
I am getting deauthenticated due to local request in my logs, and another
windows machine had the same issues until
I updated the wifi driver to the latest version which solved the problem on
the win machine.

Here is the error I am getting

wlan0: STA 00:09:2d:4b:21:a0 IEEE 802.11: associated
Dec  4 09:40:23 gateway hostapd: wlan0: STA 00:09:2d:4b:21:a0 IEEE 802.11:
deauthenticated due to local deauth request
Dec  4 09:40:23 gateway hostapd: wlan0: STA 00:09:2d:4b:21:a0 IEEE 802.11:
deassociated



I also don't know ifs right to assign an ip to a bridge or not, maybe
someone can look at this and make some suggestions
Cause I am all googled out or ideas.




 ifconfig -a
re0: flags=8943UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST metric 0 mtu
1500

options=3899RXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,WOL_UCAST,WOL_MCAST,
WOL_MAGIC
ether 90:fb:a6:ed:74:a6
inet 192.168.0.3 netmask 0xff00 broadcast 192.168.0.255
media: Ethernet autoselect (1000baseT full-duplex)
status: active
ath0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST metric 0 mtu 2290
ether 00:c0:ca:1f:4a:d7
media: IEEE 802.11 Wireless Ethernet autoselect mode 11g hostap
status: running
plip0: flags=8810POINTOPOINT,SIMPLEX,MULTICAST metric 0 mtu 1500
lo0: flags=8049UP,LOOPBACK,RUNNING,MULTICAST metric 0 mtu 16384
options=3RXCSUM,TXCSUM
inet6 fe80::1%lo0 prefixlen 64 scopeid 0x9 
inet6 ::1 prefixlen 128 
inet 127.0.0.1 netmask 0xff00 
inet 127.0.0.254 netmask 0x 
nd6 options=3PERFORMNUD,ACCEPT_RTADV
bridge0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST metric 0 mtu
1500
ether 02:b5:34:b6:3f:00
id 00:00:00:00:00:00 priority 32768 hellotime 2 fwddelay 15
maxage 20 holdcnt 6 proto rstp maxaddr 100 timeout 1200
root id 00:00:00:00:00:00 priority 32768 ifcost 0 port 0
member: wlan0 flags=143LEARNING,DISCOVER,AUTOEDGE,AUTOPTP
ifmaxaddr 0 port 11 priority 128 path cost 370370
member: re0 flags=143LEARNING,DISCOVER,AUTOEDGE,AUTOPTP
ifmaxaddr 0 port 1 priority 128 path cost 55
wlan0: flags=8943UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST metric 0
mtu 1500
ether 00:c0:ca:1f:4a:d7
inet 192.168.0.2 netmask 0xff00 broadcast 192.168.0.255
media: IEEE 802.11 Wireless Ethernet autoselect mode 11g hostap
status: running
ssid Gateway channel 11 (2462 MHz 11g) bssid 00:c0:ca:1f:4a:d7
country US ecm authmode WPA privacy MIXED deftxkey 3 TKIP 2:128-bit
TKIP 3:128-bit txpower 22.5 scanvalid 60 protmode CTS wme burst
dtimperiod 1 -dfs


This is my rc.conf

 cat /etc/rc.conf
hostname=gateway.vagner.com
defaultrouter=192.168.0.1
gateway_enable=YES
sshd_enable=YES
wlans_ath0=wlan0
create_args_wlan0=wlanmode hostap
ifconfig_wlan0=inet 192.168.0.2 netmask 255.255.255.0 mode 11g channel 11
hostapd_enable=YES
ifconfig_re0=inet 192.168.0.3 netmask 255.255.255.0 up
cloned_interfaces=bridge0
ifconfig_bridge0=addm re0 addm wlan0
routed_enable=YES
webmin_enable=YES
winbind_enable=YES
dhcpd_enable=YES  # dhcpd enabled?
#dhcpd_flags=-q# command option(s)
#dhcpd_conf=/usr/local/etc/dhcpd.conf  # configuration file
dhcpd_ifaces=wlan0 re0 # ethernet interface(s)
#dhcpd_withumask=022   # file creation mask
inetd_enable=YES
ntpdate_enable=NO
ntpdate_enable=NO
xntpd_program=/usr/local/bin/ntpd
xntpd_flags=-A -g -N -c /etc/ntp.conf -p /var/run/ntpd.pid -l
/var/log/ntpd.log
named_enable=YES
cupsd_enable=YES


and my /etc/hostapd.conf file

 cat /etc/hostapd.conf
# hostapd configuration file
##
# Empty lines and lines starting with # are ignored

# AP netdevice name (without 'ap' postfix, i.e., wlan0 uses wlan0ap for
# management frames); ath0 for madwifi
interface=wlan0

# In case of madwifi and nl80211 driver interfaces, an additional
configuration
# parameter, bridge, must be used to notify hostapd if the interface is
# included in a bridge. This parameter is not used with Host AP driver.
#bridge=br0

# Driver interface type
(hostap/wired/madwifi/prism54/test/none/nl80211/bsd);
# default: hostap). nl80211 is used with all Linux mac80211 drivers.
# Use driver=none if building hostapd as a standalone RADIUS server that
does
# not control any wireless/wired driver.
# driver=hostap

# hostapd event logger configuration
#
# Two output method: syslog and stdout (only usable if not forking to
# background).
#
# Module bitfield (ORed bitfield of modules that will be logged; -1 = all
# modules):
# bit 

wifi question

2011-09-24 Thread george vagner
I am running an ATH0 card in hostap mode with 11g but was wondering if I can
run both 11g and 11b at the same time?

I was thinking mode 11g mode 11b  or mode 11bg but not sure what to put on
the ifconfig line.



___
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: ssh with bridged ap

2011-09-13 Thread George Vagner
I was thinking that maybe because the wired interface doesn't actually have
An IP address it is a reverse lookup thing.



-Original Message-
From: owner-freebsd-questi...@freebsd.org
[mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of Damien Fleuriot
Sent: Tuesday, September 13, 2011 5:36 AM
To: freebsd-questions@freebsd.org
Subject: Re: ssh with bridged ap

On 9/13/11 3:54 AM, george vagner wrote:
 I have set up wireless AP with a static IP and bridged it to my internal
 wired network on RE0.
 
 I can successfully connect with WPA to the wireless network and browse
other
 computers on the wired net fine,
 I can log into the freebsd machine using ssh no problem as long as if I
 connect via the wireless network.
 
 If I try and log into the freebsd machine using the wired network I get a
 log in prompt for username
 Then I get the password prompt but after typing in my password it always
 says login incorrect, it don't do this if I am on the wireless net.
 
 Maybe something in the sshd config about bridged connections? 
 

Maybe an excerpt from your /var/log/auth.log at that time, too...

Might turn out that you don't get anything in /var/log/auth.log which
would indicate that, when using the wired IP of the machine, you're
actually connecting to another host.
___
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: ssh with bridged ap solved

2011-09-13 Thread george vagner
Allow connections to forwarded ports in sshd config

-Original Message-
From: owner-freebsd-questi...@freebsd.org
[mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of George Vagner
Sent: Tuesday, September 13, 2011 8:14 AM
To: freebsd-questions@freebsd.org
Subject: RE: ssh with bridged ap

I was thinking that maybe because the wired interface doesn't actually have
An IP address it is a reverse lookup thing.



-Original Message-
From: owner-freebsd-questi...@freebsd.org
[mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of Damien Fleuriot
Sent: Tuesday, September 13, 2011 5:36 AM
To: freebsd-questions@freebsd.org
Subject: Re: ssh with bridged ap

On 9/13/11 3:54 AM, george vagner wrote:
 I have set up wireless AP with a static IP and bridged it to my 
 internal wired network on RE0.
 
 I can successfully connect with WPA to the wireless network and browse
other
 computers on the wired net fine,
 I can log into the freebsd machine using ssh no problem as long as if 
 I connect via the wireless network.
 
 If I try and log into the freebsd machine using the wired network I 
 get a log in prompt for username Then I get the password prompt but 
 after typing in my password it always says login incorrect, it don't 
 do this if I am on the wireless net.
 
 Maybe something in the sshd config about bridged connections? 
 

Maybe an excerpt from your /var/log/auth.log at that time, too...

Might turn out that you don't get anything in /var/log/auth.log which would
indicate that, when using the wired IP of the machine, you're actually
connecting to another host.
___
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

___
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


ssh with bridged ap

2011-09-12 Thread george vagner
I have set up wireless AP with a static IP and bridged it to my internal
wired network on RE0.

I can successfully connect with WPA to the wireless network and browse other
computers on the wired net fine,
I can log into the freebsd machine using ssh no problem as long as if I
connect via the wireless network.

If I try and log into the freebsd machine using the wired network I get a
log in prompt for username
Then I get the password prompt but after typing in my password it always
says login incorrect, it don't do this if I am on the wireless net.

Maybe something in the sshd config about bridged connections? 



___
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


mini pci e wireless card

2011-08-30 Thread George Vagner
I am wondering what mini pci express (little tiny card) is the best, highest
power and best supported overall
For hostap mode.

I need to replace my rl3090 in my acer revo cause I don't see it as
supported and its
Not detected in my dmesg (8.2r) that I can see, I want to use it as an
accesspoint/router.

Thanks for all your help.

George
 

___
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 vs Russian's laws

2009-10-31 Thread Vagner
Good day! I wanted to share with you the situation in Russia and hear
advice. In Russia introduced a law On personal data and the
corresponding standarts. In accordance with these standarts process
personal data (ie 80% of all data in the enterprise) can only by
certified operating systems and software.
Certified happening in the Federal Security Service in Russia (FSB in USA). But 
FreeBSD doesn't certify anyone.
That  is, in Russia are trying to ban the use os Freebsd and similar.
For the use of face criminal liability. What do i do not kwow, but
refuse to use FreeBSD, i don't intend to. How do you fight
against corruption  bureaucraty in the government itself? Thks

-- 
Respectfully,
Stanislav Putrya
System administrator
RMK Kovsh Ltd.
IM: 328585847
mob. phone: +79525600664
email: root.vag...@gmail.com
email: vagner_ri...@bk.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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: dhcpd related issue

2009-10-31 Thread Vagner
What shows tcpdump?

-- 
Respectfully,
Stanislav Putrya
System administrator
RMK Kovsh Ltd.
IM: 328585847
mob. phone: +79525600664
email: root.vag...@gmail.com
email: vagner_ri...@bk.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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: dhcpd related issue

2009-10-31 Thread Vagner
You can analyze all the traffic going from the client to DHCP server. If
this is of course really...

-- 
Respectfully,
Stanislav Putrya
System administrator
RMK Kovsh Ltd.
IM: 328585847
mob. phone: +79525600664
email: root.vag...@gmail.com
email: vagner_ri...@bk.ru


 ( ) ASCII ribbon campaign
  X  - against HTML, vCards and
 / \ - proprietary attachments in e-mail
___
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: Unstable File Server

2008-06-26 Thread George Vagner
I have had those exact problems with my removable tray.

Try eliminating the tray for a while and see...





-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Derek Ragona
Sent: Wednesday, June 25, 2008 12:23 PM
To: Marcel Grandemange
Cc: freebsd-questions@freebsd.org
Subject: RE: Unstable File Server

At 10:59 AM 6/25/2008, Marcel Grandemange wrote:
The raid card is an Adaptec 2420sa, however devices on that controller
never
have shown troubles.



To give a breakdown:



Mount points:



/dev/ad0s1e on /tmp (ufs, local, soft-updates)
/dev/ad0s1f on /usr (ufs, local, soft-updates)
/dev/ad0s1d on /var (ufs, local, soft-updates)
/dev/ad6s1d on /mnt/750sg (ufs, local, noatime, soft-updates)
/dev/aacd0s1d on /mnt/RaidVolume (ufs, local, noatime, soft-updates)
/dev/ad2s1d on /mnt/250GbMax (ufs, local, noatime, soft-updates)





DMESG:



ad0: 114472MB Seagate ST3120026A 3.06 at ata0-master UDMA100
ad2: 239372MB Maxtor 6L250R0 BAH41G10 at ata1-master UDMA133
acd0: DVDROM SAMSUNG DVD-ROM SD-616F/E104 at ata1-slave UDMA33
ad6: 715404MB Seagate ST3750330AS SD15 at ata3-master SATA150
aacd0: Volume on aac0
aacd0: 523996MB (1073143808 sectors)



pciconf -vl



[EMAIL PROTECTED]:0:0:0: class=0x06 card=0x02961106 chip=0x02961106 
rev=0x00
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'P4M800 Standard Host Bridge'
class = bridge
subclass = HOST-PCI
[EMAIL PROTECTED]:0:0:1: class=0x06 card=0x chip=0x12961106 
rev=0x00
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'P4M800 Standard Host Bridge'
class = bridge
subclass = HOST-PCI
[EMAIL PROTECTED]:0:0:2: class=0x06 card=0x chip=0x22961106 
rev=0x00
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'P4M800 Standard Host Bridge'
class = bridge
subclass = HOST-PCI
[EMAIL PROTECTED]:0:0:3: class=0x06 card=0x chip=0x32961106 
rev=0x00
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'P4M800 Standard Host Bridge'
class = bridge
subclass = HOST-PCI
[EMAIL PROTECTED]:0:0:4: class=0x06 card=0x chip=0x42961106 
rev=0x00
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'P4M800 Standard Host Bridge'
class = bridge
subclass = HOST-PCI
[EMAIL PROTECTED]:0:0:7: class=0x06 card=0x chip=0x72961106 
rev=0x00
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'P4M800 Standard Host Bridge'
class = bridge
subclass = HOST-PCI
[EMAIL PROTECTED]:0:1:0: class=0x060400 card=0x chip=0xb1981106 
rev=0x00
hdr=0x01
vendor = 'VIA Technologies Inc'
device = 'ProSavageDDR P4X600,Apollo KT400/A/600 CPU to AGP Bridge'
class = bridge
subclass = PCI-PCI
[EMAIL PROTECTED]:0:5:0: class=0x060700 card=0x chip=0x04751180 
rev=0x81
hdr=0x02
vendor = 'Ricoh Company, Ltd.'
device = 'RL5c475 Cardbus Controller'
class = bridge
subclass = PCI-CardBus
[EMAIL PROTECTED]:0:6:0: class=0x010400 card=0x029d9005 chip=0x02869005 
rev=0x02
hdr=0x00
vendor = 'Adaptec Inc'
device = 'AAC-RAID (Rocket)'
class = mass storage
subclass = RAID
[EMAIL PROTECTED]:0:7:0: class=0x02 card=0x43001186 chip=0x43001186 
rev=0x10
hdr=0x00
vendor = 'D-Link System Inc'
device = 'dlg10028 Used on DGE-528T Gigabit adaptor'
class = network
subclass = ethernet
[EMAIL PROTECTED]:0:15:0: class=0x010400 card=0x71041462 chip=0x31491106
rev=0x80
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT8237 VT6410 SATA RAID Controller'
class = mass storage
subclass = RAID
[EMAIL PROTECTED]:0:15:1: class=0x01018a card=0x71041462 chip=0x05711106
rev=0x06
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT82C586A/B/VT82C686/A/B/VT823x/A/C Bus Master IDE Controller'
class = mass storage
subclass = ATA
[EMAIL PROTECTED]:0:16:0: class=0x0c0300 card=0x71041462 chip=0x30381106 
rev=0x81
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT83C572, VT6202 VIA Rev 5 or later USB Universal Host
Controller'
class = serial bus
subclass = USB
[EMAIL PROTECTED]:0:16:1: class=0x0c0300 card=0x71041462 chip=0x30381106 
rev=0x81
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT83C572, VT6202 VIA Rev 5 or later USB Universal Host
Controller'
class = serial bus
subclass = USB
[EMAIL PROTECTED]:0:16:2: class=0x0c0300 card=0x71041462 chip=0x30381106 
rev=0x81
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT83C572, VT6202 VIA Rev 5 or later USB Universal Host
Controller'
class = serial bus
subclass = USB
[EMAIL PROTECTED]:0:16:3: class=0x0c0300 card=0x71041462 chip=0x30381106 
rev=0x81
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT83C572, VT6202 VIA Rev 5 or later USB Universal Host
Controller'
class = serial bus
subclass = USB
[EMAIL PROTECTED]:0:16:4: class=0x0c0320 card=0x71041462 chip=0x31041106 
rev=0x86
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT6202/12 USB 2.0 Enhanced Host Controller'
class = serial bus
subclass = USB
[EMAIL PROTECTED]:0:17:0: class=0x060100 card=0x32271106 chip=0x32271106 
rev=0x00
hdr=0x00
vendor = 'VIA Technologies Inc'
device = 'VT8237 PCI-to-ISA Bridge'
class = bridge
subclass = PCI-ISA
[EMAIL 

ath0 driver

2006-01-07 Thread George Vagner
If I add mode 11g to my ifconfig the card loses connectivity momentarily and
routed reports

Ierr=xx connection turned off then some random time it reports connection
restored.

 

If I don't add the mode 11g or even mode 11b it works at 11 mbps reliably.

 

 

It's a dlink g650 atheros 5212 chip.

 

This is on a 5.4 box cvsupped yesterday.

 

Anyone else having this issue? 

 

ifconfig_ath0=inet 192.168.0.1 netmask 255.255.255.0 ssid default channel 6
mediaopt hostap

 

 

 

 

ath0: flags=8843UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST mtu 1500

inet 192.168.0.1 netmask 0xff00 broadcast 192.168.0.255

inet6 fe80::20f:3dff:fea9:38a8%ath0 prefixlen 64 scopeid 0x1

ether 00:0f:3d:a9:38:a8

media: IEEE 802.11 Wireless Ethernet autoselect hostap (autoselect
hostap)

status: associated

ssid default 1:default

channel 6 authmode OPEN powersavemode OFF powersavesleep 100

rtsthreshold 2312 protmode CTS

wepmode OFF weptxkey 1

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


motion detection software

2005-11-30 Thread laszlo vagner
anyone know of a port/package that can detect motion from a usb camera 
or a logitech par port and save the image? 

one of the ones i found was motion but it was for linux.

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


NID_NOT_FOUND

2004-11-16 Thread George Vagner
i am getting an error on an older machine using 2 different 
HDD control cards on 5.3-R with 2 different hard disks
(have not tried other drives)

both disks are Seagate.
one is 160gb
other is 200gb

ad0: FAILURE - WRITE_DMA status=51READY,DSC,ERROR error=10NID_NOT_FOUND 
LBA=268435455

this occurs under heavy usage mostly

Please read

http://www.mail-archive.com/freebsd-hackers@freebsd.org/msg48398.html

is there a fix for this in -Stable ??


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


RE: mini itx

2004-07-01 Thread george vagner

On Wed, Jun 30, 2004 at 11:30:27PM +0100, arden wrote:
 has anyone used these boards with bds?

using a via epia cl6000e with 5.2.1, it's running my home firewall and
mailserver, no problems so far.

hth,
toni
-- 
Wer es einmal so weit gebracht hat, dass er nicht | toni at stderror dot at
mehr irrt, der hat auch zu arbeiten aufgehoert| Toni Schmidbauer
-- Max Planck |

I was using an epia M1000 for my main webserver until it died
With the hard drive controller reporting my disk as -68 megs.
Also some of the capacitors were leaking. Noticed that
Perl would regularly signal 10 while scanning mail messages
For virii. Its on RMA now. 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.713 / Virus Database: 469 - Release Date: 6/30/2004
 

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


sis 748 ata controller on 4.9

2004-06-02 Thread george vagner
Has the DMA problem been corrected on 4.10 on the sis 748 chipset yet?

 

Thanks.

 

 


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.688 / Virus Database: 449 - Release Date: 5/18/2004
 
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


perl issues after port upgrade

2004-02-05 Thread george vagner
I upgraded perl via ports to 5.8.2 and typed in use.perl port
as it said and now i am getting problems with my scripts such as.

 Message: Premature end of script headers: /usr/local/www/cgi-bin/openwebmail/
openwebmail-send.pl
 Can't locate Text/Iconv.pm in @INC (@INC contains: /usr/local/lib/perl5/
site_perl/5.005/i386-freebsd /usr/local/lib/perl5/site_perl/5.005 /usr/
libdata/perl/5.00503/mach /usr/libdata/perl/5.00503 /usr/local/www/cgi-bin/
openwebmail) at /usr/local/www/cgi-bin/openwebmail/shares/iconv.pl line 7. 
BEGIN failed--compilation aborted at /usr/local/www/cgi-bin/openwebmail/
shares/iconv.pl line 7. 
 
this is where i found the iconv.pm file.

/usr/local/lib/perl5/site_perl/5.8.2/mach/Text/Iconv.pm

there is a directory  /usr/local/lib/perl5/site_perl/5.005
but it has no iconv.pm file in it.

I am thinking I may need a link to the new perl but
dont know the correct syntax of how to apply it.

I thought i might make a link from the 5.005 to the 5.8.2
directory but am afraid it may be incorrect to do it this way
and need suggestions.

thanks for the support!

George


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


Re: savemail: cannot save rejected email anywhere on recent 4.9-STABLE

2004-01-29 Thread George Vagner
just had same issue here, it was my version of perl i was using.

what fixed it?  i typed in   use.perl system without quotes.


- Original Message - 
From: Clint Gilders [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Thursday, January 29, 2004 10:28 AM
Subject: savemail: cannot save rejected email anywhere on recent
4.9-STABLE


 This server is running 4.9-STABLE built from new sources on Jan 24, 2004,
and upgraded
 (via 4.6-RELEASE and 4.8-RELEASE) from 4.3-RELEASE.

 This is a very busy busy mail server and in my /var/log/messages I'm
seeing lots of
 messages like:

 Jan 29 08:03:48 ns2 sm-mta[91987]: i0TE3TnC091987: SYSERR(root): savemail:
cannot save
 rejected email anywhere

 Does this mean that sendmail can't put mail in /var/spool/mqueque?

 I've compared mail settings on this server to a new server running
4.9-STABLE and I can't
 see any differences in the permissions on the files I've looked at.   I'm
using the
 default setting from /etc/defaults/rc.conf and simply have
sendmail_enable=YES in
 /etc/rc.conf

 I've looked on google, but none of the results I looked at helped.

 Any suggestions on where to look?  Anymore info from me that would help?

 Thanks
 -- 
 Clint Gilders [EMAIL PROTECTED]
 Director of Technology Services
 OnlineHobbyist.com, Inc.

 ___
 [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: /dev/dsp: Device busy

2004-01-24 Thread George Vagner
if your dual booting i found you must turn off power before you boot into
bsd
something with windows on a restart dont fully reset the soundcard on
mine.
toshiba satellite S2805-401 P3 700 with yamaha 741 soundcard.

- Original Message - 
From: Dorin H. [EMAIL PROTECTED]
To: Geert Hendrickx [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Saturday, January 24, 2004 8:19 PM
Subject: Re: /dev/dsp: Device busy



 --- Geert Hendrickx [EMAIL PROTECTED] wrote:
  Hello,
 
  I have a problem playing sounds in FreeBSD.
  Sometimes it works, sometimes it
  doesn't, and then I get the following error message:
 
 
  /dev/dsp: Device busy
 
  but lsof | grep dsp yields nothing.
 
  Can anyone help me with this mystery?  :-)
 
  Thanks in advance,
 
  GH
 

 Same here. Toshiba laptop. FBSD 4.9. KDE 3.1.4.
 /dev/dsp is from time to time hold by artsd.

   Problem is, it is hold even when nothing is played.
 fstat /dev/dsp shows the problem.
 If anyone find a solution, pls. let me know.
 TIA,
 /Dorin.


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

 __
 Do you Yahoo!?
 Yahoo! SiteBuilder - Free web site building tool. Try it!
 http://webhosting.yahoo.com/ps/sb/
 ___
 [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: Can't make label for a new HDD

2003-07-12 Thread Laszlo Vagner
NiC wrote:

Hi all!

Have trouble - new computer, must be FreeBSD4.8
2 HDDs - first is 20Gb, second 200Gb
When installing - all ok.

After rebooting tried to do through /stand/sysinstall - Fdisk - selecting 200Gb HDD -a-w-q

Then Label menu-c-selecting maximum volume-selecting mount point /base-w-shows the error Error mounting /dev/ad2s1e on /base : Device not configured 

What I'm doing wrong?

Please help.

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


 

one thing i noticed was that after you create a partition (fdisk) the drive
you have to reboot (power off) for the drive to reread the new partition
and then the disklabel will work. Maybe it is because when freebsd boots 
up it didnt see
a valid partition on the drive so it was not configured at boot time.

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


anything like winscp2 for freebsd

2003-07-06 Thread Laszlo Vagner
I am looking for a graphical secure ftp client for xwindows,
something similiar to winscp2 for windows.
suggestions?



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


Re: pcm on 5.1

2003-07-04 Thread Laszlo Vagner
Greg J. wrote:

On Thu, 3 Jul 2003 21:15:01 -0500
David Kelly [EMAIL PROTECTED] wrote:
 

On Thursday 03 July 2003 07:01 pm, Kenneth Culver wrote:
   

On Thursday, July 3, 2003, at 07:58  PM, Laszlo Vagner wrote:
 

I just updated to 5.1-r and was wondering how to add soundcard
support to the
kernel.?
in 4.8 i just added 'device pcm' in my kernel config and recompiled
but 5.1 is different
and i dont want to do something to mess things up.
dmesg follows.
   

Just do what you've always done. Add device pcm to your kernel.
 

I don't think its quite that easy, but its even easier now.

% cd /usr/src/sys/i386/conf
% grep -i pcm *
GENERIC:# PCCARD (PCMCIA) support
GENERIC:# Pcmcia and cardbus bridge support
GRUMPY:# PCCARD (PCMCIA) support
GRUMPY:# Pcmcia and cardbus bridge support
NOTES:# pca: PCM audio through your PC speaker
NOTES:# gp:  National Instruments AT-GPIB and AT-GPIB/TNT board, PCMCIA-GPIB
OLDCARD:# PCCARD (PCMCIA) support
OLDCARD:device  pcic# PCMCIA bridge
Does not appear to be a pcm device available for statically compiling 
into the kernel. But never mind as its available as a kld in
/boot/kernel/
   

sure it still works.. I use device pcm for the hacked up audigy2 sound driver. :-) I've noticed a lot of things that aren't in either NOTES or GENERIC... like options TCP_DROP_SYNFIN.

 

I was looking for the LINT file but didnt find it, is the NOTES file the 
LINT file now?

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


pcm on 5.1

2003-07-03 Thread Laszlo Vagner
I just updated to 5.1-r and was wondering how to add soundcard support 
to the
kernel.?

in 4.8 i just added 'device pcm' in my kernel config and recompiled but 
5.1 is different
and i dont want to do something to mess things up.

dmesg follows.

amd2000# dmesg
Copyright (c) 1992-2003 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
   The Regents of the University of California. All rights reserved.
FreeBSD 5.1-RELEASE #0: Thu Jun  5 02:55:42 GMT 2003
   [EMAIL PROTECTED]:/usr/obj/usr/src/sys/GENERIC
Preloaded elf kernel /boot/kernel/kernel at 0xc06d4000.
Preloaded elf module /boot/kernel/acpi.ko at 0xc06d4244.
Timecounter i8254  frequency 1193182 Hz
Timecounter TSC  frequency 1666738222 Hz
CPU: AMD Athlon(TM) XP 2000+ (1666.74-MHz 686-class CPU)
 Origin = AuthenticAMD  Id = 0x662  Stepping = 2
 
Features=0x383fbffFPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,MMX,FXSR,SSE
 AMD Features=0xc040AMIE,DSP,3DNow!
real memory  = 536854528 (511 MB)
avail memory = 514064384 (490 MB)
Pentium Pro MTRR support enabled
npx0: math processor on motherboard
npx0: INT 16 interface
acpi0: ASUS   A7V8Xon motherboard
pcibios: BIOS version 2.10
Using $PIR table, 12 entries at 0xc00f1cd0
acpi0: power button is handled as a fixed feature programming model.
Timecounter ACPI-fast  frequency 3579545 Hz
acpi_timer0: 32-bit timer at 3.579545MHz port 0xe408-0xe40b on acpi0
acpi_cpu0: CPU on acpi0
acpi_button0: Power Button on acpi0
pcib0: ACPI Host-PCI bridge port 0xcf8-0xcff on acpi0
pci0: ACPI PCI bus on pcib0
agp0: VIA Generic host to PCI bridge mem 0xf800-0xfbff at 
device 0.0 on pci0
pcib1: ACPI PCI-PCI bridge at device 1.0 on pci0
pci1: ACPI PCI bus on pcib1
pci1: display, VGA at device 0.0 (no driver attached)
fwohci0: VIA VT6306 port 0xd800-0xd87f mem 0xed80-0xed8007ff irq 5 
at device 7.0 on pci0
fwohci0: OHCI version 1.0 (ROM=1)
fwohci0: No. of Isochronous channel is 8.
fwohci0: EUI64 00:e0:18:00:00:08:81:a6
fwohci0: Phy 1394a available S400, 3 ports.
fwohci0: Link S400, max_rec 2048 bytes.
firewire0: IEEE1394(FireWire) bus on fwohci0
if_fwe0: Ethernet over FireWire on firewire0
if_fwe0: Fake Ethernet address: 02:e0:18:08:81:a6
sbp0: SBP2/SCSI over firewire on firewire0
fwohci0: Initiate bus reset
atapci0: Promise PDC20376 SATA150 controller port 
0xb800-0xb87f,0xd000-0xd00f,0xd400-0xd43f mem 
0xec80-0xec81,0xed00-0xed000fff irq 5 at device 8.0 on pci0
ata2: at 0xed00 on atapci0
ata3: at 0xed00 on atapci0
ata4: at 0xed00 on atapci0
pci0: network, ethernet at device 9.0 (no driver attached)
ahc0: Adaptec 29160 Ultra160 SCSI adapter port 0xb400-0xb4ff mem 
0xeb80-0xeb800fff irq 9 at device 12.0 on pci0
aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs
xl0: 3Com 3c905-TX Fast Etherlink XL port 0xb000-0xb03f irq 11 at 
device 13.0 on pci0
xl0: Ethernet address: 00:10:4b:95:5f:63
miibus0: MII bus on xl0
nsphy0: DP83840 10/100 media interface on miibus0
nsphy0:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
xl1: 3Com 3c905-TX Fast Etherlink XL port 0xa800-0xa83f irq 5 at 
device 14.0 on pci0
xl1: Ethernet address: 00:60:97:7b:22:56
miibus1: MII bus on xl1
nsphy1: DP83840 10/100 media interface on miibus1
nsphy1:  10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto
uhci0: VIA 83C572 USB controller port 0xa400-0xa41f irq 9 at device 
16.0 on pci0
usb0: VIA 83C572 USB controller on uhci0
usb0: USB revision 1.0
uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub0: 2 ports with 2 removable, self powered
uhub0: port error, restarting port 1
uhub0: port error, giving up port 1
umass0: Shuttle Technology Inc. eUSCSI Bridge Ver 1.11, rev 1.00/1.00, 
addr 2
umass0: Get Max Lun not supported (STALLED)
uhub0: port error, restarting port 2
uhub0: port error, giving up port 2
uhci1: VIA 83C572 USB controller port 0xa000-0xa01f irq 9 at device 
16.1 on pci0
usb1: VIA 83C572 USB controller on uhci1
usb1: USB revision 1.0
uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub1: 2 ports with 2 removable, self powered
uhci2: VIA 83C572 USB controller port 0x9800-0x981f irq 9 at device 
16.2 on pci0
usb2: VIA 83C572 USB controller on uhci2
usb2: USB revision 1.0
uhub2: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1
uhub2: 2 ports with 2 removable, self powered
pci0: serial bus, USB at device 16.3 (no driver attached)
isab0: PCI-ISA bridge at device 17.0 on pci0
isa0: ISA bus on isab0
atapci1: VIA 8235 UDMA133 controller port 0x9400-0x940f at device 17.1 
on pci0
ata0: at 0x1f0 irq 14 on atapci1
ata1: at 0x170 irq 15 on atapci1
pci0: multimedia, audio at device 17.5 (no driver attached)
fdc0: Enhanced floppy controller (i82077, NE72065 or clone) port 
0x3f7,0x3f2-0x3f5 irq 6 drq 2 on acpi0
fdc0: FIFO enabled, 8 bytes threshold
fd0: 1440-KB 3.5 drive on fdc0 drive 0
ppc0 port 0x778-0x77b,0x378-0x37f irq 7 drq 3 on acpi0
ppc0: SMC-like chipset (ECP/EPP/PS2/NIBBLE) in COMPATIBLE mode
ppc0: 

Re: * FreeBSD AntiVirus Solutions *

2003-06-11 Thread George Vagner
i am using the norton av eval version with auto updates
works fine so far, i will let you know when i finish evaluating it.

i think its uvscan and amavis-perl


- Original Message - 
From: Bill Moran [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, June 11, 2003 9:50 PM
Subject: Re: * FreeBSD AntiVirus Solutions *


 Olivier Nicole wrote:
 We have noticed that Kaspersky and Sophos are placed at your web site
but we
 wonder if we have any other / new alternatives more then these two SW ?
 
  We've been using Kaspersky for more than a year, no problem with the
  product itself, but the sales team is a bit unresponsive (don't expect
  them to warn you when you need to renew your licence, had to threaten
  them to get them replying to me, etc.)

 I can't recommend Kaspersky.  I had a bad experience with them, the
product
 never worked, and they stopped responding to all communications when we
 told them we wanted our money back.  Being overseas, there was little we
 could do but bite the bullet.

 Sophos has been running ever since then.  It's fast and reliable.  It's
 definately expensive, but they seem to do a real good job of having up-to-
 date profiles of all viruses.  We automatically d/l and install updates
 nightly and have never had a problem.

 -- 
 Bill Moran
 Potential Technologies
 http://www.potentialtech.com

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



---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.488 / Virus Database: 287 - Release Date: 6/5/2003

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


Re: OpenOffice and Mozilla

2003-02-20 Thread Laszlo Vagner
I have  similiar problem where mozilla crashes and then dont release
the profile files, a quick look at ps -auxw shows mozilla-bin running
and a killall mozilla-bin releases my profile so i can open mozilla again.



On Thursday 20 February 2003 07:12 am, Mike Jeays wrote:
 Several times I have found that running OpenOffice 1.0 on FreeBSD 4.7
 has corrupted my Mozilla settings.  The contents of .mozilla looks intact,
 but it refuses to recognize my profile.  I have to build a new profile,
 and move
 over my bookmarks and mail folders.

 Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.0.1) Gecko/20021005

 Have other people had this problem, and where do I go to find out more?



 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Configuring sendmail to deliver per sender

2003-02-18 Thread Laszlo Vagner
check out virtusertable, access and aliases. you might need
the apropriate FEATURE in your M4 file for virtusertable to work.

I also suggest installing Webmin for easy access and changes
to these files.



On Tuesday 18 February 2003 06:03 pm, Steven Lake wrote:
 Hi all.  How do I get sendmail to forward off mail coming from a
 particular sender to a particular email address?  So regardless of who
 it's addressed TO, I want it to forward mail to a different mailbox or to
 /dev/null depending on the address.

   So say I get an email going from [EMAIL PROTECTED] going to
 [EMAIL PROTECTED], I want that email to go to [EMAIL PROTECTED]
 instead, but all other mail labled for user1 I want it to deliver
 normally.

   The other situation would be mail coming into from
 [EMAIL PROTECTED] going to any user on my network.  I want to
 automatically forward that mail into /dev/null and make it go bye bye.
 How do I go about doing that?  Thanks.  If I can't do that, I'll take the
 first item instead.  I've got a workaround for the second if it can't be
 done.  But I definately need to do the first one.  Thanks for the info!


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: AMD Duron/ Socket A - FreeBSD 4.7

2003-02-17 Thread Laszlo Vagner


I would say that power supply is a little weak at 200W especially for a 
server. I built a nice system recently which cost about 500 bucks.
Asus A7 8X Athlon 2gig, 512 meg ddr400, onboard sound, unsupported
nic (gigabit is supported), firewire, smart card reader, Seagate 120gb
HDD, Nvidia GF4 TI4200, Kingston NIC, Liteon 48X cd-rw and full server
tower case.

the price difference between duron and full athlon dont warrant getting
a duron, to save even more you could find a motherboard with 
onboard video and NIC and slower memory like ddr333 or even 266.




On Monday 17 February 2003 09:36 am, Andreas Widerøe Andersen wrote:
 Hi,
 I need to purchase a CHEAP server for a client and I was thinking about
 building him one using an AMD processor and a Socket A mainboard with most
 stuff onboard. Normally I'm rather reluctant to use new hardware for
 FreeBSD installations therefore I'm hoping someone could comment on the
 following spec:

 2x WD Harddisk 20.0GB IDE 7200RPM UDMA-100 3.5 , WD200BB
 APACER Memory 512MB SDRAM PC-133 Original 168Pin CL2, 512MB PC-133
 MICROSTAR Mainboard Socket-A VIA KLE133 MicroATX Audio VGA LAN UDMA100,
 MS6378XL
 AMD CPU Duron 1.2GHz Socket A 200FSB Tray , AMD DURON 1.2
 Chieftec Case 19 1U 200W ATX 1xPCI Riser Card Black, UNC-110S-B 1

 Thanks!
 Andreas



 ---
 Andreas Widerøe Andersen [EMAIL PROTECTED]
 Pragma AS

 http://www.pragma.no


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Replacement hard drives, was: Re: Hard error??

2003-02-16 Thread Laszlo Vagner
the new Seagate 120gb seems to be real quiet and stable for me
I cant even hear it running, they have a new motor design
and probably is the best bang for the buck right now about $140.00

I had bad luck with quantum, maxtor and IBM and WD but Seagate
seem to be very good for me right now.

I think there is a website called drivereview.com or something that can better
give you a hint.



On Saturday 15 February 2003 02:45 pm, Chuck Swiger wrote:
 Henrik W Lund wrote:
 [ ... ]

  Anyway, it seems like I have just got to get myself a new drive. On that
  note, has anybody got any idea what I should go for? Any vendors whose
  drives do NOT cave in after half a year? ;)

 Your drive should still be under warrantee, then...?

 To answer your question: I've been fairly happy with Seagate over the
 years, and Maxtor has been okay.  Seagate's flagship products tend to do
 well, at least if you've got an open budget available-- one main
 fileserver I run has four Seagate ST336752LC drives (Cheetah X15
 36LP?) in a RAID-1,0.  They rock.  Maxtor has sometimes seemed to have
 better price/performance for their normal drives, which is useful when
 one's budget it more constrained.

 Avoid Quantum at all costs.  While there was an educational benefit to
 learning how to coax more life from one of those famous 105MB's with
 stiction, newer Quantum drives are better in the sense that they hold
 more data, and worse in that they tend to fail more abruptly and more
 permanently.

 IBM and Fujitsu have both been having quality control issues recently,
 although the IBM UltraStar lineup used to be pretty good at one point.
 I'd also like to give a big thumbs up to recent the Western Digital
 series of SE drives with 8MB of cache.  WD's previous SCSI drives, like
 the 10K 18GB Vantage were good, too.

 As for laptop drives, well, what you want is a single platter drive with
 low power consumption, hence low heat-- ie, ones for ultra-thin/light
 laptops, something like what Sony's got in their VAIO 505's; expect a
 slower spindle speed, though.  Even so, laptops tend to take a beating,
 and even good laptop drives seem to have about a 25% mortality rate
 after 3 years, give or take.

 Anyone know of a laptop that takes SCA (80-pin SCSI) drives?

 Failing that, be nice once SATA + individual IDE channels per drive +
 RAID hardware + SCSI layers (TCQ/command protocol/iSCSI/etc) becomes
 more common.  SATA for the cabling alone will do a world of good.  While
 I'm thinking about it, a platform-spanning PCI-X version of a SATA/RAID
 card would remind me favorably of Adaptec's 2940 (U/UW/OF/etc) series.

 -Chuck

 Disclaimer: Any Clutch fans out there?  Last night's show-- in the
 hinterlands of Brooklyn, New York; Lamours-- is responsible; any
 opinions represented above I may or may not agree with once I finish
 recovering.  Very good show, finished very late.  :-)


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



OT sendmail tagging spam

2003-02-15 Thread Laszlo Vagner
currently i use spamcop.net's blocking service and have the
FEATURE in my sendmail configuration, I would like to
just tag spam say in the subject add SPAM: to all incoming
mails that match the blocklist. What would be the best
way of doing this.?

Thank You

Laszlo


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Mozilla/Galeon broken after portupgrade

2003-02-11 Thread Laszlo Vagner
stan wrote:


I did a cvsup, make world, portupgrade sequence this weekend, and now both
mozilla, and galeon die when started.

Any sugestiosn as to how to fix this?

I already tried pritugrade -Rr  galeon. Lots of stuff was rebuilt, but
both browsers still core dump :-(


 

did you build and install a new kernel? did you do mergemaster?



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: connecting to my isp

2003-02-08 Thread Laszlo Vagner
Bill Moran wrote:


Brian H wrote:


I am trying to switch my router from Linux Router Project to FBSD 4.7 
because i think i can get more functionality with bsd :) I am running 
into a problem with getting it connected to my isp.

i have a cable connection and the way that the LRP connection is 
through dhcp. it uses the mac address as a means to authenticate.


What do you mean?  Do you mean that your ISP will only give you an IP
if your MAC is registered?  Is your MAC on this machine registered?


What turn on DHCP in /stand/sysinstall configure networking menu.



When it asks you if you want to use DHCP and you say 'yes'.


It just hung there for a while and then returned no information from 
the dhcp server.


During installation?  Or are you doing post-config?  Can you ALT+F4 (I 
think
it's F4, might be F3) and see any errors wrt DHCP?

Is there anything i can do to just get connnected to my isp?



This has worked fine every time I've done it.


I have comcast and can DHCP it fine, my GF has ATTBI cable and i cant 
get it to DHCP for the life of me
although i can manually put in the settings and it will work. both 
systems are 4.7-stable.

both work with windows2000 fine though.




To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


ORB USB portable drive timeouts

2003-02-04 Thread Laszlo Vagner
I have a USB ORB drive connected and it works for the first 15 minutes or so
until it spins down after inactivity even if it is mounted.

the error i get is  umass0: BBB reset failed  TIMEOUT  and then a few 
that are similiar.

If i use the disk every so often then all is good.

Is there a parmeter I can set to increase the wait for this drive to 
spin up?

it shows up as /dev/da1s1 on 4-stable as of 2 days ago or so.

I know of no way to tell this drive to not spin down or i would tell it to.





To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


openoffice.org build on 5.0

2003-01-27 Thread Laszlo Vagner


trying to build openoffice and get this===

I cant find the file it is looking for on the net although the 
/nonexistant bothers me
that it is really the problem.


ERROR below

  Extracting for openoffice-1.0.2
 Checksum OK for openoffice/OOo_1.0.2_source.tar.bz2.
 Checksum OK for openoffice/gpc231.tar.Z.
 Checksum OK for openoffice/patch-openoffice-mozilla101-2002-10-14.
===   openoffice-1.0.2 depends on executable: zip - found
===   openoffice-1.0.2 depends on executable: unzip - found
===   openoffice-1.0.2 depends on file: /usr/local/bin/ant - not found
===Verifying install for /usr/local/bin/ant in 
/usr/ports/devel/jakarta-ant
===  Extracting for jakarta-ant-1.5.1_3
 Checksum OK for jakarta/jakarta-ant-1.5.1-bin.tar.gz.
===   jakarta-ant-1.5.1_3 depends on file: /usr/local/jdk1.2.2/bin/java 
- not found
===Verifying install for /usr/local/jdk1.2.2/bin/java in 
/usr/ports/java/jdk12
===  Extracting for jdk-1.2.2p11
 Checksum OK for jdk1_2_2-src.tar.gz.
 Checksum OK for bsd-jdk122-patches-11.tar.gz.
===   jdk-1.2.2p11 depends on executable: gm4 - found
===   jdk-1.2.2p11 depends on executable: zip - found
===   jdk-1.2.2p11 depends on file: /usr/local/jdk1.1.8/bin/javac - found
===   jdk-1.2.2p11 depends on file: /usr/X11R6/lib/libXm.so - found
===   jdk-1.2.2p11 depends on file: /nonexistent - not found
===Verifying extract for /nonexistent in /usr/ports/java/jfc
===  jfc-1.1.1 'You must manually fetch the standard zip format 
distribution from http://www.javasoft.com/products/jfc/download.html and 
place it in /usr/ports/distfiles then run make again.'.
*** Error code 1

Stop in /usr/ports/java/jfc.
*** Error code 1

Stop in /usr/ports/java/jdk12.
*** Error code 1

Stop in /usr/ports/devel/jakarta-ant.
*** Error code 1

Stop in /usr/ports/editors/openoffice.
amd2000#



To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: Spam filter combined with virus filter

2003-01-26 Thread Laszlo Vagner
I am using amavis-perl with the auto update and spamcop BL list with
sendmail.
Works awesome, maybe 1 spam gets thru a week and 50 or more rejected a day
with about 10 users on the system.

amavis is in the ports under security

look to www.spamcop.net for the blocklist and how to add it to your mail
system.





- Original Message -
From: Dragoncrest [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, January 26, 2003 11:23 PM
Subject: Spam filter combined with virus filter


 Looking for a good anti-virus to go with my spam filter.  Currently using
 spam assassin with mixed results, but now I'm getting more and more of
 these stupid viruses coming into the mail server I'd rather deal
 without.  Anybody got a good suggestion for a good spam filter/virus
filter
 combination?  Should I stick with Spam Assassin or go with something
 else?  I'm fishing for ideas, cause this is getting kind of old dealing
 with this stuff.


 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Installing FreeBSD 4.7 from ISO image

2003-01-05 Thread Laszlo Vagner
Daniel Goepp wrote:


The problem may not be BSD.  You say you have changed your BIOS to boot
the CD, but have you verified that any other bootable CDs work?  Like
your original windows CD?  Also, do you have another machine you could
check to verify that the FreeBSD CD is bootable?  If not, I would check
your ISO burning process to make sure it's working correctly.

-Daniel


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]] On Behalf Of William Coles
Sent: Sunday, January 05, 2003 2:15 PM
To: freebsd-questions
Subject: Installing FreeBSD 4.7 from ISO image

Greetings,

I'm new to the list and new to FreeBSD. Here is my situation:

I have downloaded the 4.7-mini iso from one of the ftp sites. I have
extracted the file and burnt it onto a cd-rw as a data cd (ISO) using
nero.
I am trying to install FreeBSD from this disc, but am having difficulty.
A
little more background on my current system config... I am running win2k
pro
(NTFS), which is dedicated to one of my hard drives. I have freed up
another
hard drive (3 GB) to install nix. I changed my BIOS settings to boot
from
CD, restarted and... the system boots into windows. I feel I'm just
overlooking a simple detail, but I'm not familiar enough with FreeBSD
yet to
understand what I need to do to install. I have read the eratta.txt,
readme.txt and the install.txt, but can't seem to find what file is the
actual install file, or how I can go about installing from the CD onto
my
available drive? Any help will be greatly appreciated.

Thanks,
Bill


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message

 

you should have only burned the iso file from nero and not extracted it.
extracting it would give you the files but not the boot info and 
possible munged the
filenames.





To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


UDF support in stable?

2002-12-30 Thread Laszlo Vagner
I see there is a patch for current but i am using stable and wondering 
if anything
exists that will allow me to mount UDF cdroms on 4.7-stable with an IDE 
drive.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message


Re: Poor server response

2002-12-02 Thread george vagner
same board here and the network card died after 2 weeks of use.
i installed a kingston fa311.


- Original Message -
From: Roger 'Rocky' Vetterberg [EMAIL PROTECTED]
To: Derrick Ryalls [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Monday, December 02, 2002 11:26 AM
Subject: Re: Poor server response


 Derrick Ryalls wrote:
  I built a FreeBSD box using a 4.7-release mini cd distro from
  freebsd.org.  I then updated to stable via cvsup and did a
  buildworld/kernel.
 
  The machine needed linux support, so I installed linux-base (6?) from
  the ports.  Things were going fine until I started stressing the box.
 
  Frequently, when using edit to edit config files, the remote session
  would lock and connection would get lost.  The edit session would show
  up in a 'ps -aux' but I could not kill it via kill or killall.  Now the
  box is fairly unresponsive to pings.  I swapped a known good patch cable
  but it didn't help.  Also, when trying to scp, more often than not, once
  I click on copy (using winscp), the session would lock up and connection
  drop on the client side.
 
  I don't seem to have any editing issues if I am sitting at the terminal,
  and pinging local ip doesn't drop a packet.  When I ping any other ip, I
  get dropped packets...
 
  Any ideas?
 
  Hardware:
 
  XP1800+
  ECS K7S5A mobo w/ onboard lan.
  512M PC2100 crucial ram
 
 
 
  -Derrick
 

 I have exactly that motherboard in one of my machines, and I must
 say Im not impressed by its performance or stability.
 I disabled the onboard nic and replaced it with a PCI Intel
 10/100 card, and network performance sky-rocketed.

 Just a tip

 --
 R




 To Unsubscribe: send mail to [EMAIL PROTECTED]
 with unsubscribe freebsd-questions in the body of the message


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



make world script

2002-10-08 Thread George Vagner

I am looking for a script that I can run a cron on that will
update my sources and ports, build world, kernel and install everything
without touching my network settings so i can get back in later.

doing everything remotely is a pain and I would like to stay stable.

something on the Idea of Microsofts automatic updates would be the nicest.

also anyone know of a way to reboot my laptop via ssh or telnet? it is an IBM 
760XD P166 (very old) issuing the command reboot as root shuts down and
syncs disks but never reboots it just hangs after syncing disks. I tried 
Broken keyboar reset kernel option with same results.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message