Coder Social home page Coder Social logo

Query: How to get RAM size of system about grub HOT 12 CLOSED

a1ive avatar a1ive commented on August 22, 2024
Query: How to get RAM size of system

from grub.

Comments (12)

a1ive avatar a1ive commented on August 22, 2024

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

UEFI BIOS?

from grub.

a1ive avatar a1ive commented on August 22, 2024

I can automatically select a 32-bit install of Windows from a dual architecture ISO if the system has <4GB of RAM.

You can't boot/install a 32-bit Windows if UEFI firmware is 64-bit.

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

Sure , in that case I was thinking of Legacy boot.
But you can run Linux 32-bit kernels from UEFI64 boot (for instance).

from grub.

a1ive avatar a1ive commented on August 22, 2024

But you can run Linux 32-bit kernels from UEFI64 boot (for instance).

compatibility of 32-bit linux is bad. It doesn't work no some tablets with 64-bit CPU/UEFI.
besides many linux distros (eg. Ubuntu) have dropped support for 32-bit.

from grub.

a1ive avatar a1ive commented on August 22, 2024

Sure , in that case I was thinking of Legacy boot.

How to get the total amount of RAM in grub4dos?

from grub.

steve6375 avatar steve6375 commented on August 22, 2024
set /a M=*0x8298 & 0xffffffff>>10+1 > nul && set /a M1=*0x82c0>>10+1 > nul
set /a M=%M% + %M1% > nul

grub4dos has documented memory location where it is stored.
0000:8298 4 (DWORD) saved_mem_upper (extended memory size in KB)
0000:82C0 8 (QWORD) saved_mem_higher (max contiguous mem in KB starting at 4G

can do a BIOS call, int15 e820h
https://wiki.osdev.org/Detecting_Memory_(x86)#BIOS_Function:_INT_0x15.2C_EAX_.3D_0xE820

See grub4dos stage2\common.c for code.

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

That is showing memory above 4GB
You need to add up all conv-mem entries to get total memory?

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

What variable is the result returned in?
--set=VAR work ?

from grub.

a1ive avatar a1ive commented on August 22, 2024

download latest build.
stat -q -r -s a
echo $a
深度截图_选择区域_20200417201506

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

Thanks. MBR result agrees with grub4dos within +/-1. 👍

from grub.

steve6375 avatar steve6375 commented on August 22, 2024

Thanks - great work!

from grub.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.