Sponsored Content
Top Forums UNIX for Advanced & Expert Users Hardware question - UltraAta 133 PCI Post 302235922 by droolin on Saturday 13th of September 2008 09:01:49 PM
Old 09-13-2008
Hardware question - UltraAta 133 PCI

Not sure I put this in the right forum, and if I was incorrect. I do a appligize.

Recently I have lost two external hard drives due to heat. I bought internal drives, seperate case's, and made them usb externals. They lasted a long time, but the heat killed them.

While rooting through my peaces and parts box, I found an siig ultra ata 133 pci card. I remember when I first tried to use this in FreeBSD(I think 5.?), it wasn't reconized. And I used in on some windblows systems.

Well, I'd like to try again to use it.

I currently am running FreeBSD 6.3 beta(?) and am ready to upgrade to 7.

Has anyone used this card before? If not, is there a pci card I can buy that will work with bsd?

Different question while I am at it. I also purchased some WD MyBook's awhile back that also did not work with FreeBSD. It would take somewhere like 10/15 minutes before the os would reconize them. Articles I found noted it had something to do with the drives not giving up their serial number or something along that lines. I also found that a patch had been created, but? I just found that article a couple days ago. Would anyone know if this patch had been incoporated into 7???? Id love to stop network backups to these drives and plug then directly into the bsd box for backups.

Lol, and I could as one more question about ntfs-3g???? If anyone had used it? But, I'm just going to install that port after the upgrade and try it.

drool
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Hardware question?

Does anyone know how to install a second Ethernet adapter on a Sun Sparc 10? (2 Replies)
Discussion started by: jskillet
2 Replies

2. HP-UX

newbie question about hardware for HP-UX 11.i

I've been asked by my copmpany to scour the web for a computer on which we can run HP-UX 11.i --- Is there a certain architecture type that I need or will any Compaq HP computer be fine for running HP-UX 11.i ?? Thanks!! (3 Replies)
Discussion started by: jalburger
3 Replies

3. Red Hat

S3 Savage KM 133

HI I have problem working with S3 Savage KM 133 Video Card on Redhat Linux 9 Enterprise Edition. It hangs up once probing done on Video Card.So i tried insalling Linux with options as to run the set up on 640*480. As knows case i searched the web forums to get help. Please let me know how can i... (0 Replies)
Discussion started by: prakashpichika
0 Replies

4. UNIX for Dummies Questions & Answers

Light *nix system for 133 mhz?

I have an old pc, about 133-200 mhz with very little memory and hard-drive. I want to install a small and fast *nix system with ion or some other simple wm for maximal performance. It's supposed to be used as a desktop. If someone could share their experience with older machines and some... (2 Replies)
Discussion started by: riwa
2 Replies

5. AIX

IBM Hardware question

I am looking to buy a 7044 - either a 170 or 270. From what I can find on web searchs the 170 is NOT upgradable to more that one CPU? Is that correct? Can I upgrade the planer on a 170 to a 270 to support multiple CPU's? Does anyone have any other suggestion for AIX hardware? (5 Replies)
Discussion started by: dizman67
5 Replies

6. UNIX for Dummies Questions & Answers

Hardware question

I would like to use my sunblade to firewall the connections to my desktop and laptop, these at the minute are on a wifi router. What is the best solution? (0 Replies)
Discussion started by: Kawakaze
0 Replies

7. UNIX for Dummies Questions & Answers

Hardware question

Folks; Is there a command to know if my hardware can run 64-bit or 32-bit? I'm trying to re-install SUSE 64-bit on one of our server but i'm not sure if this server hardware designed for 32-bit only or for both Any help? (14 Replies)
Discussion started by: Katkota
14 Replies

8. AIX

Hardware upgrade question

I have an IBM pseries 7028-6E1 server with a six drive bay that is currently plugged into the scsi backplane of the motherboard. I am going to install a PCIX Ultra320 scsi raid adapter, and swing the drive bay over to it. I am just wondering how this is going to work. Should I power the server... (1 Reply)
Discussion started by: markper
1 Replies

9. UNIX for Dummies Questions & Answers

Processor performance question [hardware]

A few of our machines need upgrading and we are looking into a selection of processors at present. There are suggestions on the vendor's websites that the L3 cache was specifically introduced for gamers. Is this true? Does having L1, L2 and/or L3 cache help at all in performance or are the... (0 Replies)
Discussion started by: figaro
0 Replies
ATAPICAM(4)						   BSD Kernel Interfaces Manual 					       ATAPICAM(4)

NAME
atapicam -- CAM XPT (transport) module for ATAPI devices SYNOPSIS
To compile this driver into the kernel, place the following lines in your kernel configuration file: device scbus device ata device atapicam Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): atapicam_load="YES" DESCRIPTION
The ATAPI/CAM module allows ATAPI devices (CD-ROM, CD-RW, DVD drives, floppy drives such as Iomega Zip, tape drives) to be accessed through the SCSI subsystem, cam(4). ata(4) and scbus(4) must be configured in the kernel as well. The SCSI target drivers (cd(4), da(4), or st(4)) can then be used to access the devices. The generic passthrough device, pass(4), can also be used to send SCSI commands directly to the devices through the CAM API. A separate CAM bus is created for each ATA bus in the system. On each of these buses, target ID 0 is assigned to the master device, and ID 1 is assigned to the slave (provided they are ATAPI devices). IMPLEMENTATION NOTES
Some SCSI commands are intercepted by the driver, and undergo special processing in order to work around limitations of ATAPI devices. Such limitations can be consequences of the ATAPI specification. For example, ATAPI devices do not implement the 6-byte versions of MODE_SELECT, MODE_SENSE, READ, or WRITE. They can also be common bugs, such as hanging when queried for extended INQUIRY information. EXAMPLES
device ata device atapicam device scbus device cd device pass Add the atapicam driver to the kernel. camcontrol devlist Print the list of all devices available through CAM. mount -t cd9660 /dev/cd0 /mnt Mount a CD-ROM from an ATAPI CD-ROM drive (the command above assumes that the ATAPI drive is the only CD-ROM unit). SEE ALSO
ata(4), cam(4), scsi(4), atacontrol(8), camcontrol(8) HISTORY
The ATAPI/CAM driver first appeared in FreeBSD 4.8 and FreeBSD 5.0. AUTHORS
The ATAPI/CAM driver was written by Thomas Quinot <thomas@FreeBSD.org>. BUGS
atapicam and ATAPI-specific target drivers (acd(4), ast(4), and afd(4)) can be configured in the same kernel. Simultaneous access to the same device through the SCSI generic drivers and the ATAPI-specific drivers may cause problems and is strongly discouraged. BSD
October 22, 2009 BSD
All times are GMT -4. The time now is 01:47 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy