Linux grpunconv Command
-- Learn not just technology, but also dreams!
- Home
- HTML
- JavaScript
- CSS
- Vue
- React
- Python3
- Java
- C
- C++
- C#
- AI
- Go
- SQL
- Linux
- VS Code
- Bootstrap
- Git
- Local Bookmarks
Linux Tutorial
Linux TutorialLinux IntroductionLinux InstallationLinux Cloud ServerInstall Linux via WSLLinux System Boot ProcessLinux System Directory StructureLinux Forgot Password SolutionsLinux Remote LoginLinux File Basic AttributesLinux File and Directory ManagementLinux User and Group ManagementLinux Disk ManagementLinux vi/vimLinux yum commandLinux apt command
Shell Tutorial
Shell TutorialShell VariablesShell Passing ArgumentsShell ArraysShell OperatorsShell echo commandShell printf commandShell test commandShell Flow ControlShell FunctionsShell Input/Output RedirectionShell File Inclusion
Linux Reference Manual
Linux Command ManualNginx Installation & ConfigurationMySQL Installation & ConfigurationLinux Quiz
Shell File InclusionShell File Inclusion
Nginx Installation & Configuration
Linux grpunconv Command
The Linux grpunconv command is used to disable shadow group passwords.
Executing the grpunconv instruction can disable shadow group passwords. It will restore passwords from the gshadow file back to the group file.
Syntax
grpunconv
Example
Before disabling:
cat /etc/gshadow | grep cdy
cdy:123456::
Disable shadow passwords:
cat /etc/gshadow
cat: /etc/gshadow: No such file or directory
Check that the password has been copied to /etc/group.
cat /etc/group | grep cdy
cdy:123456:1000:
YouTip