Windows 8과 8.1 부터는 기본적인 종료 상태가 최대절전 상태입니다.

빠르게 부팅이 되는 이유도 여기에 있습니다.

WOL (Wake on LAN)은 최대 절전모드에서 동작을 하지 않기 때문에 설정을 변경하여야 합니다.


 1. 제어판에서 전원 옵션 항목을 엽니다.

 2. 연결을 수행하는 전원 단추를 클릭합니다.

 3. 빠른 시작 (권장) 확인란의 선택을 취소 합니다.

 4. 설정 저장을 클릭 합니다.


관련문서

https://support.microsoft.com/en-us/kb/2776718

'Study > Windows' 카테고리의 다른 글

Windows 10 Hyper-V 시스템 요구 사항  (0) 2016.02.29
윈도우 공인인증서 위치  (0) 2015.05.26
Posted by theqoo
,

Ubuntu 12.04.2 LTS 환경에서 작성하였습니다.


apt-get install phpmyadmin


1. apache, lighttpd 둘 중 아무거나 선택
2. Configure database for phpmyadmin with dbconfig-common - NO


3. nginx.conf 파일의 server {} 사이에 넣어줌


location /phpmyadmin {
    root /usr/share/;
    index index.php index.html index.htm;
    location ~ ^/phpmyadmin/(.+\.php)$ {
        try_files $uri =404;
            root /usr/share/;
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            fastcgi_param SCRIPT_FILENAME /usr/share$fastcgi_script_name;
            include fastcgi_params;
      }
    location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
            root /usr/share/;
          }
}
location /phpMyAdmin {
    rewrite ^/* /phpmyadmin last;
}

'Study > Ubuntu' 카테고리의 다른 글

Ubuntu - 디스크 정보 확인  (0) 2015.08.13
https 보안서버 구축 (SSL 사설 인증서 설치)  (0) 2015.05.27
Ubuntu - MariaDB 설치  (0) 2013.03.24
Ubuntu - nginx 컴파일 설치  (0) 2013.03.22
CentOS - eth0 자동 활성화 시키기  (0) 2013.02.23
Posted by theqoo
,

Ubuntu 12.04.2 LTS 환경에서 작성하였습니다.


apt-get install python-software-properties 

apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db

add-apt-repository 'deb http://ftp.kaist.ac.kr/mariadb/repo/5.5/ubuntu precise main'


apt-get update apt-get install mariadb-server

https://downloads.mariadb.org/mariadb/repositories/

Posted by theqoo
,