윈도우 10 잠금화면 전원버튼 제거

windows10 잠금 화면에는 오른 쪽 하단에 시스템 셧다운 및 리부팅 버튼이 있다.
그냥 보기가 싫었다. 시스템 설정을 찾아봤지만 비활성화 시킬수가 없어 레지스트리(regedit)를 수정하여 비활성화 방법을 알아보자.

  1. 레지스트리 편집기 실행 ( Win Key + R )
    이미지1
  2. shutdownwithoutlogon 수정
    1. HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System\shutdownwithoutlogon
      이미지2
    2. (기존) -> 0(변경)
      이미지3
  3. 리부팅 후 적용 확인

참고 : How to remove the Power button from the Sign-in screen on Windows 10

#2017/11/08

# 얼마전..
##
# 새로운 곳으로 직장을 옴겼다. 예전 사업 구조에서 새로운 사업 구조로 변경되는 과정에서 성장통을 앓고 있는데.
##
# 성장통 가운데 30대 초반 일 잘하고 열심히 하는 젊은이들을 몇살 차이 안나지만 보고 있으면, 안타까운 생각이 먼저든다.
##
# 그 친구들은 새로운 구조로 변경되는 과정에서 꿈을 꾸기도 통증을 직격으로 받으면서 업무진행의 한계와 불만이 쌓이다가. 지금은 그 불만이 씨가되어 불신을 생산하고 있는 것으로 보인다.
##
# 나도 그 나이 즈음에 가장 똘똘 했을적에 조직에 대한 불만이 있었고 그 불만을 해소해줄 사람을 기다린적이 있었지만 지금 되돌아 생각해보면 모든일은 한순간에 변할 수 없고 불만을 가지고 있었던 나 조차도 어느센가 그 비합리적이고 뒤처지는 문화와 생활 속에 또 다른 불합리하고 뒤처진 문화를 생성하고 있다는 것을 깨닳고 사회생활 혹은 인간관계에서 어떤 것이든 빠르게 변할 수 없다는 것을 깨달았다.
##
# 그 친구들이 시간이 지나 불만을 표출만 하는 사람이 아닌 개선하는 사람이 되길 응원한다.

letsencrypt – certbot(python) ssl 적용 (1부)

  • 환경
    CentOS 7 / Python 2.7
  • 시작하기전에
    환경이나 조건별로 설치 방법이 다른 부분이 있으니 certbot 을 참고 하기 바랍니다.
    본 글은 python pip 를 사용하여 certbot 을 설치 하는 방법으로 certbot 내용과 다른점이 있으니 참고 사항으로만 확인 부탁드립니다.
  • python pip 를 이용한 certbot 설치
    ] pip install certbot

letsencrypt SSL 신규 발행

] certbot certonly
Saving debug log to /var/log/letsencrypt/letsencrypt.log
#
How would you like to authenticate with the ACME CA?
--------------------------------------------------
1: Spin up a temporary webserver (standalone)
2: Place files in webroot directory (webroot)
--------------------------------------------------
Select the appropriate number [1-2] then [enter] (press 'c' to cancel): 2
##
# 1 : 임시 웹서버를 구동하여 진행
# 2 : 사용중인 웹서버를 이요하여 진행 
##
Plugins selected: Authenticator webroot, Installer None
Please enter in your domain name(s) (comma and/or space separated)  (Enter 'c'
to cancel): test.com
##
# 인증서를 발급받을 도메인 주소
##
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for test.com
#
Select the webroot for test.com:
--------------------------
1: Enter a new webroot
--------------------------
Press 1 [enter] to confirm the selection (press 'c' to cancel): 1
Input the webroot for pic.huubro.com: (Enter 'c' to cancel): /tmp/www
Waiting for verification...
Cleaning up challenges
#
IMPORTANT NOTES:
- Congratulations! Your certificate and chain have been saved at:
/etc/letsencrypt/live/test.com/fullchain.pem
Your key file has been saved at:
/etc/letsencrypt/live/test.com/privkey.pem
Your cert will expire on 2018-02-04. To obtain a new or tweaked
version of this certificate in the future, simply run certbot
again. To non-interactively renew *all* of your certificates, run
"certbot renew"
- If you like Certbot, please consider supporting our work by: 
Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
Donating to EFF:                    https://eff.org/donate-le

인증서 발급 완료
/etc/letsencrypt/live/{도메인} 디렉토리에 아래 (인증서)파일이 생성됨을 확인

] ls /etc/letsencrypt/liv/test.com
privkey.pem  
fullchain.pem  
chain.pem  
cert.pem  
  • 웹서버 SSL 설정
    생락
  • letsencrypt SSL 갱신
    ] certbot renew

2부에서 계속