53 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
116
views
How can I get the value of "power on time(POH)" of a sata disk with ata passthrough?
I want to get smart imformation of a sata disk attached to raid card through ata passthrough. I find that smartmontools use the funciton bool sat_device::ata_pass_through() to get my disk's smart ...
1
vote
1
answer
3k
views
What does the qemu command option -hda mean?
If I add the -hda option to the qemu startup command to add external storage, how should my operating system know where this device is mounted? Furthermore, what interface protocol should my operating ...
1
vote
1
answer
358
views
SCSI commands that can benefit from a full duplex SAS connection
One of the distinguishing features of SAS is a full-duplex connection between the HBA and device. SATA provides only half-duplex connections.
I used to think that SAS drives could simultaneously ...
2
votes
0
answers
1k
views
How do I send commands to NVMe drive over USB bridge?
I have been working with a self encrypting drive that I want to be able to send commands to identify and unlock in userspace. I've been able to send commands to NVMe and SATA drives with direct ...
0
votes
0
answers
55
views
SATA controller
While start' up the controller MARVEL (IDE mode) set the status register is set to "BUSY".
What is the reason for "BUSY" status? And what action shall be performed in order to fix ...
3
votes
0
answers
3k
views
print_req_error: critical target error, dev sdb, sector 0
I have samsung disk after a while the device is found on /dev/sdb but not the partitions. The smartools is not able to make a test of the unit and the dmesg traces show the follow information about is ...
0
votes
1
answer
897
views
Does Linux 3.1 support Intel Optane? [closed]
Does Linux Arch 3.1 support Intel Optane? I have booted kernel 3.1 on SATA. Is there Intel Optane on SATA? Or does Linux 3.1 support any other Optane interface?
EDIT
It is Arch based Audiophile ...
1
vote
1
answer
208
views
Linux scsi ata cmd write or read sometimes work and sometimes didn't work when transfer length is over 1345
My code is as follows:
unsigned char cmd[16];
cmd[0] = WRITE_16;
//lba is start address
cmd[2] = (lba >> 54) & 0xFF;
cmd[3] = (lba >> 48) & 0xFF;
cmd[4] = (lba >> 40) & ...
3
votes
0
answers
2k
views
Is there a way to override libata.force during runtime?
I have added the kernel option "libata.force=1.00:disable" on purpose to "ignore" my internal SATA HDD since I'm booting from flash memory (to speed up the boot process) and also to avoid faulty HDDs (...
0
votes
1
answer
124
views
Accessing block device data beyond reported capacity
I have a SATA block device that reports a capacity that is smaller than its accessible space, and I would like to read and write to it past the reported capacity using the file created by Linux for ...
3
votes
0
answers
276
views
Writing binary files (~12MB) consecutively very fast (30 per second) from a C++ program in Linux
I'm trying to write out raw video frames (12.4MB each) in realtime (30fps) to a CFast 2.0(ext4) card which is connected via a sata3(6Gb/sec) interface.
The card is rated at 430MB/sec and when I ...
10
votes
2
answers
28k
views
How to emulate a SATA disk drive in QEMU
I want to emulate a SATA disk drive in QEMU to check a device driver I'm trying to develop. How can this be done? Would greatly appreciate your help.
-2
votes
2
answers
235
views
Need Script To Automatically Restart Mac Until Negotiated SATA Link Speed is SATA II
I've got a couple of late 2009 Mac Minis running Mavericks. I recently replaced their hard drives with SSDs. Everything seems to work fine, however, I don't always get SATA II speeds. The computer ...
-1
votes
1
answer
367
views
Folder is empty while data transfer Sata Hard Drive From Laptop Into USB External Enclosure
I need a little help - I am trying to take the data from hard drive to another laptop using Sata Hard Drive (2.5" Serial ATA Hard Drive Enclosure). However, it is successfully recognized as E drive ...
0
votes
1
answer
810
views
SATA driver; AHCI port initialisation; Start (ST) command list;
I have an issue with initialising and running AHCI port on my devboard.
Processor has SATA host controller with 2 ports implemented (port 0 & port 1). SSD drive w/ SATA interface is connected to ...