search for: marvelously

Displaying 20 results from an estimated 509 matches for "marvelously".

2006 Aug 23
7
How to set up real network cards?
I have a hardware here with 9 NICs (8 of them on-board) and I want to set up 8 NICs as real network interfaces, one for each xen domain. The 9th NIC should be Domain-0 which is working well. Currently I have only set up one domain which is running in bridged mode at the moment. I am currently trying to set up a second domain which uses eth2 but I didn''t succeed. I want to get the
2020 Jul 21
0
Errors observing when talloc-2.3.1 is cross compiled
Hi Team, We need freeradius-server-3.0.21 to be cross compiled for armv7 based Marvell switch. Toolchain: armv7-marvell-linux-gnueabi-LE_i686_20160226 host : arm-none-linux-gnueabi CC : arm-marvell-linux-gnueabi-gcc For that talloc is dependent library. Trying to cross compile talloc-2.3.1 to for our architecture with below command. ./configure --disable-python --enable-gccdeps
2008 Dec 10
4
5.2 driver for Marvell Yukon 88E8042 PCI-E Fast Ethernet controller
Hello, I'm trying to install CentOS 5.2 on an HP 6730s notebook. All's going well except for one little item -- the networking. Never thought I'd have trouble with an Ethernet adapter, so I didn't even check before buying this machine; it was cheap. The adapter is a Marvell Yukon 88E8042 PCI-E Fast Ethernet controller. I can't find a Linux driver for it except one that
2011 Mar 04
5
CentOS and Marvell SAS/SATA drivers
Hello all, I've been on a real roller coaster ride getting a large virtual host up and running. One troublesome thing I've discovered (the hard way) is that the drivers for Marvell SAS/SATA chips still have a few problems. After Googling around quite a bit, I see a significant number of others have had similar issues, especially evident in the Ubuntu forums but also for a few
2017 Apr 10
4
OT: systemd Poll
Jonathan Billings wrote: <snip> >> And *why* random NIC names? Quick, you've got servers from 5 >> manufacturers, of different ages... what's the NIC going to be called? >> Do names like enp5s0 offer any convenience to *anyone* not a hardware >> engineer? > > Unrelated to systemd. This actually started happening in RHEL6 with > the biosdevname
2013 Jun 25
5
Marvell, IOMMU/VT-d, and pci-phantom
Hi, guys. I''ve been trying to use the pci-phantom command line options to xen so as to work around the hardware issue with the Marvell 88SE91xx SATA controllers in IOMMU ([Intel:] VT-d) mode, but I cannot seem to get my head around it. From having had a glance here: http://xenbits.xen.org/docs/unstable/misc/xen-command-line.html and in particular the syntax described as such:
2006 Aug 17
1
Help: Marvell sk98lin driver missing from Centos 3 PXE initrd.img
I'm new to the lists so sorry about any faux pas I may have made. Also I apologize for the length, but I wanted to be sure I covered most of the details. I'm trying to do a PXE install on an Intel 1435VP2 server machine. The PXE install has worked on all the older machines in the cluster, so I know PXE is working. However, these new Intel server machines only support PXE booting from
2007 Jan 09
4
Yukon Nic
He Everyone, We found out that till version 3.02 the Yukon nic is supported after it gives code errors, i'm working a lot with ehtherboot via drbl / clonezilla, and together with Steven Shiau we ask you guys if you can arrange that the Yukon can be supported again. Our thanx in advance. Dave & Steven
2008 Nov 12
0
Cannot see disks attached to Marvell controller
I've got an Asus P5E3WSPro with 8 SATA ports and 8 disks attached. 6 disks are on one controller (and work perfectly) and 2 are on a second Marvell controller. FreeBSD sees the controller, but not the disks. If I move a working disk to the Marvell controller I can boot off it up to the stage of mounting root where it fails to see the disk. atacontrol shows: ATA channel 2: Master:
2007 Feb 07
2
Support of Marvel Yukon Gigabit Ethernet
Hello, Marvel Yukon Gigabit Ethernet is supported by CentOS ? -- -- Devel in Precio http://www.pas-world.com
2014 Jan 24
1
ata marvel errors after kernel upgrade
Hi, After upgrading to kernel 2.6.32-431.1.2.el6.x86_64 the messages below keep appearing in "/var/log/messages". -------------------------------------------------------------------------- ata16.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 ata16.00: irq_stat 0x40000001 scsi 16:0:0:0: [sg18] CDB: Read Capacity(10): 25 00 00 00 00 00 00 00 00 00 ata16.00: cmd
2009 Apr 15
6
Supermicro AOC-SASLP-MV8
Bouncing a thread from the device drivers list: http://opensolaris.org/jive/thread.jspa?messageID=357176 Does anybody know if OpenSolaris will support this new Supermicro card, based on the Marvell 88SE6480 chipset? It''s a true PCI Express 8 port JBOD SAS/SATA controller with pricing apparently around $125. If it works with OpenSolaris it sounds pretty much perfect. --------------
2012 Dec 09
2
Problem with secondary sata controller
I am having problems getting my 64-bit Debian Squeeze (Xen version 4.0, Linux Kernel 2.6.32) dom0 to recognize a harddrive connected to a secondary sata controller. My motherboard is a Gigabyte GA-X79-UP4 and has two sata controllers. The first is controlled by an Intel X79 chipset and the second is controlled by a Marvell 88SE9172 chip. During the initial install of Debian everything is fine and
2023 May 09
1
[Bridge] [RFC PATCH net-next 3/5] flow_offload: Reject matching on layer 2 miss
Adjust drivers that support the 'FLOW_DISSECTOR_KEY_META' key to reject filters that try to match on the newly added layer 2 miss option. Add an extack message to clearly communicate the failure reason to user space. Example: # tc filter add dev swp1 egress pref 1 proto all flower skip_sw l2_miss true action drop Error: mlxsw_spectrum: Can't match on "l2_miss". We have
2007 Apr 23
1
extract from a data frame
hello, I'd like know how to do to extract data from a frame for example how can I do to extract only the data where variety=victory or variety=golden rain thanks. > Oats Block Variety nitro yield 1 I Victory 0.0 111 2 I Victory 0.2 130 3 I Victory 0.4 157 4 I Victory 0.6 174 5 I Golden Rain 0.0 117 6 I Golden Rain
2007 Apr 23
0
R: extract from a data frame
Oats[Oats$Variety %in% c("Victory", "Golden Rain"),] or subset(Oats, Variety %in% c("Victory", "Golden Rain")) Stefano -----Messaggio originale----- Da: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch]Per conto di elyakhlifi mustapha Inviato: luned? 23 aprile 2007 9.56 A: R-help at stat.math.ethz.ch Oggetto: [R] extract from
2004 Dec 31
0
centos3.4beta and Getting the Marvell/Syskonnect Gigabit Nic to work
My dd (sk98lin v7.09) supports 3c940 (Marvel/Syskonnect) which the stock v6.x drivers doesn't . Successfull tested on a Asus A-7N8X Deluxe with Marvell Gigabit Lan the dd is available at http://slackpkg.ath.cx/centos/disk/sk98lin/
2014 Oct 28
1
[Bridge] Antwort: RSTP daemon and Marvel switch
Hello Satya, > RSTP daemon runs in application and stops the kernel stp and informs > to pass the packets to application layer. > RSTP daemon waits in raw socket with stp filter. > You just need to change the a bit code for port wise that all. ok thanks, do I need the DSA (Distributed Switch Architecture) driver support to distinguish from which port a frame arrived?
2008 Mar 26
1
5.1 did not detect marvell e-net controller
on an ASUS P5K-E wifi (wifi disabled in bios) board with: 02:00.0 Ethernet controller: Marvell Technology Group Ltd. 88E8056 PCI-E Gigabit Ethernet Controller (rev 12) centos 5.1 did not configure the device. Anyone else see this or have a solution? Tried forcing sky2 module, but init just says device does not seem to be present even tho lspci shows it on the bus. Is there another kernel
2013 Nov 09
1
disk controller not working with xen: Marvell Technology Group Ltd. 88SE9172
Dear Xen folk, I''m trying to use xen as shipped with debian 7.0. The system has 13 disks over 3 controllers. When I boot normal linux, I get this (condensed output from lshw): product: MV64460/64461/64462 System Controller, Revision B disk:0 disk:1 disk:2 disk:3 disk:4 disk:5 product: 88SE9172 SATA 6Gb/s Controller disk:0 disk:1