Hardware :: Set Order Of HDD Controllers?
May 5, 2010
How can i set the order of controllers which Debian loads? One of my problems is that it is initializing my PCI-e controllers first and my OS drive is being named /dev/sde. Also is it possible to list which port of which controller a HDD is plugged into?
Code:
:~# lspci
00:00.0 Host bridge: ATI Technologies Inc RX780/RX790 Chipset Host Bridge
00:04.0 PCI bridge: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port A)
00:06.0 PCI bridge: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port C)
00:0a.0 PCI bridge: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port F)
00:11.0 SATA controller: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode]
[Code].....
View 1 Replies
ADVERTISEMENT
Jan 10, 2011
I would like to buy PCI to SATA II controller for my machine. I'd like to use them on Debian Lenny stable (2.6.26-2 kernel). So I'm choosing between noname (Logilink ?) card with Sil3124 chip and HighPoint 1720 card. Functionality basically is the same for both cards or at least it is enough for my needs. I will run mdadm anyway. So the question is should I really pay 3 times more for HighPoint ? Is there any reason for that or Sil3124 will do the same ? What about compatibility ? As I know both cards are supported on thet kernel.
View 6 Replies
View Related
Jun 2, 2010
Which RAID controllers work with Debian 5? Is there a list somewhere?
View 2 Replies
View Related
Aug 19, 2010
I have downloaded and compiled the xboxdriver from Grumbels git hub. Running 9.10 minimal with xbmc 9.11. I can run the driver manually and actually run multiple instances of the driver for multiple controllers. I cannot however get more than one instance of the driver to start up at boot. I have the freshly compiled driver and daemon that came with source files in /usr/local/bin.
I can run the driver via 'sudo /usr/local/bin/xboxdrv --wid0', I can even get a second wireless controller working with 'sudo /usr/local/bin/xboxdrv --wid1'
When I add the driver to /etc/rc.local it runs fine on startup. The problem is I want more than one instance running. When I add the exact same line right under it except change the wid0 to wid1 it will not automaticly run the second driver. I also can get zero activity from the daemon. I have tried adding it to the rc.local, or /etc/init.d/local (I think someone mentioned it somewhere) with no luck.
I am not quite sure what I am doing wrong. My ultimate goal is to have 2 minimum to 4 maximum controllers work from startup. I want to add emulators to a xbmc htpc and just dont want to have to worry about manually starting drivers. I have forgone using xpad due to its somewhat limited support for wireless xbox360 controllers.
View 5 Replies
View Related
Mar 5, 2011
In windows the only controllers that really work with TRIM is the onboard Intel ones, Jmicron, Marvell, Nvidia and AMD's don't pass the command to the drives if you use their own drivers. (And from what Ive read, the Micron sata6 controllers don't work with TRIM even using the default Microsoft drivers). In Linux do more then just Intel drives work with TRIM? I have a Nvidia 790i Ultra motherboard, the SATA controller is an Nvidia one which has 2 settings, ATA and Raid (if the drives aren't added to an array it runs them in AHCI) and has an additional Jmicron sata port.
If I enabled TRIM in the OS, would it work on either of those controllers? Also if anyone knows this, in Windows if you set an Intel controller to raid, you wont get TRIM on SSD's that are on the controller (but not in an array) with the default Microsoft driver like you would if it was set to AHCI, you only get it with the Intel RST drivers. Would a SSD on an Intel controller set to raid but not in an array get the TRIM command passed to it in Ubuntu?
View 1 Replies
View Related
Mar 2, 2011
How do I configure samba such that AD authentication still works when a DC is down? Do I need multiple kdc, admin_server, and kpasswd_server entries in krb5.conf?
View 3 Replies
View Related
Jul 3, 2009
I am trying to configure grub to be able to boot from any of the four hard-drives that I have, three of which are plugged into an nVidia RAID controller and the other is plugged into a JMicron controller. Grub seems to only see the loan one and not the other three.Is there a way to get Grub to see the disks attached to another controller?
View 4 Replies
View Related
Feb 27, 2011
I am looking for a way to partition 2 disks automatically with are both connected to 2 different scsi controllers.
I want one disk on one controller to be partitioned with boot and lvm and the other one with a different partition layout.
I there a way in kickstart to do this, like for instance specify the drive module?
View 1 Replies
View Related
Aug 18, 2010
in my text file of 5 columns 2 column is in DDMMYYYY format. (ie DATE OF BIRTH). how to use sort command for its ascending order and descending order.
Is the same can be use for the date format YYYYMMDD ?
View 3 Replies
View Related
May 7, 2010
Can I control parameters in the Calf Plugin synthesizers(Monosynth and Organ) via MIDI controllers? And if so, how?
Also, if not, please tell me about software synths that i can fully control(i know Zynadd already
I've searched the web and all but nothing turned up.
View 6 Replies
View Related
Jan 10, 2010
I have recieved CD in the past and I don't have a functional DVD burner to create my own disk. It says I cantribute to the Ubuntu community for more CDs but there isn't a way for me to get one. What should I do about this? I mean I'm on the forums but IDK how to tell shipit about my activity
View 2 Replies
View Related
May 22, 2010
I am a new Ubuntu user in Hungary, where we use reverse name orders (perhaps called the "eastern name order"). I mean Hasselhoff David instead of David Hasselhoff. Its quite a big problem for me, especially during syncing with my phone (which finally works now, after a few days of reading and searching...).Is it possible to change that in Ubuntu?
View 5 Replies
View Related
Nov 25, 2010
Back in the days of Archimedes I was able to move a window with the middle mouse button and it kept the z-order. Now I've jumped to Linux from a long time with Windows I'm hoping this is possible again! Its very useful when trying to see 2 windows together without changing focus. Ideally, I'd change the Alt+Winow drag behaviour to keep the z-order.
View 1 Replies
View Related
Jun 22, 2010
I am trying to write a script to set the SGE job execution order. I named each job with 'job1', 'job2' and 'job3'. I want my script to do: When 'job1' execution is complete, 'job2' is executed; when both 'job1' and 'job2' are complete, 'job3' is executed.
First, I tried this following script and it worked well:
########
qsub -N job1 run1.sh # run1.sh includes "mv file_name1 file_name2"
qsub -N job2 -hold_jid job1 run2.sh # run2.sh includes "mv file_name2
file_name3"
########
[Code]....
View 7 Replies
View Related
Apr 18, 2011
I'm learning Haskell from an on-line tutorial, and trying to figure out how I/O works. I'm a bit confused with this example:
Code:
My expectation is for it to ask me for a line, then for it to convert the line I provide to uppercase (err... create a new line that is uppercase) and then output said line.
However, what actually happens when I run it is it firsts ask me for a line, then outputs "Next line: ", then outputs the uppercase line:
Code:
I realize that Haskell is not an imperative language, but I was (mistakenly?) under the impression that there was some kind of sequence guaranteed in the do blocks. Could someone explain why this happens, and how I can "fix" my code to get the desired behavior?
I'm running:
- Linux version 2.6.34-gentoo-r12 (64-bit)
- GNU bash, version 4.1.9(2)-release (x86_64-pc-linux-gnu)
- Glasgow Haskell Compiler, Version 6.12.3, for Haskell 98, stage 2 booted by GHC version 6.12.3
View 2 Replies
View Related
Jul 26, 2011
I want to change the parameter for ThreadLimit for one file as shown below using sed. I want to ignore the commented line. But the command I am using also executing with commented line.
# ThreadLimit: maximum setting of ThreadsPerChild
ThreadLimit 25
I want the desired output as
# ThreadLimit: maximum setting of ThreadsPerChild
#ThreadLimit 25
ThreadLimit 50
For this I am using command.
sed '/ThreadLimit/{;h;s/^/#/p;x;s/ .*/ 50/;}' test.txt.1 > test.txt
View 7 Replies
View Related
Jun 16, 2011
how slow XP was on my laptop, a casual friend (who moved away and I have since lost touch with) installed Fed 11 as a dual boot with XP, Fed 11 first. It has worked great for email and some net surfing. Now the machine is going to my wife, who does not want have to go to the boot menu to get XP. How do I change the order so that XP boots first and you have to go to the menu to get Fed 11? I've tried going through the forums, but since I'm not really a computer person, there are some basics I don't know (for example "open a terminal" - how does one do that?)
View 5 Replies
View Related
Apr 27, 2010
I worte somewhere in time here about this, but I cant find it.. I have a problem, when starting KDE, it begins to start applications, usually the ones that were open (thanks God)... however, order is a bit screwed... It opens Skype, KTorrent, Kopete, Sound, Keyboard and finally, NetworkManager...I would like to put Network to be ran 1st.
View 9 Replies
View Related
Mar 30, 2010
The mentioned repository seems to be out of order. Does anybody knows something about? New user X
View 9 Replies
View Related
Feb 7, 2010
Does the order of command options matter?
View 4 Replies
View Related
Jan 8, 2010
I'm getting a new HDD today. I have SATA 500GB, and I'm getting SATA II 500gb. This is what I wanted to ask. On my first HDD, I have Windows XP and ubuntu and on the new HDD, I will install Windows 7. What I wanted to ask, are such things like jumpers on my HDD (master/slave etc.) used to select boot order? Or will I have to go into BOOT settings and choose Win7 Hdd first in the boot order etc.?
View 2 Replies
View Related
Apr 1, 2010
how can I use sar in order to get information about the scheduling?
View 1 Replies
View Related
Apr 24, 2010
I've installed the ubuntu 9.10 in my pc. But, I want to trade the order of the boot, because my brothers use windows. I know how to do it in the version 9.04 in the directory /boot/grub trading the configuration of the file menu.lst ,but i cannot find this same file in this new version. How should I do?
PS: my version is ubuntu 9.10 amd 64bits
View 9 Replies
View Related
Oct 23, 2010
Just installed Ubuntu 10.4 on a computer that normally runs XP Pro. I used a separate drive and unplugged the windows drive while installing Ubuntu (error number one right?). Ubuntu installed perfectly, plugged in windows drive, Windows boots perfectly. My only problem is that I don't have the boot list option unless I go into the BIOS and change default boot drive every time I want to switch OS.After a bit of research I configured GRUB to allow me to dual boot (Windows did not appear at first), but it boots directly into Ubuntu (fine for me, but my mother uses XP for work) instead of Windows. Unfortunately I have some sort of keyboard issue that makes the arrow keys inoperable until the machine has once booted into an OS.
View 8 Replies
View Related
Dec 11, 2010
Would it be possible to use wget to order something on e.g. [URL].
View 4 Replies
View Related
May 20, 2011
I have a dual boot linux system with Mint 10 and Ubuntu 11. Currently Mint is the first OS in the boot order. How difficult is it to change that config so that Ubuntu is first (or default) and Mint second ?
View 4 Replies
View Related
Jun 9, 2010
Say I have a text file with10 columns. I need to reorder them based on a list of column numbers that will reorder them.
My problem is this:
If I want to cut out 5 columns (columns 1,2,3,9,10) in the order 1,10,2,9,3 then I have tried using:
Code: cut -f1,10,2,9,3 my_file.txt > reordered_file.txt But this just extracts the columns in order as if I used:
Code: cut -f1,2,3,9,10 my_file.txt > reordered_file.txt How can I cut these columns and place them into the new file in the order I specify?
While this might seem quite trivial, I will actually need to do this for a file containing ~14000 columns with ~12000 columns that I need to extract in a particular order.
View 2 Replies
View Related
Jan 17, 2010
I have Atheros AR8132 Ethernet 10/100 and downloaded the drivers but need to re-compile the src in order to install it. after doing step (make install) it says:-
Makefile:61: *** Linux Kernel source not found. Stop. What does this mean?
View 5 Replies
View Related
Oct 11, 2010
how can i set up my ubuntu 10.10 in order to use amazon kindle?
View 1 Replies
View Related
Apr 1, 2011
I have installed Suse Linux Enterprise Server 11 onto the box that I am using as a server. Connected to the "server" is a Windows Vista PC.Beyond installing the O/S with all the options I need - I am stuck. The Windows PC will not connect to the internet whereas the Linux server will.What do I need to setup and in what order to get the pc working on the internet?
The path that I think I need to take is to disable dhcp on the broadband router and setup the server as dhcp (how and what); setup the rules in the firewall (how and what rules?) and setup dns and dhcp (how and what?)
View 14 Replies
View Related