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
- synology
- 시놀로지 색인
- SSL 인증서가 변경되었습니다
- quickconnect
- MFC
- git
- clp 325wk
- 주석 숨김
- urllib3
- Linux
- 라즈베리파이
- truncated
- JSON
- IntelliJ
- github
- 장치 데이터 오류
- java.net.bindexception
- SetWindowTextW
- windows terminal
- 이클립스 주석
- c++
- setonkeylistener
- cloud station
- audio station버그
- formatting failed
- cloudstation
- Eclipse
- Wraith Spire
- ds cloud
- linearlaout
Archives
- Today
- Total
목록Linux (2)
딸기스무디
리눅스 포트확인 & 개방하기
sudo ufw verbose명령어의 출력이 inactive인 경우 -> iptables 명령어로 포트 개방 iptables -I INPUT -p tcp --dport 포트번호 -j ACCEPT 로 포트개방 후 netstat -aon으로 현재 열려있는 포트 확인.
linux
2020. 7. 25. 00:55
gcc) c파일작성 및 컴파일 명령어
cd /home/user /home/user로 terminal의 경로 설정 gedit test.c 현재 경로에 test.c 파일 생성후 실행 touch test.c 현재 경로에 test.c파일 생성(gedit과 비슷함) apt-get install gcc 만약 gcc가 설치되어있지 않다면 gcc설치 gcc test.c -o a 현재 경로에서 test.c라는 파일을 컴파일하며 a라는 이름으로 출력파일 생성 gcc test.c -o a -lpthread 만약 pthread를 사용한다면 마지막에 -lpthread를 추가해야 정상적으로 컴파일 가능 ./a a라는 출력파일을 실행
gcc
2019. 5. 17. 10:00