목록전체 글 (192)
낭만 프로그래머
1. 실행 창에서 gpedit.msc 를 실행 2. [컴퓨터 구성] - [관리 템플릿] - [Windows 구성요소] - [터미널 서비스] - [원격 데스크톱 세션 호스트] - [연결] 을 선택 한 후 3. [연결 개수 제한]을 더블 클릭 4. 연결 개수 제한을 '사용'으로 변경, 옵션에서 TS 최대 허용 연결 값을 999999로 변경 한 후 확인 5. [원격 데스크톱 서비스 사용자를 하나의 원격 데스크톱 서비스 세션으로 제한] 을 더블클릭 6. 원격 데스크톱 서비스 사용자를 하나의 원격 데스크톱 서비스 세션으로 제한을 '사용 안 함'으로 변경 후 확인 7. 변경된 정책을 업데이트 하기 위하여 Command 창을 실행하여 gpupdate /force 를 실행
IE에서 자체적으로 보안을 위해 오래된 ACTIVE X 를 차단함으로써 발생하는 문제다여러가지 방법이 있지만 레지스터를 수정하는 방법이 제일 간단하고 확실 한 방법이다 IE가 Active X의 업데이트를 위하여 versionlist.xml 파일을 받은데 이 파일을 업데이트 하지 못하게 한다Commad 콘솔 창에서 아래와 같이 입력한다 reg add "HKCU\Software\Microsoft\Internet Explorer\VersionManager" /v DownloadVersionList /t REG_DWORD /d 0 /f del "%LOCALAPPDATA%\Microsoft\Internet Explorer\VersionManager\versionlist.xml"
1. 다운로드 http://sourceforge.net/projects/liteide/files/?source=navbar 에 접속해서 원하는 버전 다운로드 2. 원하는 경로에 압축해제 3. /liteide/bin/liteide 실행
1. CentOS6.6 설치 2. Go 컴파일러 다운로드 및 압축 해제 wget https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz tar vxzf go1.5.3.linux-amd64.tar.gz sudo mv go /usr/local/ 3. PATH 설정 echo "export PATH=$PATH:/usr/local/go/bin" >> .bashrc source .bashrc
Building th main Guest Additional module [실패] 1. 커널 업데이트 yum update kernel* reboot 2. 필요 패키지 설치 yum groupinstall "Development Tools" Building the OpenGL support modules..... [실패] 1. VBoxLinuxAdditions.run 실행전에 아래를 실행 cd /usr/src/kernels/2.6.32-431.3.1.el6.x86_64/include/drm ln -s /usr/include/drm/drm.h drm.h ln -s /usr/include/drm/drm_sarea.h drm_sarea.h ln -s /usr/include/drm/drm_mode.h drm_mod..
공식 사이트 : http://wiki.x2go.org/doku.php 1. epel 설치 # wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm # rpm -Uvh epel-release-6-8.noarch.rpm 1. The correct fix is to update your SSL certificates. # yum upgrade ca-certificates --disablerepo=epel # yum install epel-release -y 3. 필요 패키지 설치 # yum -y install fuse fuse-libs 4. fuse, sshfs 설치 # yum install fuse sshfs 5. x2g..
* Controller에서 문자열을 Json 형태로 전송 : Content 메소드를 사용 Method Parameter Return Content(String) content Type: System.String The content to write to the response. ContentResult Content(String, String) content Type: System.String The content to write to the response. contentType Type: System.String The content type (MIME type). ContentResult Content(String, String, Encoding) content Type: System.String ..