전체 글229 윈도우의 각종 버전(RC/RTM/VL/Retail/DSP/OEM) 일반 윈도우 구매자에게는 DSP 버전과 리테일(RETAIL)의 차이점만 알면 됩니다. RC(Release Candidate) -쉽게말해서 최종 베타 버전입니다. RTM(Release to manufacture) -처음으로 완성된 정식버전 여기에서 그대로 포장해서 팔면 리테일, 제한을 걸면 DSP, 그 제한을 컴퓨터 브랜드회사에서 자사에 맞게 변경하면 OEM이라고 할수 있습니다. MSDN구독자에게 다운로드를 제공하는 버전이 RTM입니다. *RC 와 RTM은 박스판매품이 아닙니다. 다운로드를 통해 받을수 있습니다. 볼륨라이센스(Volume License) -대량으로 구입하는 회사나 사람을 위한 정책으로 정품인증이 필요없으며 한개의 시디키로 여러대에 설치가능합니다. 개당 가격으로 치면 리테일에 비해 상당히 저.. Tips/Windows 2012. 3. 13. HOSTS 파일이용하여 팝업,특정사이트차단 C:\Windows\System32\drivers\etc 폴더의 HOSTS 파일을 notepad로 열자. # Copyright (c) 1993-2009 Microsoft Corp. # # This is a sample HOSTS file used by Microsoft TCP/IP for Windows. # # This file contains the mappings of IP addresses to host names. Each # entry should be kept on an individual line. The IP address should # be placed in the first column followed by the corresponding host name. # The IP addre.. Tips/Windows 2012. 3. 13. Win8 단축키 Key Action Windows logo key+spacebar Switch input language and keyboard layout Windows logo key+O Locks device orientation Windows logo key+, Temporarily peeks at the desktop Windows logo key+V Cycles through toasts Windows logo key+Shift+V Cycles through toasts in reverse order Windows logo key+Enter Launches Narrator Windows logo key+PgUp Moves Start Screen or Metro style application to the mo.. Tips/Windows 2012. 3. 4. 솔라리스 사이트 http://user.chol.com/~unixsun/ Solaris 2008. 5. 22. Solaris Management Console (SMC) wont start I have got Solaris Express CE installed on my laptop , when I tried to run : # smc [code] java.net.UnknownHostException: unknown: unknown at java.net.InetAddress.getLocalHost(InetAddress.java:1315) at com.sun.management.viperimpl.console.BaseConsoleOptionsManager.init(BaseConsoleOptionsManager.java:204) at com.sun.management.viperimpl.console.BaseConsoleOptionsManager.launchConsole(BaseConsoleOp.. Solaris 2008. 5. 22. wbem smc So I downloaded 124188-01 and 119315-07 and installed them. It's working again. Hello, patch 121308-09 (May/22/2007) which obsoletes 121308-08 still breaks SMC. After removal SMC works again. Michael I'm a newbie but playing with a x86 lab PC noted that wbem is alredy running, that could explain the conflict: #/etc/init.d/init.wbem status Solaris Management console server not running on port 898.. Solaris 2008. 5. 22. fsck 사용 솔라리스에서 파일 시스템을 점검하기 위해서 다음의 절차를 따릅니다. fsck 명령어를 통해서 /dev/dsk/c0t1d0s7 파일 시스템을 점검하는 것을 예제로 설명하겠습니다. 1. 시스템을 Single user mode로 전환합니다. # sync; sync; sync # init S fsck을 실행하기 위해서는 마운트 되어 있는 파일 시스템을 unmount 해야 합니다. 따라서, Single user mode에서 fsck를 실행하는 것이 안전합니다. 2. 마운트 되어 있는 디스크를 unmount 합니다. # umount /dev/dsk/c0t1d0s7 3. fsck 를 실행합니다. # fsck /dev/rdsk/c0t1d0s7 fsck에 raw 디바이스 명을 인자로 주어야 하기 때문에 /dev/dsk/.. Solaris 2008. 5. 21. Table 'xxx' is marked as crashed and should be repaired mysql 프롬프트 및 사용하시는 툴의 sql명령문으로, mysql> analyze table [targetTable]; 를 실행하셔서 테이블에 대한 보고서가 작성되며, mysql> repair table [targetTable]; 를 실행하셔서 복원합니다. shell> perror 126 127 132 134 135 136 141 144 145 MySQL error code 126 = Index file is crashed MySQL error code 127 = Record-file is crashed MySQL error code 132 = Old database file MySQL error code 134 = Record was already deleted (or record file crash.. Solaris 2008. 5. 21. strip_tags strip_tags (PHP 3>= 3.0.8, PHP 4 , PHP 5)strip_tags -- 문자열에서 HTML과 PHP 태그를 제거합니다. 설명string strip_tags ( string str [, string allowable_tags]) 주어진 str에서 모든 HTML과 PHP 태그를 제거한 문자열을 반환합니다. 이 함수는 fgetss() 함수와 동일한 태그 제거 방식을 사용합니다. 선택적인 두번째 인자로 제거하지 않을 태그를 지정할 수 있습니다. 참고: allowable_tags은 PHP 3.0.13과 PHP 4.0b3에서 추가되었습니다. PHP 4.3부터 HTML 주석도 제거합니다. 주의 strip_tags()는 HTML의 유효성을 검사하지 않기 때문에, 부분적이거나 깨진 태그는 예상.. Web Programming 2008. 5. 15. htmlspecialchars (PHP 3, PHP 4 , PHP 5)htmlspecialchars -- 특수 문자를 HTML 엔터티로 변환합니다. 설명string htmlspecialchars ( string string [, int quote_style [, string charset]]) 어떤 문자들은 HTML에서 특별한 정의를 가지기에, 그 의미를 보존하려면, HTML 엔터티로 표현해야 합니다. 이 함수는 이러한 변환을 수행한 문자열을 반환합니다; 이 번역은 모든 웹 프로그래밍에서 매우 유용합니다. 모든 HTML 문자 엔터티를 번역해야 한다면, 이 함수 대신 htmlentities()를 사용하십시오. 이 함수로 게시판이나 방명록 등의 프로그램에서, HTML을 포함하는 사용자 입력 텍스트를 막을 수 있습니다. 선택적인 두번째 인.. Web Programming 2008. 5. 15. php 문자열 함수 AddCSlashes -- C 형식으로 문자열에 슬래쉬를 덧붙입니다. addslashes -- 문자열에 슬래쉬를 덧붙입니다. bin2hex -- 바이너리 데이터를 16진수 표현으로 바꿉니다. chop -- rtrim()의 별칭. chr -- 특정 문자를 반환합니다. chunk_split -- 문자열을 작은 조각으로 나눕니다. convert_cyr_string -- 키릴 문자셋을 다른 것으로 변환합니다. convert_uudecode -- Decode a uuencoded string convert_uuencode -- Uuencode a string count_chars -- 문자열 안에 사용한 문자에 대한 정보를 반환합니다. crc32 -- 문자열의 crc32값을 계산합니다. crypt -- 단방향 문.. Web Programming 2008. 5. 15. Solaris 10 (x32에서 NIC 잡기 Marvell Yukon PCI Express Gigabit Ethernet (On Board) 1. http://www.syskonnect.de/ 에서 해당버전 드라이버를 다운받는다. (첨부) 2. 기존 드라이버 패키지를 삭제한다 # pkgrm SK98sol 3. 드라이버를 설치한다. (예는 x64용, 나머지는 첨부된 매뉴얼 참조) # uncompress skgesol_x64v8.19.1.3.tar.Z # tar xvf skgesol_x64v8.19.1.3.tar # pkgadd -d . SKGEsolx 그럼 다음과 같은 메시지가 나오는 경우가 있다. 그렇지 않다면 성공이라고 볼 수 있다. ##Executing preinstall script. ##Installing part 1 of 1. /etc/rcS.d/S50skge /kernel/drv/amd64/skge /kernel/drv/skge.c.. Solaris 2008. 3. 25. 이전 1 ··· 6 7 8 9 10 11 12 ··· 20 다음