전체보기 (325) 썸네일형 리스트형 yum update or yum install fails with package conflict between 64 bit and 32 bit package architectures ? Environment Red Hat Enterprise Linux 5 Red Hat Enterprise Linux 6 64 bit architecture 32 bit packages installed sharing some files with the 64 bit ones Issue Files are conflicting between 64 and 32 bit packages, how to fix it ? yum update or yum install fails with package conflict between 64 bit and 32 bit package architectures. 32 bit package showing conflict problem with 64 bit package. RawTra.. CentOS 저장장치(HDD) 추가 하기 CentOS(리눅스)를 운영중인 장비에 하드디스크 등 저장장치를 추가 하면 디스크를 이용하기 위해서 다음과 같은 작업을 해줘야 합니다. 디스크 설치 후 fdisk –l 을 이용해서 디스크 정보를 확인합니다. 새로 설치된 디스크는 파티션 정보가 없습니다. 디스크 정보를 확인 했으면 fdisk 를 실행 합니다. fdisk (예 : fdisk /dev/sdb) fdisk 메뉴를 확인하고 싶으시면 m을 입력하시면 됩니다. p를 입력해서 파티션 정보를 확인합니다. 파티션이 없는 것을 확인 할 수 있습니다. n 을 입력하면 파티션을 새롭게 만들 수 있습니다. n을 누르면 두개의 메뉴가 나옵니다. e(extended) 확장 파티션과, p(primary partition) 주파티션을 선택 할 수 있습니다. 주로 사용하.. Unfinished transactions remaining - yum-complete-transaction While trying to run a yum update I received the below warning message: Setting up Install Process Resolving Dependencies There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them. --> Running transaction check To resolve this yum-complete-transaction is required to complete the unfinished transactions. yum-complete-transaction is a prog.. PHP: Simple compression of JSON data Just discovered how super simple it was to add some gz compression when for example providing JSON data from PHP. All you need is regular output buffering with the ob_gzhandler as output callback. // Fetch some data $data = get_data(); // Turn on output buffering with the gzhandler ob_start('ob_gzhandler'); // Output as normal echo json_encode($data); The cool thing is that it actually looks at .. javascript ios app open self.location / window. not working ios app 을 웹 어플리케이션에서 킬때... 사파리에서는 안먹히는 것 해결 [카페24쇼핑몰] 할인 가격 옆에 빗금쳐진 원래 가격 표시하기 {$disp_product_custom} 위 소스 추가 후 css 에 /* 소비자가 0원시 비노출 */ .display_custom { display:none; } .display_custom0 { display:none; } 추가 jquery ui dialog close button missing jquery-ui 의 dialog close 버튼이 안보일때 bootstrap.min.js 와 스크립트 충돌로 인한것으로 해당 스크립트를 우선순위를 바꾸거나 제외하면 정상적으로 보인다. Javascript contains domain or email by string var url_regex = /(http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-.\/?%&=]*)?)/gi; var email_regex = /([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi; var string = "도메인은 http://www.huzy.net/ 이고 이메일은 root@yjhoon.com 입니다."; var url_result = string.match(url_regex); => ["http://www.huzy.net/"] var email_result = string.match(email_regex); => [root@yjhoon.com"] result 값은 둘다 배열로 리턴되서 나옴 . 이전 1 ··· 18 19 20 21 22 23 24 ··· 41 다음