Sponsored Content
Special Forums Hardware Connect SATA Laptop HardDrive to Desktop SATA Slots Post 302527714 by jaanus5 on Saturday 4th of June 2011 07:42:24 PM
Old 06-04-2011
Hi, I have the same question, but my desktop computer's hard drive has a SATA power cable which is plugged into a Molex 8981.

So what do you suggest me to do with it?
 

9 More Discussions You Might Find Interesting

1. Solaris

SATA driver for soalris 9

can any one help me look for a driver for SATA harddisk, im installing solaris 9 to it. thanks and regards msouthofheavenk ;) (2 Replies)
Discussion started by: msouthofheavenk
2 Replies

2. UNIX for Advanced & Expert Users

sata support

i have a system which has two hard disks..one is sata and the other one is normal ata hard disk. i wish to install red hat enterprise linux WS(desktop edition) on my sata hard disk..but the installer shows me only my ata hard disk.. i searched the net..it says that a library-- libata will let it... (2 Replies)
Discussion started by: ankit.jss
2 Replies

3. UNIX for Advanced & Expert Users

Linux o.s on two sata's.

Hi, I have two sata hard-disks. Out of those, one is having RHEL5 operating system, and other is having fedora7 operating system. When I connect the disk with RHEL5 operating system to sata0 port and disk with fedora7 operating system to sata1 port. While booting it shows RHEL5 boot screen,... (3 Replies)
Discussion started by: praveen_b744
3 Replies

4. UNIX for Advanced & Expert Users

trying to setup a sata drive using a sata to scsi adaptor

trying to setup a sata drive using a sata to scsi adaptor I have a sata 1TB Deskstar that I had setup before and during shipment from a facilty to another, the disk failed. The handling was not great, lots of throwing boxes, etc. I have a new disk from Hitachi (thankyou Hitachi) anyway, I don't... (1 Reply)
Discussion started by: mndavies
1 Replies

5. Red Hat

sata/sas controller on redhat

Hi All, How do I verify the sata/sas controller status on my redhat 2.6? Thanks. Itik (1 Reply)
Discussion started by: itik
1 Replies

6. Hardware

SATA drive FAT recover

I had ACER aspiron one netbook with dual bootable (Windows XP and Debian). Recently I found XP is messy and Debian has new version published. I plan to recover XP and install new version of Debian. But I failed to recover XP from Hidden Partition. I thought it is because I install GRUB in the... (15 Replies)
Discussion started by: sinnud
15 Replies

7. Hardware

SPARC, SCSI -> SATA?

I'm thinking about suggesting my boss to go for sata adapter and SSD, instead of buying new SCSI drives for SPARC. out here, a brand new 70Gb SCSI drive is about 100euros, and 140Gb is 200eur! (for that price, one could probably buy the adapter.) has anyone tried it? how well do modern... (1 Reply)
Discussion started by: orange47
1 Replies

8. Hardware

Question on SATA 300 vs SATA 600

I have an upgrade path in mind for a new computer that will be stocked with a 2TB SATA 300 hard disk. This is a choice based on information that SATA 300 is not necessarily faster than SATA 600. The upgrade path in a year time or so would then involve the purchase of an SSD that would contain the... (4 Replies)
Discussion started by: figaro
4 Replies

9. Solaris

Sata 2 port not working

I have installed Solaris 11 Express on my machine. On my GA-X58A-UD5 motherboard there are two 6 Gb/s SATA ports (Marvell 9128 chip), but when I connect a hard drive to one of them, the system does not recognize it. However, when I boot from a USB install image (downloaded from here Oracle... (1 Reply)
Discussion started by: RychnD
1 Replies
HAL-DISABLE-POLLING(1)					      General Commands Manual					    HAL-DISABLE-POLLING(1)

NAME
hal-disable-polling - disable polling on drives with removable media SYNOPSIS
hal-disable-polling [options] DESCRIPTION
hal-disable-polling can be used to to disable and enable media detection on drives with removable storage. For more information about both the big picture and specific HAL properties, refer to the HAL spec which can be found in /usr/share/doc/hal-doc/spec/hal-spec.html depend- ing on the distribution. OPTIONS
The following options are supported: --udi The UDI (Unique Device Identifier) of the device object. --device The device file of the drive. --enable-polling Enable polling instead of disabling it. --help Print out usage. --version Print the version. NOTES
This program requires super user privileges. RETURN VALUE
If the requested operation was successful, this program will exit with exit code 0. HISTORY
Polling a storage drive is a necessary evil to detect when the user inserts or removes media. Human computer interaction studies have shown that a broad class of users expect their system to react within a few seconds of this. Thus, the hald daemon polls through the hald-addon- storage addon (one instance for each drive with removable media). The purpose of the hald-addon-storage addon is simply to open the special device file at a regular interval (either every 2 or every 16 seconds) to check for new media. This program tries to open the device file using the O_EXCL option which means that programs like cdrecord(1) that uses O_EXCL automatically prevents the hald-addon-storage for interferring by continously opening the device file. In addition, if the drive is locked using HAL (see hal-lock(1)) the addon also stops polling. Unfortunately, polling a storage drive can have adverse side effects if the hardware and/or device driver for the hardware is malfunction- ing. Additionally, the operating system kernel itself may offer multiple interfaces for the same device (e.g. /dev/sg0 and /dev/scd0) so even O_EXCL won't work. Also, polling a drive may decrease throughput in certain (odd and/or broken) configurations; for example, if two IDE drives shares the same host (master/slave), bus traffic and contention caused by polling e.g. the optical drive (slave) can reduce throughput to the hard disk (master) and/or interfere with CD burning on another optical drive (master). Finally, polling a drive incurs an overhead both in the host system (processes get woken up often, preventing the CPU to stay in a deep power saving states) and it may pre- vent the actual drive from reaching deep power states as well. As a result, more power is consumed and this affects battery life for lap- tops. Despite the existence of support for asynchronous media change notification in recent MMC (Multi-Media Commands) specifications, virtually no optical drives are compliant with the specification. Fortunately newer SATA ATAPI hardware seems to support Asynchronous Notification (AN) and at this time of writing (March 2007) work is underway to make both the Linux operating system kernel and HAL take advantage of this. It is the position of the HAL team that polling should be avoided at all costs as long as it doesn't heavily impact the user experience in a negative way. This tool is provided as a stop-gap measure to use if a system is rendered useless due to bugs in drivers and/or hardware that is provoked by HAL polling the drive. If such a bug is encountered it should be reported (see the BUGS section below) so it can be fixed - historically hald have triggered a number of bugs in Linux storage drivers and related subsystems (such as USB) that have later been fixed. BUGS
Please send bug reports to either the distribution or the HAL mailing list, see http://lists.freedesktop.org/mailman/listinfo/hal on how to subscribe. SEE ALSO
hald(8), lshal(1), hal-lock(1), open(2), http://www.t10.org/scsi-3.htm, https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=halpolling AUTHOR
Written by David Zeuthen <david@fubar.dk> with a lot of help from many others. HAL-DISABLE-POLLING(1)
All times are GMT -4. The time now is 04:33 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy