Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security & DevOps Insights

  • Home
  • About
  • Advertise With US
  • Reviews
  • Contact
  • Toggle search form
Home » Linux » How to Switch between Users in Linux
  • Wordpress banner
    Fix WordPress Error “The Link You Followed Has Expired” Web Server
  • Docker Guide
    Pull and Deploy Nginx Container Images from Docker Hub AWS/Azure/OpenShift
  • HyperV 1
    An error occurred while attempting to connect to the server: Check if the Virtual Machine Management service is running or you are not authorized to connect to this server Virtualization
  • banner 2
    Why is Google moving from Universal Analytics (UA) property to GA4 property JIRA|Confluence|Apps
  • Azure CI CD Pipeline
    CI/CD Pipeline: Your First in Azure DevOps with ASP.Net Core AWS/Azure/OpenShift
  • windows subsystem
    What is Windows Subsystem for Linux Windows Server
  • Featured image Teams Whiteboard
    How to use Whiteboard in Microsoft Teams meetings Windows
  • Featured image Microsoft Whiteboard
    How to work with Microsoft Blackboard via private or commercial accounts Microsoft Exchange/Office/365

How to Switch between Users in Linux

Posted on 31/10/202201/07/2023 Raphael Gab-Momoh By Raphael Gab-Momoh No Comments on How to Switch between Users in Linux
switchlinuxusers

Using the Linux command su (switch user), you can execute a command as a different user. This is the quickest way to switch to the administrative account when logged in as the most recent session. To make the code safer, all Linux distributions—including Ubuntu—disable the root user account by default. This limitation, however, would prevent the user from carrying out intricate instructions. You can overcome this restriction can by briefly assuming root user status via su. If you’ve ever asked this question, how do I switch users in Linux? Then, you’re in the right place.

Continue reading if you want to learn more about the su and sudo commands, including how to switch between users in Linux. This article will cover all aspects of the sudo command and how to utilize it in Linux. Find other articles here: Rename or Move a File or Directory in Linux and How to Install and use Minikube on a Linux System and How to launch a free WordPress test site with TasteWP? and How to launch a free WordPress test site with TasteWP? also How to Install PlayonLinux on a Linux System

Prerequisites to Switching Between Users in Linux

You will need terminal access and an account with sudo privileges on the Linux-based system.

Changing the Current User Using su

During a login session, the su command can be used to either change into a different user or to become the superuser. The command’s fundamental syntax is as follows:

su options username

Options refer to the many flags that can be applied to a command, and username denotes the name of the target account. Su will automatically switch to the root user if the username is left out of the command.

su

The system will automatically transfer the current login session to the chosen user by simply giving the username as an argument. Note: Switching between users on Linux is made a lot easier with these steps.

su username 

The the screenshot below, we switched to a user named rdgmh

how to switch between users in Linux- su
switching between users

Notice that we had to input our password. The password of the current user that you are logged into . We can verify the change with the command:

whoami
echo $USERNAME
how to switch between users in Linux-rdgm
whoami

The output will display the name of the user you just switched to. In this case: rdgmh

You don’t need to switch to another user if you simply need to execute one command as that user. Instead, you may just use the -c switch to run the command as a different user.

su -c <command> <username>

When switching between users in Linux, the su command can establish a new environment by prefixing it with a hyphen (-).

how to switch between users in Linux-wooo
su -c

the user account is not for rdgmh, but we ran whoami and we were asked for rdgmh’s password instead of the logged in account and we were shown the result below.

how to switch between users in Linux-shell
-s flag

To switch to a different user in Linux while changing the shell, use the -s parameter with the command. Keep in mind that you must execute the command with the appropriate shell path:

Using the Desktop Environment to Switch Users in Linux

The graphical method is an alternative. The desktop environment that most Linux computers have installed gives you the graphical user interface you need to interact with the OS.

Switching between users in the GNOME desktop environment:

  1. The top-right corner of the screen has a downward-pointing arrow icon; click on it.
  2. Switch User from the dropdown menu by clicking Power Off/Log Out.
gui
switching from gui

We have the option of chosing which ever user we want to use as GNOME will display a list of available users. Click on the username you want to log in as

how to switch users between in Linux=users
user options

Summary

It is possible to switch between different users when using Linux . You can follow the steps and the laid down approaches for whichever method you want to use.

Rate this post

Thank you for reading this post. Kindly share it with others.

  • Click to share on X (Opens in new window) X
  • Click to share on Reddit (Opens in new window) Reddit
  • Click to share on LinkedIn (Opens in new window) LinkedIn
  • Click to share on Facebook (Opens in new window) Facebook
  • Click to share on Pinterest (Opens in new window) Pinterest
  • Click to share on Tumblr (Opens in new window) Tumblr
  • Click to share on Telegram (Opens in new window) Telegram
  • Click to share on WhatsApp (Opens in new window) WhatsApp
  • Click to share on Pocket (Opens in new window) Pocket
  • Click to share on Mastodon (Opens in new window) Mastodon
  • Click to share on Bluesky (Opens in new window) Bluesky
  • Click to share on Threads (Opens in new window) Threads
  • Click to share on Nextdoor (Opens in new window) Nextdoor
Linux Tags:sudo

Post navigation

Previous Post: Find BIOS Serial Number and System Information on Windows 11
Next Post: Best Way to Backup Dropbox to Box

Related Posts

  • Manage Log Files via Logrotate
    How To Use Logrotate For Managing Log Files In Ubuntu Linux Linux
  • FEATURE IMAGE BASE URL 1
    How to solve cannot find a valid base URL for repo: base/7/x86_64 Linux
  • ubuntu 1479782 1280
    Ubuntu Linux post installation of Network Properties, Guest Integration and Web Administration using Cockpit Linux
  • image 129
    How to deploy Ansible AWX on centos 8 Linux
  • DNS FEATURE
    Domain Name System: All you need to know about DNS Linux
  • runlevels
    How to check your current Runlevel in Linux Linux

More Related Articles

Manage Log Files via Logrotate How To Use Logrotate For Managing Log Files In Ubuntu Linux Linux
FEATURE IMAGE BASE URL 1 How to solve cannot find a valid base URL for repo: base/7/x86_64 Linux
ubuntu 1479782 1280 Ubuntu Linux post installation of Network Properties, Guest Integration and Web Administration using Cockpit Linux
image 129 How to deploy Ansible AWX on centos 8 Linux
DNS FEATURE Domain Name System: All you need to know about DNS Linux
runlevels How to check your current Runlevel in Linux Linux

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

sysadmin top30a

  • Wordpress banner
    Fix WordPress Error “The Link You Followed Has Expired” Web Server
  • Docker Guide
    Pull and Deploy Nginx Container Images from Docker Hub AWS/Azure/OpenShift
  • HyperV 1
    An error occurred while attempting to connect to the server: Check if the Virtual Machine Management service is running or you are not authorized to connect to this server Virtualization
  • banner 2
    Why is Google moving from Universal Analytics (UA) property to GA4 property JIRA|Confluence|Apps
  • Azure CI CD Pipeline
    CI/CD Pipeline: Your First in Azure DevOps with ASP.Net Core AWS/Azure/OpenShift
  • windows subsystem
    What is Windows Subsystem for Linux Windows Server
  • Featured image Teams Whiteboard
    How to use Whiteboard in Microsoft Teams meetings Windows
  • Featured image Microsoft Whiteboard
    How to work with Microsoft Blackboard via private or commercial accounts Microsoft Exchange/Office/365

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,836 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory AWS Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Server 2016

Copyright © 2025 TechDirectArchive

 

Loading Comments...
 

You must be logged in to post a comment.