일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MSYS2
- SSL
- SWIFT
- OTP
- SSH
- SwiftUI
- git
- WebAuthn
- Xcode
- Nodejs
- fido
- 애플
- Android
- 앨범북
- apple
- FIDO2
- kmip
- OSX
- 2FA
- openssl
- 인증
- 앱리소스
- MYSQL
- otpkey
- 안드로이드
- appres
- 앱스토어
- albumbook
- MFA
- css
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
# vi /boot/config.txt:/display_rotate
brew install coreutils brew install coreutils # All commands have been installed with the prefix 'g' sudo gdd if=XXXX.iso of=/dev/diskX bs=1 status=progress > example: > 139648967 bytes (140 MB, 133 MiB) copied, 304 s, 459 kB/s sudo gdd if=raspberryPi_hslee_16gb of=/dev/disk2 bs=1M status=progress 와 같이 bs 를 1M 로 주는게 속도에 효율적이다.초당 3.7M 전송 다음과 같은 방법도 있음.dd if=/dev/zero of=/dev/null bs=64m count=100..
os 상태 update sudo apt-get update svn 설치 sudo apt-get install subversion curl 설치curl을 안쓰면 이부분은 skip해도 됩니다. sudo apt-get install libcurl4-gnutls-dev openssl Installopenssl의 경우는 기존 apt-get으로 가져오는 것이 아니라 소스를 가져온다음 make를 해주는 방식입니다. $ wget https://www.openssl.org/source/old/1.0.1/openssl-1.0.1t.tar.gz$ cd openssl-1.0.1t$ tar xvf openssl-1.0.1t.tar.gz$ $ ./config --prefix=/usr --openssldir=/usr/local/o..
퍼옴 : http://www.rasplay.org/?p=3786 안녕하세요 산딸기마을 이장 나무꾼 입니다. 오늘은 X-Windows 를 사용하시는 분들 중 한글 사용을 원하시는 분들이 계셔서 X-Windows 에 한글키보드 설치와 설정 법을 포스팅 해 보려 합니다. 1. Raspbian system keyboard 및 locale 설정하기. X-Windows 에서 한글키보드를 설치하기 전에 현재 설정된 keyboard 와locale 설정을 수정 또는 확인 합니다.Raspbian 환경설정 메뉴 진입을 위해 아래 명령어를 입력하자.sudo raspi-config그림 1) 1-1 locale 설정하기. Raspbian 메뉴 중 가장 먼저 locale 을 설정 해 보자.Change_locale 을 선택하면 그림..
Node.js와 외부 프로그램(Java, C, C++) 연결 (bridge)BY JCDGODS · 2018년 6월 26일서버를 만들다 보면 NPM 패키지에 포함되지 않은 기능이 필요한 경우가 생긴다.이런 경우, 어쩔수 없이 다른 프로그래밍 언어를 사용해야하는 경우가 발생한다. 또한 성능 문제로 반드시 C,C++를 써야하는 경우가 생기기도 한다.Node.js에서 타 언어 프로그램을 호출하는 경우 여러가지 방법이 있지만, 나의 경우에는 한가지 프로그램만 실행하면 되었기 때문에 child_process 패키지의 exec를 사용했다. (터미널 터맨드와 동일)(1) STDOUT을 이용한 처리 방법물론 이 방법은 터미널 명령이기 때문에 위험하다. (하지만.. 뭐 소스가 변조되지 않는 이상은 문제가 없을 것이고, 이..
Node.js plain TLS Client & Server, 2-way Cert Auth Node.js TLS plain TLS socketsThis guide shows how to set up a bidirectional client/server authentication for plain TLS sockets.Prepare certificatesGenerate a Certificate Authority:openssl req -new -x509 -days 9999 -keyout ca-key.pem -out ca-crt.pemInsert a CA PasswordSpecify a CA Common Name, like 'root.localhost' or 'ca.localhost'. This MUST be..
In this post, you will see an example of simple TCP server and client in traditional javascript way and in ES6 way. Node.js has net module which provides an asynchronous network API for creating stream-based TCP or IPC servers and clients. We are going to use it to implement TCP server and client. This post is updated with Node v6.11.2. TCP Server:Here is an example of TCP server in Node.js:?var..
wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u191-b12/2787e4a523244c269598db4e85c51e0c/jdk-8u191-linux-x64.tar.gz 위에서 http:// 주소를 웹으로 들어가서 로그인하고 해당파일의 링크로 대치한다.
경로 : ../apache-2.2.16/conf/httpd.conf 파일을 open.. 아래내용대로 수정하십시오. # 기존..User daemonGroup daemon # 변경..User nobodyGroup nobody 위처럼 하시고 restart 를 하시면 정상작동을 합니다.
Easier than you might have thought. First: Can you create a single server VPN? If yes, then its very easy for you to create multi-server. The simple and short answer is -- Just create more .conf files, and start openvpn as a daemon. For more detailed explanation, read on. I'll give you example for 3 server VPN. Go to your default openvpn directory. example:CODE: SELECT ALLcd /etc/openvpncreate s..