Q. How do I check the size of PAGESIZE under Linux?
A. Most modern operating systems have their main memory divided into pages. It allows better utilization of memory. A page is a fixed length block of main memory, that is contiguous in both physical memory addressing and virtual memory addressing. Kernel swap and allocates memory using pages
To display size of a page in bytes, enter:$ getconf PAGESIZE
OR$ getconf PAGE_SIZE
Output:
4096
相关热门文章
给主人留下些什么吧!~~
评论热议
本文详细介绍了在Linux环境下通过$getconf PAGESIZE或$getconf PAGE_SIZE命令查看页面大小的方法,提供了操作步骤及解释。
3470

被折叠的 条评论
为什么被折叠?



