T430u BIOS bug: BIOS reports only 2.6GiB of RAM via e820

Hi!
My Thinkpad T430u has 4GiB of RAM, but using legacy boot the BIOS reports only 2.6GiB.
For more details see: https://lkml.org/lkml/2013/1/19/119
My BIOS is already the most recent version: 2.06.
Thanks,
//richard

What happens if you set the UEFI/Legacy boot mode to "both"?
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   Русскоязычное Сообщество

Similar Messages

  • I have 16Gb of RAM installed on my Pavilion dv6-4023TX . The Bios reports only 6Gb

    I have 16Gb of RAM installed on my Pavilion dv6-4023TX . The Bios reports only 6Gb

    Hi
    Please go to HP Website and update the Bios on the unit and have it checked.
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • 4Gb of RAM in a 925XE Neo Platinum, BIOS report 2.75GB?

    Hi,
    I've just replaced a dead motherboard in my PC with an MSI 925XE Neo Platinum (MSI-7053)
    I needed new RAM for it (old board had DDR-SDRAM) and as it was cheap and the board supported 4GB, I got 4GB.
    But the BIOS only reports 2.75GB of available RAM.
    CPU is an SL7J8.
    Can this be fixed with a BIOS update or something? Or am I stuffed?
    Thanks,
    J1M.

    A part of your physical memory is being reserved by your BIOS, depending on the installed hardware. What's left is for the OS to add to the virtual address space (physical memory + pagefile), usually no more than 3.25 GB for a 32 bit OS. Decrease your pagefile in size to a couple hundred MB, it might change something and you will barely need it anyway...
    If it's available in your BIOS, enable Memory Remapping.

  • A Sun X4450 shows only half of installed RAM in BIOS

    In the Integrated Lightsout Manager I see all 8 x 2 GB Dimms but in the BIOS I only see 8 GB. I am very shure I populated the banks exactly.

    The issue has been resolved. Turns out the RAM chips were from different manufactures. 6 from Micron and 2 from Samsung. All chips worked fine within brand but did not work well together, I assume from some timing differences. I had all Samsung installed and all 8 gigs now show up.

  • B3 bios reports cpu temp 10c higher than b5 bios on k7n2 plat

    Dear list,
    b3 bios reports cpu temp 10c higher than b5 bios on k7n2 plat after reading posts that b3 is more stable changed back to that so far so good, seems more stable its just that cpu temp was 45-50 c on b5 bios but on b3 in the bios is says 60 c and in core center it now says 40c but was 70c before I re booted very odd indeed, its stable but soemtimes doesn't shutdown have to turn off but thats probely a widnows probelm somewhere.
    cheers
    brummie
    ps do I need to clear cmos when I have put new bios in or will it doit as part of the process ??

    dear os navi,
    yep
    http://www.thermaltake.com/coolers/volcano/rs/a1889.htm
    I got this one with a heat duct on it. yes its all seated well and clean, just downloaded a corecenter update, cleared the cmos and started again. I am now getting 44 c for the temp now. What the bios says I dont know, could be that I hadnt cleared the bios that the temp was reading wrong.
    cheers
    brummie

  • Bug in report CKDBSZ in Oracle Designer 2.1.2

    In that report (Database Table and Index Size Estimate) there's
    the following bug: the report doesn't compute estimates of
    indexes belonging to tablespaces other than those from their
    corresponding tables.
    Does anyone know if Oracle Corporation has corrected the
    problem? If not, does anyone have a corrected version from this
    report?
    Thank you!
    null

    Carlos,
    This forum is for Headstart related questions and experiences
    only. Please go to metalink.oracle.com to get more information on
    your problem.
    Regards,
    Lauri
    Carlos P     rez (guest) wrote:
    : In that report (Database Table and Index Size Estimate) there's
    : the following bug: the report doesn't compute estimates of
    : indexes belonging to tablespaces other than those from their
    : corresponding tables.
    : Does anyone know if Oracle Corporation has corrected the
    : problem? If not, does anyone have a corrected version from this
    : report?
    : Thank you!
    null

  • MDX - Customize "Bug Status" Report

    Good Morning,
    I am currently trying to customize a report which is in-built in TFS.
    To give an overview:
    Current report only displays "Active" Bugs.
    SSRS Dataset has following query:
    SELECT
    [Measures].[Work Item Count]
    } ON COLUMNS,
    // Filter out people who don't currently have any work items assigned to them.
    NonEmpty
    CrossJoin
    // This block of code gets the top 10 users, based on how many active bugs they have.
    TopCount(
    NonEmpty(
    [Work Item].[System_AssignedTo].Children,
    [Measures].[Work Item Count]
    @TopUserCount,
    [Measures].[Work Item Count]
    [Work Item].[Microsoft_VSTS_Common_Priority].[All].Children,
    [Work Item].[Microsoft_VSTS_Common_Severity].[All].Children
    [Measures].[Work Item Count]
    } ON ROWS
    FROM
    SELECT
    CrossJoin(
    StrToMember("[Team Project].[Project Node GUID].&[{" + @ProjectGuid + "}]"),
    StrToMember("[Work Item].[System_WorkItemType].[" + @BugName + "]"),
    StrToMember("[Work Item].[System_State].&[" + @ActiveName + "]"),
    StrToSet(@AreaParam),
    StrToSet(@IterationParam),
    StrToSet(@PriorityParam),
    StrToSet(@SeverityParam)
    ) ON COLUMNS
    FROM [Team System]
    In above query, @ActiveName parameter contains value "Active".
    This report works fine. No Issues there.
    But, I need to change this query to filter for 2 values. Instead of "Active" I need to check for
    "Approved" OR "New" status.
    How can I change the above query?
    I am unable to do any trial and error easily as I do not have access to database/cube or SQL Instance!. I just downloaded .rdl from Report Server and editing it in Notepad.
    Any help is appreciated..
    Thanks.
    - Vishal
    SqlAndMe.com

    STRTOSET("{[Work Item].[System_State].&[Active],[Work Item].[System_State].&[New],[Work Item].[System_State].&[Approved]}")Something like this is where you want to end up, how exactly you get there with your parameters and string construction, I'll leave to you. Typically I would have a parameter that returns all of the system state values, so you get unique names rather than labels that you have to then turn into unique names. Example of a parameter query from an app I'm working on:WITH MEMBER [Measures].[ParameterCaption] AS
       [Processing].[Corrected Text].CurrentMember .MEMBER_CAPTION
     MEMBER [Measures].[ParameterValue] AS
       [Processing].[Corrected Text].CurrentMember.UniqueName
     MEMBER [Measures].[ParameterLevel] AS
       [Processing].[Corrected Text].CurrentMember .Level .Ordinal
     SELECT
    { [Measures].[ParameterCaption], [Measures].[ParameterValue], [Measures].[ParameterLevel] } ON COLUMNS,
     [Processing].[Corrected Text].AllMembers ON ROWS
     FROM [SR Analysis]Try something like this for your dimension and look at the results, perhaps that will help.

  • How to report only quantities less than zero on a calculated field

    I do not understand why my text will not work when it comes to reporting only 'Missing POs' less than zero, I assume it is because I am using 'int' on some fields?
    Any advice?
    SELECT
    t0.father as 'Parent Code',
    t2.itemname as 'Parent Description',
    t2.frgnname as 'Parent Status',
    t0.code as 'Child Code',
    t1.itemname as 'Child Description',
    t1.frgnname as 'Child Status',
    t0.comment as 'Master',
    cast(t3.onhand as int) as 'Child Uncommitted Stock',
    cast(t3.iscommited as int) as 'Child Committed Stock',
    (cast(t3.onhand as int) - cast(t3.iscommited as int)) as 'Child Free Stock',
    cast(t3.onorder as int) as 'Purchase Orders',
    (cast(t3.onhand as int) - cast(t3.iscommited as int)) + cast(t3.onorder as int) as 'Missing POs'
    FROM
    itt1 t0
    inner join oitm t1 on t0.code = t1.itemcode
    inner join oitm t2 on t0.father = t2.itemcode
    LEFT JOIN OITW T3 ON T3.WHSCODE = T0.Warehouse AND T3.ItemCode = T0.Code
    Where T3.WHSCODE Like '[%0]%' and 'Missing POs' < 0
    ORDER BY
    'Missing POs' asc, t0.father, t0.code
    Many thanks,
    Robin (I will be awarding points on all my outstanding questions shorlty - management time pressure at mo!)

    Try this:
    SELECT
    t0.father as 'Parent Code',
    t2.itemname as 'Parent Description',
    t2.frgnname as 'Parent Status',
    t0.code as 'Child Code',
    t1.itemname as 'Child Description',
    t1.frgnname as 'Child Status',
    t0.comment as 'Master',
    cast(t3.onhand as int) as 'Child Uncommitted Stock',
    cast(t3.iscommited as int) as 'Child Committed Stock',
    (cast(t3.onhand as int) - cast(t3.iscommited as int)) as 'Child Free Stock',
    cast(t3.onorder as int) as 'Purchase Orders',
    (cast(t3.onhand as int) - cast(t3.iscommited as int))
      + cast(t3.onorder as int) as 'Missing POs'
    FROM
    itt1 t0
    inner join oitm t1 on t0.code = t1.itemcode
    inner join oitm t2 on t0.father = t2.itemcode
    LEFT JOIN OITW T3 ON T3.WHSCODE = T0.Warehouse AND T3.ItemCode = T0.Code
    Where T3.WHSCODE Like '%0%' and (cast(t3.onhand as int) - cast(t3.iscommited as int))
      + cast(t3.onorder as int) < 0
    ORDER BY
    (cast(t3.onhand as int) - cast(t3.iscommited as int))
      + cast(t3.onorder as int),t0.father, t0.code

  • Why invoice aging report only display invoice remaining amount?

    I setup aging period 0~30, 31~60,61~90,90~9999.
    When I submit invoice aging report,Only Remaining Amount Display. The period column-label is null and the value is zero.
    Why?

    sounds like intented functionality. Are you using the correct version and not an older version of the report?

  • Bug in report sorting? Sort doesn't work in last group level.

    Is this a known error? Is there documentation from Oracle about it?
    My query is a simple select from a table. I then created three group levels. Each group contains a value for sorting (up arrow next to column). However, data is not sorted by the value in the third group.
    Try:
    create table test_sort (a number, b varchar2(5), c varchar2(5));
    insert into test_sort (a, b, c) values (1, 'A', 'X');
    insert into test_sort (a, b, c) values (1, 'B', 'Y');
    insert into test_sort (a, b, c) values (1, 'B', 'Z');
    insert into test_sort (a, b, c) values (1, 'A', 'Z');
    insert into test_sort (a, b, c) values (2, 'A', 'Z');
    insert into test_sort (a, b, c) values (2, 'A', 'Y');
    insert into test_sort (a, b, c) values (2, 'A', 'X');
    insert into test_sort (a, b, c) values (1, 'A', 'Y');
    insert into test_sort (a, b, c) values (1, 'B', 'X');
    Create a query tabular report with the wizard (select * from test_sort). Then make the groups: first a, then b, then c. Make sure that there is an arrow next to the values (sorting).
    The report only displays a and b values sorted.
    Edited by: user489847 on Jun 3, 2010 1:19 AM

    Hello,
    This is the normal behaviour documented here :
    http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwcontxt/props/pi_col_break_order.htm
    Restrictions
    Break Order has no effect on columns that belong to the lowest group of a particular query.
    Break Order only affects columns in groups that are above the lowest child group of a query.
    You have to add an "ORDER BY" in the SQL query in order to sort the columns belonging to the "lowest group"
    Regards

  • Bug toolkit report - LMS 3.1

    Hi
    I have problems with Bug toolkit report - bug summary report.
    I have empty all columns in this report. No bugs. Despite of having over 500 devices with various IOSes.
    Is it depends on CCO account or something else?
    Best regards
    Marek

    The Bug Toolkit report in RME can be problematic when it comes to certain device types.  That is why there is now a link to the Cisco.com Bug Toolkit report in the RME report interface.  You may have to forgo using the RME report, and use the Cisco.com tool directly to find bugs.

  • Multi-page reports only print first page

    Post Author: reedpaulr
    CA Forum: General
    Hello...I'm using Crystal Reports version that comes with Visual Studio 2003 (I think its Crystal 9).
    I have a report that has totals at the end. All is fine if the report is less than a page. If the report is more than a page...then the report only produces a page and I don't get anything else (i.e., missing detail and of course the totals).
    Kind regards,
    Paul

    Post Author: reedpaulr
    CA Forum: General
    I figured out my own problem after comparing to some reports that worked the way I wanted. My "SeparatePages" parm was set to True...changed to False and all is good.
    Thanks

  • Ciscoworks LMS 3.2 bug summary report

    Hi,
    I have one Ciscoworks LMS 3.2, it managed around 500 devices. I tried to generate bug summary report and the bug number is zero. Please kindly help to solve this problem.
    Best Regards,
    Jackson Ku                  

    For how many devices are you running the report?
    [ Wed Jan 05  21:26:50 CST 2011 ],INFO ,[main],com.cisco.nm.rmeng.bugtool.BTBugSummary,populateResults,295,Cisco.com URL Connection TimeOut: Try again later or with less number of devices.
    Have you tried running it for just one?
    This is also kind of strange,
    [ Wed Jan 05  21:26:50 CST 2011 ],INFO ,[main],com.cisco.nm.rmeng.bugtool.BTBugSummary,formBTDevHash,228,Device(s) are not supported by Cisco.com.
    [ Wed Jan 05  21:26:50 CST 2011 ],INFO ,[main],com.cisco.nm.rmeng.bugtool.BTBugSummary,formBTDevHash,229,Hence Could not generate report
    Like as if cisco.com would not know about these C3750's
    Maybe do an export of these 3750's in the DCR to see if the all have the same OID and if it is a supported OID.
    Are your device packages up to date? You may want to sync those with CCO.
    Cheers,
    Michel

  • Query current report only and not since advertised but removing the since advertised give me multiple row

    How can i query the current report only?
    Note: The ScheduleToken is set to “Since Advertised”.
    SQL Query:
    Select
    OfferName Name, 
    Recieved, 
    Failures, 
    ProgramsStarted 'Programs Started',
    ProgramsFailure 'Program Errors', 
    ProgramsSuccess 'Program Success', 
    ProgramsFailureMIF 'Program Errors', 
    ProgramsSuccessMIF 'Program Success (MIF)', 
    PkgName Package, 
    PkgProgram Program, 
    CollectionName 'Target Collection', 
    PresentTime 'Available After',
    ExpirationTime 'Expires After',
    OfferID 'Advertisement ID'
    From vOfferStatusSummarizerRoot
    Where ScheduleToken = '0001128000080008'
    Order by OfferName

    Current report as in the latest advert?
    if yes, this should work
    Select top 1
    OfferID 'Advertisement ID',
    OfferName Name, 
    Recieved, 
    Failures, 
    ProgramsStarted 'Programs Started',
    ProgramsFailure 'Program Errors', 
    ProgramsSuccess 'Program Success', 
    ProgramsFailureMIF 'Program Errors', 
    ProgramsSuccessMIF 'Program Success (MIF)', 
    PkgName Package, 
    PkgProgram Program, 
    CollectionName 'Target Collection', 
    PresentTime 'Available After',
    ExpirationTime 'Expires After'
    From vOfferStatusSummarizerRoot
    Where ScheduleToken = '0001128000080008'
    Order by Offerid
    Blog: http://theinfraguys.com
    Follow me at Facebook
    The Infra Guys Facebook Page
    Please remember to click Mark as Answer on the answer if it helps you in anyway

  • Unable to generate BUG summary report in RME

    Hi, I am unable to generate bug summary report in RME. Even I can not generate PSIRT report as well..LMS always gives error "incorrect cisco.com credential. enter correct credential" I have checked my credentials are correct... it gives me error no BTKT:0014
    I am using LMS3.1 attaaching snap shot of my patch level and application version running on LMS...
    Please help me to solve this isue.
    Thanks

    Upgrade to LMS 3.2.1
    Install the patch for version 3.2 mentioned here https://supportforums.cisco.com/docs/DOC-16806
    Then it works again
    Cheers,
    Michel

Maybe you are looking for

  • I downloaded an album from iTunes on my iPad and then i synced it with iTunes it doesn't show the individual songs in my library just the album which opens another window.  Can you help?

    I downloaded an album from iTunes on my iPad and then i synced it with iTunes it doesn't show the individual songs in my library just the album which opens another window.  One of the albums won't even play the music.  Will only open the "booklet" fo

  • How to stop PPR from hidding af:message

    I am working on a very complex page with tons of partial triggers and rules. T The problem I have is when an af:message is displayed (inline), it only lasts until the next PPR or user action happens; sometimes it just blinks on the screen. I really n

  • Power Loss

    When the AC adapter is plugged, in and the macbook pro is on, it says most of the time that I have 97% battery charge and that the power source is the Power Adapter. When the plug is pulled the computer dies on me. In addition the computer wont turn

  • PLEASE HELP - RE NOKIA N91!!!

    OK, I have a new Nokia N91...downloaded the software for the PC suite, connected the usb cable to the phone and put a (10 track) CD into my PC. I transfer this (10 track CD) to 'my collection)...then 'select all' before transfering it to my mobile...

  • Federated portals

    I have 2 portals and i want to bring them into a federation where one is the consumer and the other is the producer. pls explain the steps for configuring the following 1) portal on a remote machine as a producer. 2) portal on another remote machine