본문 바로가기

학습/시스템

[WSL] root 사용

문제

기본 계정에서 su 로 root 사용이 안됨.

 

대응

powersheel or cmd 를 관리자 권한 실행
wsl --user root 명령으로 root 로그인
passwd 명령으로 root 비밀번호 변경
기본계정에서 su 명령으로 root 사용 가능

2. wsl 로 여러개의 linux 설치한 경우 
wsl -d <Distro>

 

예시 
PS C:\Windows\system32> wsl -l
Linux용 Windows 하위 시스템 배포:
Ubuntu-22.04(기본값)
OracleLinux_9_1


PS C:\Windows\system32> wsl -d OracleLinux_9_1 --user root
[root@DESKTOP-L46HHOA system32]# passwd
Changing password for user root.
New password:
BAD PASSWORD: The password is shorter than 8 characters
Retype new password:
passwd: all authentication tokens updated successfully.
[root@DESKTOP-L46HHOA system32]#