Topics: I think Travis has made some excellent suggestions.  I especially
like 3) and 4).

On Feb 2, 2010 1:00 PM, <[email protected]> wrote:

Send Fwlug mailing list submissions to
       [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
       http://fortwaynelug.org/mailman/listinfo/fwlug_fortwaynelug.org
or, via email, send a message with subject or body 'help' to
       [email protected]

You can reach the person managing the list at
       [email protected]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Fwlug digest..."


Today's Topics:

  1. Re: LUG Social meeting & call for presentations (Travis Paul)
  2. Embedded Linux help (Jason Denniston)
  3. Re: Embedded Linux help (Vern Ceder)
  4. Re: LUG Social meeting & call for presentations (Andrew Latham)


----------------------------------------------------------------------

Message: 1
Date: Mon, 1 Feb 2010 16:36:35 -0800
From: Travis Paul <[email protected]>
Subject: Re: [fwlug] LUG Social meeting & call for presentations
To: Fort Wayne Linux Users Group <[email protected]>
Message-ID:
       <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1

I don't feel that I have anything of value to present but there are a
few things I would always like to know more about.

* Compiling custom kerels and what modifications you may want to make.

* Various filesystems, their advantages, and how they compare to each
other in different situations or environments.

* Linux in mobile devices such as netbooks and smartphones, more info
about how linux is implemented in Chrome , Android, and Moblin
devices.

* Any BSD or Open Solaris topic.

* Alternatives to Apache

* Beowulf and or clusters computing

On Mon, Feb 1, 2010 at 5:32 AM, Vern Ceder <[email protected]>
wrote:
> Hi everyone,
>
> Happy February! (Or as a former colleague used to sunnier weather liked to
> say, "welcome to the dead zone" ;) )
>
> In any case, this Thursday will be the first Thursday of the month, so
> according to our constitution we have to meet at Mad Anthony's (Broadway
> ?and Taylor) and consume fermented beverages. Hope to see you there at
7:00
> pm, Thursday, Feb 4.
>
> In addition, we are looking for a presentation for our meeting on February
> 18 (and for other meetings, for that matter). If you have any topic you
> would be willing to present to the club, please let us know. And if you
have
> any topic that you would like to see presented, even if you don't feel
able
> to present it, throw that into the ring as well. Particularly if you
haven't
> presented before, I'd like to encourage you to put yourself out there a
> little bit and give it a try. Your fellow LUG members will appreciate it.
>
> Cheers,
> Vern
>
> --
> This time for sure!
> ? -Bullwinkle J. Moose
> -----------------------------
> Vern Ceder, Director of Technology
> Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804
> [email protected]; 260-436-0746; FAX: 260-436-5137
>
> The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW
>
> _______________________________________________
> Fwlug mailing list
> [email protected]
> http://fortwaynelug.org/mailman/listinfo/fwlug_fortwaynelug.org
>



------------------------------

Message: 2
Date: Mon, 1 Feb 2010 22:59:13 -0500
From: Jason Denniston <[email protected]>
Subject: [fwlug] Embedded Linux help
To: [email protected]
Message-ID:
       <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1

I'm working on a project that I read about over at
http://mightyohm.com/blog/2008/10/building-a-wifi-radio-part-1-introduction/

Basically the project is taking a router with a usb port and turning
it into a wifi radio with a usb sound card.  I'm sure there's a lot of
project specific details, but I was wondering if someone could help me
at least understand what my error is.

The project uses OpenWrt.  The issue I'm having is regarding opkg,
which is a package manager used to download and install OpenWrt
packages.  The command the instructions tell me to run is: "opkg
install kmod-usb-audio kmod-usb-ohci"  when i do that, I get this
error:
Collected errors:
* pkg_hash_fetch_best_installation_candidate: Packages for
kmod-usb-audio found, but incompatible with the architectures
configured
* opkg_install_cmd: Cannot install package kmod-usb-audio.
* pkg_hash_fetch_best_installation_candidate: Packages for
kmod-usb-ohci found, but incompatible with the architectures
configured
* opkg_install_cmd: Cannot install package kmod-usb-ohci.

Can anyone decipher what my problem is?
I've posted this question in the forum's related to this project
without any reply.

Thanks for any help you might be able to provide.

Jason



------------------------------

Message: 3
Date: Mon, 01 Feb 2010 23:40:01 -0500
From: Vern Ceder <[email protected]>
Subject: Re: [fwlug] Embedded Linux help
To: Fort Wayne Linux Users Group <[email protected]>
Message-ID: <[email protected]>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hi Jason,

Sounds like a cool project!

Jason Denniston wrote:
> I'm working on a project that I read about over at
>
http://mightyohm.com/blog/2008/10/building-a-wifi-radio-part-1-introduction/
>
> Basically the project is taking a router with a usb port and turning
> it into a wifi radio with a usb sound card.  I'm sure there's a lot of
> project specific details, but I was wondering if someone could help me
> at least understand what my error is.
>
> The project uses OpenWrt.  The issue I'm having is regarding opkg,
> which is a package manager used to download and install OpenWrt
> packages.  The command the instructions tell me to run is: "opkg
> install kmod-usb-audio kmod-usb-ohci"  when i do that, I get this
> error:

Yeah, that command is to install kernel modules for the usb interface
and the usb audio...

> Collected errors:
> * pkg_hash_fetch_best_installation_candidate: Packages for
> kmod-usb-audio found, but incompatible with the architectures
> configured

The stopper would seem to be right here - the other errors are just
repeats. It's saying that the platform those packages are compiled for
is not a match with the platform you are running on...

If you are using the ASUS WL-520GU, it appears to have a MIPS processor.
Are you sure you have the right repositories configured for that
hardware? You'll need to set the package source in /etc/opkg.conf as
they say and run opkg update. Failing that, you might try grabbing the
zip file of all the packages and installing manually, probably with
something like opkg -i <package_file>.

If you're not using the exact same hardware, you'll need to get packages
that match the hardware...

Hope this helps,

Cheers,
Vern


> * opkg_install_cmd: Cannot install package kmod-usb-audio.
> * pkg_hash_fetch_best_installation_candidate: Packages for
> kmod-usb-ohci found, but incompatible with the architectures
> configured
> * opkg_install_cmd: Cannot install package kmod-usb-ohci.
>
> Can anyone decipher what my problem is?
> I've posted this question in the forum's related to this project
> without any reply.
>
> Thanks for any help you might be able to provide.
>
> Jason
>
> _______________________________________________
> Fwlug mailing list
> [email protected]
> http://fortwaynelug.org/mailman/listinfo/fwlug_fortwaynelug.org

--
This time for sure!
   -Bullwinkle J. Moose
-----------------------------
Vern Ceder, Director of Technology
Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804
[email protected]; 260-436-0746; FAX: 260-436-5137

The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW



------------------------------

Message: 4
Date: Tue, 2 Feb 2010 09:57:12 -0300
From: Andrew Latham <[email protected]>
Subject: Re: [fwlug] LUG Social meeting & call for presentations
To: Fort Wayne Linux Users Group <[email protected]>,      Joe Landman
       <[email protected]>
Message-ID:
       <[email protected]>
Content-Type: text/plain; charset=UTF-8

Vern...  I have always found the Linux From Scratch (LFS) project as a
great way to answer questions like these.

As far as Beowulf and Clusters we would have to ask Joe to come down
from Canton Michigan some night...  hint, hint, hint...


~
Andrew "lathama" Latham
[email protected]

* Learn more about OSS http://en.wikipedia.org/wiki/Open-source_software
* Learn more about Linux http://en.wikipedia.org/wiki/Linux
* Learn more about Tux http://en.wikipedia.org/wiki/Tux



On Mon, Feb 1, 2010 at 9:36 PM, Travis Paul <[email protected]> wrote:
> I don't feel that I have anything of value to present but there are a
> few things I would always like to know more about.
>
> * Compiling custom kerels and what modifications you may want to make.
>
> * Various filesystems, their advantages, and how they compare to each
> other in different situations or environments.
>
> * Linux in mobile devices such as netbooks and smartphones, more info
> about how linux is implemented in Chrome , Android, and Moblin
> devices.
>
> * Any BSD or Open Solaris topic.
>
> * Alternatives to Apache
>
> * Beowulf and or clusters computing
>
> On Mon, Feb 1, 2010 at 5:32 AM, Vern Ceder <[email protected]>
wrote:
>> Hi everyone,
>>
>> Happy February! (Or as a former colleague used to sunnier weather liked
to
>> say, "welcome to the dead zone" ;) )
>>
>> In any case, this Thursday will be the first Thursday of the month, so
>> according to our constitution we have to meet at Mad Anthony's (Broadway
>> ?and Taylor) and consume fermented beverages. Hope to see you there at
7:00
>> pm, Thursday, Feb 4.
>>
>> In addition, we are looking for a presentation for our meeting on
February
>> 18 (and for other meetings, for that matter). If you have any topic you
>> would be willing to present to the club, please let us know. And if you
have
>> any topic that you would like to see presented, even if you don't feel
able
>> to present it, throw that into the ring as well. Particularly if you
haven't
>> presented before, I'd like to encourage you to put yourself out there a
>> little bit and give it a try. Your fellow LUG members will appreciate it.
>>
>> Cheers,
>> Vern
>>
>> --
>> This time for sure!
>> ? -Bullwinkle J. Moose
>> -----------------------------
>> Vern Ceder, Director of Technology
>> Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804
>> [email protected]; 260-436-0746; FAX: 260-436-5137
>>
>> The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW
>>
>> _______________________________________________
>> Fwlug mailing list
>> [email protected]
>> http://fortwaynelug.org/mailman/listinfo/fwlug_fortwaynelug.org
>>
>
> _______________________________________________
> Fwlug mailing list
> [email protected]
> http://fortwaynelug.org/mailman/listinfo/fwlug_fortwaynelug.org
>



------------------------------

_______________________________________________
Fwlug mailing list
[email protected]
http://fortwaynelug.org/mailman/listinfo/fwlug_fortwaynelug.org


End of Fwlug Digest, Vol 50, Issue 2
************************************
_______________________________________________
Fwlug mailing list
[email protected]
http://fortwaynelug.org/mailman/listinfo/fwlug_fortwaynelug.org

Reply via email to