[Ubuntu] VMWare에 Ubuntu 20.04 가상머신 만들기(설치 후 세팅) 1. Ubuntu 20.04.2.0 LTS 이미지 다운로드 https://ubuntu.com/download/desktop 2. VMWare Workstation에서 New Virtual Machine 2. 가상머신 생성 후에 초기화면 Snapshot 3. 세팅 1) 초기 패스워드 설정하기 $sudo passwd 2) 업데이트하기 $ sudo apt-get update $ sudo apt-get upgrade OS/Linux 2021.05.28
[Windows] 파일 해시값 확인하기 1. CMD를 이용하여 해당 파일 위치로 이동 2. certutil -hashfile [filename] [Hashalgorithm] 명령어 사용하기 OS/Windows 2020.10.06
[Windows] 파일 문자열 바꾸는 프로그램 DarkNamer download: https://software.naver.com/software/summary.nhn?softwareId=GWS_000169 설명: DarkNamer은 세부적으로 이름을 바꾸거나 추가 그리고 지울 수 있고 이외에 확장자 등을 수정할 수 있다. RePlace Text download: https://download.cnet.com/Replace-Text/3000-2351_4-75628542.html 설명: Windows 에서 사용할 수 있으며, 여러 텍스트 파일의 문자열을 변환할 수 있게 해주는 프로그램이다. OS/Windows 2020.05.19
[Ubuntu] ubuntu 명령어 설치된 패키지 확인하기 $ dpkg -l 원하는 패키지 설정해서 확인하기 $ dpkg -l | grep docker 파이썬을 이용하여 파일 압축풀기 $ apt-get install unzip -y $ unzip "압축파일명" 자기 자신 명령어 확인 cat /etc/lsb-release OS/Linux 2020.05.18
[Windows] pscp 사용법(윈도우에서 리눅스로 파일 전송) 윈도우에서 리눅스로 파일을 업로드하거나 다운로드 하는 방법 = FTP 구축되어있지 않아도 가능 "PSCP" 1. Putty 설치 https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html Download PuTTY: latest release (0.73) This page contains download links for the latest released version of PuTTY. Currently this is 0.73, released on 2019-09-29. When new releases come out, this page will update to contain the latest, so this is a good page to bo.. OS/Windows 2020.05.18
[Ubuntu] Ubuntu에서 Jupyter Notebook 환경 구축 사용한 ubuntu version 1. Python3 다운로드 및 실행 확인 1.1 python3을 다운로드 $ apt-get install python3 1.2 버전 확인 $ python3 --version 1.3 실행 $ python3 2. pip(파이썬 패키지 관리자) 설치 2.1 파일 다운로드 $ wget https://bootstrap.pypa.io/get-pip.py 2.2 설치된 파일 확인 $ ls 2.3 get-pip.py 파일이 존재 => 아래 명령어를 통해 파일을 실행 $ python3 get-pip.py 2.4 버전을 확인 $ pip --version 2.5 설치되어 있는 Python 패키지 확인 $ pip list 2.6 Python 패키지 검색하기 https://pypi.org/ .. OS/Linux 2020.05.18