Ralink RA3290 does not work on Oracle Linux

I have just bought a new HP Pavilion G6-2213so which seems to have a ralink rt3290 wifi chipset
(Just so you know I'm not very experienced with linux when it comes to install new drivers etc)
I have installed:
Red Hat Enterprise Linux Server release 6.3 (Santiago)
Linux hp-v074617 2.6.39-300.17.2.el6uek.x86_64
I have downloaded a driver from mediatek, unzipped it and
ran
make
make install
modprobe rt3290sta
When I run i got
lsmod|grep rt3290
rt3290sta 1255193 0
iwconfig
lo no wireless extensions.
ra0 Ralink STA
Link Quality:0 Signal level:0 Noise level:0
Rx invalid nwid:0 invalid crypt:0 invalid misc:0
eth0 no wireless extensions.
rfkill list all
0: hp-wifi: Wireless LAN
Soft blocked: no
Hard blocked: no
1: hp-bluetooth: Bluetooth
Soft blocked: yes
Hard blocked: no
dmesg|grep rt3290
rt3290sta: module license 'unspecified' taints kernel.
(Related to GPL I think but not sure if it has an impact)
To me it seemes that the system are aware of my wifi card but still I can not get any wifi connection
Apprecate if someone can tell me if I missed something or what other steps I need to do to make it work
Best regards
Magnus

Support and demand for Wifi on a Linux enterprise server system (RHEL based) is generally limited and usually a desktop system requirement, for which other more suitable Linux distributions exist.
You need to be 100 % about the model of your Wifi adapter.
What is the output of lspci -v related to your Wifi adpater?
Does the driver you download support the Oracle UEK2 kernel (2.6.39)?
You could try your installation starting the system from the original RHEL kernel at the Grub menu to see if it makes any difference. If HP support nor the OS installation provides a driver for your hardware, check http://elrepo.org/tiki/tiki-index.php which focuses on hardware related packages to enhance Enterprise Linux.

Similar Messages

  • Ralink RT5390 Does Not Work on the UEK Kernel

    We installed OL6.3 and Ubuntu 12.04 on a new Asus X45A notebook. It has a Ralink RT5390 wireless card. With Ubuntu, both wifi and video work flawlessly. However, the wifi driver (from elrepo) does not work for the the uek kernel (2.6.39). While the wifi driver works when boot into the RHEL kernel (2.6.32), it created an "even bigger problem" in that the video starts at about 1/10 from the left edge of the screen.
    As a result, we can only boot into Ubuntu on this new notebook, but we would like to use the uek kernel. Any suggestion will be appreciated.

    Dude wrote:
    It wouldn't surprise me if was more power efficient because half your hardware, e.g. wireless apparently isn't working ;-) I have three notebooks running OL6. Wireless works on all three of them. (One of the notebooks its wireless has problem with the UEK kernel, but no problem with the RHEL kernel.)
    However, power management support means computer sleep and idle functions to slow down your computer's power
    consumption when it is not needed, e.g. down clock your CPU and slow down your hardware, dim your screen, etc.
    when running on battery, etc.This needs further verification, but all these functions seem to be working with OL6.
    But again, please no one be fooled by my overly optimistic and simplistic comments*. The reality is, I am glad OL6 desktop works at all.
    * For example, I actually installed OL6 on 4 notebooks, one of them "does not work" because I couldn't dim the screen. I did not intend to lie, but subconsciously, I somewhat forgot that there was this failed case.
    Edited by: Ping-Wu on Dec 19, 2012 7:48 AM

  • Headstart forms - down key does not work in Oracle Forms 11g

    Just moved forms from 10g to 11g.
    But when run the down key does not work. The .res file looks OK.
    I have included the hst65.jar in the search path for jar-files in formsweb.cfg.
    Anybody had this isssue?

    It was an erroneous .res-file! So problem solved. :-)

  • Downcasting In Object PL/SQL Does not Work in Oracle 10g 10.1.0.2

    create type one_t as object (
    x number, y date ) not final
    create type two_t under one_t()
    set serverout on
    declare
    super one_t;
    sub two_t := two_t(1, sysdate);
    begin
    super := one_t(1, sysdate);
    sub := new two_t(1, sysdate);
    dbms_output.put_line('sub ' || sub.x || ' ' || sub.y );
    select treat(super as two_t) into sub from dual;
    dbms_output.put_line('super ' || super.x || ' ' || super.y );
    if sub is null then
    dbms_output.put_line('stupid');
    end if;
    if sub is of (two_t) then
    dbms_output.put_line('stupid');
    end if;
    end;
    The Other Piece Does not Even Compile
    declare
    super one_t;
    sub two_t := two_t(1, sysdate);
    begin
    super := one_t(1, sysdate);
    sub := treat(super as two_t);
    dbms_output.put_line('sub ' || sub.x || ' ' || sub.y );
    select treat(super as two_t) into sub from dual;
    dbms_output.put_line('super ' || super.x || ' ' || super.y );
    if sub is null then
    dbms_output.put_line('stupid');
    end if;
    if sub is of (two_t) then
    dbms_output.put_line('stupid');
    end if;
    end;
    ORA-06502: PL/SQL: numeric or value error: cannot assign supertype instance to
    subtype
    ORA-06512: at line 6

    You need use correct type when you create object.
    Don't forget object in reality is a memory pointer,
    so what if you don't allocate correct memory in creation,
    you can't treat object as subtype.
    And meanwhile, it doesn't depend on Oracle version -
    your example doesn't work in 9.2.0.1 for example.
    SQL> declare
      2  super one_t;
      3  sub two_t := two_t(1, sysdate);
      4  begin
      5  super := two_t(1, sysdate);
      6  sub := treat(super as two_t);
      7  dbms_output.put_line('sub ' || sub.x || ' ' || sub.y );
      8  select treat(super as two_t) into sub from dual;
      9  dbms_output.put_line('super ' || super.x || ' ' || super.y );
    10  if sub is null then
    11  dbms_output.put_line('stupid');
    12  end if;
    13  if sub is of (two_t) then
    14  dbms_output.put_line('stupid');
    15  end if;
    16  end;
    17  /
    sub 1 08.06.05
    super 1 08.06.05
    stupid
    &nbsp
    PL/SQL procedure successfully completed.Rgds.

  • Downcasting in Object PL/SQL Does not Work in Oracle 10g Enterprise Edition

    create type one_t as object (
    x number, y date ) not final
    create type two_t under one_t()
    set serverout on
    declare
    super one_t;
    sub two_t := two_t(1, sysdate);
    begin
    super := one_t(1, sysdate);
    sub := new two_t(1, sysdate);
    dbms_output.put_line('sub ' || sub.x || ' ' || sub.y );
    select treat(super as two_t) into sub from dual;
    dbms_output.put_line('super ' || super.x || ' ' || super.y );
    if sub is null then
    dbms_output.put_line('stupid');
    end if;
    if sub is of (two_t) then
    dbms_output.put_line('stupid');
    end if;
    end;
    The Other Piece Does not Even Compile
    declare
    super one_t;
    sub two_t := two_t(1, sysdate);
    begin
    super := one_t(1, sysdate);
    sub := treat(super as two_t);
    dbms_output.put_line('sub ' || sub.x || ' ' || sub.y );
    select treat(super as two_t) into sub from dual;
    dbms_output.put_line('super ' || super.x || ' ' || super.y );
    if sub is null then
    dbms_output.put_line('stupid');
    end if;
    if sub is of (two_t) then
    dbms_output.put_line('stupid');
    end if;
    end;
    ORA-06502: PL/SQL: numeric or value error: cannot assign supertype instance to
    subtype
    ORA-06512: at line 6

    You need use correct type when you create object.
    Don't forget object in reality is a memory pointer,
    so what if you don't allocate correct memory in creation,
    you can't treat object as subtype.
    And meanwhile, it doesn't depend on Oracle version -
    your example doesn't work in 9.2.0.1 for example.
    SQL> declare
      2  super one_t;
      3  sub two_t := two_t(1, sysdate);
      4  begin
      5  super := two_t(1, sysdate);
      6  sub := treat(super as two_t);
      7  dbms_output.put_line('sub ' || sub.x || ' ' || sub.y );
      8  select treat(super as two_t) into sub from dual;
      9  dbms_output.put_line('super ' || super.x || ' ' || super.y );
    10  if sub is null then
    11  dbms_output.put_line('stupid');
    12  end if;
    13  if sub is of (two_t) then
    14  dbms_output.put_line('stupid');
    15  end if;
    16  end;
    17  /
    sub 1 08.06.05
    super 1 08.06.05
    stupid
    &nbsp
    PL/SQL procedure successfully completed.Rgds.

  • SetForeground in Applet does not work (Netbeans under Linux)

    I'm attempting to make a Breakout version of java (if I go through with it) and the first issue that I encountered is that I can't change the color of the moving rectangle (you know, the thing you hit the ball with). I tried the code under Textpad on a Windows machine and that worked fine, but not under Netbeans in Linux using jdk 1.6.0_01.
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Breakout extends Applet implements MouseListener, MouseMotionListener{
         int mouse_x, mouse_y;
         Thread t;
         public void init(){
              addMouseListener(this);
              addMouseMotionListener(this);
         public void start(){
              t= new Thread();
              t.start();
         public void run(){}
         public void mouseClicked(MouseEvent me){ }
         public void mouseEntered(MouseEvent me){ }
         public void mouseExited(MouseEvent me){ }
         public void mousePressed(MouseEvent me){ }
         public void mouseReleased(MouseEvent me){ }
         public void mouseDragged(MouseEvent me){ }
         public void mouseMoved(MouseEvent me){
              mouse_x = me.getX();
              if(mouse_x>=400)
                   mouse_x=400;
              repaint();
         public void stop() {}
         public void destroy(){ }
         public void paint(Graphics g){
              setBackground(Color.black);
              setForeground(Color.white); //doesn't work              
              g.drawRoundRect(mouse_x, 600, 50, 20, 20, 20);
    }I'm wondering if it's because the Applet under Linux uses the Native l&f theme while appets under Windows uses the Windows l&f theme.
    Any thoughts would be helpful!

    setForeground(Color.white); //doesn't work
    g.drawRoundRect(mouse_x, 600, 50, 20, 20, 20);Change this to:
    g.setColor(Color.WHITE);
    g.drawRoundRect(mouse_x, 600, 50, 20, 20, 20);You can move the background setting into method init(), calling it once is enough.
    I'm wondering if it's because the Applet under Linux
    uses the Native l&f theme while appets under Windows
    uses the Windows l&f theme.You use java.awt.Applet, so you use AWT which means there's no L&F theme (as in Swing) but it's native components being responsible.

  • Client-cert auth impl in web.xml does not work in Oracle Application Server

    Hi,
    I am new to implementing security features on the web applications.. I have developed a new web service using jdev1012 and deployed in OAS 10.1.2. Its working fine according to the business requirements, but I am in need of implementing client-cert authentication to enable the web service available to only those who have client certificate.
    My server details are:
    Oracle Application Server 10g Release 2 (10.1.2)
    Server certificate is in place and SSL mode have been already enabled.. able to access my web service through https://<mydomain.com>/myws/TreqWS as well able to see the WSDL file through https://<mydomain.com>/myws/TreqWS?WSDL.
    I tried to include the following in my web.xml file as part of implementing CLIENT-CERT authentication.
    <security-constraint>
    <display-name>SecurityConstraint</display-name>
    <web-resource-collection>
    <web-resource-name>WSCollection</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    <login-config>
    <auth-method>CLIENT-CERT</auth-method>
    <realm-name>WSCollection</realm-name> <!-- am not sure about this realm-name and its purpose -->
    </login-config>
    It is not woking as expected, though I have restarted my oc4j container after including this content to the web.xml file. i.e, I am able to invoke the web service though my sample java client program, though I donot have client certificate/keystore.
    I believe I am missing something..Can anyone help me in this regard to implement CLIENT-CERT authentication successfully?
    Thanks,
    Ms

    I am having the same problem with doc and xsl. I have added this
    <mime-mapping>
    <extension>xls</extension>
    <mime-type>application/vnd.ms-excel</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    to my web.xml. I even restarted the server. I still see doc and xsl in binary.
    Is there some other setting that needs to take place?
    I am using WL6.1 with fixpack 1.
    I can see the doc and excel files in the browser if I don't go through the weblogic
    server. That just confirms it's not my browser.
    Kumar Allamraju <[email protected]> wrote:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <html>
    It works fine for me in 6.1 SP1.
    <br><br>
    If the following doesn't work , can you
    <br>try application/winword instead of application/msword?
    <p>--
    <br>Kumar
    <p>Siming Mu wrote:
    <blockquote TYPE=CITE>Hi,
    <p>I setup in my web.xml a mime mapping as follows,
    <p><mime-mapping>
    <br><extension>doc</extension><mime-type>application/msword</mime-type>
    <br></mime-mapping>
    <p>When I specify a test.doc url, the doc file appears in my browser
    as
    binary data
    <br>instead of download.
    <p>Please reference change request 055002, which decribes this problem. 
    According
    <br>to edocs, it has been fixed in wls6.1sp1.
    <p>But I am seeing it fixed.  Am I doing anything wrong? Thanks.
    <p>Siming</blockquote>
    </html>

  • Ankh SVN does not work with Oracle DB Project in ODT 11.1.0.5.10 beta

    I was able to add the new Oracle Database Project to my Subversion repository using TortioseSVN, but unfortunately, the Ankh Source Control options do not appear within Visual Studio and none of the icon overlays appear within Visual Studio.
    Does anyone know any way to get this to work? Does anyone know if this would be an issue with Ankh or with the new Oracle Database Project?
    null

    Yes. Visual C# class projects work just fine with Ankh. It's only the new Oracle Database Project that doesn't have any Ankh menu options or Ankh icon overlays.
    Check out this screenshot of my Visual Studio Solution explorer:
    http://www.mixcollective.com/media/559/oracledbproject.jpg
    You'll see that none of the folders under "Oracle.New" (a new 11.1.0.5.10 beta Oracle Db Project) have the green/read/yellow Ankh icons that indicate the status of the file. Also, none of the repository commit, update, etc options are available when you right click on folders or files in the project.

  • "contains" and "order by" does not work in Oracle 9i

    Hello All.
    I have next query:
    select q.*
    from
    (SELECT v.id, o.longname as name, v.dord,
    TP.longname as TYPE_NAME, v.actualfl, o.NORD, v.version
    FROM R_ORD O, R_VORD V, R_TPORD TP, R_BODY b
    WHERE TP.ID = o.tp_id and v.ORD_ID = o.ID
    and v.ID = b.ID(+) and v.actualfl = '1'
    and CONTAINS( o.longname, 'bank%', 1) > 0
    ) q
    ORDER BY name
    It's work perfect in Oracle 8.1.7, but I can not get result of the query in Oracle 9.
    If I comment
    -- ORDER BY name
    or
    -- and CONTAINS( o.longname, 'bank%', 1) > 0
    then the query return a result.
    Please help.
    Thanks in advance.
    P.S. I use Oracle 9i SR1 and
    sort_area_size = 524288
    sort_area_retained_size = 0
    Victor Zogin.

    Description Cost Cardinality Byte
    SELECT STATEMENT, GOAL = CHOOSE               6     1     1260
    SORT ORDER BY               6     1     1260
    COUNT                         
    NESTED LOOPS OUTER               4     1     1260
    NESTED LOOPS               8     1     1247
    NESTED LOOPS               3     61     11895
    TABLE ACCESS BY INDEX ROWID     OMEGA     R_TPORD     1     1     140
    INDEX RANGE SCAN     OMEGA     PK_R_TPORD     1     1     
    TABLE ACCESS BY INDEX ROWID     OMEGA     R_VORD     2     149     8195
    INDEX RANGE SCAN     OMEGA     IDX_R_VORD_ACT     1     149     
    TABLE ACCESS BY INDEX ROWID     OMEGA     R_ORD     8     1     1052
    DOMAIN INDEX     OMEGA     CK_ORD_IDX     4     1     
    INDEX UNIQUE SCAN     OMEGA     PK_R_BODY          22437     291681

  • PL/SQL does not work in Oracle 8i Personal Edition

    I just installed Oracle 8i Personal Edition for Win 98. Everything works perfectly, except the PL/SQL.
    Then I tried to install Oracle 8i EM, but I always get the listener or adapter error. Even when I tried to start the listener from lsnrctl prompt, it gives me those errors. Anyone can help?

    You need use correct type when you create object.
    Don't forget object in reality is a memory pointer,
    so what if you don't allocate correct memory in creation,
    you can't treat object as subtype.
    And meanwhile, it doesn't depend on Oracle version -
    your example doesn't work in 9.2.0.1 for example.
    SQL> declare
      2  super one_t;
      3  sub two_t := two_t(1, sysdate);
      4  begin
      5  super := two_t(1, sysdate);
      6  sub := treat(super as two_t);
      7  dbms_output.put_line('sub ' || sub.x || ' ' || sub.y );
      8  select treat(super as two_t) into sub from dual;
      9  dbms_output.put_line('super ' || super.x || ' ' || super.y );
    10  if sub is null then
    11  dbms_output.put_line('stupid');
    12  end if;
    13  if sub is of (two_t) then
    14  dbms_output.put_line('stupid');
    15  end if;
    16  end;
    17  /
    sub 1 08.06.05
    super 1 08.06.05
    stupid
    &nbsp
    PL/SQL procedure successfully completed.Rgds.

  • Kernel 2.6.32 does not work with RT2860 Wireless Card

    since 2.6.31 my RT-2870 is not longer working
    ifconfig says that the Wireless ra0 was renamed to wlan0 and since then its not longer working
    since 2.6.32 my RT-2860 (build in) is not longer working too
    it was renamed from ra0 to wlan0 too and read above^^
    whats happening there?
    since now i used wpa_supplicant but i already tried with NetworkManager and WICD
    //Edit: 2870 works in 2.6.32
    Last edited by Vamp898 (2009-12-17 06:58:27)

    The Official RT-2860 from the RaLink homepage does not work too
    Homepage: http://www.ralinktech.com/support.php?s=2
    Error:
    make -j3 HOSTCC=i686-pc-linux-gnu-gcc CROSS_COMPILE=i686-pc-linux-gnu- LDFLAGS= -j1 -C /usr/src/linux M=/var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux PLATFORM=PC CHIPSET=2860 RT28xx_DIR=/var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0 RT28xx_MODE=STA clean modules
    make: Entering directory `/usr/src/linux-2.6.32'
    CLEAN /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/Module.symvers /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/modules.order
    LD /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/built-in.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/crypt_md5.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/crypt_sha2.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/crypt_hmac.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/crypt_aes.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/crypt_arc4.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/mlme.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_wep.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/action.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_data.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/rtmp_init.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_tkip.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_aes.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_sync.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/eeprom.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_sanity.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_info.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_cfg.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_wpa.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/dfs.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/spectrum.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/rtmp_timer.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/rt_channel.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_profile.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_asic.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../common/cmm_cmd.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/assoc.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/auth.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/auth_rsp.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/sync.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/sanity.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/rtmp_data.o
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/rtmp_data.c: In Funktion »STAHandleRxMgmtFrame«:
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/rtmp_data.c:689: Warnung: Variable »pRxD« wird nicht verwendet
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/connect.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../sta/wpa.o
    CC [M] /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.o
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.c: In Funktion »RtmpOSNetDevAttach«:
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.c:1689: Fehler: »struct net_device« hat kein Element namens »open«
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.c:1690: Fehler: »struct net_device« hat kein Element namens »stop«
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.c:1691: Fehler: »struct net_device« hat kein Element namens »hard_start_xmit«
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.c:1692: Fehler: »struct net_device« hat kein Element namens »do_ioctl«
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.c:1702: Fehler: »struct net_device« hat kein Element namens »get_stats«
    /var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.c:1736: Fehler: »struct net_device« hat kein Element namens »validate_addr«
    make[1]: *** [/var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux/../../os/linux/rt_linux.o] Fehler 1
    make: *** [_module_/var/tmp/portage/net-wireless/ralink-rt2860-2.2.0.0/work/2009_0918_RT2860_Linux_STA_v2.2.0.0/os/linux] Fehler 2
    make: Leaving directory `/usr/src/linux-2.6.32'

  • Oracle Applications 11i Load Balancing does not work with RAC one Node

    Hi all,
    Could you help me to resolve this issue.
    Architecture environment is :
    - One APPS tier node
    - Two nodes Oracle Database Appliance (Primary node 1 holds INSTANCE_1 et Secondary node is configurured to holds INSTANCE_2), i.e RAC one Node.
    - The primary node have instance_name SIGM_1 and the secondary node have instance_name SIGM_2, but in RAC one node, the secondary instance is not alive.
    We convert our EBS 11i environment to RAC following note ID Using Oracle 11g Release 2 Real Application Clusters with Oracle E-Business Suite Release 11i [ID 823586.1].
    When testing Database failover, Oracle Applications 11i load balancing does not work anymore.
    The root cause is that, when the primary node of the Rac one node is down, the INSTANCE_NAME_1 is automaically relocating to the surviving node,.
    During test failover, we imagine that when the primary node goes down, the secondary node start or relocate database with instance_name SIGM_2, and in that case the Oracle Applications load balancing works.
    Currently, when the primary node goes down, the instance_name SIGM_1 is relocated on the secondary node, which cause failure of Oracle Applications Load Balancing.
    Thank you for your advice.
    Moussa

    This is something I observed a long time ago for Safari (ie: around version 1). I'm not sure this is Safari, per se, but OpenSSL that is responsible for the behavior. I'm pretty sure Chrome does this and I've seen some Linux browsers do it.
    What I have done at the last two companies I've worked for is recommend that our clients do not use SSL SessionID as the way of tracking sticky sessions on web servers, but instead using IP address. This works in nearly all cases and has few downsides. The other solution is to use some sort of session sharing on your web servers to mitigate the issue (which also means that your web servers aren't a point of failure for your users' sessions). (One of the products I supported had no session information stored on the web servers, so we could safely round-robin requests, the other product could be implemented with a Session State Server... but in most cases we just used IP address to load balance with). The other solution is to configure your load balancer to terminate the SSL tunnel. You get some other benefits from this, such as allowing your load balancer to reduce the number of actual connections to the web servers. I've seen many devices setup this way.
    One thing to consider through this is that - due to the way internet standards work - this really can't be termed a bug on anyone's part. There is no guarantee in the SSL/TLS standards that a client will return the same SSL Session ID for each request and there is not requirement that subsequent requests will even use the same tunnel. Remember, HTTP is a stateless protocol. Each request is considered a new request by the web server and everything else is just trickery to try and get it to work the way you want. You can be annoyed at Safari's behavior, but it's been this way for over 5 years by my count, so I don't expect it to change.

  • Oracle Database Express Edition 11g Release 2: Does not work in Windows x64

    Hi
    I download a year ago oracle 10g and installed in windows7/64bit.
    Then I messed up my computer. So I had to reinstall from scratch.
    oracle 10g seems to be not available anymore.
    Now 11g is available. But it says does not work in x64.
    Can somebody explain this?
    Thanks
    Beat

    Hi, and welcome to the OTN forums!
    I download a year ago oracle 10g and installed in windows7/64bit.
    Now 11g is available. But it says does not work in x64.Well, in fact, 10.2 XE wasn't certified for x64 either, not even for Linux x64...
    11.2 XE has a Linux x86_64 release, and there has been an announcement that there'll be a x64 release for Windows as well, but it's not available (yet).
    There have been a lot of reports that people got 11.2 XE work on x64 Windows machines as well, with a few tweaks at installation time and/or afterwards...
    You'll find tons of posts on that topic when using forum search...
    oracle 10g seems to be not available anymore.Right, the official downloads have been removed after all database 10.2 releases fell out of (regular) support.
    -Udo
    Edited by: Udo on 15.04.2013 21:48

  • The link to a user defined oracle stored procedure does not work

    This is based on the HowTo Download a file
    http://otn.oracle.com/products/database/htmldb/howtos/howto_file_upload.html
    I have given a link to a procedure as follows, which will download the file (as given in the HowTo):
    #OWNER#.download_my_file?p_file=#ID#.
    However, this does not work. It tries to open a page rather than executing the procedure. It displays the page not found message

    that page not found message is a generic one. you'd want to check your apache logs for more info on what really happened. my guess is that you missed step 5 of that how-to, "grant execute on download_my_file to public"
    hope this helps,
    raj

  • BUG: Oracle Schema Processor does not work in Servlets

    We found a bug with Oracle's Schema Processor. It does not work in Servlets.
    When we try to validate a XML document in a Servlet it does not work, but we can execute the same code in a stand alone application and it works.
    The following is the code we are using:
    try {
    File f =new File(filename);
    FileReader r = new FileReader(f);
    DOMParser dp = new DOMParser();
    URL url = createURL (filename);
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(url);
    System.out.println("it is parsed");
    } catch(Exception e){System.out.println("there is Error"+e.getMessage());}
    null

    I don't think this is related to Servlets per se.
    Check that the Schema processor classes used by the servlet container, and your application are the same.
    Java does not have proper versioning of classes, I have seen many applications collapse. People compiled their code on developer machines, where it worked fine, but when moved to a production machine they failed because the production machine had a different version of classes. Usually the name of the class doesn't change, but either a method or a variable is missing in several classes. VM doesn't complain but simply crashes.
    In your Schema Processor classes that are used by the servlet engine might be different from the one that the app uses. Do a search on the file system to see how many copy of the same class bundle (zip, jar) you have on the system.

Maybe you are looking for