『 Haking 』/Linux
kail linux playonlinux 설치하기
Play IT
2019. 5. 30. 00:48
반응형
찾다 찾다가 발견했습니다!
설치하는 방법은
apt-get install playonlinux
아래의 방법은 Root 계정일 때, 설치 후 실행할 수 있는 방법입니다. 참고하세요!
1) /usr/share/playonlinux/lib 에서 sources 클릭
2) sources 안의 구문 수정 (주석처리: 앞에 #만 붙임)
#if [ "$(id -u)" = "0" ]
#then
# echo "PlayOnLinux is not supposed to be run as root. Sorry"
# exit
#fi
3) /usr/share/playonlinux/python 에 들어가서 mainwindow.py 클릭
if 부터 앞에 # 를 붙임
#### Root uid check
#if(os.popen("id -u").read() == "0\\n" or os.popen("id -u").read() == "0"):
# wx.MessageBox(_("{0} is not supposed to be run as root. Sorry").format(os.environ["APPLICATION_TITLE"]),
_("Error"))
# os._exit(0)
출처: https://darongyi77.tistory.com/408 [생각대로 술술되고]
: 해당 사이트에서 root계정일때 실행할수 있는 방법을 가져왔습니다.
반응형