Each file or directory in Linux has an owner, group, and permissions that allow who can read, write, and execute the file.
If you wish to change the owner for a file or directory, you can make use of the chown command. Using the chown command you can change both the owner user and the owner group for a file or directory.
Syntax:
sudo chown <new-user-name>:<new-user-group> file/directory
Example 1 : Change owner only
File:
sudo chown code2care /Users/c2ctech/data/data.csv
Directory:
sudo chown code2care /Users/c2ctech/data
Example 2: Change owner group only
File:
sudo chown :devs /Users/c2ctech/data/data.csv
Directory:
sudo chown :devs /Users/c2ctech/data
Example 3: Change both owner and group
File:
sudo chown code2care:devs /Users/c2ctech/data/data.csv
Directory:
sudo chown code2care:devs /Users/c2ctech/data
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Linux,
- Command to know the Available Memory on Linux System
- How to install curl on Alpine Linux
- How to backup a file in Linux/Unix
- Install Java Runtime Environment (Oracle or open JRE) on Ubuntu
- What is the Default Admin user and Password for Jenkins
- How to tar.gz a directory or folder Command
- Copy entire directory using Terminal Command [Linux, Mac, Bash]
- Fix: bash: ipconfig: command not found on Linux
- Command to check Last Login or Reboot History of Users and TTYs
- Linux: Create a New User and Password and Login Example
- ls command to list only directories
- bash: cls: command not found
- How to exit from nano command
- Installing and using unzip Command to unzip a zip file using Terminal
- What does apt-get update command does?
- ls command: sort files by name alphabetically A-Z or Z-A [Linux/Unix/macOS/Bash]
- How to remove or uninstall Java from Ubuntu using apt-get
- scp: ssh: connect to host xxxx port 22: Connection refused Error
- Sort ls command by last modified date and time
- Create Nested Directories using mkdir Command
- How to Exit a File in Terminal (Bash/Zsh)
- Command to know the installed Debian version?
- How to connect to SSH port other than default 22
- How to save a file in Nano Editor and Exit
- Install OpenSSL on Linux/Ubuntu
More Posts:
- How to Find the Location of Notepad on Windows 11 - Windows
- Fix: FileNotFoundError: [Errno 2] No such file or directory: Python - Python
- How to Remove Widgets from macOS Sonoma 14 Desktop - MacOS
- Java 7 addSuppression() and getSuppression() Exception Handling - Java
- SharePoint 2016 error - Could not find file ManageUserProfileServiceApplicationTenantSimplified.xml - SharePoint
- Android: Save Data in local Db using Android Room - Android
- Integrating Android Facebook SDK 3.17.2 Tutorial - Android
- Android Parsing Data for android-L failed Unsupported major.minor version 51.0 Error - Android