Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 네트워크
- tomcat
- find
- Source
- resource
- Quartz
- GIT
- JavaScript
- Windows 10
- ssh
- netsh
- profile
- IntelliJ
- Windows
- 줄바꿈 문자
- lsof
- xargs
- grep
- port
- 단축키
- Mac
- Eclipse
- import
- bash
- context
- plugin
- VirtualBox
- vscode
- web.xml
- maVen
Archives
- Today
- Total
목록OS & Shell (147)
develog
[mac] port open check
터미널에서 실행 nc -vz TARGET_IP TARGET_PORT ex) nc -vz 192.168.219.101 3306
OS & Shell/Mac
2020. 11. 24. 15:30
[mac] SQL Developer 실행안됨
product.conf 파일에 JavaHome 을 설정한다 $ vi ~/.sqldeveloper/20.4.1/product.conf # product.conf SetJavaHome /Library/Java/JavaVirtualMachines/jdk-11.0.9.jdk/Contents/Home
OS & Shell/Mac
2020. 11. 23. 00:17
[mac] JDK 설정
vi ~/.zshrc export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_261.jdk/Contents/Home export PATH=$PATH:$JAVA_HOME/bin source ~/.zshrc
OS & Shell/Mac
2020. 11. 22. 21:55
[mac] mac 에서 windows 로 파일 전송
Windows 10 공유 폴더 만들기 C:\mac_share Mac Finder > 이동 > 서버에 연결 - 윈도우 IP 입력 - 윈도우에서 공유된 폴더 선- 윈도우 IP 입력 mount 정보 확인 user123@192.168.219.101/mac_share on /Volumes/mac_share Mac Terminal 에서 파일 copy cp ~/myfile.txt /Volumes/mac_share
OS & Shell/Mac
2020. 11. 22. 00:38
[mac] iTerm2 ssh connection keep alive
vi ~/.ssh/config Host * ServerAliveInterval 20 ServerAliveCountMax 180 TCPKeepAlive no
OS & Shell/Mac
2020. 11. 21. 02:27