search for: scsi_hostadapter

Displaying 20 results from an estimated 88 matches for "scsi_hostadapter".

2007 Feb 19
1
Could not mount SATA disk as module scsi_hostadapter is not loaded, although present in modules.conf
Hi people, I installed a via SATA controller in a CentOS release 3.8 (Final) - I needed additional disk space. After the first boot, the kudzu service, added the following line to /etc/modules.conf: alias scsi_hostadapter sata_via and I rebooted. After reboot in dmesg one can see: scsi0 : sata_via scsi1 : sata_via Vendor: ATA Model: SAMSUNG HD080HJ Rev: WT10 Type: Direct-Access ANSI SCSI revision: 05 Attached scsi disk sda at scsi0, channel 0, id 0, lun 0 SCSI device sda: 1563014...
2010 Mar 31
1
[PATCH] Default to IDE when VirtIO isn't available
...} diff --git a/lib/Sys/VirtV2V/Converter/Linux.pm b/lib/Sys/VirtV2V/Converter/Linux.pm index 6f49351..3e76762 100644 --- a/lib/Sys/VirtV2V/Converter/Linux.pm +++ b/lib/Sys/VirtV2V/Converter/Linux.pm @@ -142,7 +142,7 @@ sub _configure_kernel_modules # Make a note of whether we've added scsi_hostadapter # We need this on RHEL 4/virtio because mkinitrd can't detect root on - # virtio. For simplicity we always ensure this is set. + # virtio. For simplicity we always ensure this is set for virtio disks. my $scsi_hostadapter = 0; foreach my $module (keys(%$modules)) { @@ -16...
2005 Sep 21
2
Mixing SCSI devices on a single i/f
...for the DAT has a Centronics connector at one end and a 68 Pin Wide to Narrow terminated connector at the other. The cable for the DLT has a LVD/SE 68 pin connector at both ends. I have terminator blocks for both devices. If I connect the devices thus: terminator --> DAT --> DLT --> scsi_hostadapter (boot hangs) Then the system hangs when booting. I can get the system to boot up form this point by turning off both external tape drives. If I connect the devices individually then the host boots and the system can access which ever is attached to the host. terminator --> DLT --> scsi...
2016 Apr 14
1
[PATCH v3] v2v: add support for virtio-scsi
..."virtio_scsi"; "virtio_net"; "virtio_pci" ] else [ "sym53c8xx" (* XXX why not "ide"? *) ] in @@ -1134,7 +1135,13 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = (* Update 'alias scsi_hostadapter ...' *) let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in match block_type with - | Virtio_blk -> + | Virtio_blk | Virtio_SCSI -> + let block_module = + match block_type with + | Virtio_blk -> "virtio_blk"...
2009 Jun 28
5
How to change Disk sequence on DELL R900 CENTOS 5.3?
...wo PERC6/E card. DELL 6/I control 5 internal disks. The original disk sequence are: /dev/sda1 /boot /dev/sda2 / /dev/sdb1 swap ... after I configured PERC6/E disks and reboot, /dev/sda change to RAID disk and original /boot and / change to /dev/sde1 and /dev/sde2. My modprobe.conf is: alias scsi_hostadapter megaraid_sas alias scsi_hostadapter1 ata_piix alias eth0 bnx2 alias eth0.1998 bnx2 alias eth1 bnx2 how to change sequence back? Thanks. ______________________________________________________________________________________________________ ?????????Yahoo!??????2.0????????????? http://tw.mg...
2016 Apr 12
3
[PATCH] v2v: add support for virtio-scsi
..."virtio_scsi"; "virtio_net"; "virtio_pci" ] else [ "sym53c8xx" (* XXX why not "ide"? *) ] in @@ -1134,7 +1135,7 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = (* Update 'alias scsi_hostadapter ...' *) let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in match block_type with - | Virtio_blk -> + | Virtio_blk | Virtio_SCSI -> if paths <> [] then ( (* There's only 1 scsi controller in the converted guest....
2023 Mar 10
1
[V2V PATCH v3 1/6] Revert "Remove guestcaps_block_type Virtio_SCSI"
...alled.") diff --git a/convert/convert_linux.ml b/convert/convert_linux.ml index d5c0f24d..dab4f36d 100644 --- a/convert/convert_linux.ml +++ b/convert/convert_linux.ml @@ -1068,8 +1068,12 @@ let convert (g : G.guestfs) source inspect i_firmware keep_serial_console _ = (* Update 'alias scsi_hostadapter ...' *) let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in (match block_type with - | Virtio_blk -> - let block_module = "virtio_blk" in + | Virtio_blk | Virtio_SCSI -> + let block_module = + match block_type wit...
2023 Mar 07
1
[V2V PATCH v2 1/5] Revert "Remove guestcaps_block_type Virtio_SCSI"
...alled.") diff --git a/convert/convert_linux.ml b/convert/convert_linux.ml index d5c0f24d..dab4f36d 100644 --- a/convert/convert_linux.ml +++ b/convert/convert_linux.ml @@ -1068,8 +1068,12 @@ let convert (g : G.guestfs) source inspect i_firmware keep_serial_console _ = (* Update 'alias scsi_hostadapter ...' *) let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in (match block_type with - | Virtio_blk -> - let block_module = "virtio_blk" in + | Virtio_blk | Virtio_SCSI -> + let block_module = + match block_type wit...
2016 Jul 01
4
[PATCH 0/2] v2v: fix setting custom modprobe options
Hi, due to a broken discover_modpath function, and to a wrong block for a match statement, the modprobe options for virtio/SCSI blocks where not written at all. This series provides a small refactor, and the fixes. Thanks, -- Pino Toscano (2): v2v: fix and implify the internal Convert_linux:discover_modpath v2v: fix priority of match in configure_kernel_modules v2v/convert_linux.ml | 34
2023 Mar 13
1
[V2V PATCH v2 1/5] Revert "Remove guestcaps_block_type Virtio_SCSI"
...a/convert/convert_linux.ml b/convert/convert_linux.ml > index d5c0f24d..dab4f36d 100644 > --- a/convert/convert_linux.ml > +++ b/convert/convert_linux.ml > @@ -1068,8 +1068,12 @@ let convert (g : G.guestfs) source inspect i_firmware keep_serial_console _ = > (* Update 'alias scsi_hostadapter ...' *) > let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in > (match block_type with > - | Virtio_blk -> > - let block_module = "virtio_blk" in > + | Virtio_blk | Virtio_SCSI -> > + let block_module =...
2016 Apr 14
0
[PATCH v2] v2v: add support for virtio-scsi
..."virtio_scsi"; "virtio_net"; "virtio_pci" ] else [ "sym53c8xx" (* XXX why not "ide"? *) ] in @@ -1136,7 +1137,13 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = (* Update 'alias scsi_hostadapter ...' *) let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in match block_type with - | Virtio_blk -> + | Virtio_blk | Virtio_SCSI -> + let block_module = + match block_type with + | Virtio_blk -> "virtio_blk"...
2011 Mar 30
2
nlockdmgr listen on privileged port
...dmgr listens on to function under a privileged port. So what I did was try to hardcode the port by editing /etc/sysconfig/nfs # TCP port rpc.lockd should listen on. LOCKD_TCPPORT=1011 # UDP port rpc.lockd should listen on. LOCKD_UDPPORT=1011 # And /etc/modprobe.conf alias eth1 e1000e alias scsi_hostadapter 3w-9xxx alias scsi_hostadapter1 usb-storage alias eth0 e1000e options lockd nlm_udpport=1011 options lockd nlm_tcpport=1011 and then restarting the pormap service. I've even tried restarting the network service, but unfortunately nothing seems affected: [root at stallion:/etc/init.d] $ rpc...
2007 Feb 15
4
SiI 3114 and RAID
...3% / /dev/dm-1 99 13 81 14% /boot tmpfs 1012 0 1012 0% /dev/shm /dev/dm-2 9917 151 9254 2% /tmp /dev/dm-3 9917 237 9168 3% /var # cat /etc/modprobe.conf | tail -n 1 alias scsi_hostadapter sata_sil I installed CentOS 4.4 64bit on the other system, but I could not enable RAID. The installer was always seeing 2 separate drives instead of one RAID device. Was it my mistake? Did I not enable the proper settings in the BIOS? (I tried quite a few different settings) Or is it perhaps...
2016 Apr 14
1
[PATCH v4] v2v: add support for virtio-scsi
..."virtio_scsi"; "virtio_net"; "virtio_pci" ] else [ "sym53c8xx" (* XXX why not "ide"? *) ] in @@ -1134,7 +1135,13 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = (* Update 'alias scsi_hostadapter ...' *) let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in match block_type with - | Virtio_blk -> + | Virtio_blk | Virtio_SCSI -> + let block_module = + match block_type with + | Virtio_blk -> "virtio_blk"...
2003 Oct 07
5
auto 'modprobe wct1xxp' on startup?
...sk startup failed, and I think it's b/c the wct1xxp module is not loaded. What is the recommended way to ensure this happens? I've been reading and found that modprobe (on startup, it appears) uses /etc/modules.conf, and here's what mine looks like: alias eth0 e1000 alias scsi_hostadapter megaraid alias usb-controller ehci-hcd alias usb-controller1 usb-uhci options torisa base=0xd0000 alias char-major-196 torisa #post-install wcfxs /sbin/ztcfg #post-install wcfxsusb /sbin/ztcfg #post-install torisa /sbin/ztcfg #post-install tor2 /sbin/ztcfg #post-...
2005 Jul 25
1
Fighting some install issues with a new box
Folks- I have had a machine dropped in my lap that I am trying to get CentOS 4.1 to run on as a first pass (the hope is for it to eventually run Rocks -- http://www.rocksclusters.org , which uses CentOS 4.x as its underlying OS). The machine has 2 Opteron 250DP (2.4GHz) with 4 GB of RAM. It is using a Tyan Thunder K8WE (S2895A2NRF) motherboard with an nVidia nForce chipset --
2023 Mar 13
1
[V2V PATCH v2 1/5] Revert "Remove guestcaps_block_type Virtio_SCSI"
...nux.ml b/convert/convert_linux.ml >> index d5c0f24d..dab4f36d 100644 >> --- a/convert/convert_linux.ml >> +++ b/convert/convert_linux.ml >> @@ -1068,8 +1068,12 @@ let convert (g : G.guestfs) source inspect i_firmware keep_serial_console _ = >> (* Update 'alias scsi_hostadapter ...' *) >> let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in >> (match block_type with >> - | Virtio_blk -> >> - let block_module = "virtio_blk" in >> + | Virtio_blk | Virtio_SCSI -> >> +...
2016 Jul 01
0
[PATCH 2/2] v2v: fix priority of match in configure_kernel_modules
...2 insertions(+), 2 deletions(-) diff --git a/v2v/convert_linux.ml b/v2v/convert_linux.ml index 0296844..a5ba8dd 100644 --- a/v2v/convert_linux.ml +++ b/v2v/convert_linux.ml @@ -1147,7 +1147,7 @@ let rec convert ~keep_serial_console (g : G.guestfs) inspect source rcaps = (* Update 'alias scsi_hostadapter ...' *) let paths = augeas_modprobe ". =~ regexp('scsi_hostadapter.*')" in - match block_type with + (match block_type with | Virtio_blk | Virtio_SCSI -> let block_module = match block_type with @@ -1180,7 +1180,7 @@ let rec convert ~keep_ser...
2014 Dec 21
1
WARNING: No module xenblk found for kernel
...q kernel kernel-xen > > > Peter > _______________________________________________ > CentOS mailing list > CentOS at centos.org > http://lists.centos.org/mailman/listinfo/centos Check your /etc/modprobe.conf and see if you have a line that specifies xenblk, such as 'alias scsi_hostadapter xenblk'. I converted a xen vm to kvm and got that error for the above reason. Bill
2006 Mar 14
1
Controller detection order
...'s in the 850. My problem is the enclosure gets detected first, hijacking sda and sdb from the internal SATA drive and causing kernel panic at boot time. I've tried changing the order in modprobe to the following: alias eth0 tg3 alias eth1 tg3 alias eth2 e1000 alias eth3 e1000 alias scsi_hostadapter ata_piix alias scsi_hostadapter1 mptbase alias scsi_hostadapter2 mptscsih alias usb-controller ehci-hcd alias usb-controller1 uhci-hcd previously ata_piix was below the other two. This hasn't made any difference though. Can anyone suggest any solutions? thanks Nick