Access permissions of /dev/mem

前端 未结 2 1268
傲寒
傲寒 2021-02-05 08:21

I have a set of questions regarding /dev/mem:

  1. Many articles on the net, seem to refer /dev/mem as the gateway to \"Physical RAM\

2条回答
  •  执笔经年
    2021-02-05 08:44

    What does the follow yield:

    cat /dev/mem | wc
    

    I get:

    cat: /dev/mem: Operation not permitted
       1908   11791 1048576
    

    So for me it does stop at 1MB.

    Note that cat uses open, not mmap so its not an identical test.

    Are you sure you're reading beyond 1MB?

提交回复
热议问题