사내 테스트를 위해 VMware에 CentOS를 올려서 사용하던 중 자꾸 부팅시에 이상하게 네트워크 설정이 꼬이는 현상이 일어났다. 정확히는 부팅을 하는 과정에 계속 게스트 OS로 ping 을 보내고 있었는데 ping이 처음에는 잘 나가다가 어느 순간부터 ping이 끊이는 것이었다. 아마도 특정 프로세스가 실행되면서 설정된 네트워크 세팅에 영향을 주는 것 같았다. 완전히 부팅된 다음에 네트워크 재 설정을 시도하여 원래의 […]
Dec
2
pchero on December 2nd, 2010
7: Lists and Mutability, Dictionaries, Introduction to Efficiency import math #Get baseinputOK = Falsewhile not inputOK: base = input(‘Enter base: ‘) if type(base) == type(1.0) : inputOK = True else: print(‘Error. Base must be floating point number.’) #Get HeightinputOK = Falsewhile not inputOK: height = input(‘Enter height: ‘) if type(height) […]
Continue reading about Lec 7 | MIT 6.00 Introduction to Computer Science and Programming, Fall 2008
Recent Comments