일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SwiftUI
- 앱리소스
- apple
- kmip
- SWIFT
- OSX
- 애플
- SSL
- otpkey
- 인증
- 앨범북
- 안드로이드
- WebAuthn
- MSYS2
- css
- openssl
- Xcode
- Nodejs
- fido
- SSH
- 앱스토어
- FIDO2
- MYSQL
- MFA
- Android
- git
- appres
- 2FA
- OTP
- albumbook
- Today
- Total
목록개발 플랫폼 및 언어 (340)
인디노트
# vi /usr/lib/systemd/system/rc-local.service 위의 패스 (CentOS) 가 아니면 다음의 패스 (우분투) 일 수 있다. # vi /etc/systemd/system/rc-local.service # CentOS 의 경우 [Unit] Description=/etc/rc.d/rc.local Compatibility ConditionFileIsExecutable=/etc/rc.d/rc.local After=network.target [Service] Type=forking ExecStart=/etc/rc.d/rc.local start TimeoutSec=0 RemainAfterExit=yes [Install] WantedBy=multi-user.target # Ubuntu..
softether-vpnclient install $ cd /usr/local/src $ wget https://www.softether-download.com/files/softether/v4.38-9760-rtm-2021.08.17-tree/Linux/SoftEther_VPN_Client/64bit_-_Intel_x64_or_AMD64/softether-vpnclient-v4.38-9760-rtm-2021.08.17-linux-x64-64bit.tar.gz $ tar xvfz softether-vpnclient-v4.38-9760-rtm-2021.08.17-linux-x64-64bit.tar.gz $ cd vpnclient $ make start $ ./vpnclient start The SoftEt..
MY Eclipse
######MS-SQL###### jdbc.dbname=com.microsoft.sqlserver jdbc.driverClass=com.microsoft.sqlserver.jdbc.SQLServerDriver jdbc.url=jdbc:sqlserver://DB_SVR_IP:1433;databaseName=MYDB jdbc.username=sa jdbc.password=password
Microsoft Quantum Development Kit https://marketplace.visualstudio.com/items?itemName=quantum.DevKit VS 에서 새 프로젝트에 Q# 관련한 항목이 보이지 않으면 VS 의 실행 아이콘을 "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe" 으로 향하게 하여 실행할 필요가 있다. "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\IDE\devenv.exe" /rootSuffix Exp 이런식으로 옵션이 있으면 Q# 관련 항목이 표시되지 않는다. 또한, "..
https://docs.microsoft.com/ko-kr/visualstudio/get-started/csharp/tutorial-console?view=vs-2019 자습서: 간단한 C# 콘솔 앱 만들기 - Visual Studio (Windows) Visual Studio에서 C# 콘솔 앱을 만드는 방법을 단계별로 알아봅니다. docs.microsoft.com

다음 사이트에 있음 http://freeware.the-meiers.org/ Roger Meier's Freeware THE SOFTWARE TITLES ON THIS WEBSITE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EV freeware.the-meiers.org
CentOS 를 설치하면 / 영역이 기본으로 8GB 로 하는 경우가 종종 있다. 설치시 신경쓰지 않으면... 그냥 디폴트로... 조금 사용하면 8GB 가 부족하다는것을 느낀다. 그때 용량을 안전하게 늘리는 방법이 있다. 다음 링크를 참조해 보자. https://jg-seo.tistory.com/4 CentOS7 - VirtualBox 디스크 용량 증설 방법 VirtualBox 에서 가상 디스크 용량 증설 현재 용량을 파악합니다. 변경된 내용을 정확히 파악하기 위해 아래 두 명령어에 대한 결과를 캡쳐 하시는 것을 추천합니다. fdisk -l df -h 8GB 정도 사용하고 jg-seo.tistory.com VM 에서 vdi 용량을 증설 한 뒤 리눅스에서 다음과 같이 파티션을 재 설정 해줘야만 한다. - 파..
* execute[/opt/gitlab/bin/gitlab-ctl start logrotate] action run [execute] fail: logrotate: runsv not running Error executing action `run` on resource 'execute[/opt/gitlab/bin/gitlab-ctl start logrotate]' 다음과 같이 해결할 수 있다. [root@gitsvr ~]# sudo systemctl start gitlab-runsvdir [root@gitsvr ~]# sudo gitlab-ctl restart ok: run: gitaly: (pid 3242) 1s ok: run: logrotate: (pid 3255) 0s ok: run: postgre..
우선 /etc/rc.local 파일에 자신이 실행하고자 하는 스크립트를 추가하거나 생성한다. vi /lib/systemd/system/rc-local.service 를 수행하여 내용을 다음과 같이 수정한다. 아마도 [Install] WantedBy=multi-user.target 우분투를 설치 후 라면 위의 부분만 추가하면 될 듯 하다. [Unit] Description=/etc/rc.local Compatibility Documentation=man:systemd-rc-local-generator(8) ConditionFileIsExecutable=/etc/rc.local After=network.target [Service] Type=forking ExecStart=/etc/rc.local start..