Re: how do I append a PR I submitted?

2009-06-29 Thread Chris Rees
2009/6/30 : > Jerry McAllister wrote: >> > See subject >> It is impolite to expect someone responding to a message to >> have to go back to the subject line like this. >> > See subject >> is a very inadequate and somewhat tersely offensive. > > To each his own, I guess.  In the case of a one-line

Re: vde qemu write: No buffer space available

2009-06-29 Thread Mel Flynn
On Friday 26 June 2009 10:04:13 Adam Vande More wrote: > I'm having issues with high network throughput with vde and qemu. There > are two qemu vm's each running debian lenny and they are configured for > drbd. The vm's work fine until drbd is started then the networking fails. > The only message

Re: serial modem

2009-06-29 Thread Polytropon
On Mon, 29 Jun 2009 23:13:31 -0400, kalin m wrote: > yes the entry was wrong... changed it. when i try to use tip i get > device busy. when i use cu it says connected but nothing else happens > and i don't see any prompts. it's like frozen. i can't type any AT > commands... nothing. i changed

Re: how do I append a PR I submitted?

2009-06-29 Thread perryh
Jerry McAllister wrote: > > See subject > It is impolite to expect someone responding to a message to > have to go back to the subject line like this. > > See subject > is a very inadequate and somewhat tersely offensive. To each his own, I guess. In the case of a one-liner question which is

Re: my kernel is not build/install

2009-06-29 Thread Matthew Seaman
Chris Rees wrote: 2009/6/26 Kent Stewart : make buildkernel KERNCONF=FREEBSD1 2>&1 | tee /var/log/build/bkernel-`date "+%Y%m%d-%H%M"`.log It leaves a complete log everytime I build a kernel. Your options would be different and I also use csh. [ch...@amnesiac]~% make buildkernel KERNCONF=FRE

Re: OT: C syntax question

2009-06-29 Thread Charlie Kester
On Mon 29 Jun 2009 at 19:48:04 PDT Erich Dollansky wrote: I would never get the idea asking a programmer questions like this at all. Yeah, nowadays nobody asks C programming questions in an interview. It's all web programming now. Back in the day, however, I was asked (and asked) questions mu

OT: C syntax question

2009-06-29 Thread Robert Huff
Robert Huff writes: > Let us suppose I have a structure: Thanks, everyone - you nailed it in one. Robert "What a _maroon_!" Huff ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/li

Re: serial modem

2009-06-29 Thread kalin m
I've no experience with serial modems, but having read the man pages I believe your remote(5) line is incorrect. sio0|com1:dv=/dev/cuad0:br#115200:pa=none: sets system names sio0 and com1, then you try to execute tip to connect to cuad0. Is there an entry for cuad0 in your /etc/remote? I'm

Re: configuring and ssh tunneling xorg from a headless FreeBSD machine

2009-06-29 Thread Erich Dollansky
Hi, On 30 June 2009 am 08:57:23 Dan Naumov wrote: > Hello list. > > I have the following setup: a Windows Vista x64 SP1 machine (my > primary desktop) and a FreeBSD 7.2/amd64 running on a home NAS > system that's relatively powerful (Intel Atom 330 dualcore, 2gb > ram). I would like to be able to

Re: configuring and ssh tunneling xorg from a headless FreeBSD machine

2009-06-29 Thread Peter Boosten
Dan Naumov wrote: > Hello list. > > I have the following setup: a Windows Vista x64 SP1 machine (my > primary desktop) and a FreeBSD 7.2/amd64 running on a home NAS system > that's relatively powerful (Intel Atom 330 dualcore, 2gb ram). I would > like to be able to run xorg and a simple desktop on

Re: OT: C syntax question

2009-06-29 Thread Erich Dollansky
Hi, On 30 June 2009 am 10:40:01 Charlie Kester wrote: > On Mon 29 Jun 2009 at 19:20:04 PDT Charlie Kester wrote: > > > >(Don't you hate it when your mistakes come back to haunt you > > in your inbox?) > at least there is nobody seeing your red face on a mailing list. > I should have quit while I

Re: OT: C syntax question

2009-06-29 Thread Charlie Kester
On Mon 29 Jun 2009 at 19:20:04 PDT Charlie Kester wrote: On Mon 29 Jun 2009 at 19:12:10 PDT Charlie Kester wrote: Of course, it doesn't hurt to specify the number of elements in both dimensions. But it would be a less general solution, With only the minor dimension specified, plate_shift can

Re: OT: C syntax question

2009-06-29 Thread Charlie Kester
On Mon 29 Jun 2009 at 19:12:10 PDT Charlie Kester wrote: Of course, it doesn't hurt to specify the number of elements in both dimensions. But it would be a less general solution, With only the minor dimension specified, plate_shift can take pointers to arrays of 20, 30, 40, 100 or 200 CONTINEN

Re: OT: C syntax question

2009-06-29 Thread Charlie Kester
On Mon 29 Jun 2009 at 17:51:37 PDT Brad Mettee wrote: I believe since you are declaring the array as having a fixed number of elements, you must declare the function to take it the same way, like this: extern int plate_shift(struct CONTINENT *[10][10],int,float); Without the 10,10 size def

Re: OT: C syntax question

2009-06-29 Thread Chuck Swiger
Hi-- On Jun 29, 2009, at 5:41 PM, Robert Huff wrote: and the compiler does not complain. If, however, I try to prototype the function as: extern int plate_shift(struct CONTINENT *[][],int,float); with: CFLAGS = -Wall -std=c99 I get: error: array type has incomplete

Re: OT: C syntax question

2009-06-29 Thread Brad Mettee
At 08:41 PM 6/29/2009, Robert Huff wrote: Let us suppose I have a structure: struct CONTINENT { ... } I use this to create an array of pointers to said struct: struct CONTINENT *Asia[10][10]; Now I pass this array to a function: plate_shift(Asia, (int

configuring and ssh tunneling xorg from a headless FreeBSD machine

2009-06-29 Thread Dan Naumov
Hello list. I have the following setup: a Windows Vista x64 SP1 machine (my primary desktop) and a FreeBSD 7.2/amd64 running on a home NAS system that's relatively powerful (Intel Atom 330 dualcore, 2gb ram). I would like to be able to run xorg and a simple desktop on the headless FreeBSD NAS and

Re: DHCP using ral

2009-06-29 Thread Vilem Kebrt
Manolis Kiagias napsal(a): Robert Hall wrote: I'm trying to set up a connection between an FBSD box and a wireless access point. The background is that there's no security on this network; as the person who set it up says, "You just start your computer and it works!" I have an XP box with a

OT: C syntax question

2009-06-29 Thread Robert Huff
Let us suppose I have a structure: struct CONTINENT { ... } I use this to create an array of pointers to said struct: struct CONTINENT *Asia[10][10]; Now I pass this array to a function: plate_shift(Asia, (int) foo, (float) bar); In the definit

Re: Firefox: Video but no audio

2009-06-29 Thread Manish Jain
Hi Carmel, Do you have problems with sound only on Firefox ? If your problem is that you can't get sound with any application, then please see the output of 'cat /dev/sndstat'. If you get nothing, then you probably don't have an appropriate sound driver loaded. If you have an Intel-based bo

Re: AMD64 VM with OpenGL?

2009-06-29 Thread Roland Smith
On Mon, Jun 29, 2009 at 10:59:04PM +0100, xorquew...@googlemail.com wrote: > On 2009-06-29 23:34:08, Roland Smith wrote: > > On Mon, Jun 29, 2009 at 08:14:17PM +0100, xorquew...@googlemail.com wrote: > > > Hello. > > > > > > What's the preferred virtual machine on FreeBSD 7.2-RELEASE on amd64 if >

Re: update from 7.0 to 7.2?

2009-06-29 Thread Erich Dollansky
Hi, my general concept is not to stick with the releases but to keep the kernel on the current development like using RELENG_7 for CVS. You will notice that HAL and DBUS changed. I noticed because of this real speed improvements on a slower machine. Anyway, if this server runs mail and web pa

Re: my kernel is not build/install

2009-06-29 Thread Chris Rees
2009/6/26 Kent Stewart : > > make buildkernel KERNCONF=FREEBSD1 2>&1 | > tee /var/log/build/bkernel-`date "+%Y%m%d-%H%M"`.log > > It leaves a complete log everytime I build a kernel. Your options would be > different and I also use csh. > [ch...@amnesiac]~% make buildkernel KERNCONF=FREEBSD1 2>&1

Re: AMD64 VM with OpenGL?

2009-06-29 Thread xorquewasp
On 2009-06-29 23:34:08, Roland Smith wrote: > On Mon, Jun 29, 2009 at 08:14:17PM +0100, xorquew...@googlemail.com wrote: > > Hello. > > > > What's the preferred virtual machine on FreeBSD 7.2-RELEASE on amd64 if > > OpenGL support is required? > > Depends on what your definitions of a virtual mac

Re: AMD64 VM with OpenGL?

2009-06-29 Thread Roland Smith
On Mon, Jun 29, 2009 at 08:14:17PM +0100, xorquew...@googlemail.com wrote: > Hello. > > What's the preferred virtual machine on FreeBSD 7.2-RELEASE on amd64 if > OpenGL support is required? Depends on what your definitions of a virtual machine and OpenGl support are. :-) All CPU level virtual ma

Re: libtool shared

2009-06-29 Thread Mel Flynn
On Sunday 28 June 2009 14:18:54 alexus wrote: > ltconfig:432: gcc -E conftest.c > ltconfig:547: checking if gcc PIC flag -fPIC works > ltconfig:548: gcc -c -fPIC -DPIC conftest.c 1>&5 > ltconfig:591: checking if gcc static flag -static works > ltconfig:592: gcc -o conftest-static conftest.c

Novell Groupwise on FreeBSD

2009-06-29 Thread Daniel Underwood
Has anyone been able to use the Novell Groupwise email/calendaring system on FreeBSD? If so, please explain how you accomplished this. ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscri

Re: upgrading installed ports: time to do it ?

2009-06-29 Thread dan
On Wednesday 24 June 2009 17:19:09 you wrote: > On Monday, 22 June 2009 16:48:02 RW wrote: > > On Mon, 22 Jun 2009 20:58:41 +0100 > > > > Chris Whitehouse wrote: > > > I'll probably get flamed for this but since I've been using > > > ports-mgmt/portmanager I've almost forgotten > > > about /usr/po

Re: Firefox: Video but no audio

2009-06-29 Thread dan
On Monday 29 June 2009 22:09:23 Carmel NY wrote: > On Mon, 29 Jun 2009 20:57:01 +0200 > > dan wrote: > > On Monday 29 June 2009 18:19:21 Carmel NY wrote: > > > FreeBSD-7.2 > > > > > > Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.0.11) > > > Gecko/2009062122 Firefox/3.0.11 > > > > > > I am havi

Re: Chomium on FreeBSD?

2009-06-29 Thread Chad Perrin
On Sun, Jun 28, 2009 at 06:47:53PM -0400, Daniel Underwood wrote: > Is there an effort to build a port of chromium for FreeBSD? I recently > began using chromium on my Linux machine, and the HTML rendering speed > is quite impressive. > > When it has the ability to synchronize bookmarks, I'll use

Re: Firefox: Video but no audio

2009-06-29 Thread Carmel NY
On Mon, 29 Jun 2009 20:57:01 +0200 dan wrote: > On Monday 29 June 2009 18:19:21 Carmel NY wrote: > > FreeBSD-7.2 > > > > Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.0.11) > > Gecko/2009062122 Firefox/3.0.11 > > > > I am having a problem getting Firefox to play audio. For instance, > > on You

Re: DHCP using ral

2009-06-29 Thread Manolis Kiagias
Robert Hall wrote: > I'm trying to set up a connection between an FBSD box and a wireless > access point. The background is that there's no security on this > network; as the person who set it up says, "You just start your > computer and it works!" > > I have an XP box with a wireless NIC working,

AMD64 VM with OpenGL?

2009-06-29 Thread xorquewasp
Hello. What's the preferred virtual machine on FreeBSD 7.2-RELEASE on amd64 if OpenGL support is required? Please CC me as I'm not subscribed. xw ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions

Re: DHCP using ral

2009-06-29 Thread Robert Hall
On Mon, Jun 29, 2009 at 1:35 PM, Brent Bloxam wrote: > Robert Hall wrote: >> >> "ifconfig ral0 inet 192.168.1.104 netmask 255.255.255.0" assigns the >> specified values. Ping no longer tells me that there's no route to the >> host, but I'm getting about 95% packet loss. "netstat -r" now shows >> th

Re: update from 7.0 to 7.2?

2009-06-29 Thread Brad Mettee
At 03:20 PM 6/29/2009, you wrote: Brad Mettee writes: > If a system is stable and ports are up to date, serving mail & web > pages as needed, is there any reason to update from this: > FreeBSD ns1.pchotshots.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb > 24 10:35:36 UTC 2008 > r...@driscoll.

Re: update from 7.0 to 7.2?

2009-06-29 Thread Lowell Gilbert
Brad Mettee writes: > If a system is stable and ports are up to date, serving mail & web > pages as needed, is there any reason to update from this: > FreeBSD ns1.pchotshots.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb > 24 10:35:36 UTC 2008 > r...@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys

Re: update from 7.0 to 7.2?

2009-06-29 Thread Roland Smith
On Mon, Jun 29, 2009 at 02:05:29PM -0400, Brad Mettee wrote: > If a system is stable and ports are up to date, serving mail & web pages as > needed, is there any reason to update from this: > FreeBSD ns1.pchotshots.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 > 10:35:36 UTC > 2008 r...

Croatia

2009-06-29 Thread Arrigo Group
Direct flights to Croatia with Special Prices Packages starting from Eu399pp which includes direct flights to Split, airport taxes, 7-nights in a self-catering apartment or Tour packages starting from Eu465pp which includes direct flights to Split, airport taxes, 7-nights in a central hotel in T

Re: update from 7.0 to 7.2?

2009-06-29 Thread Earl Gay
On Mon, Jun 29, 2009 at 2:05 PM, Brad Mettee wrote: > If a system is stable and ports are up to date, serving mail & web pages as > needed, is there any reason to update from this: > FreeBSD ns1.pchotshots.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 > 10:35:36 UTC 2008 > r...@driscoll

Re: update from 7.0 to 7.2?

2009-06-29 Thread Andreas Rudisch
On Mon, 29 Jun 2009 14:05:29 -0400 Brad Mettee wrote: > If a system is stable and ports are up to date, serving mail & web pages as > needed, is there any reason to update from this: > FreeBSD ns1.pchotshots.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 > 10:35:36 UTC > 2008 r...@dris

Re: Firefox: Video but no audio

2009-06-29 Thread dan
On Monday 29 June 2009 18:19:21 Carmel NY wrote: > FreeBSD-7.2 > > Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.0.11) Gecko/2009062122 > Firefox/3.0.11 > > I am having a problem getting Firefox to play audio. For instance, on > Youtube, it will display the video portion fine; however, there is

update from 7.0 to 7.2?

2009-06-29 Thread Brad Mettee
If a system is stable and ports are up to date, serving mail & web pages as needed, is there any reason to update from this: FreeBSD ns1.pchotshots.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 10:35:36 UTC 2008 r...@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 To some

Re: DHCP using ral

2009-06-29 Thread Brent Bloxam
Robert Hall wrote: "ifconfig ral0 inet 192.168.1.104 netmask 255.255.255.0" assigns the specified values. Ping no longer tells me that there's no route to the host, but I'm getting about 95% packet loss. "netstat -r" now shows that link1 (ral0) is the gateway to 192.168.1.0. I still don't have a

Re: Re: Re: Which latex should I install

2009-06-29 Thread Daniel Underwood
> I wanted to ask, but neglected to until now, did you install from the DVD or > the network? Also, did you install for FreeBSD (pre-compiled binaries), or I initially tried the network installation, but there are so many packages/files to retrieve that I quit and went for the DVD install. I recom

DHCP using ral

2009-06-29 Thread Robert Hall
I'm trying to set up a connection between an FBSD box and a wireless access point. The background is that there's no security on this network; as the person who set it up says, "You just start your computer and it works!" I have an XP box with a wireless NIC working, but I don't want to use the XP

Firefox: Video but no audio

2009-06-29 Thread Carmel NY
FreeBSD-7.2 Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.9.0.11) Gecko/2009062122 Firefox/3.0.11 I am having a problem getting Firefox to play audio. For instance, on Youtube, it will display the video portion fine; however, there is no audio present. Also, when I visit sites that have backgro

Re: The question of moving vi to /bin

2009-06-29 Thread Charlie Kester
On Mon 29 Jun 2009 at 08:19:58 PDT Gary Gatten wrote: Good to know, but I was just being a smart-a$$. I will have to try out WINE though, been reading about it lately.. -Original Message- From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of

Re: how do I append a PR I submitted?

2009-06-29 Thread Anton Shterenlikht
On Mon, Jun 29, 2009 at 11:31:49AM -0400, Jerry McAllister wrote: > On Mon, Jun 29, 2009 at 07:39:24AM -0400, Aryeh M. Friedman wrote: > > > See subject > > is a very inadequate and somewhat tersely offensive. > It certainly does not help those with a text based Email reader > that does not s

Re: how do I append a PR I submitted?

2009-06-29 Thread Anton Shterenlikht
___ 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: serial modem

2009-06-29 Thread Brent Bloxam
kalin m wrote: hi all... my first time using serial ports and modems. the modem is hooked up using RS-232 cable... modem specs: • Baud Rate: 115.2kbps • Bits: 8 • Stop Bits: 1 • Parity: none • Hardware Handshaking: Yes my /etc/ttys: ttyd0 "/usr/libexec/getty std.115200" dialup on ttyd1 "

Re: how do I append a PR I submitted?

2009-06-29 Thread Jerry McAllister
On Mon, Jun 29, 2009 at 07:39:24AM -0400, Aryeh M. Friedman wrote: > See subject It is impolite to expect someone responding to a message to have to go back to the subject line like this. > See subject is a very inadequate and somewhat tersely offensive. It certainly does not help those with

RE: The question of moving vi to /bin

2009-06-29 Thread Gary Gatten
Good to know, but I was just being a smart-a$$. I will have to try out WINE though, been reading about it lately.. -Original Message- From: owner-freebsd-questi...@freebsd.org [mailto:owner-freebsd-questi...@freebsd.org] On Behalf Of RW Sent: Sunday, June 28, 2009 10:21 PM To: freebsd-que

Re: what character is a physical newline

2009-06-29 Thread Jerry McAllister
On Mon, Jun 29, 2009 at 06:56:48AM +0100, Matthew Seaman wrote: > Aryeh M. Friedman wrote: > >Glen Barber wrote: > >>On Sun, Jun 28, 2009 at 10:21 PM, Aryeh M. > >>Friedman wrote: > >> > >>>I am writting a parser (tokenizes all characters among other things) and > >>>need to know what control cha

Re: what character is a physical newline

2009-06-29 Thread Jerry McAllister
On Sun, Jun 28, 2009 at 10:38:20PM -0400, Vince Sabio wrote: > ** At 22:30 -0400 on 06/28/2009, Glen Barber wrote: > >On Sun, Jun 28, 2009 at 10:27 PM, Aryeh M. Friedman wrote: > > >> > >>> What do you mean exactly? What language(s)? If I understand your > >>> question correctly, the C / C++ / J

Re: how do I append a PR I submitted?

2009-06-29 Thread Giorgos Keramidas
On Mon, 29 Jun 2009 07:39:24 -0400, "Aryeh M. Friedman" wrote: > See subject Please don't do that. Subject is for a short summary, and in this case the summary is so short that the question may be misunderstood. * Do you want to append more information to an _existing_ PR? * Do you want to

Re: libtool shared

2009-06-29 Thread Charlie Kester
On Sun 28 Jun 2009 at 21:08:49 PDT alexus wrote: I didn't had any issues while doing exact same thing on another box, so, it's this particular box that wont compile it properly is there any suggestions towards solution for this particular problem (other then changing managment) =) That's new an

Re: Re: Re: Which latex should I install

2009-06-29 Thread af300wsm
On Jun 26, 2009 7:32am, Daniel Underwood wrote: Hopefully Polytropon will chime in on this, but I had to install TeXLive for everything to work. Suggestion: try teTeX. If you encounter problems, then install TeXLive. Daniel, I wanted to ask, but neglected to until now, did you instal

FreeBSD & FireWire

2009-06-29 Thread Samuel Martín Moro
Hi all ! I'm trying to read from two firewire DV cameras. calling fwcontrol without arguments shows me three elements. except EUI64 field, every datas (node, ...) change when I plug in or out a device. when I'm trying to read from my cameras' streams (using fwcontrol), I always get the same stre

Re: how do I append a PR I submitted?

2009-06-29 Thread Sylvio Cesar
You could to use: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/porting-submitting.html or http://www.freebsd.org/send-pr.html Regards, Sylvio Cesar 2009/6/29 Aryeh M. Friedman : > See subject > ___ > freebsd-questions@freebsd.o

how do I append a PR I submitted?

2009-06-29 Thread Aryeh M. Friedman
See subject ___ 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: FreeBSD 7.2 - iwi error

2009-06-29 Thread Siyan Sabinov Hadzhiev
Thank you for your reply Jose , I have configure bmiss parameter in rc.conf as you said and enable debug.iwi in sysctl , Bellow you can see the log entries. Jun 29 13:40:13 bsdt43 kernel: enter FW state 4 Jun 29 13:40:13 bsdt43 kernel: Scan request: index 393 dwell 150/30/30 Jun 29 13:40:13 bsdt4

Re: gmirror gm0 destroyed on shutdown; GPT corrupt

2009-06-29 Thread Anton Shterenlikht
On Thu, Jun 25, 2009 at 09:41:13AM -0700, Marcel Moolenaar wrote: > > On Jun 25, 2009, at 4:02 AM, Anton Shterenlikht wrote: > > dev_taste(DEV,mirror/gm0) > > g_part_taste(PART,mirror/gm0) > > > > GEOM: mirror/gm0: the secondary GPT table is corrupt or invalid. > > GEOM: mirror/gm0: using the prim

Re: what character is a physical newline

2009-06-29 Thread Bertram Scharpf
Hi, Am Sonntag, 28. Jun 2009, 22:27:49 -0400 schrieb Aryeh M. Friedman: > Glen Barber wrote: >> On Sun, Jun 28, 2009 at 10:21 PM, Aryeh M. >> Friedman wrote: >> >>> I am writting a parser (tokenizes all characters among other things) and >>> need to know what control char is equivelent to a new

Re: The question of moving vi to /bin

2009-06-29 Thread Manish Jain
Daniel Underwood wrote: How did "The question of moving vi to /bin" end up as two different conversations for me in gmail? Hello Daniel, When I did a 'Reply to All', the moderator blocked the posting claiming too high a number of recipients. I cancelled the posting, and resent it using 'Re

Re: serial modem

2009-06-29 Thread Wojciech Puchar
ttyd0 "/usr/libexec/getty std.115200" dialup on ttyd1 "/usr/libexec/getty std.115200" dialup on then i do: # kill -HUP 1 ps shows: 62496 0.0 0.2 3184 952 ?? I 10:53PM 0:00.00 /usr/libexec/getty std.115200 ttyd0 62667 0.0 0.2 3184 1004 ?? I 11:37PM 0:00.00 /usr/libexec/getty std.115200 ttyd1