error: unpacking of archive failed on file : cpio: rename on centos7

2018-05-14 KENNETH 0

상황 이번 새로 출시된 7.5 업데이트 실행중 “/”파티션 FULL 에 의해 프로세스 강제 종료.. 여유공간 마련 후에 재시도 진행시 아래 두개 패키지의 update 오류 발생   에러메세지 # yum update Loaded plugins: fastestmirror, langpacks Loading mirror speeds from cached hostfile * base: mirror.navercorp.com * elrepo: mirror.rackspace.com * epel: mirror.premi.st * extras: mirror.navercorp.com * updates: mirror.navercorp.com Resolving Dependencies –> Running transaction check —> Package python-backports-ssl_match_hostname.noarch 0:3.4.0.2-4.el7 will be updated —> Package python-backports-ssl_match_hostname.noarch 0:3.5.0.1-1.el7 will be an update —> Package python-urllib3.noarch 0:1.10.2-3.el7 will be updated —> Package python-urllib3.noarch 0:1.10.2-5.el7 will be an update –> Finished Dependency Resolution Dependencies Resolved ============================================================================ Package Arch Version Repository Size ============================================================================ Updating: python-backports-ssl_match_hostname noarch 3.5.0.1-1.el7 base 13 k python-urllib3 noarch 1.10.2-5.el7 base 102 k Transaction Summary ============================================================================ Upgrade 2 Packages Total download size: 114 k Is this ok [y/d/N]: y Downloading packages: No Presto metadata available for [ more… ]

No Image

XE “OOPS! 요청한 기능을 실행할 수 있는 권한이 없습니다.” 오류

2018-05-03 KENNETH 1

관리자 계정으로 정상적인 로그인을 하였음에도 불구하고 관리자 모드(대시보드, 설정등등) 접근시에 OOPS! 요청한 기능을 실행할 수 있는 권한이 없습니다. 오류가 발생하는 경우   원인 XE의 “사이트 잠금” 기능 때문 use_sitelock 관련 설정이 버전업 되면서 뭔가 이슈가 있었던듯 하다… 원래   변경   해결법 file : files/config/db.config.php admin_ip_list 로 시작 하는 항목을 삭제 해버리면 됨 이후 재로그인 하면 해결됨  

How to download and install prebuilt OpenJDK packages in LINUX(redhat and ubuntu)

2018-04-23 KENNETH 0

URL : http://openjdk.java.net/install/ How to download and install prebuilt OpenJDK packages JDK 9 & Later Oracle’s OpenJDK JDK binaries for Windows, macOS, and Linux are available on release-specific pages of jdk.java.net as .tar.gz archives. As an example, the archives for JDK 10 may be found on jdk.java.net/10 and may be extracted on the command line using $ tar xvf openjdk-10*_bin.tar.gz JDK 8 Debian, Ubuntu, etc. On the command line, type: $ sudo apt-get install openjdk-8-jre The openjdk-8-jre package contains just the Java Runtime Environment. If you want to develop Java programs then please install the openjdk-8-jdk package. Fedora, Oracle Linux, Red Hat Enterprise Linux, etc. On the command line, type: $ su -c “yum install java-1.8.0-openjdk” The java-1.8.0-openjdk package contains just the Java Runtime Environment. If you want to develop Java programs then install the java-1.8.0-openjdk-devel package. JDK 7 Debian, Ubuntu, etc. On the command line, type: $ sudo apt-get install openjdk-7-jre The openjdk-7-jre package contains just the Java Runtime Environment. If you want [ more… ]

이미 설치된 파이썬 패키지를 모두 업데이트 하는 방법

2018-04-09 KENNETH 0

세상에나.. pip help 명령을 들여다 봐도 도저히 모르겠음…. 가능 한지 여부도 모르겠네… 하지만 찾아보니 아래와 같은 방법이 있다고 소개 해줌… 다행.. pip freeze –local | grep -v ‘^\-e’ | cut -d = -f 1 | xargs -n1 pip install -U 직접 수행 해보니 잘 됨.. ㅋ  

VSCode 에서 표시언어 변경 하기 (언어 구성 : locale)

2018-04-09 KENNETH 0

최신 버전의 VSCode 를 설치해 보니… 메뉴등의 표시 언어가 죄다 한글로 설정 되어 있음 영어를 딱히 좋아 하는것은 아니지만… 뭔가 좀 어색하고 이상한듯 하여…. 변경이 필요함   설정파일 위치 : $설정파일이 위치한 경로/Code/User/locale.json 그런데… 새로 설치한 경우에는 파일이 존재하지 않는다… 세상에나.. 파일이 존재하지 않는데 적용된 로케일 설정 이라니.. ㄷ ㄷ   이런 경우 설정파일을 직접 만들어서 수정해주면 될듯..   아니면 “F1″키를 눌러서 “언어” 를 입력 하면 “언어 구성”이 자동 완성으로 떨어지게 되고 그러면 현재 설정이 반영 되어 있는 설정값이 열림… 그럼 위와 같이 locale 설정을 “ko 에서 en-US”로 변경 해주면 된다. 그리고 나서 재시작을 하면, 기존 버전처럼 표시 언어가 영문 으로 나오게 된다….