기본 콘텐츠로 건너뛰기

su sudo 명령어

su(switch user), sudo(superuser do) 명령어

맥북에서 su 명령어를 사용하려 하면 

su:Sorry가 나옴

비밀번호 초기 설정이 안되어 있어서 나오는 것이므로

sudo -s
passwd root

로 비밀번호를 설정해 주면 잘 사용가능함

su(switch user) 명령어 - 현재 계정을 로그아웃을 하지 않고 다른 계정으로 전환

su 는 root 사용자로 변경

su user 는 다른 사용자로 변경

su - user 는 다른 사용자 변경 + 환경변수까지 적용

whoami 는 현재 사용자 확인

logout(exit) 는 이전 계정으로 컴백

sudo(superuser do) 명령어

sudo 는 root 권한을 이용하여 명령어를 실행(현재 사용자 비밀번호 이므로 root 비밀번호와는 다름)

sudo -i, sudo -s 는 root계정으로 전환, -s는 현재 디렉토리 -i는 root 디렉토리

sudo visudo 는 등록된 사용자는 sudo를 쓸 수 있게 해줌

 



댓글

이 블로그의 인기 게시물

메이븐으로 라이브러리 인식

 간혹 퍼블릭 jar가 아닌 파일이 있는데 그럴때 쓰면 될듯 <dependency> <groupId> SimpleCryptLib </groupId> <artifactId> SimpleCryptLib </artifactId> <version> 1.1.0 </version> <scope> system </scope> <systemPath> ${basedir}/src/main/webapp/WEB-INF/lib/SimpleCryptLib-1.1.0.jar </systemPath> </dependency> version, scope, systemPath는 꼭 작성해야 한다 groupId, artifactId, version은 암거나 해도 되는거 같음 최근(2021.05.04)스프링 부트    < dependency > < groupId > NiceID </ groupId > < artifactId > NiceID </ artifactId > < version > 1.0 </ version > < scope > system </ scope > < systemPath > ${basedir}/src/main/resources/lib/NiceID.jar </ systemPath > </ dependency > 이걸 추가해주는것도 필요할지도..?? < build > < plugins > < plugin > < groupId > org.springframework.boot </ groupId > < artifactId > spring-bo...

mac 맥 맥북 Brew 완전 삭제

맥북에서 Brew 초기화 Brew를 써서 h2를 쓰려고 하는데 brew install h2가 안되서 이리 저리 알아보다가 완전 삭제 후 다시 설치 하니까 되서 그 방법을 남겨놈 1. 터미널에 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall.sh)" 입력후 y랑 뭐 비번.. 2. /usr/local 폴더에서 Homebrew 폴더 삭제 rm -rf Homebrew/ 권한설정으로 잘.....삭제하고 3. 다시 설치 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" 좀 오래걸리니까 기다려야한다는걸 배움... 출처.... https://discourse.brew.sh/t/error-no-formulae-found-in-taps/8331/9