목록Utility (51)
2swan
○ Putty 영문판https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html Download PuTTY: latest release (0.81)This page contains download links for the latest released version of PuTTY. Currently this is 0.81, released on 2024-04-15. When new releases come out, this page will update to contain the latest, so this is a good page to bookmark or link to. Alternativelwww.chiark.greenend.org.uk ○ ..
1. 좌측의 CD 아이콘 클릭 2. autorun.sh 마우스 우클릭 'Run as a Program' 3. authenticate 인증창이 나오게 되는데 초기 설정한 비번 입력 4. 터미널에 설치과정이 나오고 완료 되었으면 Enter 5. 우측 상단 아이콘 클릭 후 Power Off / Log Out 선택 후 Restart 6. 전체 화면으로 나오는지 확인 후 장치 → 광학 드라이브 → 가상 드라이브에서 디스크 꺼내기
◆ JDK 설치 (오라클 계정 회원가입 → 로그인 후) https://www.oracle.com/kr/java/technologies/javase/javase8-archive-downloads.html Java Archive Downloads - Java SE 8 | Oracle 대한민국 www.oracle.com 1. Next → Next → 다음 → close (JRE 포함 되어 있음) 2. PC 속성 → 고급 시스템 설정 → 환경변수 → 시스템 변수(새로 만들기) 3. 시스템 변수 Path 클릭 후 새로 만들기 하여 java 설치된 경로 아래 bin 까지 입력하거나 아래 화면처럼 JAVA_HOME으로 설정해도 무관 4. cmd 창에서 java -version or javac -version 입력하여..
https://tomcat.apache.org/whichversion.html Apache Tomcat® - Which Version Do I Want? Apache Tomcat® is an open source software implementation of a subset of the Jakarta EE (formally Java EE) technologies. Different versions of Apache Tomcat are available for different versions of the specifications. The mapping between the specifications tomcat.apache.org
https://www.malavida.com/en/soft/forticlient/ FortiClient 6.0 - Download for PC FreeDownload FortiClient Free. FortiClient detects and eliminates the malware from your PC. Download FortiClient free and you will have an advanced tool to fight against Internet threats. FortiClient is an application with which you will be able to guarantee twww.malavida.com
1. Help → Elipse Marketplace 메뉴 선택 2. Subversive SVN Team Provider 설치 3. 필요한 항목 체크 후 Confirm 후 Finish 4. Restart Now 5. Window → Preferences 6. Get Connectors 클릭 SVN Connector 설치 7. SVN Connector 설치 오류 (No Connectors Found) : SVN Connector 설치가 안된다면 수동 설치를 통해 문제를 해결 8. Help → install New Software 선택 Work with 주소 : https://osspit.org/eclipse/subversive-connectors/ 9. SVN Connector 수동..
인텔리J 실행시 초기화면 나오게 하는 방법 위의 내용은 Window 경우에 설정하는 방법 Mac 경우에는 아래 블로그 참조 https://jojoldu.tistory.com/459
1. 파일 압축 사이트 https://www.freeconvert.com/video-compressor Video Compressor | Reduce Video File Size Online A fast online video compressor to reduce video file size. You can compress video to a desired file size or a quality level. Supports MP4, FLV, MKV and more. www.freeconvert.com 2. git 파일 변환 사이트 https://convertio.co/kr/ Convertio — 파일 변환기 300가지 이상의 포맷 지원 저희는 300가지 이상의 서로 다른 파일 포맷 간의 25600가지 ..
1. 해당 Github 저장소 접속 Issues 클릭 2. 업로드 하고자 하는 파일 Write 공간에 드래그 3. 해당 경로를 복사한 뒤 README.MD 파일에 붙여넣기 ex)
✔ 원인 폴더 중 최상위 디렉토리에 이미 .git 파일이 생성 되었는데 해당 디렉토리에서도 push 진행하는 과정에서 .git 파일이 생겨서 오류가 나타남 ✔ 해결방법 1. 해당 문제가 발생하는 디렉토리에서 .git 파일을 제거 $ rm -rf .git 명령어로 해당 파일을 제거 2. 스테이지에 존재하는 파일 제거 $ git rm --cached. -rf 3. 과정 끝낸 후 push 진행 $ git add . $ git commit -m "remove .git file" $ git push origin
1. git bash 에서 환경설정 하기 ▷ 유저이름 및 이메일 설정 $ git config --global user.name "your_name" $ git config --global user.email "your_email" ※ Github가입시 사용한 이메일 작성 ▷ 정보 확인 $ git config --list 2. Github에 초기 코드 업로드 ▷ 초기화 $ git init ▷ 추가할 파일 스테이징 $ git add . ※ 선택해서 파일 올리고 싶으면 add 뒤에 파일 이름 ex) git add index.html ▷ 상태 확인 $ git status ▷ 히스토리 만들기 $ git commit -m "파일 추가" ▷ Github repository랑 나의 로컬 프로젝트 연결 $ git rem..
$ pwd : 현재 위치 확인 $ cd : 홈 dir로 이동 ex) cd /c/example (c드라이브 example 폴더) $ cd .. : 상위 dir로 이동 $ cd - : 이전 dir로 이동(뒤로 가기) $ cd : 해당 dir로 이동 $ rm -rf : 폴더 삭제 $ cd ~/Downloads : 다운로드 폴더 $ touch index.txt : 현재 위치에 index.txt 파일을 생성 $ rm : 파일 삭제 $ rm -f : 파일 강제 삭제