LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware
User Name
Password
Linux - Hardware This forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?

Notices


Reply
  Search this Thread
Old 03-01-2005, 08:40 AM   #1
[GOD]Anck
Member
 
Registered: Dec 2003
Location: The Netherlands
Distribution: Slackware
Posts: 171

Rep: Reputation: 35
Promise S150 SX4 / TX4 RAID controller in 2.6


Both these RAID controllers are on the LQ HCL, but the comments only mention 2.4 kernels. Apparantly 2.6 kernels have built in support for Promise SX4/TX4. I can't find any "success stories" so to speak, neither on Google nor on the LQ forums search. All I get is people trying to get one to work with a 2.4 kernel and the driver sprovided by Promise. Does anyone know if the 2.6 kernel support for the S150 SX4 / TX4 is working or not? I'd like to know before I go and get one.
 
Old 03-01-2005, 09:47 AM   #2
bstevens
LQ Newbie
 
Registered: Dec 2004
Location: canada eh
Distribution: debian, fedora core 3
Posts: 4

Rep: Reputation: 0
[GOD]Anck,

I maintain a few RAID arrays, one of which is a Promise S150 SX4 with 4 SATA WD250's using RAID 10. This ran fine in Fedora Core 1, but we upgraded to Fedora Core 3 kernel 2.6.10, and we had some issues. In the Fedora install, the disks were recognized (after an array was created in the raid bios) as disks sda through sdd. Here I formatted the 4 disks for Software RAID, and instructed Fedora to create an array using these disks. This is only easily done at install, however, the same thing can be achieved by running

# mdadm --create /dev/md0 -l0 -n4 /dev/sda /dev/sdb /dev/sdc /dev/sdd

Here -l0 (lowecase L and zero) specifies RAID 0 and -n4 gives the number of disks to use. Change the 4 devices to reflect your hardware setup. Once this is done, the array can be assembled using

# mdadm --assemble /dev/md0 /dev/sda /dev/sdb /dev/sdc /dev/sdd

to assemble the array. A file system can be added by running

# mkfs.ext3 /dev/md0

for a ext3 filesystem. mdadm reads config from /etc/mdadm.conf which can be created by running

# echo ’DEVICE /dev/hd[a-z] /dev/sd*[a-z]’ > mdadm.conf

and

# mdadm --examine --scan --config=mdadm.conf >> mdadm.conf

This is probably more info than you needed right away, but the bottom line is that it will work. As to stability, the array hasn't been up long enough for me say yet

Also, for a less expensive option you might try the Highpoint RocketRAID 1640 (also a 4 channel SATA PCI). I've had equal luck with this card in the same setup. If you've got the $ go with 3ware.
 
Old 03-02-2005, 03:22 AM   #3
[GOD]Anck
Member
 
Registered: Dec 2003
Location: The Netherlands
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 35
Thank you for your reply. I will probably be going with the Promise FastTrak S150 SX4. I will likely need to recompile the kernel. Besides general Serial ATA support and the Promise SATA SX4 support module from the SCSI section, would I need to include anything else?
 
Old 03-02-2005, 04:55 AM   #4
ironwalker
Member
 
Registered: Feb 2003
Location: 1st hop-NYC/NewJersey shore,north....2nd hop-upstate....3rd hop-texas...4th hop-southdakota(sturgis)...5th hop-san diego.....6th hop-atlantic ocean! Final hop-resting in dreamland dreamwalking and meeting new people from past lives...gd' night.
Distribution: Siduction, the only way to do Debian Unstable
Posts: 506

Rep: Reputation: Disabled
Theres one in there...I posted it.
I have sx4 with 2.6 kernel.

http://www.linuxquestions.org/hcl/sh...p?product=2305
 
Old 03-16-2005, 12:55 AM   #5
CaptainHarlock
LQ Newbie
 
Registered: Mar 2005
Location: Rome, Italy
Distribution: SuSE, Gentoo, many others :)
Posts: 5

Rep: Reputation: 0
Hi,

I carefully readed these posts, and everybody says that the FastTrack S150 SX4 works fine both with 2.4 and 2.6 kernel. So, someone could explain me why it didn't works with a RedHat EL 4 (2.6.10-EL kernel)? It seems to load the right module during the first hardware probe with the installation CD, but at the exact time the kernel starts to load it, the system crash (and I have no possibility to check some error, because it "dies" and doesn't accept keyb input).

Please, help!

P.S. : I'm sorry for my bad English, I'm italian...
 
Old 03-25-2005, 05:40 AM   #6
fra76
LQ Newbie
 
Registered: Mar 2005
Location: Rome
Distribution: Fedora
Posts: 2

Rep: Reputation: 0
Hi!
I'm waiting for a server Dual Xeon with Promise SX4 SATA Controller and 4 250Gb Maxtor discs.
I hoped I could install Fedora Core 3 on a RAID5 set, but I'm reading that a lot of people had lots of problems...
Perhaps it could be safer install linux on a standard partition and user datas on a software RAID5 configuration, but that's not the faster solution. This computer will be the server for a parallel computing cluster, so it should be fast (SCSI was really too expensive...).
Any suggestion?

P.S.
I'm sorry for my bad English, I'm italian as well...
 
Old 03-25-2005, 05:47 AM   #7
CaptainHarlock
LQ Newbie
 
Registered: Mar 2005
Location: Rome, Italy
Distribution: SuSE, Gentoo, many others :)
Posts: 5

Rep: Reputation: 0
Quote:
Originally posted by fra76
Hi!
I'm waiting for a server Dual Xeon with Promise SX4 SATA Controller and 4 250Gb Maxtor discs.
which server is? It's an HP ProLiant ML110?

If so, a little suggestion: change SERVER or Controller (another SATA, i.e. Adaptec controllers works fine) because this "MAGNIFIC" Promise Controller doesn't works with Hardware RAID, only Sw.
 
Old 03-25-2005, 06:18 AM   #8
fra76
LQ Newbie
 
Registered: Mar 2005
Location: Rome
Distribution: Fedora
Posts: 2

Rep: Reputation: 0
It's a self-configured server.
We chose Promise controllere because it was 4 times cheaper than an Adaptec and it looked like to be faster.
My fault was not to look for compatibility promles with Linux before, but I believed what Promise says in its Internet page...
I'll try to install this pseudo-hardware RAID, almost without any hope!
Fra
 
Old 01-04-2006, 05:07 AM   #9
xyleo
LQ Newbie
 
Registered: Jan 2006
Posts: 8

Rep: Reputation: 0
Smile RAID 1 (Mirror) support for HP-ML110 G3 server

Currently, I've install FC4 in my HP ML110 G3 server. I have already configured RAID1 in my hardware level which is in BIOS level itself by pressing Ctrl + I and configured both SATA HDD as RAID1(mirror). FYI, I am using 2 SATA drive in my server which is 80GB each.

After I configure my RAID in BIOS level, I continue to insert my FC4 cd and begins my OS installation. As for the Automatic Disk Partitioning wizard section, it could able to detect 2 HDD, but it did not say that it's a hardware mirror. No indication saying that both HDD's are mirrored by H/W. If i continue installing, the OS will merge both HDD and appears as 150GB as one whole piece of HDD.

All i wanted is to do a hardware mirroring by using RAID1 in my server. Does FC4 supports RAID1 for SATA drive in this server. Correct me if i m wrong.

I am having a big dillema in this issues. Would really thank you all guys if anyone know hows to overcome the situation i m going thru.

Many thanx in advance.
Yours Sincerely,
~XyLeO~
 
Old 01-04-2006, 11:02 AM   #10
CovertPenguin
LQ Newbie
 
Registered: Dec 2005
Posts: 1

Rep: Reputation: 0
Promise has a binary driver available for Linux, but it's a little tricky to find. I tried to build a Suse 9.1 system using the driver from Promise's driver downloads page. It didn't work. The trick I found was go to the product page for the TX4 Sata150 and from there, click on driver download. You'll get a link to a huge (45mb or so) zipped file with all the available Linux drivers. Extract the one for your distro from there and build the system using that. Strange, but it worked for me.
 
Old 10-06-2006, 08:39 AM   #11
giblet1973
LQ Newbie
 
Registered: Sep 2006
Location: Australia
Distribution: Red Hat 9, Fedora, Solaris 10
Posts: 23

Rep: Reputation: 15
I've given up on the 2.6 kernel in my machine with the Promise S150 SX4 card. I've installed Red Hat 9 with the 2.6.0.32 driver from Promise (in that 45MB file that CovertPenguin mentioned) and not only does it work, it works with the hardware assisted 'fake' raid. And it works beautifully I might add. The machine does exactly what I want, and not having the latest thing doesn't phase me at all.

If you want to use these old Promise cards, use an older kernel (preferable a distro that is supported out of the box by Promise). There just isn't any drivers around for the 2.6 kernel that work properly.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
sata raid 5 promise sx4?? ironwalker Debian 9 11-15-2005 12:04 PM
Problems with Promise FastTrack S150 SX4 enygma Debian 1 11-09-2005 11:30 AM
RHEL4 and Promise FastTrack S150 SX4 CaptainHarlock Red Hat 3 04-13-2005 03:56 AM
Raid working with Promise SATA150 TX4 Raid? edoope Linux - Hardware 2 12-02-2003 09:30 AM
promise raid controller with redhat9 linuxxu Linux - Hardware 0 09-18-2003 08:19 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Hardware

All times are GMT -5. The time now is 07:34 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration