Search result

[Linux] update-alternatives 명령 (php, python 버전 관리)

- 우분투 리눅스에서 프로그램의 여러 버전 관리 한개 패키지의 여러 버전이 설치되어 있는 경우 update-alternatives를 이용해 심볼링 링크를 수정해서 기본 실행 버전 변경하기 //-------------------------------...

Code

ASCII 코드표

- 아스키 code table https://www.alpharithms.com/ascii-table-512119/ 반응형

Code

Python GUI

Python GUI https://wiki.python.org/moin/GuiProgramming //------------------------------------- https://github.com/ChrisKnott/Eel - 4.9k - v0.14.0 , 2020-08 - Electron 방식과 유사 //-------------------...

Code python

python 가상 환경 제어

- virtual environments (virtualenv ) - 가상 환경 만들기(생성, create) python -m venv 경로 - 가상 환경 활성화(들어가기, activate) > 경로\Scripts\activate.bat or $ source 경로/bin/activate or $ 경로/bin...

Code python

python 스크립트를 실행파일로 만들기

- 파이썬 script 소스 코드를 *.exe 파일로 변환하는 방법 //------------------------------------- - pyinstaller 설치 pip install pyinstaller - 실행 파일로 만들기 pyinstaller --onefile hello.py - 만들어진...

Code python

git 에러 fatal: unsafe repository owned by someone else 해결 방법

Git 보안 취약점 발표 https://github.blog/2022-04-12-git-security-vulnerability-announced/ - 해결 방법 : 안전한 폴더 경로 설정 $ git config --global --add safe.directory 폴더경로 - git 2.35.2 이상으로...

Code Git

Visual studio 시작시 보이는 스케일 관련 경고 메시지 처리 방법

- VS Form -> View Designer 에서 UI 작성중일때 발생 - 경고 메시지 Automatic scaling is turned off. WPF/UWP XAML designers might not display correctly, Restart Visual Studio with automatic scaling // S...

Code

비주얼 스튜디오 프로젝트 삭제할 임시파일 리스트

- Programming Visual studio temp large file list might be deleted everything으로 찾기 *.ipch|*.pch|*.pdb|*.sbr|*.cache|*.suo|*.plg|*.clw|*.aps|*.bsc|*.sbr|*.ilk|*.obj|*.idb|*.opt |*.dep|*.plg|*.tlog|*...

Code

리눅스 보안 SELinux , AppArmor 비교

//------------------------------------- 접근 통제 기법 * DAC ( Discretionary Access Control) 임의 접근 통제 - 사용자 권한으로 통제 - 리눅스 기본 보안 * MAC ( Mandatory Access Control ) , 강제 접근 통...

Code

[Linux] apt 패키지, 저장소 사용법

- 우분투 리눅스 패키지( Ubuntu Package), 저장소(Repository ) 관리법 //------------------------------------- 패키지 관련 명령 apt 명령은 (apt-get 과 apt-cache) 를 포함한다 - 하지만 apt-get 와 apt-cache...

Code apt Linux ubuntu 리눅스 우분투