본문 바로가기

Developing..72

Flutter 설치 이슈 정리 Flutter 설치설치후 확인방법 flutter doctor  원인 : 경로 설정 * 어디가 좋은 경로일까? Shared가 좋지만, 혼자 코딩한다면 Home 밑에 바로 넣는 것 추천.vim ~/.zshrcexport PATH="$HOME/flutter/bin:$PATH"source ~/.zshrc  Android studio, CocoaPods 설치기본 가이드라인 1. 공식문서 - https://flutter-ko.dev/get-started/install/macos 2. 블로그  - https://wildeveloperetrain.tistory.com/358Android studio 설치1.  수많은 에러 나오지만 당황하지 말고!  Setting > 'Languages & Frameworks' > 'A.. 2024. 10. 21.
Data Center란 무엇인가 1. 정의 : 대량의 데이터를 수집, 처리, 저장 및 배포하는 데 사용하는 네트워크 컴퓨터, 스토리지 시스템 및 컴퓨팅 인프라로 구성된 시설 회사들이 클라우드 컴퓨팅으로 전환함에 따라 클라우드 제공업체의 데이터 센터와 기업 데이터 센터 간의 경계가 명확하지 않음 2. 목적 자사 데이터 및 자사 시스템 보호 IT인프라, 데이터 처리 인력, 데이터 공급업체 등을 중앙 관리 정보 보안 제어 민감한 개인정보 관리 3. 업무 : 데이터 처리, 저장 및 통신을 위한 리소스와 인프라를 수집함. 시스템 : 데이터 저장/공유/접근/처리 물리적 인프라 : 데이터 처리/통신(접근,공유) 유틸리티 : 쿨링, 전기, 네트워크 보안, 무정전 전원공급 장치(UPSes) 4. 데이터센터 구축하는 방법 https://www.techt.. 2022. 7. 28.
로그남기는 법2 : 표준출력+로그파일 생성하기 def custom_print(message_to_print, log_file='output.txt'): print(message_to_print) with open(log_file, 'a') as of: of.write(message_to_print + '\n') # Command 출력결과1 출력결과2 ... # output.txt 출력결과1 출력결과2 ... 2022. 7. 27.
scp, zip/unzip command ## 압축하기 # 폴더의 하위 내용(폴더+파일) 전부 압축하기 $ zip -r output.zip resources/ # 여러개 폴더+파일 나열해서 압축하기 $ zip -r output.zip resources/ sources/ text1.txt text2.txt ## 압축해제 ## 현재 위치에 압축해제하기 unzip output.zip ## 특정 폴더 지정해서 압축해제하기 $ mkdir mydir $ unzip output.zip -d ./mydir ## 서버간 복사하기 scp [원격서버]:path/to/file [로컬서버]:path/to/file scp [로컬서버]:path/to/file [원격서버]:path/to/file scp -r [원격서버]:path/to/dir [로컬서버]:path/to/di.. 2022. 7. 26.