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
- 핑거스타일
- YOLO
- Numpy
- pytorch
- 오류
- 채보
- pip
- C
- Selenium
- JSON
- OpenCV
- Linux
- 명령어
- mysql
- ubuntu
- 프로그래머스
- label
- error
- C#
- paramiko
- VS Code
- 기타 연주
- Python
- SSH
- LIST
- Docker
- windows forms
- pandas
- C++
- Visual Studio
Archives
- Today
- Total
목록수정 시간 (1)
기계는 거짓말하지 않는다
make 명령어 File {file} has modification time {sec} s in the future 경고
make 명령어를 실행할 때 File {file} has modification time {sec} s in the future 경고는파일의 수정 시간이 시스템의 현재 시간보다 앞서 있을 때 발생한다.이는 시스템 시간과 파일의 수정 시간이 맞지 않기 때문이다.특정 파일의 시간을 현재 시간으로 변경touch specific_file# 예) touch hello.c현재 디렉터리의 모든 파일 시간을 현재 시간으로 변경find . -type f -exec touch {} +
Linux
2024. 7. 15. 19:02