Monday, October 29, 2012

Re: [BLUG] RAID-like redundancy for a linux?

Linux has had software RAID for years and years. There are some idiosyncrasies, but overall it works real well. (A Google search of "software RAID Linux" should cover all the needed info.)

Due to the nature of the RAID process, the usable space is the lowest common size of the drives. (You don't need to worry about differing disk geometries these days.) If the space difference is large, you can still use the extra space as non-RAID storage.

You don't need weird/custom kernels, and the easiest way to set this up has been as an option in the installation process -- it has been available for the past decade or so. (Ubuntu Server, like Debian before it, has this as an option. I am less confident about some of the GUI install processes.)

In Linux software RAID creates a block device. You can pretty much put any filesystem you want on it.

Cheers,
Steven Black

On Oct 29, 2012 7:46 PM, "Ben Shewmaker" <ben@shewbox.org> wrote:
I have a home server (sporting a dual core AMD E-350 and 4 gigs of
ram) running Ubuntu Server 12.04 and have been really happy with it
for the last 6 months.  The one area where I am not happy is my lack
of data redundancy.  I use this as my NAS as well, using offsite
backup for my personal and irreplaceable files (I use SpiderOak) but
it would still be nice to have some redundancy locally in case of a
single drive failure.  I'm wondering if anyone could recommend any
software solutions to doing some sort of RAID-like redundancy within
Ubuntu server?  I've been reading about ZFS, which seems interesting,
but I also see that it cannot be included in Linux because it is
incompatible with the GPL.  Is ZFS worth considering?  Are there other
solutions like ZFS out there that I can use?  That is, is there some
software solution that allows creating a pool of disks that will take
care of data redundancy and be able to recover from a drive failure?
Also, does using different capacity disks make this a much harder
challenge?

Thanks!

Ben
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] RAID-like redundancy for a linux?

If you are interested in RAID-5/6, Ben, you should definitely look at a hardware RAID card to do this. RAID-5/6 is not safe to do in software alone, unlike RAID 1, 0, or 10 (although I would not recommend RAID 0).

I love ZFS, but I'm unsure of its future under Oracle's leadership. Ironically, it seems like if you want ZFS, short of shelling out the dough for Solaris, your best bet is FreeBSD/FreeNAS where it seems a lot of people have been using it with no reported difficulties. There is also OpenIndiana, but I'm not convinced that its backing and support is all that great to really assure me that the future of some sort of non-commercial version of ZFS running in a Solaris based OS is in good hands. With many players interested in and working on BTRFS, it could also be that ZFS is eventually phased out for BTRFS  once it is deemed production ready.

However, since you are talking about Linux, all of this FreeBSD/Solaris stuff is moot. There is no great way to get ZFS in Linux now.


I would look at software RAID 1 or 10 in Linux as has been said, RAID-5/6 if you don't mind buying a RAID card (which includes a battery to perform the last of the writes in the case of a power failure, which is what makes it "safe").

How many drive bays do you have to work with, Ben? Is performance an issue here, or are you just looking for basic storage and reliability?

October 29, 2012 10:40 PM

For the last two years my home media server has run Mandriva Linux
(yes, I know, I'm the last person still using Mandriva :-) ). I have
it set up currently as a RAID-6 system with 8 2TB drives along with 2
more hot spares, all formatted ext4. The one time a drive failed,
about 1.5 years ago, it automatically shut down the bad drive, pulled
in a hot spare, and rebuilt the missing drive, all with no attention
from me.

If you have a lot of data, I always recommend RAID-6 over RAID-5. With
2TB drives, it will take 8 to 10 hours to rebuild from a drive
failure. With RAID-5, that's 8 to 10 hours where you have no
redundancy to fall back on. And if you don't have hot spares, RAID-5
leaves you with no redundancy until you happen to notice there is a
problem. I don't like either of those scenarios.

I honestly don't know if it would work with differing drives sizes or
not. It was easier, in my opinion, to just stick with the same size of
drives right out of the gate.

I don't know of any reason you couldn't do the same with Ubuntu.

David
davmoo@gmail.com
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug
October 29, 2012 9:12 PM
amahi has an interesting option called grey-hole.
it uses multiple drives and writes data to all drives, but each drive
is readable outside of this pool



October 29, 2012 7:54 PM
* Ben Shewmaker <ben@shewbox.org> wrote:  
solutions like ZFS out there that I can use?  That is, is there some  software solution that allows creating a pool of disks that will take  care of data redundancy and be able to recover from a drive failure?  
  https://raid.wiki.kernel.org/index.php/Linux_Raid    
Also, does using different capacity disks make this a much harder  challenge?  
  Identical drives are best, but you can use drives of different size.    
October 29, 2012 7:46 PM
I have a home server (sporting a dual core AMD E-350 and 4 gigs of
ram) running Ubuntu Server 12.04 and have been really happy with it
for the last 6 months. The one area where I am not happy is my lack
of data redundancy. I use this as my NAS as well, using offsite
backup for my personal and irreplaceable files (I use SpiderOak) but
it would still be nice to have some redundancy locally in case of a
single drive failure. I'm wondering if anyone could recommend any
software solutions to doing some sort of RAID-like redundancy within
Ubuntu server? I've been reading about ZFS, which seems interesting,
but I also see that it cannot be included in Linux because it is
incompatible with the GPL. Is ZFS worth considering? Are there other
solutions like ZFS out there that I can use? That is, is there some
software solution that allows creating a pool of disks that will take
care of data redundancy and be able to recover from a drive failure?
Also, does using different capacity disks make this a much harder
challenge?

Thanks!

Ben
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug



--
Joe Auty, NetMusician
NetMusician helps musicians, bands and artists create beautiful, professional, custom designed, career-essential websites that are easy to maintain and to integrate with popular social networks.
www.netmusician.org
joe@netmusician.org

Re: [BLUG] RAID-like redundancy for a linux?

Ben Shewmaker <ben@shewbox.org> wrote:
>>> solutions like ZFS out there that I can use? That is, is there some
>>> software solution that allows creating a pool of disks that will take
>>> care of data redundancy and be able to recover from a drive failure?

For the last two years my home media server has run Mandriva Linux
(yes, I know, I'm the last person still using Mandriva :-) ). I have
it set up currently as a RAID-6 system with 8 2TB drives along with 2
more hot spares, all formatted ext4. The one time a drive failed,
about 1.5 years ago, it automatically shut down the bad drive, pulled
in a hot spare, and rebuilt the missing drive, all with no attention
from me.

If you have a lot of data, I always recommend RAID-6 over RAID-5. With
2TB drives, it will take 8 to 10 hours to rebuild from a drive
failure. With RAID-5, that's 8 to 10 hours where you have no
redundancy to fall back on. And if you don't have hot spares, RAID-5
leaves you with no redundancy until you happen to notice there is a
problem. I don't like either of those scenarios.

I honestly don't know if it would work with differing drives sizes or
not. It was easier, in my opinion, to just stick with the same size of
drives right out of the gate.

I don't know of any reason you couldn't do the same with Ubuntu.

David
davmoo@gmail.com
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] RAID-like redundancy for a linux?

amahi has an interesting option called grey-hole.
it uses multiple drives and writes data to all drives, but each drive
is readable outside of this pool

On Mon, Oct 29, 2012 at 7:54 PM, Jeremy L. Gaddis <jlgaddis@gnu.org> wrote:
> * Ben Shewmaker <ben@shewbox.org> wrote:
>> solutions like ZFS out there that I can use? That is, is there some
>> software solution that allows creating a pool of disks that will take
>> care of data redundancy and be able to recover from a drive failure?
>
> https://raid.wiki.kernel.org/index.php/Linux_Raid
>
>> Also, does using different capacity disks make this a much harder
>> challenge?
>
> Identical drives are best, but you can use drives of different size.
>
> --
> Jeremy Gaddis e: jlgaddis@gnu.org
> Network Engineer m: +1.812.865.0581
> PGP: 0x95E2C8FE w: evilrouters.net
>
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug



--
Mettle not in the Ways of dragons for thou art crunchy and taste good
with ketchup
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] RAID-like redundancy for a linux?

* Ben Shewmaker <ben@shewbox.org> wrote:
> solutions like ZFS out there that I can use? That is, is there some
> software solution that allows creating a pool of disks that will take
> care of data redundancy and be able to recover from a drive failure?

https://raid.wiki.kernel.org/index.php/Linux_Raid

> Also, does using different capacity disks make this a much harder
> challenge?

Identical drives are best, but you can use drives of different size.

--
Jeremy Gaddis e: jlgaddis@gnu.org
Network Engineer m: +1.812.865.0581
PGP: 0x95E2C8FE w: evilrouters.net

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] RAID-like redundancy for a linux?

I have a home server (sporting a dual core AMD E-350 and 4 gigs of
ram) running Ubuntu Server 12.04 and have been really happy with it
for the last 6 months. The one area where I am not happy is my lack
of data redundancy. I use this as my NAS as well, using offsite
backup for my personal and irreplaceable files (I use SpiderOak) but
it would still be nice to have some redundancy locally in case of a
single drive failure. I'm wondering if anyone could recommend any
software solutions to doing some sort of RAID-like redundancy within
Ubuntu server? I've been reading about ZFS, which seems interesting,
but I also see that it cannot be included in Linux because it is
incompatible with the GPL. Is ZFS worth considering? Are there other
solutions like ZFS out there that I can use? That is, is there some
software solution that allows creating a pool of disks that will take
care of data redundancy and be able to recover from a drive failure?
Also, does using different capacity disks make this a much harder
challenge?

Thanks!

Ben
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Wednesday, October 24, 2012

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

http://en.wikipedia.org/wiki/The_Final_Cut_%282004_film%29

On Wed, Oct 24, 2012 at 04:54:35PM -0400, Mark Warner wrote:
>
>http://en.wikipedia.org/wiki/Person_of_Interest_%28TV_series%29
>
>
>Mark Krenz wrote:
>>
>> IMHO, we've already gotten too far and this project is about sticking
>> a jackhammer in the opened crack of privacy and turning it on. This is
>> going too far. It doesn't matter if its encrypted and the photos are
>> marked as private by default. Something that automatically takes 4000
>> pictures a day of thousands of people is going to get abused. With full
>> face recognition just around the corner, even if these specific devices
>> aim to protect your privacy, there will soon be competitive devices out
>> there for cheaper that don't.
>>
>> The problem isn't really about the privacy of the wearer, is it?
>> Because its not taking a picture of them, its taking a picture of
>> everyone else.
>>
>> *steps down from soapbox*
>>
>> On Wed, Oct 24, 2012 at 06:17:18PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
>>> And it was only a matter of time...
>>>
>>> http://www.kickstarter.com/projects/martinkallstrom/memoto-lifelogging-camera
>>>
>>> On Wed, Apr 4, 2012 at 9:30 AM, Mark Krenz <mark@slugbug.org> wrote:
>>>> Ugh. See, there is always something. Some new bloated format or app
>>>> that people need a 1TB drive for.
>>>>
>>>> On Wed, Apr 04, 2012 at 01:02:01PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
>>>>> Yes, but in 3D? And as seen from the perspective of everyone who's
>>>>> ever met them over the course of their lives?
>>>>> :)
>>>>>
>>>>>> http://suso.suso.org/xulu/A_Yottabyte_of_storage
>>>>>>
>>>>>> 110YB would approximately be enough to record the entire lifetime of
>>>>>> every person who has ever lived in HD.
>>>>> _______________________________________________
>>>>> BLUG mailing list
>>>>> BLUG@linuxfan.com
>>>>> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>>>>>
>>>> --
>>>> Mark Krenz
>>>> Bloomington Linux Users Group
>>>> http://www.bloomingtonlinux.org/
>>>>
>>>> Sent from Mutt using Linux
>>>>
>>>> _______________________________________________
>>>> BLUG mailing list
>>>> BLUG@linuxfan.com
>>>> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>>> _______________________________________________
>>> BLUG mailing list
>>> BLUG@linuxfan.com
>>> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>>>
>>
>
>--
>Mark Warner
>_______________________________________________
>BLUG mailing list
>BLUG@linuxfan.com
>http://mailman.cs.indiana.edu/mailman/listinfo/blug
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

http://en.wikipedia.org/wiki/Person_of_Interest_%28TV_series%29


Mark Krenz wrote:
>
> IMHO, we've already gotten too far and this project is about sticking
> a jackhammer in the opened crack of privacy and turning it on. This is
> going too far. It doesn't matter if its encrypted and the photos are
> marked as private by default. Something that automatically takes 4000
> pictures a day of thousands of people is going to get abused. With full
> face recognition just around the corner, even if these specific devices
> aim to protect your privacy, there will soon be competitive devices out
> there for cheaper that don't.
>
> The problem isn't really about the privacy of the wearer, is it?
> Because its not taking a picture of them, its taking a picture of
> everyone else.
>
> *steps down from soapbox*
>
> On Wed, Oct 24, 2012 at 06:17:18PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
>> And it was only a matter of time...
>>
>> http://www.kickstarter.com/projects/martinkallstrom/memoto-lifelogging-camera
>>
>> On Wed, Apr 4, 2012 at 9:30 AM, Mark Krenz <mark@slugbug.org> wrote:
>>> Ugh. See, there is always something. Some new bloated format or app
>>> that people need a 1TB drive for.
>>>
>>> On Wed, Apr 04, 2012 at 01:02:01PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
>>>> Yes, but in 3D? And as seen from the perspective of everyone who's
>>>> ever met them over the course of their lives?
>>>> :)
>>>>
>>>>> http://suso.suso.org/xulu/A_Yottabyte_of_storage
>>>>>
>>>>> 110YB would approximately be enough to record the entire lifetime of
>>>>> every person who has ever lived in HD.
>>>> _______________________________________________
>>>> BLUG mailing list
>>>> BLUG@linuxfan.com
>>>> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>>>>
>>> --
>>> Mark Krenz
>>> Bloomington Linux Users Group
>>> http://www.bloomingtonlinux.org/
>>>
>>> Sent from Mutt using Linux
>>>
>>> _______________________________________________
>>> BLUG mailing list
>>> BLUG@linuxfan.com
>>> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>> _______________________________________________
>> BLUG mailing list
>> BLUG@linuxfan.com
>> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>>
>

--
Mark Warner
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

IMHO, we've already gotten too far and this project is about sticking
a jackhammer in the opened crack of privacy and turning it on. This is
going too far. It doesn't matter if its encrypted and the photos are
marked as private by default. Something that automatically takes 4000
pictures a day of thousands of people is going to get abused. With full
face recognition just around the corner, even if these specific devices
aim to protect your privacy, there will soon be competitive devices out
there for cheaper that don't.

The problem isn't really about the privacy of the wearer, is it?
Because its not taking a picture of them, its taking a picture of
everyone else.

*steps down from soapbox*

On Wed, Oct 24, 2012 at 06:17:18PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
> And it was only a matter of time...
>
> http://www.kickstarter.com/projects/martinkallstrom/memoto-lifelogging-camera
>
> On Wed, Apr 4, 2012 at 9:30 AM, Mark Krenz <mark@slugbug.org> wrote:
> >
> > Ugh. See, there is always something. Some new bloated format or app
> > that people need a 1TB drive for.
> >
> > On Wed, Apr 04, 2012 at 01:02:01PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
> >> Yes, but in 3D? And as seen from the perspective of everyone who's
> >> ever met them over the course of their lives?
> >> :)
> >>
> >> > http://suso.suso.org/xulu/A_Yottabyte_of_storage
> >> >
> >> > 110YB would approximately be enough to record the entire lifetime of
> >> > every person who has ever lived in HD.
> >>
> >> _______________________________________________
> >> BLUG mailing list
> >> BLUG@linuxfan.com
> >> http://mailman.cs.indiana.edu/mailman/listinfo/blug
> >>
> >
> > --
> > Mark Krenz
> > Bloomington Linux Users Group
> > http://www.bloomingtonlinux.org/
> >
> > Sent from Mutt using Linux
> >
> > _______________________________________________
> > BLUG mailing list
> > BLUG@linuxfan.com
> > http://mailman.cs.indiana.edu/mailman/listinfo/blug
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/

Sent from Mutt using Linux
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

And it was only a matter of time...

http://www.kickstarter.com/projects/martinkallstrom/memoto-lifelogging-camera

On Wed, Apr 4, 2012 at 9:30 AM, Mark Krenz <mark@slugbug.org> wrote:
>
> Ugh. See, there is always something. Some new bloated format or app
> that people need a 1TB drive for.
>
> On Wed, Apr 04, 2012 at 01:02:01PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
>> Yes, but in 3D? And as seen from the perspective of everyone who's
>> ever met them over the course of their lives?
>> :)
>>
>> > http://suso.suso.org/xulu/A_Yottabyte_of_storage
>> >
>> > 110YB would approximately be enough to record the entire lifetime of
>> > every person who has ever lived in HD.
>>
>> _______________________________________________
>> BLUG mailing list
>> BLUG@linuxfan.com
>> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>>
>
> --
> Mark Krenz
> Bloomington Linux Users Group
> http://www.bloomingtonlinux.org/
>
> Sent from Mutt using Linux
>
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] OT: Need a ISE/PATA laptop drive

If anybody has an old 2.5" IDE/PATA laptop drive gathering dust, I could
use one to resurrect an old laptop. Size not important. 40G+ would be fine.

--
Mark Warner
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Sunday, August 26, 2012

[BLUG] Technology Specialist Position Opening - Canterbury School - Fort Wayne, IN

Technology Specialist Position Opening - Canterbury School - Fort Wayne, IN

Canterbury School is an independent, coeducational day school offering
a college preparatory education to students in Early Childhood through
Grade 12. The school seeks to enroll students of diverse talents and
backgrounds. Canterbury promotes the total development of each child
in his or her intellectual, physical, social and spiritual growth.

Technology department members help Canterbury School meet its
educational mission by taking care of all aspects of its technology
usage. We have an immediate opening for a full time technology
specialist.

Important aspects of the technology department include:

* System Administration
* Network Administration
* Tech Support

Responsibilities include configuring, maintaining and/or supporting:

* A network (copper, fiber, radio) that spans several buildings on two campuses
* Windows and Linux servers, both physical and virtualized
* An Active Directory domain, with Windows file and print servers.
* Several web-based, database driven systems that help run the school.
* Windows and Mac desktops and laptops, a little Linux sprinkled here and there.
* Apple and Android tablets
* Video projectors and interactive whiteboards in every classroom
* VoIP telephone system
* Users' personal technology items (smart phones, etc.)

Successful candidates should possess the following skills and expertise:

* Windows Server 2008 R2
* Windows security
* Active Directory configuration and Group Policy
* Database Administration using MySQL and MSSQL servers

If you are interested in this position, please send a resume to
sruiz@canterburyschool.org as soon as possible.

Thanks for your interest, and I hope this finds you having a beautiful day!

Simón Ruiz

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Sunday, August 12, 2012

[BLUG] OT -- need small LCD monitor(s)

Could use one or more LCD monitors for server use in my small workplace.
Small VGA/D-sub is fine. If you've got anything taking up space and
collecting dust I'll put it to good use. Can pick up most any time.

mhwarner AT gmail
360-7252

--
Mark Warner
MEPIS Linux
Registered Linux User #415318



_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Tuesday, August 7, 2012

[BLUG] Ohio LinuxFest 2012 Registration is Open for Business

It's time to make your plans to attend the best Ohio LinuxFest yet. We
are celebrating our tenth year with a great lineup of speakers, great
technical training at the Ohio LinuxFest Institute, a new training track
for folks just starting with Linux, parties, BOF sessions, vendor
exhibits, and all the things you expect from Ohio LinuxFest.

This year we are trying something a little different with our
registration. The Enthusiast registration is still free, the training
registrations are the same. But in place of the Supporter registration
we have created an a la carte menu of supporter options so you can
purchase the items you you are interested in. On the Registration page
you will see a link for _Supporter Add-Ons_ which will let you purchase
a ticket for the Saturday party, a T-shirt, register for the Diversity
in Open Source workshop, or make a donation to support OLF. And we may
add items in the future, so check back later for other items.

To register for Ohio LinuxFest 2012, please go to
http://ohiolinux.org/register
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Wednesday, July 25, 2012

Re: [BLUG] USB Sata Dock

I have a sata to usb setup i use for my bench you can borrow if you still need one. It isn't a dock but it does the same job.
just send me note if still need and ill give you number you can call me at.


jim marple

> Date: Thu, 19 Jul 2012 16:30:18 -0400
> From: lord.drachenblut@gmail.com
> To: blug@cs.indiana.edu
> Subject: [BLUG] USB Sata Dock
>
> wanted to see if anyone had a usb sata dock I could borrow for a couple hours?
>
>
> Cheers
>
> Lord D
>
> --
> Mettle not in the Ways of dragons for thou art crunchy and taste good
> with ketchup
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug

Thursday, July 19, 2012

Re: [BLUG] USB Sata Dock

You've got mail.

Lord Drachenblut wrote:
> wanted to see if anyone had a usb sata dock I could borrow for a couple hours?
>
>
> Cheers
>
> Lord D
>


--
Mark Warner
MEPIS Linux
Registered Linux User #415318



_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] USB Sata Dock

wanted to see if anyone had a usb sata dock I could borrow for a couple hours?


Cheers

Lord D

--
Mettle not in the Ways of dragons for thou art crunchy and taste good
with ketchup
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Thursday, July 12, 2012

[BLUG] [SPAM:### 83%] Re:

I thank and recommend the site http://digitaulis.com/partner.foxnews.php?ytufriend_id=59or47
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Friday, June 1, 2012

[BLUG] Local VOIP + AWS platform developer speaks @ CINLUG June 6, 2012

Anderson, IN based Fathom Voice was started by 2 Purdue grads in 2007.
They have developed an application platform that runs on Amazon Web
Services that includes VOIP, CRM, Learning Management and CMS.

If you visit https://fathomrb.com you can sign up for a FREE CRM account
and give one of their apps a try. Bring some questions!

At the June 6, 2012 meeting of the Central Indiana Linux Users Group,
the development & executive teams will demo their VOIP solution, talk
about the technical challenges of developing a product on AWS and
discuss how they - the 'David' in this story - plan to compete in a
telecom space that includes AT&T, Windstream, Google, Time Warner and
multiple other Goliaths! Visit http://www.cinlug.org/meetings/2012/June
for meeting details.

For more information, contact Austin Evans, Director of Business
Development at austin@fathomvoice.com
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Sunday, May 20, 2012

Re: [BLUG] Need a junk AM2 motherboard

I've got a junk am3 mobo you can have. The heat sink mount should be identical.

gimme a ring 812 391 0010

--- On Sun, 5/20/12, Mark Warner <mhwarner@gmail.com> wrote:

> From: Mark Warner <mhwarner@gmail.com>
> Subject: [BLUG] Need a junk AM2 motherboard
> To: "BLUG" <blug@cs.indiana.edu>
> Date: Sunday, May 20, 2012, 3:16 PM
>
> Anyone have a junk AMD2 motherboard laying around? I
> actually only need
> the plastic cooler bracket from one. The yellow part as
> shown here:
>
> http://www.amazon.com/Gino-Retention-Bracket-Yellow-Socket/dp/B007PPEUPE
>
> I built this machine for a fiend three years ago and it just
> came back
> to me today. I never have seen this before. First time for
> everything.
>
> --
> Mark Warner
> MEPIS Linux
> Registered Linux User #415318
>
>
>
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] Need a junk AM2 motherboard

Anyone have a junk AMD2 motherboard laying around? I actually only need
the plastic cooler bracket from one. The yellow part as shown here:

http://www.amazon.com/Gino-Retention-Bracket-Yellow-Socket/dp/B007PPEUPE

I built this machine for a fiend three years ago and it just came back
to me today. I never have seen this before. First time for everything.

--
Mark Warner
MEPIS Linux
Registered Linux User #415318



_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Wednesday, April 4, 2012

[BLUG] The 2012 Indiana LinuxFest is next weekend!

Join us for the Reign of Freedom - the 2nd Annual Indiana LinuxFest is
April 13-15, 2012! The Wyndham Indianapolis West Hotel will once again
be the host of the event, which will be the weekend of April 13-15,
2012.

The Indiana LinuxFest is about community, information, and friends, and
strives to bring the free and open-source software community together
for more than just information gathering. It will be a place for people
to network, communicate, and have a good time. For more information,
visit www.indianalinux.org

Signup for a supporter pass or higher for a chance to win a laptop!
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

Try giving the latest versions of freenas a shot.  It could fit the bill

On Apr 4, 2012 9:30 AM, "Mark Krenz" <mark@slugbug.org> wrote:

 Ugh. See, there is always something. Some new bloated format or app
that people need a 1TB drive for.

On Wed, Apr 04, 2012 at 01:02:01PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
> Yes, but in 3D?  And as seen from the perspective of everyone who's
> ever met them over the course of their lives?
> :)
>
> >  http://suso.suso.org/xulu/A_Yottabyte_of_storage
> >
> >  110YB would approximately be enough to record the entire lifetime of
> > every person who has ever lived in HD.
>
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/

Sent from Mutt using Linux

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

Ugh. See, there is always something. Some new bloated format or app
that people need a 1TB drive for.

On Wed, Apr 04, 2012 at 01:02:01PM GMT, Ned Baugh [ned.baugh@gmail.com] said the following:
> Yes, but in 3D? And as seen from the perspective of everyone who's
> ever met them over the course of their lives?
> :)
>
> >  http://suso.suso.org/xulu/A_Yottabyte_of_storage
> >
> >  110YB would approximately be enough to record the entire lifetime of
> > every person who has ever lived in HD.
>
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/

Sent from Mutt using Linux

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

Yes, but in 3D? And as seen from the perspective of everyone who's
ever met them over the course of their lives?
:)

>  http://suso.suso.org/xulu/A_Yottabyte_of_storage
>
>  110YB would approximately be enough to record the entire lifetime of
> every person who has ever lived in HD.

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Saturday, March 17, 2012

Re: [BLUG] NAS (for Ubuntu 8.4 and 10.4) recommendation?

Thanks, everybody, for the reply. I talked to the owner and
he actually was thinking abut NAS instead of SAN. ;-) So I
have changed my subject line. Any recommendation for small
scale NAS?

Best,
Shing-Shong

On 03/16/2012 11:30 PM, Mark Krenz wrote:
> On Fri, Mar 16, 2012 at 02:59:12PM GMT, Paul Purdom [pwp@cs.indiana.edu] said the following:
>> I just had to remark that 10 TB being small seems funny to me, given the
>> amount of memory I use to get by with.
>
> Yes, however for a SAN that is small. Where I work we have SANS near
> 100TB. And we're on the low end compared to some very big companies.
> There really is a lot of waste though. People don't know how to properly
> manage their data.
>
> I once calculated that at the rate we're going, by the time I'm 85
> years old (2061). We'll be in the yottabyte of storage era. Of course
> there are all kinds of obstacles to get there, but so where there in
> getting to GBs and TBs.
>
> http://suso.suso.org/xulu/A_Yottabyte_of_storage
>
> 110YB would approximately be enough to record the entire lifetime of
> every person who has ever lived in HD.
>
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Friday, March 16, 2012

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

On Fri, Mar 16, 2012 at 02:59:12PM GMT, Paul Purdom [pwp@cs.indiana.edu] said the following:
> I just had to remark that 10 TB being small seems funny to me, given the
> amount of memory I use to get by with.

Yes, however for a SAN that is small. Where I work we have SANS near
100TB. And we're on the low end compared to some very big companies.
There really is a lot of waste though. People don't know how to properly
manage their data.

I once calculated that at the rate we're going, by the time I'm 85
years old (2061). We'll be in the yottabyte of storage era. Of course
there are all kinds of obstacles to get there, but so where there in
getting to GBs and TBs.

http://suso.suso.org/xulu/A_Yottabyte_of_storage

110YB would approximately be enough to record the entire lifetime of
every person who has ever lived in HD.

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/

Sent from Mutt using Linux
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

Josh Goodman wrote:
> Have you already dismissed a direct attached storage product? SANs are nice
> for the right situation, but they are very pricey. It might be overkill for a
> small lab type situation.
>
> I've heard good things about the Dell SANs, but I've never used them myself.

I would also consider NAS appliances. I've heard decent things about
QNAP products.
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

Have you already dismissed a direct attached storage product?  SANs are nice for the right situation, but they are very pricey.  It might be overkill for a small lab type situation.

I've heard good things about the Dell SANs, but I've never used them myself.

Josh

On Fri, Mar 16, 2012 at 9:47 AM, Shei, Shing-Shong <shei@cs.indiana.edu> wrote:
Hi,

Anyone in the group have any recommendation of a small scale SAN that
works well with Ubuntu (especially for 8.4 and 10.4)?  It's for a small
lab and the storage requirement is not high (probably between 5 to 10
TB?).  I'm seeking for 1) ease of installation/maintenance 2)
performance and 3) reliability.  I know it's vague but just a starting
point.

Thanks,
Shing-Shong Shei
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

Well, it's not too 'big' either given that nowadays you can buy a 4TB
HD! ; -)

On 03/16/2012 10:59 AM, Paul Purdom wrote:
> On 3/16/2012 9:47 AM, Shei, Shing-Shong wrote:
>> It's for a small lab and the storage requirement is not high (probably between 5 to 10TB?).
> I just had to remark that 10 TB being small seems funny to me, given the
> amount of memory I use to get by with.
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Re: [BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

On 3/16/2012 9:47 AM, Shei, Shing-Shong wrote:
> It's for a small
> lab and the storage requirement is not high (probably between 5 to 10
> TB?).
I just had to remark that 10 TB being small seems funny to me, given the
amount of memory I use to get by with.
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] SAN (for Ubuntu 8.4 and 10.4) recommendation?

Hi,

Anyone in the group have any recommendation of a small scale SAN that
works well with Ubuntu (especially for 8.4 and 10.4)? It's for a small
lab and the storage requirement is not high (probably between 5 to 10
TB?). I'm seeking for 1) ease of installation/maintenance 2)
performance and 3) reliability. I know it's vague but just a starting
point.

Thanks,
Shing-Shong Shei
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Thursday, March 8, 2012

[BLUG] Courseload in Indy is looking for a system engineer to design and manage a cloud-based infrastructure

Courseload has a very beautiful HTML5 application for universities to manage e-texts.  They are well-funded, past the startup stage and have paying customers including IU.

You can see their job posting here.

They are also looking for a web developer and a front-designer.

If you or anyone you know is interested, send me a note at my work email -- jmckean@careerinvestments.com -- and I will get them considered.

Jim

Wednesday, March 7, 2012

[BLUG] gnome-terminal, xfce4-terminal, terminator and others are unsafe

I'm trying to release this many places so that people see it and
take care of it for themselves. Terminal emulators that use the
libvte library, which include gnome-terminal, xfce4-terminal,
terminator and guake write their scrollback buffer history to disk in
the /tmp directory:

http://www.climagic.org/bugreports/libvte-scrollback-written-to-disk.html

A video showing how this works and why you should be concerned is here:

http://www.youtube.com/watch?v=LgNLHskYvVE

--
Mark Krenz
Bloomington Linux Users Group
http://www.bloomingtonlinux.org/

Sent from Mutt using Linux
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Friday, March 2, 2012

Re: [BLUG] Mounting a network drive

Are these CIFS file shares? or NFS?

On Fri, Mar 2, 2012 at 4:34 PM, Kelly McEvilly <kellym@wbhcp.com> wrote:
> Hi,
>
> If anyone is up to doing a 'Mounting network drives in Redhat for Dummies'
> primer, I'd be most obliged.   My Googling abilities seem a bit suspect on
> the topic.
>
> I have a Redhat server that I want to write backup files from to a QNAP NAS
> which runs some flavor of Linux.  I can't remember what it is off the top of
> my head and am on my way downtown to an appt with Dr. CrazyHorse but can get
> the info Monday if it's needed.
>
> I can navigate to the share on the NAS from Redhat and have no access
> restrictions on that share at all but still don't seem to be able to write
> my backups to it.
>
> I'm hoping that if I mount a drive I'll have more luck.  I just can't seem
> to get the syntax correct.
>
> Thanks In Advance!
>
> _______________________________________________
> BLUG mailing list
> BLUG@linuxfan.com
> http://mailman.cs.indiana.edu/mailman/listinfo/blug
>

_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] Mounting a network drive

Hi,

If anyone is up to doing a 'Mounting network drives in Redhat for Dummies' primer, I'd be most obliged.   My Googling abilities seem a bit suspect on the topic.

I have a Redhat server that I want to write backup files from to a QNAP NAS which runs some flavor of Linux.  I can't remember what it is off the top of my head and am on my way downtown to an appt with Dr. CrazyHorse but can get the info Monday if it's needed.

I can navigate to the share on the NAS from Redhat and have no access restrictions on that share at all but still don't seem to be able to write my backups to it. 

I'm hoping that if I mount a drive I'll have more luck.  I just can't seem to get the syntax correct.

Thanks In Advance!

Saturday, February 25, 2012

Re: [BLUG] Lenovo service deal recommendation?

Pcmax would be your best shot.

"Shei, Shing-Shong" <shei@cs.indiana.edu> wrote:

>Hi,
>
>My friend has a Lenovo X201 laptop that might have a bad fan.
>Unfortunately its warranty has expired. So he is looking for
>a Lenovo authorized deal who can take a look at it and repair
>it if needed. Local to Bloomington preferred but not limited.
>Anybody has any recommendation?
>
>Thanks,
>Shing-Shong
>_______________________________________________
>BLUG mailing list
>BLUG@linuxfan.com
>http://mailman.cs.indiana.edu/mailman/listinfo/blug

[BLUG] Lenovo service deal recommendation?

Hi,

My friend has a Lenovo X201 laptop that might have a bad fan.
Unfortunately its warranty has expired. So he is looking for
a Lenovo authorized deal who can take a look at it and repair
it if needed. Local to Bloomington preferred but not limited.
Anybody has any recommendation?

Thanks,
Shing-Shong
_______________________________________________
BLUG mailing list
BLUG@linuxfan.com
http://mailman.cs.indiana.edu/mailman/listinfo/blug

Thursday, February 9, 2012

[BLUG] [Novalug] Linux Admin Position Available - Fairfax, VA (fwd)

Forwarded with the OP's blessing. -- rrn

---------- Forwarded message ----------
Date: Wed, 08 Feb 2012 15:38:40 -0500
From: Dan Lavu <dan@lavu.net>
To: NOVALUG <NOVALUG@calypso.tux.org>
Subject: [Novalug] Linux Admin Position Available - Fairfax, VA

Just thought I'd post this here because I'm feeling lucky.
Anyways we are a software company that is in the spend cost
analysis market. The majority of the software is written in Java
that runs on tomcat using modjk to connect to apache. We have
offices in Boston, Kentucky, Virginia, New York, China and the
UK.

Well I won't go into a lot of detail but it's a small team and we
manage over six data centers using enterprise equipment (sans,
blades and some other cool toys); below is the public job
description for the position.

Last thing and it's a pretty big deal too, we have been acquired. We are no
longer Emptoris but IBM, neat right?

Please send all resume's to dlavu@emptoris.com


----

Hosting Systems Engineer
Emptoris, Inc.
www.emptoris.com <http://www.emptoris.com/>


This position will be a member of a team responsible for system
administrations of all Emptoris Hosting Systems. The candidate will assist
in deploying and administrating leading edge technology to support Emptoris¹
enterprise applications within Emptoris¹ hosting facilities. The successful
candidate will work closely with other members of the internal teams to
support client requirements.

Work on any given day might include proactive maintenance on the systems
environments and applications, systems software modification, install and
configure new servers, assisting in develop process/policy from a systems,
network and administrative point of view.

Specific Responsibilities:

· Manage the daily activities of configuration and operation of servers
which are collocated in a remote data centers
· Deploy new systems in Emptoris¹ hosting facilities (Windows and
Linux)
· Manage and monitor core application hosting components including web
farm (IIS and Apache), database servers, virtual and physical servers.
· Document installation and data center process and procedures
· Monitor system and application availability
· Administer and attend to all system backups and recovery as assigned
· Maintain a secure and highly available hosting environment
· Maintain accurate inventory of asset management system
· Optimize system operation and resource utilization
· Manage user accounts of various servers and internal applications,
· Install, configure, and upgrade OS, applications and hardware on
servers
· Troubleshoot and debug OS and application issues where appropriate,
monitor for problems,
· Perform system capacity analysis; provide assistance to users in
accessing and using web-based systems.
· Maintain data files and system configuration for system availability
· Work with Engineering & Customer Support during project deployments.

Requirements

· 4+ years of experience in the installation and maintenance of
Linux/Windows operating systems in high availability environment
· 4+ years of experience in troubleshooting Windows and Linux systems
· 2+ years of experience in administration a Virtual Server Environment
using VMware
· Knowledge of scripting for automation of systems admin tasks
· Exposure to networking and oracle databases is a plus
· Experience with web based applications like IIS, Apache,
Weblogic,Websphere, or JBoss/Tomcat
· Knowledge of TCP/IP as a network protocol and Internet application
protocols
· Knowledge of Windows Active Directory
· Clear and concise oral and written communication skills
· Ability to convey complex or technical information comprehensively to
non-technical individuals and ability to work with all organizational levels
is desirable
· Participation in a rotating on-call schedule

The successful candidate will have a strong work ethic, good analytical and
problem solving abilities, be motivated to learn and work effectively in a
fast-paced software development company.