Re: [PLUG] Your thoughts on this tool would be appreciated

2024-06-02 Thread alan
> Your thoughts on this tool would be appreciated.
> https://www.kaspersky.com/blog/kvrt-for-linux/51375/

It scans the OS for malware, but not anything else. (Like my collection of
obvious malware that I want identified.)

ClamAV does a better job scanning a local filesystem. (But it won't store
the viruses into a tree structure for my collection.)



Re: [PLUG] No space left on device

2017-10-25 Thread alan

> On Tue, 24 Oct 2017 10:18:47 -0700
> John Jason Jordan  dijo:
>
>>I recently encountered this and it turns out that my / partition was,
>>indeed, full. At the last Clinic I added ~50GB of free space on the
>>drive to /, making now a total of 84GB. And now it is happening again.
>>Something in / has eaten the entire new space.
>>
>>Note that ~/ is on the same drive, but a different partition. According
>>to Thunar the ~/ partition is only 64% used, 138GB of free space.
>>The device is a 480GB SSD. Palimpsest shows both partitions and no
>>unallocated space.
>>
>>I used Thunar to check Properties on everything in / and found nothing
>>out of the ordinary. I need some command line tools to find the pig
>>that is using all my space. Also I need to find out what is causing the
>>pig to be so hungry. Suggestions?
>
> I found at least part of the problem. During remodeling work apparently
> the power plug to the Synology disk station was unplugged. Thus, when
> rsync tried to sync the Mediasonic USB drive to the Synology it failed.
> But at least a couple of times recently I ran the command manually
> (Instead of waiting for cron to do it at 2am), and I watched in the
> terminal as it did so. It copied a lot of movies from the USB, and then
> failed. Now I know why it failed.
>
> The part I don't know is where rsync put those files. They are
> somewhere in /media, because the du command listed /media as having
> 56GB.
>
>   jjj@Devil-Bonobo:/$ cd /media
>   jjj@Devil-Bonobo:/media$ ls -la
>   total 16
>   drwxr-xr-x   4 jjj  jjj  4096 Apr 16  2017 .
>   drwxr-xr-x  25 root root 4096 Oct 24 21:46 ..
>   drwxr-x---+  5 jjj  jjj  4096 Oct 24 20:59 jjj
>   drwxr-x---+  2 root root 4096 Apr 16  2017 root
>   jjj@Devil-Bonobo:/media$ cd jjj
>   jjj@Devil-Bonobo:/media/jjj$ ls -la
>   total 436
>   drwxr-x---+5 jjj jjj   4096 Oct 24 20:59 .
>   drwxr-xr-x 4 jjj jjj   4096 Apr 16  2017 ..
>   drwxrwxrwx 6 jjj jjj   4096 Oct 24 21:08 128GB
>   drwxr-xr-x  2311 jjj jjj 270336 Oct 25 11:17 Movies
>   drwxr-xr-x  2311 jjj jjj 159744 Oct 25 08:00 Synology
>
> According to ls there are 16 files in /media and 436 files
> in /media/jjj. Why do they not appear when I use 'ls -la'? I also tried
> as root, but got the same output. And for what it's worth, Thunar (Xfce
> GUI file manager) also does not display them.

It sounds like something has the file or directory open, but has also
deleted it. (So the process is still holding onto the file, but the system
does not show it since it is marked as deleted.) Sometimes programs will
do this as a way to secure the data from the rest of the OS.

Have you tried rebooting to see if the process and/or kernel will release
the space? I am not certain of lsof will show what process is hanging onto
it.

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] No space left on device

2017-10-24 Thread alan

> On Oct 24, 2017 5:07 PM, "John Jason Jordan"  wrote:
>
> On Tue, 24 Oct 2017 10:23:55 -0700
> a...@clueserver.org dijo:
>
>>> I used Thunar to check Properties on everything in / and found
>>> nothing out of the ordinary. I need some command line tools to find
>>> the pig that is using all my space. Also I need to find out what is
>>> causing the pig to be so hungry. Suggestions?
>>
>>du -h --max-depth=1 /
>>
>>You can then look in the directory using the most space with the same
>>command until you find what you want. You might need to run it under
>>sudo to avoid the "cannot access directory" error messages.
>
> I did this and the only thing that looked suspicious was 55016
> for /media. I have a hunch that /media is where the problem is, like
> what if stuff was supposed to go to a device mounted there but instead
> it went to a folder in /media?
>
> This computer has two drives,
>
> sdb 480GB partitioned as / 84G and the remainder as /home
> sda 1GB, one partition, label Data, mounted at /media/jjj/Data
>
> However, there are also two external drives that are always mounted,
> Movies (14TB, USB) and Synology (16TB, NAS). I suspect that Movies is
> the problem. It is mounted at /media/jjj/Movies, but I think that there
> must be some movies there that are not on the drive. Perhaps I moved
> some movies to Movies when the drive was not actually mounted. The
> Synology is just a backup mirror of Movies (rsync).
>
> Unfortunately, Thunar just displays all the movies in Movies without
> telling me if they are really on the USB drive or whether they are
> on /media/jjj/Movies. There are over 1400 folders (one for each movie),
> so checking each one individually would be ridiculous. I need a more
> efficient way to figure this out. Any suggestions?
>
>
> Umount / disconnect the external drive  and then check to see if anything
> is still in the directory where the drive was mounted.

df -h

will show you what drives are mounted and how much space they have left.
(The -h flag is "human readable".)

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] No space left on device

2017-10-24 Thread alan

> I recently encountered this and it turns out that my / partition was,
> indeed, full. At the last Clinic I added ~50GB of free space on the
> drive to /, making now a total of 84GB. And now it is happening again.
> Something in / has eaten the entire new space.
>
> Note that ~/ is on the same drive, but a different partition. According
> to Thunar the ~/ partition is only 64% used, 138GB of free space.
> The device is a 480GB SSD. Palimpsest shows both partitions and no
> unallocated space.
>
> I used Thunar to check Properties on everything in / and found nothing
> out of the ordinary. I need some command line tools to find the pig
> that is using all my space. Also I need to find out what is causing the
> pig to be so hungry. Suggestions?

du -h --max-depth=1 /

You can then look in the directory using the most space with the same
command until you find what you want. You might need to run it under sudo
to avoid the "cannot access directory" error messages.



--
perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Kewel tool: MasterPDFEditor

2017-09-21 Thread alan

>Thought I'd share this in case you're not aware of MasterPDFEditor. The
> non-commercial use version if free and there are linux tarballs for both
> 32- and 64-bit systems. I just upgraded to the -4.3.50 version.
>
>MPE is a really useful tool for accomplishing things that pdf viewers
> cannot do, such as printing a funky pdf document that does not work when
> passed to a printer by lpr and allowing a form to be filled in with text
> and
> images.
>
>The latter is new to me. I was sent a copyright assignment form for a
> brief article to be published on someone else's web site. Using MPE I
> filled
> in the requested information and signed it by inserting my .jpg written
> signature image in the proper place.

Another uuseful tool for pdf is "qpdf". It will let you test a pdf to see
if it is corrupted, among other things. "qpdf --check "

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] TONIGHT PLUG Meeting: A Philosophy for Reliability: Lessons learned from 40 years of System Administration

2017-09-07 Thread Alan
On Thu, 2017-09-07 at 10:30 -0700, Michael Dexter wrote:
> Portland Linux/Unix Group General Meeting Announcement
> 
> Who: Brian P. Martin
> What: A Philosophy for Reliability: Lessons learned from 40 years of 
> System Administration
> Where: PSU, 1930 SW 4th Ave. Room FAB 86-01 (Lower Level)
> When: Thursday, September 7th, 2017 at 7pm
> Why: The pursuit of technology freedom
> Stream: Meatspace
> 
> 
> After spending 40 years being a System Administrator, frequent PLUG 
> attendee Brian Martin will share what he's learned in his quest to
> be 
> the best System Administrator he could be. While primarily targeted
> at 
> system administration, many of his points are equally applicable to 
> programmers, web developers, and anyone working in IT.
> 
> About Brian
> 
> Brian first laid hands on a computer in 1970. He earned his first
> money 
> in IT ($5) in high school, and continued contract programming
> through 
> college. After working for many years as a system programmer in 
> government and private industry he began his own consulting company
> in 
> 1994. He relocated to Portland in 1996 in the successful pursuit of 
> love, and has been here ever since. He lives with his wife and and a 
> pair of dogs on the west side. He enjoys eating out with friends,
> live 
> performances of jazz, comedy, and Shakespeare, games of all kinds,
> and 
> hopes to return to hiking and photography in retirement.
> 
> 
> Calagator Page: http://calagator.org/events/1250472459
> 
> Many will head to the Lucky Lab at 1945 NW Quimby St. after the
> meeting.
> 
> Rideshares to the Lucky Lab available
> 
> PLUG is open to everyone and does not tolerate abusive behavior on
> its 
> mailing lists or at its meetings.
> 
> PLUG Page with information about all PLUG events: http://pdxlinux.org
> /
> Follow PLUG on Twitter: http://twitter.com/pdxlinux
> 
> I wish I could be there!
> 
> 

I wish I could as well. Fighting a bit of food poisoning. Oh well...
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Meeting on Thursday?

2017-09-05 Thread Alan
Are there actual plans for the PLUG meeting Thursday?
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] The joy of refactoring

2017-08-23 Thread Alan
On Wed, 2017-08-23 at 10:30 -0700, Dave wrote:
> In 1969-70 I was at the U of Ills where I met a DEC PDP-8. Would
> change 
> my career path.
> 
> Ran my Doctoral Dissertation data analyses on an IBM 360/40 in 1970
> at 
> Cal Poly SLO. Fun days.

When I moved to Alaska I had been going to a private school. My reading
skills were very good, but my math skills we not. My mother hired a
math tutor for me from the University of Alaska. She figured the best
method to get me interested in math was by teaching me Fortran. I was
in 4th grade at the time. Spent a lot of time in the computer lab from
then on.

> 
> 
> On 8/23/2017 6:01 AM, Rich Shepard wrote:
> > On Tue, 22 Aug 2017, Alan wrote:
> > 
> > > Sometimes a rewrite is a useful and needed thing.
> > 
> > Thanks, Alan, for allowing us to share our obscure bug
> > experiences on this
> > thread. :-)
> > 
> > In grad school in 1972 I wrote an ecosystem ecological energy
> > flow model
> > in FORTRAN IV to run on the U. of Illinois' IBM S/360. It used more
> > than a
> > whole box of 80-column Hollerith cards for input. When it ran it
> > produed
> > incorrect results, but only the same 2 or 3 wrong answers each
> > time. So I
> > printed the source code listing on the wide green-bar paper that
> > all the
> > line printers used. The output was about 1 inch thick.
> > 
> > I carefully examined each line of code multiple times without
> > seeing the
> > error. Finally, I took the printed listing to the computer center's
> > help
> > desk. They examined it without finding the problem.
> > 
> > One day, strictly by chance while looking at a new printed copy
> > (likely
> > done on a printer with a newer ribbon) I saw the error jump up and
> > bite me
> > on the nose.
> > 
> > Instead of a loop index written as FOR I = 1 TO N I had
> > mistyped it as FOR
> > 1 = 1 TO N. Distinguishing 1 from the uppercase I was difficult
> > and, because
> > all of us expected to see I and not 1 in that position we all
> > overlooked it.
> > 
> > Haven't forgotten this after all these years.
> > 
> > Rich
> > ___
> > PLUG mailing list
> > PLUG@lists.pdxlinux.org
> > http://lists.pdxlinux.org/mailman/listinfo/plug
> 
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] The joy of refactoring

2017-08-23 Thread Alan
On Wed, 2017-08-23 at 06:01 -0700, Rich Shepard wrote:
> On Tue, 22 Aug 2017, Alan wrote:
> 
> > Sometimes a rewrite is a useful and needed thing.
> 
>Thanks, Alan, for allowing us to share our obscure bug experiences
> on this
> thread. :-)
> 
>In grad school in 1972 I wrote an ecosystem ecological energy flow
> model
> in FORTRAN IV to run on the U. of Illinois' IBM S/360. It used more
> than a
> whole box of 80-column Hollerith cards for input. When it ran it
> produed
> incorrect results, but only the same 2 or 3 wrong answers each time.
> So I
> printed the source code listing on the wide green-bar paper that all
> the
> line printers used. The output was about 1 inch thick.
> 
>I carefully examined each line of code multiple times without
> seeing the
> error. Finally, I took the printed listing to the computer center's
> help
> desk. They examined it without finding the problem.
> 
>One day, strictly by chance while looking at a new printed copy
> (likely
> done on a printer with a newer ribbon) I saw the error jump up and
> bite me
> on the nose.
> 
>Instead of a loop index written as FOR I = 1 TO N I had mistyped
> it as FOR
> 1 = 1 TO N. Distinguishing 1 from the uppercase I was difficult and,
> because
> all of us expected to see I and not 1 in that position we all
> overlooked it.
> 
>Haven't forgotten this after all these years.
> 

That is one of the first lessons you learn if you learned to type on a
Royal manual typewriter. Looking for 0 and O is another.

I remember the days of Fortran and punch cards. I still remember how to
make Lace Cards.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] The joy of refactoring

2017-08-22 Thread Alan
Found an obscure bug in a Perl program that I started over 20 years
ago. (I have made changes off and on since then.) Decided to rewrite
it. Found even more bugs. (A few of the WTF variety.)

Sometimes a rewrite is a useful and needed thing.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Selecting a SSD

2017-08-22 Thread Alan
On Tue, 2017-08-22 at 21:26 -0500, Cryptomonkeys.org wrote:
> I’ve been using a Samsung 840 EVO 1TB in my mac pro for 2yrs. No
> issues. Performance is fine.

There was a problem with the early version of those drives. It was
fixed in firmware. Some of the reviews are old enough that they may
have encountered the problem.

I have a couple of those drives and they work great.

> 
> 
> > On Aug 22, 2017, at 7:06 PM, Denis Heidtmann  > .com> wrote:
> > 
> > Samsung was recommended here.  I see $150 for their 850 EVO 480G,
> > and they
> > have a 5 Yr. warranty v.s. 3 Yr. for the other brands in that price
> > range.
> > But a number of reviewers report terrible interactions with their
> > warranty
> > support.  Anybody here have similar issues?  Is the likelihood of
> > failure
> > low enough to ignore this issue? (My plan is to have the SSD my
> > only drive,
> > and backup of data but not a duplicate of the system.)
> > 
> > Thanks,
> > 
> > -Denis
> > ___
> > PLUG mailing list
> > PLUG@lists.pdxlinux.org
> > http://lists.pdxlinux.org/mailman/listinfo/plug
> > 
> > 
> 
> --
> Louis Kowolowskilouisk@cryptomonkeys.
> org
> Cryptomonkeys:   http://www.cryptomon
> keys.com/
> 
> Making life more interesting for people since 1977
> 
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Operation Status

2017-08-09 Thread Alan
The heart ablation surgery went very well. A few things need to heal,
but I feel a lot better.  I have some bruises and a couple of holes
that need to heal, but it all went much better than I expected.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] 16.04.3 VGA Graphic display stopped working

2017-08-05 Thread Alan
On Fri, 2017-08-04 at 10:04 -0700, Bill Morita wrote:
> 16.04.3 VGA Graphic display stopped working.
> Even a No-Machine connection does not seem to work.
> 
> Ctrl-Alt-F1  does get me a simple text terminal.
> 
> Anybody else seen this ?
> 
> It has happened on both my systems.
> Currently booting to an older kernel to operated.
> 

What video card? What does lspci show?
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Stupid ISP...

2017-08-03 Thread Alan
On Wed, 2017-08-02 at 16:47 -0500, Chuck Hast wrote:
> Folks,
> I have moved from SW WA to Oklahoma City. Miss the area up there but
> got to
> go where the $$ is.
> 
> I have run into a problem, it is with the ISP. Seems that they no
> longer
> allow you
> to plug in your prefered DNS. I was having issues with their DNS I
> have
> called
> them on it, and they poke at it but no joy. Yesterday I could get to
> about
> half
> to the URL's that I either tried to reach from a browser or ping.
> After much
> phone calls, to no avail I did a MTR on the two DNS which are
> HARDWIRED
> in the router. I found that the primary DNS was good but 4 hops out
> there
> is  a router with a high packet loss. To wit:
> 

Turn off DNS. Used fixed IPs for everything behind the router. Use a
VPN to tunnel past your ISPs crappy infrastructure.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] TONIGHT PLUG General meeting: An Introduction to Data Protection

2017-08-03 Thread Alan
On Thu, 2017-08-03 at 09:07 -0700, Michael Dexter wrote:
> Portland Linux/Unix Group General Meeting Announcement
> 
> Who: Michael "you break it you bought it" Dexter
> What: An Introduction to Data Protection

Will it cover protection from excess heat?


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Advanced Topics

2017-07-27 Thread Alan
On Thu, 2017-07-27 at 11:14 -0700, Alan wrote:
> On Tue, 2017-07-25 at 18:34 -0700, Michael Dexter wrote:
> > On 7/25/17 4:24 PM, wes wrote:
> > > I think the much tougher obstacles are scheduling topics and
> > > speakers, and
> > > being able to be present for all the meetings.
> > 
> > YEP
> > 
> 
> You think I don't know that?  I spent 8 years scheduling speakers
> before hitting burnout.
> 
> If needs be we can investigate different venues. It is nice to have a
> place with food and drink during the talks.  Worth investigating.
> 
> How advanced do people want to go with the talks?  Graduate level?
> Not
> beginner? Something inbetween?
> 

We have a bit of time before I cando the major scheduling anyways.  I
go in for heart surgery on the 8th. (Supposed to be a 4 hour procedure.
We will see.) Once that is done, I should be in much better health and
able to focus on calling in favors from a few tech friends.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Advanced Topics

2017-07-27 Thread Alan
On Tue, 2017-07-25 at 18:34 -0700, Michael Dexter wrote:
> On 7/25/17 4:24 PM, wes wrote:
> > I think the much tougher obstacles are scheduling topics and
> > speakers, and
> > being able to be present for all the meetings.
> 
> YEP
> 

You think I don't know that?  I spent 8 years scheduling speakers
before hitting burnout.

If needs be we can investigate different venues. It is nice to have a
place with food and drink during the talks.  Worth investigating.

How advanced do people want to go with the talks?  Graduate level? Not
beginner? Something inbetween?


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Open Source Licenses

2017-07-25 Thread Alan
On Sun, 2017-07-23 at 13:10 -0700, Brian P. Martin wrote:
>  > My suggestion: GPL v.3 or later.
> 
> What about the so-called "viral" component of GPL?  If someone take a
> script of mine and grows it into something bigger and better and
> amazing, I don't think I'm concerned about how they license it.  As
> long
> as they don't restrict use of the original code or other people's
> ability to also grow that original code, I'm OK with them selling
> their
> new widget.
> 

The Apache 2.0 license is about the best fit for what you want. It is
what most of Android is licensed under.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Epson V600 Photo scanner on Fedora 26 -- HowTo

2017-07-24 Thread Alan
I have gotten the Epson v600 Photo scanner working on Fedora 26. It is
not that hard once you know the one secret step.

First, download the rpm packages. (There are also debian packages and a
similar trick will work for Debian based distros as well.)

First make sure you have libtool and libtool-ltdl installed.

The packages can be found at: http://support.epson.net/linux/en/iscan_c
.html

Download the package bundle for your OS. (32 or 64 bit.) untar/unzip
the bundle. It will create a subdirectory with an install script. Run
it and it will install 3-4 packages.

Now for the nasty bit.

cd into either /usr/lib 9if you are using 32 bit) or /usr/lib64 (for 64
bit).

Look for what version of libltdl.so is installed. On Fedora 26 it is
libltdl.so.7.3.1.

Create a symlink to cover up the lack of proper support for modern
distros.

sudo ln -s /usr/lib64/libltdl.so.7.3.1 /usr/lib64/libltdl.so.3

You can now test with "iscan" and see if it works.



___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Advanced Topics

2017-07-24 Thread Alan
Looks like Advanced Topics is not being run anymore.

Do people want me to start it up again?

I am going to try and get to the next meeting. We can discuss it there.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Changing password

2017-03-31 Thread alan

> On Fri, 31 Mar 2017 10:26:33 -0700
> John Jason Jordan  dijo:
>
>>>From the command line I tried passwd, but it refused because it said
>>the new password was too similar to the old one. OK, passwd program, I
>>don't disagree, but just do it, and I mean it, 'k?
>
> Never mind. I finally succeeded. I'm still curious why passwd didn't
> think the new password was too similar when I just appended '1.' Silly
> program.

Did you try the -f option? That should force it to change the password.

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] scp issue

2017-02-24 Thread alan

> On Fri, 24 Feb 2017, Rich Shepard wrote:
>
>> debug1: Connecting to salmo [192.168.55.1] port <>.
>> debug1: Connection established.
>
>The two hosts can communicate.
>
>> debug1: key_load_public: No such file or directory
>> debug1: identity file /home/rshepard/.ssh/id_rsa type -1
>> debug1: key_load_public: No such file or directory
>> debug1: identity file /home/rshepard/.ssh/id_rsa-cert type -1
>> debug1: key_load_public: No such file or directory
>> debug1: identity file /home/rshepard/.ssh/id_dsa type -1
>> debug1: key_load_public: No such file or directory
>> debug1: identity file /home/rshepard/.ssh/id_dsa-cert type -1
>> debug1: key_load_public: No such file or directory
>> debug1: identity file /home/rshepard/.ssh/id_ecdsa type -1
>> debug1: key_load_public: No such file or directory
>> debug1: identity file /home/rshepard/.ssh/id_ecdsa-cert type -1
>> debug1: key_load_public: No such file or directory
>> debug1: identity file /home/rshepard/.ssh/id_ed25519 type -1
>> debug1: key_load_public: No such file or directory
>
>Not finding the public key.
>
>> debug1: Host '[salmo]:21498' is known and matches the ED25519 host key.
>> debug1: Found key in /home/rshepard/.ssh/known_hosts:1
>
>Found the public key.
>
>> debug1: SSH2_MSG_SERVICE_ACCEPT received
>> debug1: Authentications that can continue: publickey
>> debug1: Next authentication method: publickey
>> debug1: Trying private key: /home/rshepard/.ssh/id_rsa
>> debug1: Trying private key: /home/rshepard/.ssh/id_dsa
>> debug1: Trying private key: /home/rshepard/.ssh/id_ecdsa
>> debug1: Trying private key: /home/rshepard/.ssh/id_ed25519
>> debug1: No more authentication methods to try.
>> Permission denied (publickey).
>
>Not finding the public key.
>
>I'm confused.

What are the permissions on your local .ssh directory and files?

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Embedded Linux Conference comes to Portland on Feb 21-23

2017-02-06 Thread alan

> Am I the last person to find out about this?
>
> 

No. I am.

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Clinic

2017-01-14 Thread alan

> I just realized that tomorrow is the third Sunday of January. According
> to the weather people the snow is not going to melt until Monday night.
>
> Comments?

The buses are running. Hard to transport hardware that way though.

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Identifying network interfaces and their status

2017-01-14 Thread alan

> On 1/14/2017 10:07 AM, Rich Shepard wrote:
>> I deleted Richard's message and cannot respond in that thread to his
>> question of what network interfaces are available on his portables.
>>
>> All this information is available when, as root, you issue the
>> command
>> ifconfig -a (the -a option shows all network interfaces and their
>> status).
>> The man page explains it.
>>
>> Rich
>
> Ahh, I've been deleted ;{
> The man page for ifconfig and a brief web search for ifconfig
> tutorials hint that I've now the required pointers. That does
> assume the WinXP Help system cooperates for information on that end.
> At the moment, it's lunch time.
> Thank you.

ethtool is also very handy.

perl -pe 's/^\s+//g' *.py

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Word List

2016-08-01 Thread alan
> I feel a need for some concentrated word play.
>
> Is there a word list (i.e., a spelling dictionary or similar) that would
> (A) be found in most standard Linux distributions (or at least Ubuntu),
> and (B) be in plain text format or some other easy-to-parse format?
>
> I'd like to be able to do regex searches on all the words in the English
> language.

I have word lists for password cracking. I don't know if it has
everything. Somewhere I have lists generated from Project Gutenberg, but
those are real old.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Looking for all-in-one printer-scanner device

2016-07-20 Thread alan
> On 2016-07-18 16:59, John Bartley K7AAY j...@503bartley.com wrote:
>> Looking for a printer-scanner, as my brother's Canon has given up the
>> ghost, and his HP flatbed only scanner has a flourescent tube which is
>> fading. Sure would like to find one supported by Mint 18 (Ubuntu 16)
>> with
>> sheet and flatbed feeding to scan, and duplexed printing.
>
> I've had great luck with Brother printers.  We have a small duplex laser
> and a cheap single-sided inkjet all-in-one that work quite well, and
> Brother specifically offers Linux drivers.  Both have wireless network
> connectivity, and cost less than $200/ea.  The inkjet seems fine with
> cheap off-brand refills.
>
> Printers these days are a lot like cars: old, durable and
> high-maintenance, or new, disposable and zero-maintenance.

The Epson WorkForce WF-3620 looks like it will do what you want. The
drivers are available from the Ubuntu repository.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] NAS System suggestions

2016-06-24 Thread alan
>>
>>
>>
>> I do not see too many positives for using SMB on linux, without real
>> samba
>> user space mount option available.
>>
>>
> As much as I hesitate to spend any time advocating for M$-originated
> technologies, I must say I do not see the challenge here. I mount SMB
> shares (from all walks of OS life) in my userspace without any elevated
> privileges all the time. When I need them to persist, I write a cronjob to
> monitor their status and restore them as needed.
>
> If I had a truly enterprise class problem to solve, I would go to the
> extra
> effort of getting NFS to work. Then, it usually remains working for the
> remainder of the life of the universe.

My only concern would be making sure the underlying file system was case
sensitive and supported the proper file system extensions. (Such as
SE_LINUX labels.)

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Kernel panic?

2016-05-21 Thread alan
> I might have different or same experience - you be the judge of that
>
> I recall this happening in the past on certain DVDs with copy protection -
> they would insert real disk bit error on the disk at the beginning of the
> stream, later even in TOC. When the disk was in PC - that would start to
> re-
> read and re-red the faulty sector. Real DVD drive either corrects it using
> CRC
> and moves on, or avoids playing it by executing the program in the menu.

Use MakeMKV instead.

makemkv.com

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Universality of USB Cables

2016-05-18 Thread alan
> On 2016-05-18 13:32, Rich Shepard wrote:
>> Am I correct in assuming that if I buy a USB cable with the
>> appropriately
>> sized plugs on each end it can be used with any device and a computer?
>
> Yep, that's the idear.  And you can get 'em from at the dollar store.

Actually not always...

Depends on the device and the cable.

There are "charge only" cables that will not transmit data.

If the device is made by Samsung, you need to make sure that it has the
correct cable. Some micro usb cables have a resistor in the end that the
Samsung device wants. (Part of the cable spec I believe.)

If it is a usb-c cable you need to verify if it is to spec. (There was a
Google engineer that reviewed all the cables on Amazon.) Not everything
was made correctly.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Subject matter for a talk?

2016-05-12 Thread alan
> Everyone,
>
>   Was the next talk Tuesday the 17th @ Free Geek?
>
>I can see that Michael D. does many of the talks and its difficult
> to find subject matter. What about a round table about non-traditional
> methods of installing Linux & BSD?
>
>   If you've seen my posts on installing OpenBSD it might be interesting.
> The options for installing OpenBSD are endless; openSuse, I think
> offers Leap & Tumble weed but no live CD, PC-BSD is happy
> to sell you a Live CD. The question for anyone entering Open Source
> is where to begin?
>
>By the way; as a side discussion I've found Dell to be very good about
> posting support pages on modifying its BIOS/UEFI and the BIOS
> is very easy to modify for installation. Other manufactures are not
> so helpful...

I am considering doing a talk on Qubes OS. It is very interesting, but the
documentation is vague. Once I have a better handle on configuring the
damn thing.

Qubes is a high security OS where everything runs under a hypervisor.

And on a separate note, the Mac OS X spell checker is the most annoying
spell checker on the planet. I thought no one could beat Samsung. I was
wrong.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] anyone interested in some tty paper tape?

2016-03-15 Thread alan
> For anyone interested in a sample 80 col card, I have a "deck' of  reader
> test cards, they are punched
> with alternating ones / zeros
>
>
> 0101
> 1010...
> 0101
> 1010...
> 0101
> 1010...
> 0101
> 1010...
> 0101
> 1010...
> 0101
> 1010...

I am interested in those. Also looking for lace cards.

How do I get them from you?

>
>
>
> On Tue, Mar 15, 2016 at 1:52 PM, Pete Lancashire 
> wrote:
>
>> Rich,
>>
>> I have a couple boxes and can give out a few but not many. Hope to have
>> an
>> 029 running this Fall.
>>
>> -pete
>>
>> On Tue, Mar 15, 2016 at 1:49 PM, Rich Shepard 
>> wrote:
>>
>>> On Tue, 15 Mar 2016, Joe Pruett wrote:
>>>
>>> > i have about 1.5 boxes of it sitting in my basement. contact me
>>> directly
>>> > if you are interested. none of my crazy friends have working
>>> teletypes
>>> > anymore :-).
>>>
>>> Joe,
>>>
>>>Have any 80-column Hollerith cards you want to give away?
>>>
>>> Rich
>>> ___
>>> PLUG mailing list
>>> PLUG@lists.pdxlinux.org
>>> http://lists.pdxlinux.org/mailman/listinfo/plug
>>>
>>
>>
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] A Linux Tool To Compare Files of Different Sizes

2016-02-05 Thread alan
> I think you want to look at the "diff"
>
> http://www.computerhope.com/unix/udiff.htm
>
> which is different than "cmp"
>
> http://www.computerhope.com/unix/ucmp.htm
>
> which is more for hunting for missing bits and bytes than for looking at
> lines.

uniq also might work.

>
>
>
> On Fri, Feb 5, 2016 at 3:20 PM, Rich Shepard 
> wrote:
>
>>Thought I had found such a tool once but I no longer remember its
>> name.
>> Here's the situation:
>>
>>Two files: one with 474 lines, the other with 203 lines. I want to
>> test
>> whether all 203 lines of the second file are included in the first file.
>> If
>> not, I want a list of those second file lines not found in the first
>> file.
>>
>>A cluestick is needed.
>>
>> TIA,
>>
>> Rich
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>>
>
>
>
> --
> John Sechrest  .  Need to schedule a meeting :
> http://sechrest.youcanbookme.com
>.
> .
> .
>
>   .
>  sechr...@gmail.com
>.
>@sechrest  
>
>  .
> http://www.oomaat.com
>.
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Xsane Does Not Find Scanner

2015-06-20 Thread alan
>Web searches and the Xsane documentation pages do not have the answer
> to
> a new issue here.
>
>Using a laptop (Slackware-14.1_x64 fully up-to-date) with a built-in
> camera in the lid and the external flatbed scanner turned on and connected
> via a USB port, Xsane sees only the camera and not the scanner.
>
>My server/workstation has no camera so I've not before encountered this
> situation. When I invoke Xsane with the scanner turned on, the application
> finds it (displaying it twice) and offers me a choice of which to use. On
> the laptop there is no dialog box showing the internal camera and the
> flatbed scanner.
>
>I've read the entire Setup section of the Xsane on-line docs and have
> not
> found anything about selecting input devices. If no one here has an answer
> I'll post the question on linuxquestions.org.

What model scanner?

I have an Epson V600 Photo scanner and it required special drivers from
Epson. It took a little hackery to get the binary blobs to recognise.
(Symlinks to differening .so versions for libraries.) Once I did that
XSane would just see the scanner. Xsane looks for available scanners on
load.

Check the scanner manufacturer site for drivers.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Sound works for root, not for user

2015-06-17 Thread alan
>Last Monday, for the first time, my server/workstation suddenly locked
> up;
> no keyboard or mouse response. Hanged, not resting. So, I shut off the
> system, waited a few seconds, powered on again. Got everything running
> again
> ... except for sound.
>
>Alsamixer uses the correct sound card. Alsactrl init did nothing.
>
>When I try to play an .mp3 file with xmms I get this error:
>
> ** WARNING **: oss_open(): Failed to open audio device (/dev/dsp): No such
> ** file or directory
>
>mplayer also fails to produce sound: audio_setup: Can't open audio
> device
> /dev/dsp: No such file or directory
> Failed to initialize audio driver 'oss'
>
>There is no /dev/dsp or /dev/sound
>
>aplay -l finds the sound card.
>
>Web searches found no solution that worked because /dev/dsp does not
> exist
> on Slackware-14.1 until needed.
>
>However, root has no issue playing a .mp3 file with xmms, but produces
> the
> same mplayer error.
>
>What might I have missed here? Past reboots did not cripple the sound
> system as long as I turned up the volumn in alsamixer.

Look in /etc/groups and see if there is a sound group. Add the user there.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Forced to update into TWENTIETH century

2015-06-05 Thread alan
> One  of this group once referred to me saying "He lives out
> past Estacada, even."
>
> I've happily been on dial-up for decades.
> I fondly remember upgrade to 1200 BAUD ;)
> My ISP is terminating dial-up connectivity in ~ 6 weeks.
> I'm flatout not interested in $%$!$#^ providers who think all
> need MEGA*GIGAbytes
>
> Ideas anyone?
> P.S. I'm happily in "fly over country", A.K.A. SouthWestMo

Go to earthlink.net and see if your area is supported.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Dual boot Windoze 8.1, Linux Mint 17.1 64 bit

2015-05-15 Thread alan

> Wayne,
>
> I would take a different approach.  I would load the system with the
> Linux distribution of your choice and use the Virtual Machine Manager,
> powered by libvirt and load your windows into that.  That way when
> it blue screens you still have a system that is up.

Can you do a bios or firmware update through libvert?

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Dual boot Windoze 8.1, Linux Mint 17.1 64 bit

2015-05-15 Thread alan
> On 05/15/2015 02:03 PM, Wayne E. Van Loon Sr. wrote:
>
>>
>> The situation is that my brother bought a new laptop with Windows 8.1.
>> He used to have a laptop (that was stolen a few days ago) that I had set
>> up dual boot for him. That machine was a legacy (non EUFI) machine. I
>> have tried several times and different combinations with this new
>> machine, EUFI enabled and then disabled, using some directions I googled
>> up. Each time after an install, the machine boots right into Windows
>> with no option to select another OS.
>>
>> I was hoping someone with this experience and knowledge would be at the
>> clinic this Sunday.
>
>
> This is a non-trivial exercise, though certainly do-able.  I've done it
> numerous times.
>
> First you'll have to figure out how to boot from another source, usually
> through a F12/F11/Fsomething-else key, or by changing the BIOS to boot
> preferentially off of a DVD or similar storage.
>
> Once you've mastered that, I recommend booting a Linux rescue system of
> some sort and taking an image of the existing drive, in case you trash
> your current one.
>
> Then assuming they've allocated all the disk space for the Windows
> system, you'll need to make some disk space by reducing the size of the
> existing partitions.
>
> Now you'll be able to go through a normal Linux installation into the
> available space.  At that point it should install its own boot loader
> which, in my experience, will also detect the Windows partition and add
> a menu entry for it.  Then some clean-up (put the BIOS back if you
> changed it, set your default boot to Windows if that's your brother's
> preference, etc.) and you're pretty much done.
>
> That's the general approach I use.  Others may use a different approach.
>   I think tapping the Linux Clinic folks for the finer detail is a great
> idea.  Good luck.

There is a tool in Windows to resize partitions. It is much faster than
using gparted.

https://tweakhound.com/2013/01/02/how-to-resize-your-windows-8-partition/

Windows demands to be the first OS on the drive. Install it first, then
resize the partitions leaving enough space for Linux, then install Linux.
Be careful not to wipe the laptop recovery partitions. Some laptops get
upset if those are gone. Linux installs understand what to do with Windows
install and add them to the grub menu.

I had to do this with my Windows 7 laptop. It was annoying, but it worked.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Need new Java

2015-04-12 Thread alan
> On Sun, 2015-04-12 at 10:40 -0700, John Jason Jordan wrote:
>> I have downloaded a Java application from here:
>>
>> http://www.cognitial.com/flashpap/flashpap.htm
>>
>> But when I try to run it from the command line with java -jar I get a
>> popup that says I need a newer version of Java runtime. My Xubuntu
>> 14.04.1 is up to date with everything that showed up in Synaptic as
>> upgradable when I searched on "java," although there are other upgrades
>> available that I haven't installed.
>>
>> I could use some clues.
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>
>
> What version of java is installed?  What does "java -version" return?  I
> notice that the application in question requires "Java 7 (1.7.0_6)",
> which is slightly newer than the 1.7.0_55 that is installed on my
> OpenSUSE 13.1 machine.  You may have to find and install a newer JRE on
> your own if you can't wait for the Xubuntu people to update their java.

1.7.0_55 is later than 1.7.0_6. It means somewhere it is failing a basic
version comparison.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Need new Java

2015-04-12 Thread alan
> I have downloaded a Java application from here:
>
> http://www.cognitial.com/flashpap/flashpap.htm
>
> But when I try to run it from the command line with java -jar I get a
> popup that says I need a newer version of Java runtime. My Xubuntu
> 14.04.1 is up to date with everything that showed up in Synaptic as
> upgradable when I searched on "java," although there are other upgrades
> available that I haven't installed.
>
> I could use some clues.

You probably need Sun Java 8. I don't think that gets installed with
Ubuntu any more. You have to download it from Oracle/Sun/Satan++.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Configuring /etc/ssh/sshd_config

2015-02-07 Thread alan
>Some time in the past I lost key authentication when connecting from my
> laptop to my server. Password works, but that's sent clear text so I want
> to
> get the server's /etc/ssh/sshd_config correct.
>
>When I try to connect to my server this is the output:
>
> [rshepard@caddis ~]$ ssh -v salmo
> OpenSSH_6.7p1, OpenSSL 1.0.1k 8 Jan 2015
> debug1: Reading configuration data /home/rshepard/.ssh/config
> debug1: Reading configuration data /etc/ssh/ssh_config
> debug1: Connecting to salmo [192.168.55.1] port .
> debug1: fd 3 clearing O_NONBLOCK
> debug1: Connection established.
> debug1: identity file /home/rshepard/.ssh/id_dsa type 2
> debug1: key_load_public: No such file or directory
> debug1: identity file /home/rshepard/.ssh/id_dsa-cert type -1
> debug1: Remote protocol version 2.0, remote software version OpenSSH_6.7
> debug1: match: OpenSSH_6.7 pat OpenSSH* compat 0x0400
> debug1: Enabling compatibility mode for protocol 2.0
> debug1: Local version string SSH-2.0-OpenSSH_6.7
> debug1: SSH2_MSG_KEXINIT sent
> debug1: SSH2_MSG_KEXINIT received
> debug1: kex: server->client aes128-ctr umac-64-...@openssh.com none
> debug1: kex: client->server aes128-ctr umac-64-...@openssh.com none
> debug1: sending SSH2_MSG_KEX_ECDH_INIT
> debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
> debug1: Server host key: ECDSA
> 1c:f8:ee:fd:eb:fe:a8:dd:b4:1c:bd:ad:6d:cd:5e:e9
> debug1: Host '[salmo]:' is known and matches the ECDSA host key.
> debug1: Found key in /home/rshepard/.ssh/known_hosts:28
> debug1: SSH2_MSG_NEWKEYS sent
> debug1: expecting SSH2_MSG_NEWKEYS
> debug1: SSH2_MSG_NEWKEYS received
> debug1: Roaming not allowed by server
> debug1: SSH2_MSG_SERVICE_REQUEST sent
> debug1: SSH2_MSG_SERVICE_ACCEPT received
> debug1: Authentications that can continue: publickey
> debug1: Next authentication method: publickey
> debug1: Offering DSA public key: /home/rshepard/.ssh/id_dsa
> debug1: Authentications that can continue: publickey
> debug1: No more authentication methods to try.
> Permission denied (publickey).
>
>This suggests that I've lost my public key on the server. Is that the
> situation? If so, I need to read up on how to re-generate my RSA/DSA key
> pair using my passphrase, then put the public and private keys in the
> correct hosts.

Check the permissions on your .ssh directory. It should be 700. It is
trying to access the key, it just can't find it. That could be
permissions.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Two factor hardware authentication on Linux

2014-10-24 Thread Alan
On Fri, 2014-10-24 at 14:32 -0700, Keith Lofstrom wrote:
> On Fri, Oct 24, 2014 at 11:36:37AM -0700, a...@clueserver.org wrote:
> > I am considering doing a talk on two factor authentication using hardware
> > tokens as a talk for PLUG.
> > 
> > Are people interested in that? Should I gear this for Advanced Topics or a
> > regular meeting?
> 
> Advanced Topics, please.  
> 
> I am particularly interested in the thinking that goes into 
> identifying and correcting weaknesses, even after the hardware is
> deployed.  And the social engineering that must be done on management
> to convince them that by the time a vulnerability emerges in the
> wild, it can be way too late to protect the public.  Or protect
> the corporation that sold the devices from bankrupting lawsuits.
> 
> I am in the middle of such a problem right now.

That sounds like a different talk. There are disclosure rules for
vulnerabilities that cover this sort of thing. I can do that talk at a
later date.

After getting both of the hardware devices, the talk may be for a
general audience. These are starting to be used for all sorts of general
purpose web sites. Might even be used on facebook at this point. (I
don't use it, but I might set up a bogus account to test this.)

I will know more the farther I get into the project.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Two factor hardware authentication on Linux

2014-10-24 Thread alan
I am considering doing a talk on two factor authentication using hardware
tokens as a talk for PLUG.

Are people interested in that? Should I gear this for Advanced Topics or a
regular meeting?

I have a couple of Yubi hardware tokens I will be using for the demo.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] No mail

2014-10-10 Thread alan
> I subscribe to several e-lists with my Comcast account which deliver
> many e-mails daily. In the morning there are always some, usually 15-30,
> but this morning there are none. Claws Mail produces no error messages
> and its log is clean. The fetching mail dialog box appears briefly,
> checks for mail, sees none, and closes.
>
> Something has clearly gone awry. Is anyone else having a problem with
> their comcast.net account?

I stay far away from Comcast. They are evil incarnate.

I keep a couple of external email addresses on different sites for testing
when mail acts poorly. Test message headers tell a lot.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Torrent issues {more info]

2014-06-11 Thread alan
>>> There are new versions of PCLinuxOS (2014.05) which I have been trying
>>> to download via torrent with Ktorrent. PCLinuxOS uses Linuxtracker to
>>> host their torrent files. When I open any of the torrent files in
>>> Ktorrent nothing happens for a long time. Looking at the torrent in the
>>> Trackers tab it says "invalid data in torrent file," and right-clicking
>>> on the torrent in the list of torrents it says it is unable to contact
>>> any trackers. After anywhere from an hour or so to several days,
>>> suddenly the torrent connects and starts downloading.
>>>
>>> I can use direct download to get the ISO files, but I usually prefer
>>> torrents as they are easier on the distro's servers. But the behavior
>>> of the PCLinuxOS torrents is just weird.
>>>
>>> According to Google no one else has ever reported this problem with
>>> torrents from PCLinuxOS. Does anyone here have any idea what might be
>>> going on?
>>
>> Does Ktorrent support magnet links?  They only torrent links I am seeing
>> on their site are magnet links and not all clients support them.
>>
>> Transmission should work fine. (It does on the link I tested.)
>
> The file name information is mangled on the link I tried. I have seen it
> before. I am investigating the cause.

The torrent hangs retrieving the metadata. It looks like there are no
seeders for the torrent. (I need to find a client that has good debugging
for torrents.) It could be that there is a IPv6 address that is not
routing, but I am not sure. I get the same hang behavior. The magnet link
format for this one is odd. It does not use a direct tracker address.
Judging by their forums, the way they handle their torrents is not very
straightforward. I wish I had a good answer, but I don't.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Torrent issues

2014-06-11 Thread alan
>> There are new versions of PCLinuxOS (2014.05) which I have been trying
>> to download via torrent with Ktorrent. PCLinuxOS uses Linuxtracker to
>> host their torrent files. When I open any of the torrent files in
>> Ktorrent nothing happens for a long time. Looking at the torrent in the
>> Trackers tab it says "invalid data in torrent file," and right-clicking
>> on the torrent in the list of torrents it says it is unable to contact
>> any trackers. After anywhere from an hour or so to several days,
>> suddenly the torrent connects and starts downloading.
>>
>> I can use direct download to get the ISO files, but I usually prefer
>> torrents as they are easier on the distro's servers. But the behavior
>> of the PCLinuxOS torrents is just weird.
>>
>> According to Google no one else has ever reported this problem with
>> torrents from PCLinuxOS. Does anyone here have any idea what might be
>> going on?
>
> Does Ktorrent support magnet links?  They only torrent links I am seeing
> on their site are magnet links and not all clients support them.
>
> Transmission should work fine. (It does on the link I tested.)

The file name information is mangled on the link I tried. I have seen it
before. I am investigating the cause.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Torrent issues

2014-06-11 Thread alan
> There are new versions of PCLinuxOS (2014.05) which I have been trying
> to download via torrent with Ktorrent. PCLinuxOS uses Linuxtracker to
> host their torrent files. When I open any of the torrent files in
> Ktorrent nothing happens for a long time. Looking at the torrent in the
> Trackers tab it says "invalid data in torrent file," and right-clicking
> on the torrent in the list of torrents it says it is unable to contact
> any trackers. After anywhere from an hour or so to several days,
> suddenly the torrent connects and starts downloading.
>
> I can use direct download to get the ISO files, but I usually prefer
> torrents as they are easier on the distro's servers. But the behavior
> of the PCLinuxOS torrents is just weird.
>
> According to Google no one else has ever reported this problem with
> torrents from PCLinuxOS. Does anyone here have any idea what might be
> going on?

Does Ktorrent support magnet links?  They only torrent links I am seeing
on their site are magnet links and not all clients support them.

Transmission should work fine. (It does on the link I tested.)
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Torrent issues

2014-06-11 Thread alan
> There are new versions of PCLinuxOS (2014.05) which I have been trying
> to download via torrent with Ktorrent. PCLinuxOS uses Linuxtracker to
> host their torrent files. When I open any of the torrent files in
> Ktorrent nothing happens for a long time. Looking at the torrent in the
> Trackers tab it says "invalid data in torrent file," and right-clicking
> on the torrent in the list of torrents it says it is unable to contact
> any trackers. After anywhere from an hour or so to several days,
> suddenly the torrent connects and starts downloading.
>
> I can use direct download to get the ISO files, but I usually prefer
> torrents as they are easier on the distro's servers. But the behavior
> of the PCLinuxOS torrents is just weird.
>
> According to Google no one else has ever reported this problem with
> torrents from PCLinuxOS. Does anyone here have any idea what might be
> going on?

Have you tried a different client? Try Transmission instead.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Books, and more books

2014-06-10 Thread alan
>
> Hello,
>
> In order to stir the OSCON pass review-a-book contest up, the kind
> people at O'Reilly have a few titles headed our way:
>
> AngularJS, High Performance JavaScript, Time Management for System
> Administrators, Learning PHP, MySQL, JavaScript, CSS & HTML5
>
> I will bring some others too as discussed.
>
> Now we only need a speaker or roundtable topic.

When and where?
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Network is unreachable

2014-05-16 Thread alan
> My laptop is working fine with its eth0 connection (wireless not
> enabled while at home), so I know there is no problem with the router or
> cable modem. But my desktop suddenly can't go anywhere, not even local
> pings (printers, other devices).
>
> The desktop is a six year old ASUS M2NPV-VM with gigabit ethernet
> running Xubuntu 12.04. The ethernet has always worked fine, and it was
> working fine this morning, but when I came home half an hour again it
> can't see the network. The command "sudo ifconfig eth0 up" executes
> without error, but just "ifconfig" shows eth0 without displaying an IP
> address for it. The IP address 192.168.0.155 is reserved for it in the
> router, and looking at the router with Firefox it appears to be
> connected. I have shut down and restarted the desktop, and it boots
> without apparent error.
>
> I also did "dmesg |grep eth0" and I got several lines, like:
>
>   ADDRCONF(NETDEV_UP): eth0: link is not ready
>   forcedeth :00.14.0 eth0: no link during initialization
>
> Since the motherboard is about six years old I suppose it is possible
> that the ethernet parts decided to die today. But I've never had
> an ethernet device suddenly die. In any event, I need suggestions for
> what to poke at next in order to figure out what is wrong.

Check to make sure none of the ethernet port pins have broken off.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Need a new laptop

2014-05-09 Thread alan
> they also appear to have almost completely replaced the IBM style
> keyboard/pad/stick. there's only one current model I looked at with an IBM
> style kb. not sure how the new ones hold up but there are apparently some
> issues with the new trackpads, so I was hesitant. anyone with a newer
> model
> want to weigh in?

I have a Lenovo W540. That is about as new as you can get. (It is less
than a month old.)

Keyboard is good. Laptop was really expensive. I use an external mouse
with mine. Gnome 3 has a feature that allows you to disable the trackpad
on seeing the external mouse. The trackpad works, I just hate trackpads.


> On May 9, 2014 2:44 PM, "Joe Shisei Niski"  wrote:
>
>> On Fri, May 9, 2014 at 12:57 PM, John Bartley K7AAY j...@503bartley.com
>> <
>> john.bart...@gmail.com> wrote:
>>
>> > I second the opinion of the esteemed Mr Hast. The only laptops
>> sturdier
>> > (and I say this from experience as a Freegeek laptop refurbisher and
>> as a
>> > Kaypro company tech rep) are the aluminum iBooks and the Panasonic
>> > Toughbooks, and both are premium products at a premium price. Think
>> Pads
>> > have parts readily available and profuse manufacturer's repair
>> > documentation, have a higher resale value (which validates their
>> value)
>> and
>> > just plain last. There's an X60 at
>> >
>> >
>> https://portland.craigslist.org/search/sya?zoomToPosting=&catAbb=sya&query=Thinkpad&minAsk=100&maxAsk=&excats=
>> > as
>> > well as many others.
>> >
>> > --
>> > 73s/Best regards de John Bartley K7AAY  CN85qj   •|||•  tel.
>> >
>>
>> This made me look at the current crop of Thinkpads on the Lenovo site,
>> some
>> of which are enticingly reasonable feature/price-wise. Sadly, they don't
>> seem to be available without an OS.
>>
>> 
>> Joe Shisei Niski
>> Portland, Oregon, USA
>> 至誠
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>>
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Help! Can't log in!

2014-04-23 Thread alan
> On Wed, 23 Apr 2014 17:29:38 -0700 (PDT)
> a...@clueserver.org dijo:
>
>>If you have a Live System DVD you can boot off of that and then mount
>>the file system. Take the password hash out of /etc/shadow, then
>>reboot. You should have no password and you can just re-add it.
>
> Even easier than using the live DVD, from the login screen I just did
> Ctrl-F1, which got me to a command line. From the command line I was
> able to log in as JJJ. (Which I suppose that it is only the login
> screen that is messed up; my password and account still work.)
>
> Once logged in I opened /etc/shadow as root (using nano) and added * in
> front of the JJJ line. Then I rebooted. Sadly, I should not have done
> that, because now I can't log in, even at the command line. Whatever I
> enter for the password (including leaving it blank) results in
> "incorrect password" error. I get the same error message if I try to
> log in as root.

"*" does not mean nothing, "*" means do not let anyone log into this account.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Help! Can't log in!

2014-04-23 Thread alan
> An hour ago I applied a number of updates to my Xubunu 13.10 laptop, but
> deferred rebooting until I finished typing something in Greek. Having
> done so I shut down LO Writer and rebooted. When the login screen came
> back up it would not take my password, presumably because the keyboard
> was still in Greek.
>
> I was able to log in as a guest, and the guest's keyboard was in
> English (verified by typing something while logged in as guest), but
> when I reboot JJJ still can't log in. I checked for the obvious (caps
> lock is not on, etc.). On the Xfce login screen there is an icon in the
> right side of the top panel that allows me to select the language, but
> even after selecting US English, I still can't log in.
>
> Interestingly, if I leave the password blank I get an error message
> that the password is wrong. I do not get this error message if I type
> in my correct password. Therefore, I assume that I am typing in my
> password correctly, but one of the updates broke something and Linux
> now just recycles to the login screen instead of proceeding to the
> desktop.
>
> I really need some suggestions, urgently!

If you have a Live System DVD you can boot off of that and then mount the
file system. Take the password hash out of /etc/shadow, then reboot. You
should have no password and you can just re-add it.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Clinic! (And new *buntus)

2014-04-19 Thread alan
> Rich Shepard wrote:
>> On Fri, 18 Apr 2014, Galen Seitz wrote:
>>
>>> ... but here's how I have outbound mail configured. I'm relaying
>>> through easydns.com
>>> using sasl.
>>> main.cf:
>>> ...
>>> relayhost = [mailout.easymail.ca]:submission
>>> smtp_sasl_auth_enable = yes
>>> smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
>>> smtp_sasl_security_options = noplaintext, noanonymous
>>> smtp_sasl_tls_security_options = noanonymous
>>> smtp_tls_security_level = may
>>> ...
>> I had to relay outbound mail via aracnet/spiritone when Frontier no
>> longer
>> supported aracnet's routers and I lost my static IP address. My
>> Slackware
>> postfix main.cf is equivalent to Galen's:
>>
>> relayhost = [mail.aracnet.com]:submission
>> smtp_sasl_auth_enable = yes
>> smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
>> smtp_sasl_security_options = noplaintext, noanonymous
>> smtp_sasl_tls_security_options = noanonymous
>> smtp_tls_security_level = may
>> smtp_sasl_type = cyrus
>>
>>... and so on.
>>
>> Rich
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>>
> CenturyLink blocked the normal email route from my home.  Spiritone gave
> me another port to point to.  Ask your provider what port to use.

There is a web config for Century Link that will let you turn that back
on. I run my own mail server on Century Link.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Who's after Linus?

2014-03-25 Thread alan
>
> Hello all,
>
> I have a few candidates for the May General meeting but have yet to
> receive a confirmation for April Advanced Topics on the 15th at Free Geek.
>
> Drop me a line if you are interested in giving a talk. Vague ideas that
> need refinement are okay!

I have a couple ideas. Not certain if they are elementary enough for a
regular meeting.

* Using tor and other encryption/vpn software
* Building Android from scratch.
* Installing Linux on new hardware.

Maybe a few other things...

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] A quick summary of Open Source Bridge in Portland

2013-06-22 Thread Alan Niven
I just wanted to let PLUG subscriber know that the Open Source Bridge 
last week was awesome and highly recommend. Many sessions covering many 
day including an ad hoc Friday set. The food my the best of any 
conference and drew from Portland food carts/caterers. The price was 
right at $300 for all four days including the food and 8 hours of 
volunteer work got your in for free. For the next 30 days you can sign 
up for next year for only $150.

The most surprising thing to me was how nice, friendly and helpful 
everyone was. I hadn't put together that people interested in open 
source would understand and embody the principles that by working 
together we can build and fix the things we need an make a better world. 
At some point here will be videos of all the main session available on 
the Open Source Bridge 
<http://opensourcebridge.org/events/2013/schedule> site.

Alan Niven
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Virtualbox, Android

2013-01-23 Thread alan
> On Wed, Jan 23, 2013 at 05:15:37PM -0800, Ronald Chmara wrote:
>> http://www.kirsle.net/blog/kirsle/android-4-0-in-virtualbox notes
>> problems
>> with sound, video, screen rotation, apps that are optimized for ARM
>> chips...
>>
>> Interesting find.
>
> Great link!  The Android X86 port appears "not ready for prime
> time", given the ARM processor focus of Android.  Perhaps Intel
> will work on that.

The X86 port is ready for prime time. It is on shipping phones in the UK,
China, and India.  There is a translation layer that will convert ARM to
x86 on the fly. (I have seen it run on many test phones and tablets in the
lab on the current version of Android.)

If you are going to run a virtual emulation of Android, you should use the
one that comes with the Android SDK. It builds for either ARM emulation or
X86.

Phones on x86 will be in the US soon. (It takes longer to get a phone to
market in the US, as well as some carrier related issues.) How soon I am
not certain. I live too far in the future and they don't tell me when it
ships.

I may be able to do a presentation on X86 and Android, but I would have to
clear it through legal first. (I have signed many NDAs.)

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Linux(ubuntu) Motherboard

2013-01-02 Thread alan
> Looking for motherboard recommendations and a good place to buy. Don't
>>> care about gaming or whizzy graphics. This will be used for financial
>>> analysis and database operations. Need connections for 6 disks (3 sets
>>> of
>>> mirrors). Need at least 16 Gb of ram. Mostly interested in getting a
>>> solid reliable board.
>
> Here's a pretty good list of the some of the more Linux compatible
> mobos. As I suspected, there's a lot of Asus, MSI, and Gigabit boards
> listed. All of which I've used in the past and they all performed well
> for me.
>
> http://www.linux.com/directory/Components/motherboards
>
> ENU carries a lot of Asus and Gbyte mobos.
>
> http://enuinc.com/index.php?l=product_list&c=23
>
> Good luck in finding what you're looking for. I'm curious to know what
> you go with.

In the next couple of months I hope to be building an Intel i7 system with
an Intel DX79SR motherboard.  It has SATA plugs for 6 drives and holds up
to 64gigs of ram.

If anything is Linux compatible, that should be.  (And if it isn't, it
soon will be.)

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Any problems with Quest / Centurylink / Centurytel for Linux Users?

2012-09-24 Thread alan
> On Mon, Sep 24, 2012 at 05:47:12AM -0700, Guy Letourneau wrote:
>> Are folks here using CenturyLink or Centurytel (which used to be Qwest.)
>> How is there dervice to Linux users?

I have a fixed IP with CenturyLink.  Getting a fixed IP was a bitch, but
using Linux actually helped get to the right people to get it done.  (I
told them I run my own mail server. Had to turn on port 25 on their web
page config and everything worked fine.)

The problem i have with them is they started capping service.  As of
February you will get nastygrams if you use "too much" bandwidth. (They
just cut and pasted what Comcast did with their service.)  They have the
same bandwidth cap for 12mbs as it is for 40mbs.  I calculated that at
40mbs you could reach your bandwidth restriction for the month in 14
hours.  (I cut my service back to 12mbs when I found that out. Not going
to pay $50+ a month for little or no benefit.)

Buying your own modem is a good idea. My Q1000 overheats too often.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] PDF Security (WAS Asterisk, Fax, Faxmodem)

2011-09-13 Thread alan
> Russell,
>
> No, you are not being paranoid, but we do have to accept that PDFs are
> not going anywhere (and you can encrypt if you desire)
>
> As a printshop with a full PDF workflow, we open hundreds of files daily
> and see this constantly.
>
> Worse though, are the Excel mailing lists send to us for addressing.
>
> These usually come from a Title company or mortgage company and have an
> intense amount of
> private information including loan amounts, income, etc.
>
> The true solution would be to make the sender responsible for securing
> information sent, not the
> receiver who has little control.
>
> My $0.02.
>
> -Bill Ensley
> www.bearprinting.com
>
>> I just had a problem the other day where someone wanted a PDF emailed.
>> It had information on it I consider private and PDFs (usually) are not
>> encrypted. Am I missing something, or being overly paranoid?
>>
>> Russell Johnson
>> r...@dimstar.net

GPG (http://www.gnupg.org/) is available for free. If you are concerned
about the privacy of information (and you should), you need to teach your
customers how to use it.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Netgear GS116 warranty

2011-09-09 Thread Alan
My GS116 switch just died 5-days ago, altho I had a similar Netgear 
giga switch die about 6-months ago. Not to mention the power supply 
to my Infrant-Netgear NV+ file server going up in smoke about 2-months ago.

Netgear does a great job of making it hard to use there warranty, but 
eventually come thru. First you should make sure your device is 
registered at there website. Then you need to call they're hard to 
find phone number 888-638-4327 (use extension #4 for tech support.) 
You'll get an operator who will give you a case number then put you 
into a queue to talk to an support engineer. Recently when I got to 
this stage they're hold system timed out after 15 minutes and put me 
into voice mail where I left my number and email. After 4-days of no 
response I had to call again, this time a was able to describe the 
problem to an engineer, after following the previous process. The 
engineer approved my failure and but me on hold to speak to the RMA 
specialist who after verifying serial number, name and address, case 
number etc again and another on hold period, gave me the RMA number. 
He waited on the line while I confirmed the confirming email he sent 
me and the I got to select one of three RMA programs, from free 
(after I send back the unit with the specified documentation to a 
next day air delivery of a replacement unit and pre-paid return for 
about $50. Since I had already replace the unit with a Trendnet 
TEG-160WS smart switch in the intervening time, I went with the 
cheapest approach for about $12.

A similar winding path to replacement was experience with Netgear on 
the fired power supply with the NV+ except I paid the big bucks for 
the next day air. I've notice that a lot of warranties, including the 
lifetime GS116 don't include the power supply, which under normal 
condition it the most like part to die, altho a well designed unit 
should last more than ten years. Cheap capacitors from China seem to 
have cut that lifetime to less than half. Hopefully cap quality will 
increase with manufacturing experience and buyer demand.

Good Luck



At 09:54 PM 9/8/2011, you wrote:
>I just discovered that my Netgear GS116 has a lifetime warranty. Or so
>Netgear's website leads me to believe.
>
>I do want a 24-port switch, and because of my experience with the
>Netgear I had figured "any brand but Netgear." I may have to rethink
>that reasoning.
>
>Meantime, the Trendnet and SMC switches that have been suggested have
>only a one-year warranty. In fact, looking on Newegg and Dell is where
>I discovered that Netgear offers a lifetime warranty, which is hard to
>find in anything else short of $1,000+ units.
>
>I'll call Netgear tomorrow and see what they say.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] RHEL, CentOS, SL

2011-05-13 Thread alan
> I run Scientific Linux, "SL", a Red Hat Enterprise Linux clone.
> The most widely used clone of RHEL is CentOS, but there may be
> troubles in that community.  We are getting about 5 refugees a
> day from CentOS showing up on our mailing list and forums.
>
> Any CentOS users here?  I'm hoping the tales of woe are
> overblown, and CentOS is still healthy and moving forwards.
> If something happens to SL, I would rather not have RHEL as
> the only practical alternative.

The problem with CentOS is that it is based off of RHEL. Red Hat has taken
some steps to make it harder for CentOS from using their RPMs. (Like
having the kernel source as one large tarball instead of clean source and
patches.)

I have two big problems with CentOS.

The versions used are OLD. (As they are in RHEL.)  There are features in
SSH I would like to use on my home system, but the version used by CentOS
is about 5 years old.  If I wanted to use out of date, bitrotten software
I would install Debian.

The packages are quite limited.  I was going to install a program that
needed a pile of Haskell packages and most of them did not exist for
CentOS. Compiling the packages would have meant updating a number of other
packages just to get it to build. If I wanted to go through that headache
I would just install something that is current and upgrade every six
months.

Ubuntu has long term support for some of their versions, but they are
Debian based and I really have no love for the Debian package manager.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Favorite Linux Netbook specific distro?

2011-04-27 Thread Jeffery Alan Mathis II
I no longer have a netbook, but when I did I tried several distros on it 
(Asus eeePC 701).  The ones that ran best were Cruncheee, Puppeee, 
Salix, Peppermint, and Linux Mint XFCE edition.

On 04/27/2011 09:24 PM, Ken Stephens wrote:
> Darren Couch wrote:
>> as an aside, ive been running arch solid for a while now - the current 
>> installs and documentation are top notch (although i am not much of a 
>> netbook guy yet)
>>
>> On Apr 27, 2011, at 19:13, Mike Connors   wrote:
>>
>>
 I've been switching back and forth between Ubuntu 10.04 and Archlinux
 on a Dell Mini for the past year, with one of the early Atoms and 1GB
 of RAM.  This thing has soldiered on like a champ, and really haven't
 noticed any slowdown running the full GNOME environment.  In fact, I
 briefly played with the Netbook Remix and it felt a lot less
 responsive than vanilla Desktop.

 That said, I'm currently running Arch with Awesome WM, and it's zippy
 and light and I love it.
 --
 Sean

>>> Thanks for the tip on Arch! I tried it a few years back and I couldn't
>>> get it to boot on my IBM T60. I was
>>> a bit disappointed as it seemed to be a potentially great distro. It's
>>> also now listed in the top 10 distros on
>>> distrowatch.com and has gotten some very good reviews as well. It's on
>>> the list of distros to try out.
>>>
>>> If anyone who regularly attends the PLUG Sunday Linux Clinics is
>>> reading this thread, I'd be curious to know how
>>> many people are showing up with netbooks and asking about some of the
>>> more obscure distros like Arch. It's always fun to sit
>>> at home and play around w. different distros, it might be more fun to
>>> have a "netbook nerd" day to be able to check out what other
>>> people are running, talk shop, eat penquinos, and drink coffee. :-)
>>>
>>>
>>
> I have been running Ubuntu on my ASUS EEEPC 1000.  It's snappy even
> with GNOME Desktop.
>
> Ken
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] MaxMySpeed

2011-04-27 Thread alan
On Tue, 26 Apr 2011, John pdx wrote:

> You could watch logging in realtime and see where the proggie tries to
> "reachout"?

Run wireshark and see what packets go across the net. Sounds pretty bogus.

> On Apr 26, 2011 10:30 PM, "Robert Kopp"  wrote:
>> I didn't expect it to work, but I was wondering what it would do, if
> anything.
>> It just crashed. (WINE can run unprivileged, as I did in this case, so I
> doubt
>> that running a dubious Windows application will do any harm.)
>>
>>
>> Robert "Tim" Kopp
>> http://analytic.tripod.com/
>>
>>
>>
>>
>>
>>
>> 
>> From: Nathan W 
>> To: plug@lists.pdxlinux.org
>> Sent: Mon, April 25, 2011 2:44:31 PM
>> Subject: Re: [PLUG] MaxMySpeed
>>
>> On Mon, 25 Apr 2011 14:02:03 -0700 Aaron Burt  wrote
>>
>>> On Sat, Apr 23, 2011 at 08:44:41PM -0700, Robert Kopp wrote:
 This televised application doesn't seem to work with Ubuntu. I
> downloaded
 MaxMySpeed.exe and set the execute bit to make it executable under
> WINE. It

 loads, runs briefly, and crashes.
>>>
>>> Please tell me this is an April Fool's joke.
>>
>> i was going to suggest that it might run faster if you set it on fire
> first.
>> given that the author has a page like this
> http://analytic.tripod.com/id20.htm
>> on his website, i'm guessing/hoping/praying it's a joke.
>>
>>
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>> ___
>> PLUG mailing list
>> PLUG@lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
> ___
> PLUG mailing list
> PLUG@lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>

-- 
Truth is stranger than fiction because fiction has to make sense.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] IBM T60

2011-02-18 Thread Alan
On Wed, 2011-02-16 at 19:28 -0800, Marvin Kosmal wrote:
> I can get this for  $350..  Is that a good price and will Linux fit well??
> 
> IBM ThinkPad T60 14" Laptop w/ Intel Core Duo T2400 1.83 GHz (Centrino
> Duo), 2GB DDR, 60GB, DVD / CDRW Combo, 802.11g, Windows XP
> Professional

I have a T61 laptop at work. I have expanded it up to 4 gigs ram and a
500gig hard drive. Works pretty well. I have it running Fedora 14 with
Windows Se7en running in a VMWare instance.  (It is a work laptop.)

It does pretty well. For that price it is a pretty good deal.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Qwest the Qwerst.

2011-02-18 Thread Alan
On Sat, 2011-02-12 at 14:52 -0800, Ken Stephens wrote:
> Looks like Qwest has blocked outgoing port 25 so if you are not sending 
>   email (;-)), change your outgoing mail port to 587, at least if you 
> are going to aracnet/spiritone mail servers.  YMMV with other ISPs.

QWest blocks port 25 if you use dhcp.

If you have a fixed IP address you can turn off port 25 blocking by
going to qwest.net and change the settings for your account.

One other problem you may have is that your outgoing address needs to
resolve correctly for your domain. (I had this problem. The CentOS
version of Postfix kept setting my domain as
"localhost.clueserver.org".) Look at the masquerade rules to fix this.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] upgrading a redhat 7 kernel

2010-10-28 Thread alan
On Thu, 28 Oct 2010, Daniel B. Herrington wrote:

> I've got to build a sybase 12- server on redhat 7. ASE requires 2.4.9 or
> greater though.
>
> I built a redhat 7.2, but maybe should do a 7.3 as that seems to be the
> easier route.

Why are you using a Linux distrobution that has not been supported for 5+ 
years?

-- 
Truth is stranger than fiction because fiction has to make sense.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Free Geek approved for AT!

2010-09-17 Thread Alan
On Thu, 2010-09-16 at 11:34 -0700, Michael Dexter wrote: 
> Hello,
> 
> Free Geek has approved us for the PLUG Advance Topics meeting. Let's
> give this venue a try with a new food model.

The new food model will be Randal covered in cold meat.

He will do the Dance of the Seven Veals.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Tech republic: 10 ways to dodge Linux hardware issues

2010-06-16 Thread alan

On Wed, 16 Jun 2010, Word Wizard wrote:


Donÿÿt use very old  hardware?


I thought one of Linux' selling points was that unlike Windoze Linux
supported legacy hardware.

In the Linux world "very old hardware" are things like MFM and RLL drives.

In the Windows world it is any hardware that is older than about 5 years.

--
Truth is stranger than fiction because fiction has to make sense.___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] DSL options in Portland

2010-05-18 Thread alan
On Mon, 17 May 2010, John Jason Jordan wrote:

> Comcast just raised my rates. The increase is trivial, but far more
> annoying is that the service is decreasing. Six months ago
> speedtest.net reported a high of 3 MB/s. Now it is just over 2 MB/s.
> The new rate is 55.59/month, which includes 11.49 for basic TV.
>
> When I say "2 MB/s" I mean megabytes per second. That is, assuming the
> server can feed me as fast as Comcast will let me download it, I can
> download a full 700 MB Ubuntu live CD in about six minutes.
>
> I do not have wired home telephone service; that is, I discontinued the
> land telephone a couple years ago since I never use anything but my
> cell. I'm not very popular, so no one ever calls me anyway.
>
> Googling around leads me to a confusing bunch of options for DSL. I'd
> pay more for faster speeds. Are there any options that are faster than
> the 2 MB/s that Comcast is now giving me?

It really depends on where you live. Are you in Qwestland or Verison 
territory?

Depending on where you live you may be able to get DSL/Fiber with faster 
speeds. I have been told it is possible to get just DSL without land line, 
but I think it depends on the carrier.

Speeds vary due to location and carrier. Look on their web site and it 
will tell you what speeds are available for your address.

-- 
Truth is stranger than fiction because fiction has to make sense.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Linux clinic Sun - kernel hacking?

2009-12-17 Thread Alan
> Mike Connors wrote:
>> Alan wrote:
>>> What do you need to know?
>>>
>>> I guess I know more than most.  (I am the Linux kernel maintainer for
>>> Intel's Ultra Mobility Group.)
>> I guess I'd just like to get a general understanding of the kernel,
>> modules, variables, etc. Every once in a while I want to do something on
>> my Debian box and
>> inevitably I have to  enable/disable something in the kernel or build a
>> kernel with a module loaded. For instance, I want to disable IPv6
>> support. Does any of this make sense?
>
> This is a nice, short HOWTO on creating custom kernel packages for your
> Debian system:
>
> http://www.debian-administration.org/articles/90

You really want to use the kernel source from your distro and not the
generic source. Each distro makes changes to their kernels that may or may
not be needed by userspace tools.

BTW, you do not need to recompile the kernel to disable ipv6.

In /etc/modules.d/aliases make the following additions/changes:

 alias ipv6 off
 alias net-pf-10 off

Once you reboot, ipv6 will no longer load.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Linux clinic Sun - kernel hacking?

2009-12-16 Thread Alan
> Is anyone planning on attending Sun who knows alot about building,
> patching, and modifying kernels?

What do you need to know?

I guess I know more than most.  (I am the Linux kernel maintainer for
Intel's Ultra Mobility Group.)
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] [ANNOUNCEMENT] PLUG Advanced Topics Meeting *Wednesday* December 16th, 2009

2009-12-16 Thread Alan
>> I didn't actually speak to her.  I normally leave her an email.   I
>> didn't
>> realize she wasn't there, but communicating with her was haphazard at
>> best
>> when she was.  I'll find out if they have another event coordinator, or
>> whether or not there is an events contact.
>
> Simply talk to Craig the owner.

Are we still on for tonight?

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] [ANNOUNCEMENT] PLUG Advanced Topics Meeting *Wednesday* December 16th, 2009

2009-12-10 Thread Alan
NOTE: The meeting time and location has changed again.

PLUG Advanced Topics
December 16th, 2009 
7pm - 9pm

Roots Organic Brewing
1520 Southeast 7th Avenue
Portland, OR 97214-3568
(503) 235-7668

Using DRBD to Build High-Availability Clusters on Commodity Hardware

Charlie Schluting of LINBIT will explain how DRBD works and how people
currently use it, with enough information to get you started building
your own clusters.

DRBD stands for Distributed Replicated Block Device, and as the name
implies, allows you to replicate block devices over TCP. DRBD is
extremely flexible due to the fact it is a block device, and as such is
used in a variety of situations. At the most basic level, you can
replicate data between two servers to provide synchronously replicated
storage redundancy for either failover or disaster recovery purposes. In
active/active mode, you can also run GFS, OCFS2, or other clustered file
systems.

Topics that will be covered:
- How it works, history, and future exciting news regarding mainline
kernel inclusion
- How it is used: HA-iSCSI, HA-NFS, Virtualization, Apache, Samba, etc.
- Cluster Resource Manager options and recommendations, and news about
the confusing changes in the Linux-HA / Clusterlabs communities.

And the majority of the time will be spent on:
- Example cluster configuration: hardware setup, installation and
configuration, and cluster manager integration.

Come with questions!

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] [ANNOUNCEMENT] PLUG Advanced Topics November 19th, 2009 **NEW NIGHT and LOCATION**

2009-11-16 Thread Alan
[We're back! Sorry for the downtime. Personal issues ate my brain.]

We have a new location, a new night, and an old time.

Michael Dexter  is helping me keep things organized
and helping with planing.  He will help getting speakers and the like.

PLUG Advanced Topics
November 19th 2009
7pm - 9pm

Location: Club 915
  915 SW 2nd
  Portland, OR

Club 915 is a block south and across the street from where Jax used to be.
Big stone building. Can't miss it.

Topic:  Backporting Linux kernel Drivers with Git
Speaker:  Alan Olsen 
  Intel Corp.

Description:
The talk will be a demonstration on how to use git to assist in
back-porting drivers from one kernel version to another.  It will include
merging patches, determining what patches are part of the driver you are
backporting, generating patches, etc. I will also have a quick intro to
some of the git concepts I will be using.

Note: This is a new venue.  It is closer to the Max Line than Roots. It
also has more space.  We will see how it works out.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Dell Zino

2009-11-13 Thread Alan
> On Fri, Nov 13, 2009 at 1:22 PM, Robert Citek
> wrote:
>
>> On Fri, Nov 13, 2009 at 4:13 PM, Matt McKenzie 
>> wrote:
>> > On Fri, Nov 13, 2009 at 12:16 PM, VY  wrote:
>> > BTW, as for the Ubuntu support on the Dell, if you click on the Tech
>> Specs
>> > tab on the Dell page, it shows Ubuntu Linux right in there among that
>> > "other" OS.
>>
>> Yes, Dell lists Ubuntu 9.04 on the Tech Specs page, but it's not an
>> option when you want to customize.
>>
>> Or is it and I missed it?
>>
>> Regards,
>> - Robert
>>
>>
> You may have to call them to get it.

If the device has the Intel Pousbou chipset in it, then you have to deal
with some proprietary drivers. Ubuntu has support for it. Moblin does as
well. Not much else has it at this point.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Advanced Topics Weds 18th?

2009-11-11 Thread Alan
>> > "Keith" == Keith Lofstrom  writes:
>> Keith> Will we be having an advanced topics meeting next week, on the
>> Keith> previously-usual 3rd Wednesday (18th)?
>
> On Tue, Nov 10, 2009 at 03:49:14PM -0800, Russell Senior wrote:
>> Consider this a personal plea to move it to either Tuesday or Thursday.
>
> I don't know whether anyone will actually set this up, but I vote
> for Thursday.  Supercomputers 09 is at the convention center that
> week, and the IEEE is sponsoring some free evening presentations
> on Tuesday and Wednesday.  See:
>
> http://www.ieee-or.org/index.php?option=com_events&task=view_week&Itemid=56&year=2009&month=11&day=18
>
> or  http://snurl.com/t6pci   or   snurl/t6pci
>
> I may be ferrying the speakers from the Convention Center to the
> Tek conference center on Tuesday, so I will be unavailable.  The
> Wednesday evening presentation at OTBC looks interesting, too.

Actually it will be Thursday.  (As was announced at the last PLUG meeting.)

I need to get an announcement out as soon as I have the speaker info
solidified.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] PLUG AT talk this Thursday?

2009-11-03 Thread Alan Olsen
I would have gotten something moving on this but I have been arguing with
the flu for the last week. The AT meeting will best be served in November.

On Oct 22, 2009 1:10 PM, "Michael Dexter"  wrote:

>> Would anyone want THIS topic THIS Thursday? > > I would. Is this still
happening?
No meeting tonight but I will line up something more solid for November.
 With POSSE running later, I think we should avoid it by a day unless
that further complicates it for people.

I am told that the meeting used to come after POSSE. Any thoughts on the
advantages or disadvantages of this arrangement?

Thanks,

Michael

___ PLUG mailing list
PLUG@lists.pdxlinux.org http://lis...
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] No Advanced Topics tonight?

2009-06-19 Thread Alan Olsen
I am trying to get speakers for July. Depends on if the events in my
personal life don't go totally south.

On Jun 17, 2009 4:12 PM, "glen e. p. ropella"  wrote:


Just to confirm, there's no AT meeting tonight, right?

--
glen e. p. ropella, 971-222-9095, http://tempusdictum.com

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] Suggested list - plug-forsale

2009-06-19 Thread Alan Olsen
I think we need a plug-forsale list. It will move the forsale postings off
to its own area and might get some people to clean out their hardware
backlogs.
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] classroom space

2009-06-11 Thread Alan Olsen
Cubespace closes forever Friday June 12th. (Tomorrow.) They could not work
out their problems with US Bank. (Their landlord.)

On Jun 5, 2009 3:03 PM, "Rich Shepard"  wrote:

On Fri, 5 Jun 2009, Jason Dagit wrote: > Have you looked at cubespace?
Jason,

  Did they resolve the rent issue? I know the community raised about $3,000
in a couple of hours several weeks ago but I never saw whether that was
sufficient to save the place.

Rich

--
Richard B. Shepard, Ph.D.   |  IntegrityCredibility
Applied Ecosystem Services, Inc.|Innovation
 Voice: 503-667-4517  Fax: 503-667-8863

___ PLUG mailing list
PLUG@lists.pdxlinux.org http://lis...
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] I need someone to take over Advanced Topics

2009-05-18 Thread Alan
I have been organizing Advanced Topics for over eight years now.

I have a whole bunch of things that are eating my time and my brain.

I just realized that the meeting is this Wednesday and I had not gotten
a speaker.

My commute is 2 hours each way to and from work.  Other parts of my life
are consuming everything else.

I need to get someone to take this over until I can get the rest
straightened out.

Sorry for the short notice, but my focus has been elsewhere and it is
not getting better anytime soon.  (At least until August/September.)


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] AT this month, Roots?

2009-05-03 Thread Alan Olsen
Go ahead and do it for now. I have not heard anything frokm Keith on
relocating.

On May 1, 2009 9:09 AM, "Tony Rick"  wrote:

I haven't reserved the event space at Roots for this month.  I'll
go ahead and do it for planning purposes, unless anyone advises
me otherwise.  I seem to recall something about an orange wall
and suggestions for relocating to LLNW.

- tony
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Light in fiber, electrons in copper

2009-04-21 Thread Alan Olsen
Damn Marxists...

Off to get some Duck Soup.

On Apr 21, 2009 1:14 PM, "Tony Rick"  wrote:

On Tue, Apr 21, 2009 at 12:02 PM, Rich Shepard wrote:

> On Tue, 21 Apr 2009, Keith Lofstrom wrote: > > > Thus, this post is
vaguely relevant to Linux. Ho...
My aunts live in Texas, and the never bug me.  However, fruit flies like a
banana.

- tony

___ PLUG mailing list
PLUG@lists.pdxlinux.org http://lis...
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] News from beta testing land

2009-04-15 Thread Alan
On Tue, 2009-04-14 at 23:34 -0700, M. Edward (Ed) Borasky wrote:
> I've been playing with it for a week or so. It seems to be in
> reasonable shape -- not too many crashes, no data loss (yet). But I
> can't get past the hideous color scheme ... Ubuntu brown and orange.
> So I'm sticking with openSUSE for the moment. But I'm going to put the
> Xubuntu version on my ancient 512 MB laptop just to see what happens.
> :)
> 
> I also tried the Fedora 11 beta. It's more or less a disaster at the
> moment. It sent a kernel oops to the mother ship in the process of
> attempting an install, and it blew up trying to format a partition
> after that. And it looked to me like the (Gnome) LiveCD didn't even
> have Open Office on it!

Weird. Fedora 11 has been pretty stable for me. (And my laptop has known
problems with recent kernels.)

Try running memtest86 on your machine and see if your memory is stable.
I would also try to get a hardware report out to the Fedora people if
you can.


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] ANNOUNCEMENT: PLUG Advanced Topics April 15th 2009

2009-04-15 Thread Alan
On Tue, 2009-04-14 at 17:47 -0700, M. Edward (Ed) Borasky wrote:
> On Tue, Apr 14, 2009 at 3:22 PM, Alan  wrote:
> > I am working on a speaker for May.  I have been talking to the
> > "department of speakers" for Intel.
> >
> > Any particular topics people are interested in?  Intel compilers? Intel
> > libraries? Specific techniques? (Or whatever I can get.)
> 
> All of the above! Although IIRC some of their advanced performance
> engineering tools are not open source and not even free as in beer.
> How about Moblin? That's open source, I think, and getting a lot of
> buzz.

Moblin could be interesting. Not certain how much I can talk on that due
to NDA issues.  (I am on that project at the moment.)

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] ANNOUNCEMENT: PLUG Advanced Topics April 15th 2009

2009-04-14 Thread Alan
On Tue, 2009-04-14 at 14:45 -0700, Tony Rick wrote:
> On Tue, Apr 14, 2009 at 2:14 PM, Alan  wrote:
> 
> > Advanced Topics
> > April 15th, 2009 7pm - 9pm-ish
> >
> > Location:   Roots Organic Brewery
> >1520 SE 7TH
> >Portland, Oregon
> >
> > Topic:  Server Sky - Data Centers in Orbit
> > Speaker:Keith Lofstrom
> 
> 
> And I just re-confirmed that we have the Event Space at Roots tomorrow
> evening.

Cool.

I am working on a speaker for May.  I have been talking to the
"department of speakers" for Intel.

Any particular topics people are interested in?  Intel compilers? Intel
libraries? Specific techniques? (Or whatever I can get.)

I am going to see whao and what will be available for that date.

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


[PLUG] ANNOUNCEMENT: PLUG Advanced Topics April 15th 2009

2009-04-14 Thread Alan
Advanced Topics
April 15th, 2009 7pm - 9pm-ish

Location:   Roots Organic Brewery
1520 SE 7TH
Portland, Oregon

Topic:  Server Sky - Data Centers in Orbit
Speaker:Keith Lofstrom

Large data may soon consume 50MW or more of electrical energy.  The EPA
estimated US data center power consumption in 2006 at 60 billion
kilowatt
hours, or 1.5% of total US power consumption, and predicts a doubling by
2011. This will have huge environmental, social, and economic
consequences
unless we find alternative ways to power our digital economy.

Server sky is a proposal to build large dispersed arrays of ultralight
solar powered server satellites and launch them into 6400km equatorial
earth orbits, between the inner and outer Van Allen belts.   There is
room in these orbits for billions of server-sats.

A 30 gram server-sat consists of a thinned 12 inch solar cell, with
power efficient processors, solid state memory, and microwave
transceivers bonded to the edges. Thousands of server-sats position
themselves into dozens of dispersed three dimensional arrays (hundreds
of meters on a side) using light pressure for thrust and liquid-crystal
shutters for trimtab steering.  A server-sat array acts as a large
phased array antenna, permitting it to steer thousands of communication
beams at receiving stations and communities under its position in orbit,
handing off communication and control to the server-sat arrays that
follow it in orbit.

Earth can return to what it is good at – green and growing things –
while
space can be filled with gray and computing things.  More information at
http://www.server-sky.com


___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Clear WiMax

2009-03-26 Thread Alan Olsen
I will check the support at work, which just happens to be Intel.

On Mar 26, 2009 5:21 PM, "Russell Senior"  wrote:

>>>>> "Alan" == Alan Olsen  writes:

Alan> The WiMax drivers have been added to 2.6.29 according to the
Alan> release notes.  Intel has been pretty aggresive on getting them
Alan> into mainline.

The radios in the Clear hardware aren't Intel radios.


--

Russell Senior, Secretary
russ...@personaltelco.net___
...

http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Clear WiMax

2009-03-26 Thread Alan Olsen
The WiMax drivers have been added to 2.6.29 according to the release notes.
Intel has been pretty aggresive on getting them into mainline.

On Mar 26, 2009 10:11 AM, "Russell Senior" 
wrote:

> "John" == John Jason Jordan  writes:

John> [...] I have had Comcast at home for internet and basic tv channels
John> for several years. I have never had any significant problem with
John> them. [...]

Comcast has an immediate significant problem for me.  That is, lack of
freedom.  Freedom is a major advantage of Free Software, and it is a
major advantage of open access networks.  Comcast is largely free to
do whatever they want with rates and restrictions.  Yes, they are
sometimes fast.  But also, yes, they block useful things at a whim.
Compared to 100 Mbps symmetric fiber you can get in Tokyo for
$11/month, they are FAIL.

John> As for speed, at one time they were throttling torrents, [...]

Clear is not going to be a good choice if you plan to run torrents.
They use a medium (the airwaves) that has a finite capacity, and they
are likely to be aggressive about keeping it relatively free, to enable
them to get the oversell ratios to the point where it's profitable for
them.

John> [...] Recently Clear had a table at PSU with a couple employees,
John> each with a laptop. [...]

They were probably not Clear employees.  Clear has been extremely open
to resellers.  Many, many podunk little computer consultancies, ISPs,
cell phone dealers, etc have been signing up to resell Clear.  You see
"Clear people" everywhere.  Few to none of them are Clear employees,
any more than the cell phone kiosk dudes/dudettes at the mall are
Verizon or AT&T employees.  I don't know what the resale deal is, but
I suspect they get a cut of the subscription fee.

Clear has had a lot of money dumped into it.  Intel alone gave it
something on the order of $1.5 Billion (somewhat amusingly, the devices
that Clear is using on the network are not using Intel radios, but
broadcom and motorola).  Comcast, Sprint and others have also invested
in Clear.  Right now, Clear is aggressively advertising to get
subscribers.

We (Personal Telco) have been told that Clear can be used to backhaul
PTP hotspots.  If that is verified by experience, then they can be
counted as sharing-friendly and we'll identify them as such to
potential node hosts.

John> For me their bandwidth/cost ratio is not impressive. But I am at
John> home 90% of the time, and when I am not at home I am at PSU,
John> Free Geek, Roots, or someplace else where I can get online for
John> free. If I traveled all over the city all day long and needed a
John> constant connection that would be a different matter.

Right now, there are no linux drivers for the Clear USB WiMax device.
So mobile WiMax use for linux (and Mac, I think still) is
problematic.  You can take the Clear Home modem thingie with you, and
it uses a standard 12V power supply and has ethernet ports so drivers
are not an issue with it.  Just a bit bulky, is all.

That is, in summary, what I know about Clear.  Eventually (when device
drivers appear and work reliably), they might be a good choice for
mobile Linux and Mac users.  Right now they might be a good
alternative to Comcast in places you can't get DSL or where DSL
service is crappy.  But ultimately, for fixed-location service, I
think open-access (by which I mean where you have an wide choice of
ISP and Terms of Service) fiber is the way to go.


--
Russell Senior, Secretary
russ...@personaltelco.net

___ PLUG mailing list
PLUG@lists.pdxlinux.org http://lis...
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] Alternate Advanced Topics Location - Verilan??

2009-03-16 Thread Alan
On Fri, 2009-03-13 at 13:56 -0700, Keith Lofstrom wrote:
> Back in January, I got a helpful email from a fellow at Verilan
> who offered their conference room for Advanced Topics.  Of
> course I forgot the name, and now I can't find the email ...
> 
> To our kind benefactor - could you email Alan Olsen, and Tony Rick,
> and myself if the space is still on offer?   Of course, if Alan
> doesn't have a speaker this month, the easiest thing might just
> be to cancel ...

I am currently considering canceling.  A bunch of real life events has
been distracting me from getting a speaker.  The room change is not
helping.

Anyone have suggestions?

___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] March AT location?

2009-03-13 Thread Alan Olsen
I do not have a speaker for the next AT. (Life and work have eaten my
brain.)

Not certain what people want to do. Try for fourth Wednesday? Heavy
drinking? Something else?

On Mar 12, 2009 4:16 PM, "Tony Rick"  wrote:

On Thu, Mar 12, 2009 at 8:24 AM, Tony Rick  wrote: >
Remember, Roots is unavaila...
Tue 3/17 and Thu 3/19 are out.  Tue is St Patty's day, 'nuff said.  We got
offered
Monday, and I guess the following Wednesday is still on the table.  I'm
gonna need
some guidance here.  Alan, anything in the works for the next AT?

- tony ___ PLUG mailing list
PLUG@lists.pdxlinux.org ht...
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug


Re: [PLUG] AT at Roots followup and schedule glitch

2009-03-05 Thread Alan Olsen
Is another night available? Tuesday or Thursday?

On Mar 4, 2009 11:58 AM, "Tony Rick"  wrote:

Roots is going to have their anniversary party in the meeting room on 3/18,
so the AT meeting can't be there then.  Reschedule or relocate?  Bowling
Alley, anyone?

I asked Sarah (Roots Event Coordinator) to give me some feedback
on the first AT meeting.  She replied that the impression we left was
good.  Here's her email:

> Hi Tony – I heard it was great and very low key – thank you. The
bartenders
> really liked everyone and said it would be a no problem event.   I was
just
> told that this month’s Wednesday 3/18 Roots will be using the space for
our
> Anniversary Party.  I am sorry that this came up on short notice I really
> did not foresee this one.  Normally the party is held over at the main
part
> of the bar but they want to do something different this year.  If you
would
> like to use the space the following weeks Wednesday – let me know
>
> Sincerely,
>
> Sarah
>
- tony
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug
___
PLUG mailing list
PLUG@lists.pdxlinux.org
http://lists.pdxlinux.org/mailman/listinfo/plug