Democratic Underground Latest Greatest Lobby Journals Search Options Help Login
Google

Okay, you Linux gurus. Tell me what I'm doing wrong.

Printer-friendly format Printer-friendly format
Printer-friendly format Email this thread to a friend
Printer-friendly format Bookmark this thread
Home » Discuss » DU Groups » Computers & Internet » Open Source and Free Software Group Donate to DU
 
struggle4progress Donating Member (1000+ posts) Send PM | Profile | Ignore Fri Aug-06-10 02:11 AM
Original message
Okay, you Linux gurus. Tell me what I'm doing wrong.
I wanted to try putting the more stable parts of my OS on an ssd and the more write intensive stuff on a hard drive. So I configured an ubuntu install with

/, /boot, /usr, /var, and /opt as mount-point partitions on the ssd

and similarly put

/tmp, /home, and swap-space on a harddrive

That's OK, I think: I get a fast OS boot after the motherboard posts, and applications launch fast too

But for fun, I first tried something a little more complicated than that -- and it didn't work

What I tried was a two harddrive RAID 0 for /tmp, /home, and swap-space. (Yeah, I know RAID 0 isn't safe, but WTF!)

For my motherboard, I change some BIOS settings and then reboot into a special RAID BIOS to define the array. No problem: the motherboard sees two 500gb drives as a single tb device -- and so does the ubuntu installer

But when I try to install, the installer gets only a tiny fraction of the way through the /home partition and announces the RAID array has failed. If I look at what's happened on the harddrives, only one shows the expected directory structure ... but maybe that's not informative because of striping

I can try to eliminate possibilities like a bad harddrive on my own

But ...

Should I be carefully considering which SATA channels the various drives use? Is there a known issue with ubuntu and RAID for various disk formats? Is there something illegal about my partitioning scheme under RAID? What else could be going wrong?
Refresh | 0 Recommendations Printer Friendly | Permalink | Reply | Top
darkstar3 Donating Member (1000+ posts) Send PM | Profile | Ignore Fri Aug-06-10 09:19 AM
Response to Original message
1. You're using a motherboard soft-RAID with linux?
Do you have a deathwish?

Motherboard RAIDs, even the vaunted NVidia RAID chips, REQUIRE driver and processor support to get the RAID to write data properly. Generally, those drivers are found in Windows, and thus these chips are often referred to as "Win-RAIDs".

The good news is, since it's software RAID, you can get similar or even better performance by using the software RAID stack already built into the linux kernel. The bad news is, Ubuntu doesn't do this easily by default.

If you want to be able to install to special hard drive configurations, there are some documents out on the net that will help you use the Ubuntu installer CD to pull it off. If you'd like to do it quickly and simply, just to see if you can, try CentOS or Fedora 12.

Oh, and performance tip: If you have a decent amount of RAM, mounting /tmp in a RAMdisk is a GREAT way to improve system responsiveness.
Printer Friendly | Permalink | Reply | Top
 
struggle4progress Donating Member (1000+ posts) Send PM | Profile | Ignore Fri Aug-06-10 12:16 PM
Response to Reply #1
2. There's nothing on this particular machine at present, and as Janis famously said
When ya ain't got nuthin, ya got nuthin to lose


I'm perhaps unfairly biased against fedora, since I really disliked redhat when I first encountered it a decade ago, but I have fedora and centos disks, so I'll try a different OS if I can't get this working in ubuntu

Hmm. You're absolutely right about needing a driver during OS installation: I should have read the mobo manual more carefully. Thanks!

Thanks also for the ramdisk suggestion! I'll think about that a bit

Printer Friendly | Permalink | Reply | Top
 
darkstar3 Donating Member (1000+ posts) Send PM | Profile | Ignore Fri Aug-06-10 03:18 PM
Response to Reply #2
3. If you're looking to switch distros, come to the dark side.
Gentoo may be ridiculous on the setup side of things, but on the plus side my laptop installation is bulletproof, and I even have longer battery life thanks to the customizations. I've tried distro after distro, and I keep coming back to this one.
Printer Friendly | Permalink | Reply | Top
 
struggle4progress Donating Member (1000+ posts) Send PM | Profile | Ignore Fri Aug-06-10 03:48 PM
Response to Reply #3
4. Right now I've got an extra machine or two, so I can try it without harm. Tell me what you
like about it: I've got a box full of distros on disk, including Gentoo, some of which I tried in VirtualBox, but I think the Gentoo setup dissuaded me from a quick try there
Printer Friendly | Permalink | Reply | Top
 
darkstar3 Donating Member (1000+ posts) Send PM | Profile | Ignore Fri Aug-06-10 04:07 PM
Response to Reply #4
5. Oh the setup is NOT quick, that's for sure.
This is a core i7 laptop with 4 gigs of DDR3. It took me 2 hours to get Gentoo started, and then it took 23 hours to compile everything that was necessary using the emerge command. Of course, those 23 hours were unattended, but that's still a ridiculous amount of time.

So why do I do it? Because with this installation I get access to any open source program that any other linux distro can run. If it's not in portage, I can download the freely available source code and compile it from scratch. I have full control over everything that's running in and out of the kernel, and full control over how my sessions run. I have full control over how my disks will be handled, and full control over exactly which kernel I run so that I have TRIM for my SSD.

In short, I'm still running Gnome, Compiz-Fusion, and other customized desktop effects just like Ubuntu, but my memory footprint is 400MB lighter. I can run programs normally only supported on Red Hat distros, and even merge in some KDE programs without a lot of dependency gripes from my package manager. I have longer battery life, support for all of my hotkeys, customized ACPI and startup scripts for various tasks, and rock-solid stability in every program installed on my system. And one of my favorite features is that I can utilize any virtualization platform I want, including the libvirt interface normally only available through Red Hat.

It took me a long while to get proficient enough in linux to be able to do all of this, but Gentoo and documentation helped me get there, and even with total reinstallation time still being over a day, I wouldn't take any other distro.
Printer Friendly | Permalink | Reply | Top
 
struggle4progress Donating Member (1000+ posts) Send PM | Profile | Ignore Sat Aug-07-10 06:27 AM
Response to Reply #5
6. OK. You've convinced me Gentoo is worth a try. I've got a 3.4ghz AMD with 4gb ddr3
and an ssd, which I'll try putting Gentoo onto
Printer Friendly | Permalink | Reply | Top
 
darkstar3 Donating Member (1000+ posts) Send PM | Profile | Ignore Sat Aug-07-10 03:00 PM
Response to Reply #6
7. With 4GB of RAM, make SURE you add this line to your fstab
none /var/tmp/portage tmpfs defaults,size=2048M,nr_inodes=1M 0 0

With that, ALL of your installation packages will compile entirely in RAM until the installation/copy step at the end. It cuts the time for a full system compile down by anywhere from 25-40% depending on your architecture and chosen packages.
Printer Friendly | Permalink | Reply | Top
 
struggle4progress Donating Member (1000+ posts) Send PM | Profile | Ignore Sun Aug-08-10 12:05 AM
Response to Reply #7
8. Thanks. I've downloaded the basics but probably won't try anything for a few weeks
Printer Friendly | Permalink | Reply | Top
 
Occulus Donating Member (1000+ posts) Send PM | Profile | Ignore Tue Aug-10-10 02:33 AM
Response to Reply #7
9. !
You just convinced me, too. I think I might try this one out.
Printer Friendly | Permalink | Reply | Top
 
DU AdBot (1000+ posts) Click to send private message to this author Click to view 
this author's profile Click to add 
this author to your buddy list Click to add 
this author to your Ignore list Wed May 01st 2024, 06:30 PM
Response to Original message
Advertisements [?]
 Top

Home » Discuss » DU Groups » Computers & Internet » Open Source and Free Software Group Donate to DU

Powered by DCForum+ Version 1.1 Copyright 1997-2002 DCScripts.com
Software has been extensively modified by the DU administrators


Important Notices: By participating on this discussion board, visitors agree to abide by the rules outlined on our Rules page. Messages posted on the Democratic Underground Discussion Forums are the opinions of the individuals who post them, and do not necessarily represent the opinions of Democratic Underground, LLC.

Home  |  Discussion Forums  |  Journals |  Store  |  Donate

About DU  |  Contact Us  |  Privacy Policy

Got a message for Democratic Underground? Click here to send us a message.

© 2001 - 2011 Democratic Underground, LLC