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
- pip
- pytorch
- Selenium
- 기타 연주
- 채보
- Python
- SSH
- 프로그래머스
- ubuntu
- C#
- pandas
- OpenCV
- 오류
- label
- Numpy
- YOLO
- error
- VS Code
- mysql
- paramiko
- Docker
- C
- 컨테이너
- windows forms
- C++
- LIST
- JSON
- Visual Studio
- 핑거스타일
- Linux
Archives
- Today
- Total
목록modification time in the future (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