Tim | 1 Apr 2010 01:03
Favicon

Re: ICMP Echo from Java

> Is there a way to measure how many bytes is in each ICMP Echo request?  I do
> not play with that size so I would imagine it is the default but I still
> want to monitor outbound traffic to confirm.

Have you tried cracking out wireshark to sniff and visualize the
packets?

tim
David Mandel | 1 Apr 2010 01:26

SECOND ANNOUNCEMENT: April PLUG Meeting

                            MEETING ANNOUNCEMENT

                       The Portland Linux/Unix Group
                                 will meet
                         7 PM Thursday Apr 1, 2010
                                     at
                         Portland State University
                                   in the
                              Fariborz Maseeh
             College of Engineering & Computer Science Building
                              Room FAB 86-01
                       (This is in the basement.)
          The building is on SW 4th across from SW College Street.
       See location H-10 on map at http://pdxLinux.org/campus_map.jpg

    *******************************************************************

                                PRESENTATION

                             Rapid Discussions

                                     on

                                 Any Topic

                                     by

                             Anyone & Everyone

     Instead of having a formal presentation, we will get together and
(Continue reading)

VY | 1 Apr 2010 01:39
Picon

Re: ICMP Echo from Java

Will give that a try.

On Wed, Mar 31, 2010 at 4:03 PM, Tim <tim-pdxlug <at> sentinelchicken.org> wrote:

> > Is there a way to measure how many bytes is in each ICMP Echo request?  I
> do
> > not play with that size so I would imagine it is the default but I still
> > want to monitor outbound traffic to confirm.
>
> Have you tried cracking out wireshark to sniff and visualize the
> packets?
>
> tim
> _______________________________________________
> PLUG mailing list
> PLUG <at> lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>
Russell Senior | 2 Apr 2010 00:31

I have a willing advanced topics speaker


Not for tonight, but I have recruited a speaker for the advanced
topics meeting.  She can talk this month (April 21).  Who is the
correct coordinator these days?  Alan or Michael Dexter?

--

-- 
Russell Senior, President
russell <at> personaltelco.net
Terry Griffin | 2 Apr 2010 01:28
Picon
Favicon

Re: I have a willing advanced topics speaker

>
> Not for tonight, but I have recruited a speaker for the advanced
> topics meeting.  She can talk this month (April 21).  Who is the
> correct coordinator these days?  Alan or Michael Dexter?
>
>

A willing speaker? What sort of lies did you have to tell?

Terry
Russell Senior | 2 Apr 2010 03:39

Re: I have a willing advanced topics speaker

>>>>> "Terry" == Terry Griffin <griffint <at> pobox.com> writes:

Russell> Not for tonight, but I have recruited a speaker for the
Russell> advanced topics meeting.  She can talk this month (April 21).
Russell> Who is the correct coordinator these days?  Alan or Michael
Russell> Dexter?

Terry> A willing speaker? What sort of lies did you have to tell?

Simple shame (I'd asked this person 2 years ago and she'd begged off
then with the excuse that she had just started the job), and appeal to
the public spirit.

--

-- 
Russell Senior, President
russell <at> personaltelco.net
Randy Stapilus | 2 Apr 2010 06:35

fonts on browser

I tried solving one font problem and ended up with a new one.

Running Linux Mint (current edition), dual-booted with Windows XP, I  
wanted to import fonts from Windows; the lack of some comparable  
fonts are a bar to some of the desktop publishing I do. So I copied  
the fonts directory in XP (that is, windows/fonts) over to a memory  
stick, thence to the Linux side of the machine at usr/share/fonts.  
New fonts did show up (though not all, a couple I hoped for did not  
materialize) in the Open Office docs I opened.

But, when I went to use Firefox and Galeon, no text of any sort  
showed up in the browser window - only web wage images and design.  
The problem doesn't seem to extend to other programs - the Tomboy  
notes program, for example, seems to operate as normal.

I suppose (I hope) I can reverse this by deleting the fonts directory  
I just copied over. But I'm wondering if there's a way to get the  
fonts to work in all of these places. Or is there something about  
what I did that would cause the installation to work in OO but not in  
the browsers?

Randy Stapilus
www.ridenbaugh.com
Northwest politics and public affairs
WA, OR, ID Public Affairs Digests
David Kaplan | 2 Apr 2010 13:03
Picon

Re: fonts on browser

To install ms fonts in Mint:

$ sudo apt-get install msttcorefonts

On Thu, Apr 1, 2010 at 9:35 PM, Randy Stapilus <stapilus <at> ridenbaugh.com>wrote:

> I tried solving one font problem and ended up with a new one.
>
> Running Linux Mint (current edition), dual-booted with Windows XP, I
> wanted to import fonts from Windows; the lack of some comparable
> fonts are a bar to some of the desktop publishing I do. So I copied
> the fonts directory in XP (that is, windows/fonts) over to a memory
> stick, thence to the Linux side of the machine at usr/share/fonts.
> New fonts did show up (though not all, a couple I hoped for did not
> materialize) in the Open Office docs I opened.
>
> But, when I went to use Firefox and Galeon, no text of any sort
> showed up in the browser window - only web wage images and design.
> The problem doesn't seem to extend to other programs - the Tomboy
> notes program, for example, seems to operate as normal.
>
> I suppose (I hope) I can reverse this by deleting the fonts directory
> I just copied over. But I'm wondering if there's a way to get the
> fonts to work in all of these places. Or is there something about
> what I did that would cause the installation to work in OO but not in
> the browsers?
>
> Randy Stapilus
> www.ridenbaugh.com
> Northwest politics and public affairs
(Continue reading)

Denis Heidtmann | 2 Apr 2010 20:44
Picon

bash question

I have a very simple bash script which wants an argument.  I would like to
source it.  I find that if I source it from another script using its
relative path it works fine--the argument is received.  If I source it using
its full path no argument is received.  A simple test is:

script1.sh:
#! /bin/sh
echo "Argument = $ <at> "

script2.sh:
#!/bin/sh
. <full path>/script1.sh full
. <relative path>/script1.sh relative

The result show no argument received in the full case.

Ideas?
Denis Heidtmann | 2 Apr 2010 20:55
Picon

bash question

I just found this:
$ ls -l /bin/sh
lrwxrwxrwx 1 root root 4 2009-06-10 16:51 /bin/sh -> dash

On another system sh -> bash, so that I just assumed...

what is dash, he asks, and wonders if it bears on this issue.

---------- Forwarded message ----------
From: Denis Heidtmann <denis.heidtmann <at> gmail.com>
Date: Fri, Apr 2, 2010 at 11:44 AM
Subject: bash question
To: "General Linux/UNIX discussion and help, civil and on-topic" <
plug <at> lists.pdxlinux.org>

I have a very simple bash script which wants an argument.  I would like to
source it.  I find that if I source it from another script using its
relative path it works fine--the argument is received.  If I source it using
its full path no argument is received.  A simple test is:

script1.sh:
#! /bin/sh
echo "Argument = $ <at> "

script2.sh:
#!/bin/sh
. <full path>/script1.sh full
. <relative path>/script1.sh relative

The result show no argument received in the full case.
(Continue reading)


Gmane