Alpine Linux에서 root 유저로 권한 변경하는법
ProgrammingAlpine Linux에서는 sudo
명령어를 사용할 수 없기 때문에, 대신 su root
명령어를 사용하면 된다.
~$ sudo
-ash: sudo: not found
~$ su root
Password:
~# whoami
root
'Programming' 카테고리의 다른 글
꼬리재귀(Tail Recursion)란 (0) | 2020.03.13 |
---|---|
Node.js에서 watch 프로세스를 두개 이상 띄우는 방법 (0) | 2020.02.27 |
Alpine Linux에서 일반유저로 도커 관리하는 방법 (0) | 2020.02.12 |
Alpine linux ERROR: unsatisfiable constraints: docker (missing): required by: world[docker] 오류 해결방법 (0) | 2020.02.12 |
Python timeit 모듈 사용법 (성능 측정) (0) | 2020.02.10 |