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
  • About Us
  • 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 670 subscribers
  • Views 9832 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
Parents
  • 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
Reply
  • 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
Children
No Data
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