element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum Failed to open /dev/mem, try checking permissions.
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 8 replies
  • Answers 2 answers
  • Subscribers 666 subscribers
  • Views 9355 views
  • Users 0 members are here
  • raspberry_pi
  • development
Related

Failed to open /dev/mem, try checking permissions.

Former Member
Former Member over 11 years ago

Hi,

        I've received an error:

"Failed to open /dev/mem, try checking permissions.

Failed to map the physical GPIO registers into the virtual memory space.

bcm2835_init: mmap failed (SPI0): Bad file descriptor"

 

- It happens when I made a "MAKEFILE"  using the Geany.

      Blink: arduPi.o

           g++ -lrt -lpthread blink_test.cpp arduPi.o -o blink_test

- Compilation was successful but when I ran it usig

      ./blink_test

-I received the above error

-But when using the terminal running

    sudo ./blink_test

-It ran flawlessly, might be in the Geany?

 

Please help, thanks

  • Sign in to reply
  • Cancel
  • mconners
    0 mconners over 11 years ago

    The answer is right there in your post.

     

    When running the program (./blink_test) as a normal user , you get the message: Failed to open /dev/mem, try checking permissions

     

    when you run it using sudo (the super user), you don't get the error

     

    what this means is, the dev/mem 'device' is not accessible to the normal user, but it is accessible to the root (sudo) user

     

    You will either need to open up the permissions (which is not a good idea, they'll probably get changed on reboot anyway) or continue to run the program as root, using sudo.

     

    If this is just a toy program to help you learn, typing sudo is probably not too bad, but if this were to become a deployed system with untrusted users, you would probably want to learn a lot more about Unix system security.

     

    There are a number of ways and methods to accomplish this, but unless your goal is to become a unix system administrator, you probably don't want to learn them just to get a program to run on the pi.

     

    Mike

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Reject Answer
    • Cancel
  • mconners
    0 mconners over 11 years ago

    BTW, I replied without knowing what Geany was, apparently it is a text editor. No that is not the cause of your problem. The problem is purely a case of you trying to access a system resource (/dev/mem, and the gpio that is mapped via memory) by a user that doesn't have adequate permissions.

     

    http://www.amazon.com/Nutshell-Fourth-Edition-Arnold-Robbins/dp/0596100299/ref=sr_1_1?ie=UTF8&qid=1389624450&sr=8-1&keywords=unix+in+a+nutshell

     

    This is a great book for beginning unix users, and really even advanced unix users.

     

    Mike

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to mconners

    Hi Michael,

                     Thanks a lot, just downloaded the book you suggested, I am Visual Studio user and now trying to break in with this new platform using the PI and Arduino, I have this book "Raspberry PI Home Automation with Arduino" that I am following to learn this new platform, last night I thought that I would be stuck with it and if that is the case, better go back to VS but thanks for the help, the book talks about the PI and Pi to Arduino Bridge Shield, also using wireless keyboard/mouse combo to save the USB port on my PI and Wifi dongle.  Again thanks and please do not stop helping us ;-).

                 

     

    Best regards,

     

    Clemzky

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • iagorubio
    0 iagorubio over 11 years ago

    Hello Clemzky,

     

    As Michael told you the only problem is to access /dev/mem you need root permissions.

     

    As we are talking about playing with your Pi in a single user environment, there are some tricks that would allow you to directly use your program. Take into account that to use those solutions in a full-fledged multiuser Linux or Unix system would have security implications.

     

    The easiest way to use your binary directly is to make it suid root. That means that the program will always be run with root permissions no matter who runs it. It's how, as example the "ping" command was usually set in Linux as its normal operation requires root permissions.

     

    To setuid your program you use the command:

     

    $ sudo chmod u+s blink_test

     

    The main problem with this approach is if another user can write in the file, it can modify it and alter its behavior to make it do something completely unrelated with root permissions. For this suid programs in Linux/Unix are not usually writable but for the root user.

     

    If you use this approach, you would most likely add this command to your makefile to after the link stage it sets the suid bit on your file.

     

    Another easier approach is to alias your_file to "sudo your_file". That means that each time you class "your_file" the shell will change that command for "sudo your_file".

     

    That's how it uses to be setup the "ls" command as example, as most people like to see the file colors and that needs a command line switch "ls --color=auto", so in most systems "ls" is aliased to "ls --color=auto". The good think about this solution is it have no safety concerns. It just works for your user and is just a helper to avoid typing "sudo" each time you want to run your file.

     

    To know your actual aliases just type:

     

    $ alias

     

    To add an alias to your blink_test program use:

     

    alias blink_test='sudo blink_test'

     

    To permanently add this alias edit your .bashrc or .bash_profile - if you use the bash shell - in your home directory and add that line at the end.

     

    Remember to close and open the shell, open other shell - type 'bash' - or log out and in as .bashrc and .bash_profile are only read on shell start.

     

    There are other approaches as to set /dev/mem group to a group you are in that are somewhat more complex, but used a lot in Linux environments. The wheel group as example can do many admin tasks historically in Linux/Unix and just adding yourself to your group let you read and write many files owned by group wheel that are otherwise unreadable/unwritable.

     

    You can read more abut that here https://wiki.archlinux.org/index.php/Users_and_Groups but don't hesitate to ask if you need more information regarding this.

     

     

    Hope this helps.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to iagorubio

    Hi Iago Rubio,

                         Thanks for the reply very very helpful, all of the time I am alone doing all the things by myself following instructions online or from the book, without you guys this transition will not move forward ;-).  Thanks again and will ask more questions as I go along.

                         Is there any like "Ping" command in Raspberry Pi or Arduino? Any examples you know how to implement it?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • mconners
    0 mconners over 11 years ago in reply to Former Member

    Clemzky Clem wrote:

     

                         Is there any like "Ping" command in Raspberry Pi or Arduino? Any examples you know how to implement it?

     

    Yes there is a ping command for linux on the raspberry pi. If you have the proper shield, check out this link Arduino Playground - ICMP Ping Library

     

     

    I found that by googling "arduino ethernet library ping"

     

    Mike

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Former Member
    0 Former Member over 11 years ago in reply to mconners

    Hi Michael,

                      Again thanks for being so helpful, kudos!

    Clemzky

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • anwar
    0 anwar over 5 years ago in reply to iagorubio

    Hi Rubio,

     

    I am trying implement some code from a web application called EduBlocks, to enable kids to operate neopixels (ws2811x) on the Raspberry Pi. I have implemented a library that works on the Pi, https://github.com/rpi-ws281x/rpi-ws281x-python.

     

    Normally when I use locally tested code on the EduBlocks site it works without an issue. However, this code contains a strip.begin() command for initialisation. This fails from the website but is runs fine locally. I therefore believe that the code runs differently, as sudo user on the pi and as normal user from the webapp? Below is a copy of the error that I get, I have tried to change the permissions of /dev/mem to no avail and then I read your article. I think that I would like to try to implement your 'alias' solution but I am not sure how, would I alias rpi_ws281x.py='sudo rpi_ws281x.py'? Perhaps I am incorrect and this is a memory issue not a permissions issue - do you have a view?

     

    Can't open /dev/mem: Operation not permitted

    Traceback (most recent call last):

    File "/home/pi/.edublocks/output.py", line 158, in

    strip.begin()

    File "/usr/local/lib/python3.5/dist-packages/rpi_ws281x-4.2.3-py3.5-linux-armv7l.egg/rpi_ws281x/rpi_ws281x.py", line 131, in begin

    raise RuntimeError('ws2811_init failed with code {0} ({1})'.format(resp, str_resp))

    RuntimeError: ws2811_init failed with code -5 (mmap() failed)

     

    Regards

    Anwar

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube