일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- appres
- 애플
- git
- Android
- OTP
- css
- kmip
- SwiftUI
- Xcode
- 앱스토어
- SSL
- otpkey
- 안드로이드
- FIDO2
- openssl
- 인증
- 앱리소스
- MSYS2
- 2FA
- fido
- OSX
- SWIFT
- SSH
- albumbook
- WebAuthn
- Nodejs
- apple
- 앨범북
- MFA
- MYSQL
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
SELinux 로그 파일위치 /var/log/audit/audit.log type=AVC msg=audit(1559111499.690:263): avc: denied { read } for pid=13132 comm="openvpn" name="kcs_vpn_kcsca.crt" dev="dm-0" ino=35284142 scontext=system_u:system_r:openvpn_t:s0 tcontext=unconfined_u:object_r:admin_home_t:s0 tclass=file permissive=0 type=SYSCALL msg=audit(1559111499.690:263): arch=c000003e syscall=21 success=no exit=-13 a0=55cd4d1ba088 a..
Java 를 기반으로 하는 오픈소스 미들웨어 레드햇에서 상용제품인 Jboss EAP 와 혼통을 막기위해 Jboss AS8 버전부터 WildFly 라는 이름을 사용
https://android.googlesource.com/?format=HTML android Git repositories - Git at Google android.googlesource.com https://android.googlesource.com/platform/packages/ platform/packages/ - Git at Google android.googlesource.com https://android.googlesource.com/platform/packages/apps/ platform/packages/apps/ - Git at Google android.googlesource.com https://android.googlesource.com/platform/packages/a..
https://centos.pkgs.org/7/epel-x86_64/gcc-arm-linux-gnu-4.8.5-16.el7.1.x86_64.rpm.html gcc-arm-linux-gnu-4.8.5-16.el7.1.x86_64.rpm Descriptiongcc-arm-linux-gnu - Cross-build binary utilities for arm-linux-gnuPropertyValueDistributionCentOS 7RepositoryEPEL x86_64Package namegcc-arm-linux-gnuPackage version4.8.5Package release16.el7.1Package architecturex86_64Package typerpmInstalled size31.26 MBD..
참고 : vi /var/lib/dpkg/alternatives/gcc 파일을 확인해 보면 좋다. update-alternatives --install /usr/bin/gcc gcc /usr/bin/arm-linux-gnueabi-gcc 30 --slave /usr/bin/g++ g++ /usr/bin/arm-linux-gnueabi-g++ update-alternatives --install /usr/bin/gcc gcc /usr/bin/arm-linux-gnueabihf-gcc 30 --slave /usr/bin/g++ g++ /usr/bin/arm-linux-gnueabihf-g++ update-alternatives --install /usr/bin/gcc gcc /usr/bin/arm-none-e..
gcc, g++ 모든 항목 제거root@dev:~# update-alternatives --remove-all gccroot@dev:~# update-alternatives --remove-all g++ 제거 확인root@dev:~# update-alternatives --config gccupdate-alternatives: error: no alternatives for gcc root@dev:~# update-alternatives --config g++update-alternatives: error: no alternatives for g++ 실행파일 찾지 못함root@dev:~# gcc-bash: /usr/bin/gcc: No such file or directoryroot@dev:~# g++-..
참조 : https://blog.thinkbee.kr/linux/linux-update-alternatives/ update-alternative 사용여러 버전의 gcc를 update-alternative를 사용해서 선택적으로 사용할 수 있다. gcc 로 등록된 현재 버전 목록을 질의 한다.$ update-alternatives --query gcc GCC 설치의 예 sudo apt-get update sudo apt-get install gcc-4.7 g++-4.7 sudo apt-get install gcc-4.8 g++-4.8 등록여기서 사용하는 여러 gcc 버전들을 설치한 후에 다음과 같은 명령어로 등록을 할 수 있다.update-alternatives --install sudo update-al..
일반적인 리눅스 배포본의 방화벽인 ufw` 를 사용해서 리눅스에 방화벽을 구축하는 방법을 기술하고 있다. 여기서 사용, 테스트한 리눅스 배포본은 Ubuntu 14.04, 15.04, 16.04 계열에서 동작하리라 믿는다. 실제 Raspbian Weezy, Jessie, Armbian Ubuntu 16.04, Debian Jessie 에서 사용중이다. UFW - Uncomplicated FirewallUbuntu의 기본 방화벽 두고는 UFW이다. 데스크탑을 위한 GUI 버전 Gufw 도 있다. 1ufw 설치서버로 운영중인 ARM 계열의 SBC 컴퓨터인 Raspberry Pi, Odroid, OrangePi 등의 배포본에는 ufw가 빠져 있다.$ sudo apt install ufw 방화벽은 다음 같이 설정..
Ubuntu 16.04 system service를 등록해 보자Backgroundmachine에서 server를 실행시키기 위해서는 system 동작 시에 자동으로 해당 server application이 실행될 필요가 있다.예를 들어 cloud9이나 jupyter notebook을 ubuntu server에 설치하고 외부에서 사용한다고 가정해보자.설치한 뒤에 수동으로 실행시켜도 되지만, 그러면 system을 reboot 한 뒤에 또 수동으로 동작시켜 주어야만 한다.system에 service로 등록시켜 system 시작 시에 자동으로 동작시키면 이런 수고를 덜 수 있다.Ubuntu 16.04를 기준으로 정리해 본다. jupyter notebook을 예로 든다.※ 정확히는 모르겠지만 14.04 때는 이런..