루트 사용자에 대해 다음 경고를 비활성화하고 싶습니다.
You are trying to start Visual Studio Code as a super user which isn't recommended. If this was intended, please add the argument `--no-sandbox` and specify an alternate user data directory using the `--user-data-dir` argument.
스냅샷을 실행할 때마다 --no-sandbox 매개변수를 입력할 필요가 없습니다. 나는 그들에게 모든 별칭을 부여하고 싶지 않습니다. 나는 보안 위험에 대해 잘 알고 있습니다. 개인적인 용도로 가상 머신에서만 이 작업을 수행하겠습니다. 구성 파일을 편집하거나 이 오류를 우회할 수 있는 방법이 있습니까?
답변1
이 python3 해결 방법을 만들었습니다.
#!/usr/bin/python
import os
import sys
if __name__ == "__main__":
if len(sys.argv) <= 1:
print("No snap specified")
exit(-1)
else:
os.system(sys.argv[1] + " --no-sandbox " + ' '.join(sys.argv[2:]))
exit(0)
경로에 추가
예:
코드 --user-data-dir ~/.vscode를 실행합니다.