element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • 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 How do I become a super user on the raspberrry pi
  • 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
  • Replies 9 replies
  • Subscribers 666 subscribers
  • Views 5700 views
  • Users 0 members are here
  • raspberry_pi
Related

How do I become a super user on the raspberrry pi

rhydian98
rhydian98 over 12 years ago

Hello

 

When i got my RPI working it would not let me poweroff unless i was a "superuser". how do I become a superuser on the rpi.

  • Sign in to reply
  • Cancel
  • Former Member
    Former Member over 12 years ago

    rhydian98 wrote:

     

    Hello

     

    When i got my RPI working it would not let me poweroff unless i was a "superuser". how do I become a superuser on the rpi.

    Assuming you are using either Debian or Raspbian distros the comand ro shutdown would be:

     

    sudo shutdown -h now

    for immediate shutdown.

     

    sudo shutdown -r now

    for a reboot.

     

    The sudo command allows non root users to make use of many of the functions normally only available to a system admin logged in as root user.

     

    e.g. to edit the boot config file you could use

     

    nano /boot/config.txt

    but this will NOT allow you to save the changes.

     

    sudo nano /boot/config.txt

    will give you root level access and allow changes to be saved. (nano is a text editor)

     

    PLEASE TAKE CARE WHEN USING ALL THE ABOVE COMMANDS. Remember backup is your best friend. image

     

    Hope it helps

    Ray

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago in reply to Former Member

    Nice answer Ray - short and to the point - you must be in the Training business image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago in reply to Former Member

    Graham Blackshaw wrote:

     

    Nice answer Ray - short and to the point - you must be in the Training business image

    Thanks Graham and nicely guessed. I wore many hats over my career and did some training for couple of years. I finally realised it was easier to do the logic and coding than to teach it. image Any way I hope the user finds the answer helpful.

     

    Happy new year all

     

    Ray

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Anonymous-108563
    Anonymous-108563 over 12 years ago

    For the most part, you can use 'sudo', but if that's gone AWOL, you can use the 'su' command.

     

    I must emphise what Ray has said here. Do be exteremely careful of what you type when you are the superuser (or root), you can cause plenty of damage to the system, so it's wise to make backups.

     

    Hope it helps you out,

    Jamie

     

    Side note: Most of the distros should have both commands. There were a few times where 'sudo' was not avalible, so 'su' should serve as an alternative.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago

    Little reminder:
    you should be logged by default (at Raspian /Debian) as

    Username: pi

    Password: raspberry

    (EDIT: by doing that you become superuser)

    It should be done after boot, before "startx" command (start GUI). At least first time you boot RPi.

    If you made auto login / auto startx enabled ( http://elinux.org/RPi_Debian_Auto_Login ), you don't have to do it again, so

    it is easy for new user to forget password (or procedure).

     

    Everytime when you want to "order" some important system commands you have to use  "sudo" command (or "su" but it is not the same), as a prefix (in front) of actual command(s).

    After that you will be immediately prompted for password, so this is what you have to enter ("raspberry").

     

    One more for new users:

    When you are asked for password, letters you type in are not visible: It is not error, it is common because of security reasons.

    If you mistype letter at password prompt, you can not delete it and continue to type: it will be treated as wrong password. You should start over again.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • morgaine
    morgaine over 12 years ago

    The information and advice given above is  correct, but it's worth adding a little note about the typical use of sudo versus su.  You'll be using sudo mostly as you learn and gain experience with the Unix command line, but sudo is akin to the safety wheels on a learner's bicycle.  It's an important facility and greatly helps to reduce accidents and the tears that can result from them.  Once you are an expert though, you'll most commonly detach those wheels from your Unix bike, because they often get in the way of effective cycling.

     

    In other words, as you gain experience you'll find that your use of sudo decreases, and that instead you'll pop up an xterm window su'd to root (or similarly on a VT) to perform essential operations that need root privilege, dropping root or the whole window (or logging out of the VT) when no longer needed.  And if your fun Pi experience ever turns into a career, you'll discover that use of sudo is extremely rare among professional Unix system administrators.  They're paid to know what they're doing and to not make the elementary mistakes that sudo partly mitigates.

     

    Have fun! image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago

    just type in as the username root and then click on the bottom-left bird (AKA start), click on log-off, and click shutdown.

    hope this helps!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago

    If you use sudo adduser to add a new user and you want that user to be able to use sudo, you should add them to the sudo group.  There are a number of ways to do that, like with sudo adduser their_username sudo.  The official way to add someone to a bunch of groups at once would be sudo vigr (if you know how to use vi), or I just use sudo nano /etc/group (which you would not normally do if more than one admin could edit the file at the same time). /etc/group is a comma separated list of users for each group like:

     

    video:x:44:pi,efflandt

     

    Note that:

    sudo halt is same as sudo shutdown -h now

    sudo reboot is same as sudo shutdown -r now

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • rhydian98
    rhydian98 over 12 years ago

    Thank you everybody for your help. I have found that if i use sudo su then it allows me to poweroff. thanks again

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • 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