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
- 채보
- Linux
- 기타 연주
- windows forms
- OpenCV
- C#
- 오류
- Numpy
- pandas
- 명령어
- Visual Studio
- mysql
- Docker
- C
- LIST
- error
- pytorch
- C++
- Selenium
- Python
- ubuntu
- pip
- JSON
- paramiko
- 프로그래머스
- SSH
- YOLO
- 핑거스타일
- VS Code
- label
Archives
- Today
- Total
기계는 거짓말하지 않는다
make 명령어 File {file} has modification time {sec} s in the future 경고 본문
Linux
make 명령어 File {file} has modification time {sec} s in the future 경고
KillinTime 2024. 7. 15. 19:02make 명령어를 실행할 때 File {file} has modification time {sec} s in the future 경고는
파일의 수정 시간이 시스템의 현재 시간보다 앞서 있을 때 발생한다.
이는 시스템 시간과 파일의 수정 시간이 맞지 않기 때문이다.
특정 파일의 시간을 현재 시간으로 변경
touch specific_file
# 예) touch hello.c
현재 디렉터리의 모든 파일 시간을 현재 시간으로 변경
find . -type f -exec touch {} +
'Linux' 카테고리의 다른 글
Linux 파일 내용 비우기 (0) | 2024.10.30 |
---|---|
Ubuntu 그래픽카드(VGA) 정보 확인 (0) | 2024.08.29 |
Ubuntu apt update 경고(W: Key is stored in legacy trusted.gpg keyring) (0) | 2024.06.18 |
Linux stty echo(입력한 문자 화면에 표시, 표시하지 않음) (0) | 2024.05.22 |
The command could not be located because '/bin' is not included in the PATH environment variable. 오류 (0) | 2024.05.05 |
Comments