Did lenovo s215 support oracle virtualization?

 hi,
i am using lenovo s215 with processor amd e1 2100.
i cannot use oracle virtualization (virtual box) which i need to support my job duty.
currently i installed ubuntu 14.04 within lenovo s215.
i work as IOS developer at my office which they use mac OS with xcode to built IOS apps.
so, i need virtualization to use xcode at home.
but vt-x not enabled.
when i search in BIOS, there is none of virtualization option.
but when i grep using ubuntu terminal, the svm has red color. it mean it support virtualization.
how to enable vt-x/virtualization on lenovo s215?
here is the screenshot of svm color on ubuntu terminal.

according to official amd website (http://support.amd.com/en-us/kb-articles/Pages/GPU120AMDRVICPUsHyperVWin8.aspx) about list of AMD processors that support AMD Virtualization™ (AMD-V™).
my AMD e1-2100 support amd-v (AMD E-Series Series of Products).
are there any answer from this lenovo forum members or lenovo hardware staff to answer this thread?
regards.

Similar Messages

  • JDBC-ROWSET SUPPORT ORACLE

    DID ANY OF THE ORACLE THIN DRIVER SUPPORTS JAVA-ROWSETS. IF SO FROM WHERE I CAN DOWNLOAD THE DRIVER. I TRYED ROWSETS WITH 8.1.7 ORACLE THIN DRIVER, I COULD NOT IMPLEMENT IT.

    Hi I am using latest driver from oracle site, but the problem is when i fire execute method of cahed rowset i throws error that i mentioned above, if you have any other driver than mail me on [email protected]

  • Windows 7 is unsupporte​d on Helix. Official answer from Lenovo telephone support.

    I want to use my own Helix at work, where Win 7 is a corp standard (and Win 8 is strictly prohibited).
    So, I bought Helix to downgrade to Windows 7.
    Yesterday I requested OEM disks from Lenovo with Win 7. But today got answer from Lenovo telephone support - sorry, we don't support Win 7 on Helix, so will be no disks.
    1) Can it be a mistake of the call-center operator? Is Win 7 indeed unsupported?
    FYI. According to Microsoft, buyers of Win 8 devices with OEM license have right to downgrade to Win 7.
    But if Lenovo doesn't ship OEM Win 7 disks with Helix - it becomes impossible.
    2) Could you please suggest official licensing option, how an individual can buy Win 7 Pro (or Ultimate)?
    Concerns:
    - OEM Win 7 - I suppose, an individual cannot buy OEM Win-7 from the market and use it on own commodity computer - it's manufacturers' way only - for new or modified computers.
    - OLP - it's 5 licenses minimum. Expensive for 1 individual, you should be a legal entity.
    - Volume licensing - it's for Enterprises only.
    So, I don't see any options, other than returning it to the shop or reselling (((
    Folks who downgraded to Win 7, please suggest, how did you do it (except corporate volume licensing)?!
    TIA,
    Maxim
    Solved!
    Go to Solution.

    Hello and welcome,
    Here's what I think I know about downgrade rights:  MS will allow a downgrade from Win 8 Pro to Win 7.  The procedure is strange.  Use an existing, in-use Win 7 license key.  Activation will fail.  Call Microsoft and get an activation code.
    http://www.microsoft.com/OEM/en/licensing/sblicens​ing/Pages/downgrade_rights.aspx#fbid=UjB_-vNx85j
    If you don't have install media you should be able to find a downloadable Win 7 install ISO.  Google "legal windows 7 download  notebook review".  Where you find an in-use key, I'm not sure.  At work perhaps.
    At a quick glance, it looks like there are Helix Win 7 drivers in the support driver matrix.  ThinkVantage System Update is included, so you should be able to use that to pull down drivers and apps.  (I haven't tried this on a Helix).
    Z.
    The large print: please read the Community Participation Rules before posting. Include as much information as possible: model, machine type, operating system, and a descriptive subject line. Do not include personal information: serial number, telephone number, email address, etc.  The fine print: I do not work for, nor do I speak for Lenovo. Unsolicited private messages will be ignored. ... GeezBlog
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • Can the remote assistance provided by Lenovo premium support be abused by a bad support technician​?

    Hi,
    I am considering purchasing a Lenovo software warranty. I did some homework and I know Lenovo use a 123rescue tool to do remote assistance, which my friend finds very helpful.
    Before purchasing it, I want to know how secure is this tool? Can this tool be used by any bad or corrupted technician from Lenovo to secretly install some Trojans or spywares on the computer during the remote access? Because as I understand, the remote access will give a technician ability to operate the computer, although the connect needs user's approval, but what a technician can do after the user approve the connect? I do not know it in details and a little bit curious.
    Although Lenovo is a very reputable company, it's still good to make sure that if a user give remote access to a technician, Lenovo do have a way to monitor the whole process and protect the user from any potentially bad support technicians, although I am very sure that it is very very impossible that such bad technician exists inside Lenovo's support team.
    Thank you!

    Hi guys,
    Seriously, I know I am paranoid, but could anyone give a response for my stupid concern?

  • SAP BW supporting Oracle 10g

    Hello!
    Does anybody know if SAP BW 3.0b currently supports Oracle 10g?
    Moreover, does anybody know of any BW version currently supporting this Oracle 10g version? or by when does SAP plans to support it and which BW version(s) they plan?
    Thank you!
    Regards,
    Mario Vallejo

    Hi Dinesh,
    Sorry but I could't find it...
    I also searched by "Oracle 10g" bot no related link was found.
    Any hints on how to look for it? or more specific URL...
    I really appreciate it!
    Regards,
    Mario

  • PI 7.0 SP 11 support oracle cursor ?

    Hi
    Does PI 7.0 SP 11 support oracle cursor ? Because i need to send multiple rows data to oracle store procedure.
    Where do i have to search about the information how to call oracle store procedure with ref cursor input
    Regards
    Fernand

    Thank you Raj,
    I manage to calling store procedure with normal input (single), but then still got problem to supply data to store proc with input CURSOR.
    Base on link that you send me, i get this line out
    "CURSOR (output; only in conjunction with the Oracle JDBC driver)." is it meaning that JDBC adapter does not support CURSOR for input ? even SP 11 ?
    This is my sample oracle store procedure :
    CREATE OR REPLACE PACKAGE DB2_PAYSLIP IS
    CURSOR c_details IS SELECT '' in_nogaji               
              , '' in_jenis
              , '' in_no
              , '' in_deskripsi
              , '' in_jumlah          
         FROM DUAL;
    TYPE ct_details  IS REF CURSOR RETURN c_details%ROWTYPE;
    END;
    CREATE OR REPLACE PROCEDURE proc_ins_payslip(in_cur IN OUT db2_payslip.ct_details) IS
    v_in db2_payslip.c_details%ROWTYPE;
    BEGIN
          LOOP
                FETCH in_cur INTO v_in;
               INSERT INTO PAYSLIP_DETAIL VALUES(v_in.in_nogaji,v_in.in_jenis,v_in.in_no,v_in.in_deskripsi,v_in.in_jumlah);
               EXIT WHEN in_cur%NOTFOUND;
          END LOOP;
          CLOSE in_cur;
          COMMIT;
    END;
    Regards
    Fernand

  • Does the oracle golden gate version 11.1.1.1.2 support oracle 12C database ?

    Hi experts,
    Currently in our environment we are having Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit DB which is replicated via oracle golden gate version 11.1.1.1.2. As per the application team requirement we need to migrate this database to 12C.
    Can any one help me on the below queries
    Does the oracle golden gate version 11.1.1.1.2 support oracle 12c database ?
    Are there any syntax changes in oracle goldengate versions which needs to be taken care in extract or replicat parameter files ?
    Thanks,
    Mushraff Shaik

    Hi,
    >>Does the oracle golden gate version 11.1.1.1.2 support oracle 12c database ?
    Why do you think it will not support 12c database ?
    From a Golden Gate perspective you need to create schema and use that.  As you are moving to 12c database, ideally you should think of upgrading Golden Gate 11.1 to 12c so you can use new feature such as Multi Threaded replicate etc..
    HTH,
    Pradeep

  • Can no longer save edited photos. get messages - "Nothing was imported" "The file or folders selected to import did not contain supported file type.

    Can someone help. I use Photoshop Elements 13. I can no longer save edited photos. get messages - "Nothing was imported" "The file or folders selected to import did not contain supported file type. It started this a couple of weeks ago and I had a friend come fix it just 2 days ago. It took him several hours and I lost all tags I had on over 10,000 pictures. Now it has done it again. I'm so upset. I lost a lot of stuff. I don't want to keep bothering him with this. Please Help.

    How did you import the files to your computer?
    What model  number camera?

  • Kindly suggest oracle automation testing tools supporting oracle 10g forms

    Hi,
    We would like to automate oracle 10g forms in our company. kindly suggest oracle automation tools supporting oracle 10g forms other than OATS.
    If only OATS tool is available in Oracle, please suggest user guide for OATS.
    Regards,
    Sairam

    Hi Sairam,
    You can find OATS docs in OATS installation package itself. You can find separate pdf files for each OATS product(OpenScript Programmer Preference, OFT, OLT, OTM, Administrator etc).
    Regards,
    Deepu M

  • Which sql developer version will support oracle 8.1.7

    hi
    which sql developer version will support oracle 8.1.7 or is it necessary to use plsql developer to connect to database (oracle 8.1.7)

    Hi,
    SQL Developer version 1.2.1 is able to connect to 8.1.7 with limited functionality (prepared reports and browser for objects could not work)..
    Next version (tested with 3.2 64-bit) of SQL developer could be "hacked" to connect to 8.1.7 by simply copy file C:\oracle\product\10.2.0\client_1\jdbc\lib\classes12.zip from Oracle client prior 11
    into appropriate jdk\jre\lib\ext folder.

  • SQL Developer does not support Oracle 8i

    Hi,
    I was waiting a tool from Oracle like SQL Developer for a long time, finally it came, but I am a little disapointed, so Why SQL Developer does not support Oracle 8i? Other free tools like SQUIRREL can do it. I also have worked in previous projects using PL/SQL Developer and it works fine...Why a native Oracle tool can not do it?
    I am in a project where we have to upgrade the Oracle database to a newer version, but I cannot have access to the old one...
    I know there are some threads in this forum, and some people can work with 8i with no issues. Can anyone who works with SQL Developer and Oracle 8i please tell me how to do it?
    Thanks,
    --Javier
    Edited by: javierlarota on Dec 9, 2009 5:40 AM
    Edited by: javierlarota on Dec 9, 2009 5:41 AM

    That's what I thought, the issue is more commercial ($$$) than technical. Anyway...I downloaded the version 1.1 but now I am getting an ORA-02248: invalid option for ALTER SESSION error. 00604. 00000 "error occurred at recursive SQL level %s".
    Thanks,
    --Javier                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Which widows server 2008 release and edition supports Oracle 11g R1 64 Bit

    Hi
    Trying to install the Oracle 11g R1 64bit on Windows server 2008 . Hence requesting you all , which Windows server 2008 Release and Edition support Oracle database 11g R1 64bit .
    Thank You
    Edited by: user8709943 on Nov 12, 2010 10:34 AM

    Hi,
    even 2008 also certified, totally widnows 2008/2003 R2/xp/vista , linux, ibm aix, hp Ux ...
    go to http://support.oracle.com --> certifications ---> select product "ORACLE DATABASE" ---> Release "11.x.x.x' --> select platform "ANY"
    you can check all the compatibility..
    *https://support.oracle.com/CSP/ui/flash.html#tab=CertifyHomePageV2(page=CertifyHomePageV2&id=ggfixmkw())*
    Thanks

  • Does MRCA 10.1.2.0.3 support Oracle DB 10.2.0.1?

    Does OracleAS Metadata Repository Creation Assistant 10.1.2.0.3 support Oracle DB 10.2.0.1? Documentation says it supports 10.1.0.4 or later. Is there a patch for it?
    Thank you,
    MC

    No, please use "Metadata Repository Creation Assistant (10.1.2.0.3)".
    Please go to the Application Server download page (http://otn.oracle.com - click on Download Application Server) or direct on:
    http://www.oracle.com/technology/software/products/ias/htdocs/101202.html
    Locate: "Metadata Repository Creation Assistant (10.1.2.0.3)"
    Regards,
    Martin

  • Is Weblogic Application Sever 6.1  supports Oracle 9i database?

     

    Kapil,
    See http://edocs.bea.com/wls/platforms/index.html#jdbc
    We don't specifically support Oracle 9i, but that doesn't preclude you from
    using a 3rd party JDBC driver (perhaps from Oracle) to use with WLS. See the
    above link for qualifications on 3rd party drivers.
    Thanks,
    Michael
    Dennis Munsie wrote:
    Hi Kapil,
    For questions on what platforms are supported, your best bet is to look at
    http://www.weblogic.com/platforms/index.html. According to this, it does
    not appear that Oracle 9i is officially supported at this time.
    Dennis Munsie
    Developer Relations Engineer
    BEA Support
    "Kapil" <[email protected]> wrote in message
    news:3c2140cc$[email protected]..
    >--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Does WLS6.1 support Oracle 9.2.0.1?

    Hi,
    We are having the situation that our UAT (test environment) using WLS6.1 and Oracle 8.1.7 while Production environment using WLS6.1 and Oracle 9.2.0.1.
    Should our production go back to Oracle 8.1.7? Are there any likely problems we are going to have if we run our application (tested in v8.1.7) on Oracle v9.2.0.1 (not tested)? Is there any thing we need to do for WLS6.1 and Oracle9.2.0.1?
    Please help!
    Thanks in adv,

    Hello Khan,
    Please see http://e-docs.bea.com/wls/platforms/#jdbc for a list of currently supported
    Oracle platforms.
    Teju
    Khanh Truong <[email protected]> wrote:
    Hi,
    We are having the situation that our UAT (test environment) using WLS6.1
    and Oracle 8.1.7 while Production environment using WLS6.1 and Oracle
    9.2.0.1.
    Should our production go back to Oracle 8.1.7? Are there any likely
    problems we are going to have if we run our application (tested in v8.1.7)
    on Oracle v9.2.0.1 (not tested)? Is there any thing we need to do for
    WLS6.1 and Oracle9.2.0.1?
    Please help!
    Thanks in adv,

Maybe you are looking for

  • Program execution during RIMODAC2..will it  always reach to cif user exit

    Hello , We are implementing cif user exit for Purchase Order at R3 side to capture additional date field. So logic to capture additional date field is put in user exit CIFPUR01. We have  RIMODAC2  background job for Purchase order running on daily ba

  • Camcorder Analog to Digital

    What is the best converter reasonably priced to do a decent job? I have been looking at this one: canopus ADVC-55 A/D Converter Any thoughts or anyone that has used it? Thanks for any and all help. Hoping you all have a great Holiday Season! Margit i

  • Process Order Costing

    Hi Guru's,              I am having problem that when my process order gets confirmed the values of production are not updated in the cost center, what i done wrong, pls provide me solution. Thanks & Regards, Karad D D

  • Subscreen in MIGO Transaction

    Hi, I am trying to include a sub screen/tab strip in MIGO. i.e., For each line item, user has to enter the storage bin, if the default bin is not available. I went to BADI's, User exits.But I am not getting the required output.Could anyone Pl guid Me

  • Imovie will not open a large file.

    i'm relatively new to this, since I've only had my Mac for 3 weeks, now, I've been working on a wedding video using Imovie. Over last week, I have run into issues where the file won't open. I did have it on an external harddrive, and had no issues up