smms 를 활용한 중장비 예지 정비 효과에 대한 연구 논문을 정리

smms 를 활용한 중장비 예지 정비 효과에 대한 연구 논문을 정리 SMMS(스마트 유지보수 관리 시스템)를 활용한 중장비 예지 정비에 대한 최신 연구 논문과 관련 효과, 기술적 배경, 실제 현장 적용 사례를 정리하면 아래와 같습니다[1][2][3][4][5]. 주요 최신 논문 및 연구 자료 정리 논문 제목 발행연도 연구 배경 연구 목적 연구 방법 연구 결과 연구의 기여 Predictive Maintenance in Industry 4.0: A Systematic Multi-sector Review 2024 산업 4.0 시대, 스마트 유지보수 도입 확대 중장비 포함 제조·건설·물류분야 예지정비 실효성 체계적 검토 문헌 리뷰, 현장 사례 분석 사전고장 예측 정확도 개선, 비용/생산성 이점 증명 AI·IoT 기반 PdM의 산업 적용 가이드라인 제공[2] Systematic Review of Predictive Maintenance Practices 2025 다양한 제조 산업에서 PdM 적용 현황 분석 최신 예지정비 기술의 효과 및 사례 파악 PRISMA 프레임워크로 문헌 리뷰 설비 다운타임 감소, 운용 효율 향상, 신뢰도 증가 향후 PdM 기술 도입 전략 제안[1] AI-Enabled Predictive Maintenance in Heavy Equipment Market 2025 AI·IoT 기반 중장비 시장 변화 예지정비가 중장비 운영에 미치는 영향 분석 AI/ML 모델 적용사례, 현장 성능 검증 장비수명 연장, 돌발정지 감소, 유지비 절감 산업별 AI 예지정비 도입 성공요인·시장 전망 분석[4] Enhancing Heavy Equipment Maintenance with Artificial Intelligence 2023 중장비 예지정비 영역의 AI 활용 초기 도전 CBM(조건기반 정비)와 AI 연계 효과 실험 센서 데이터, 머신러닝, 현장 실험 진동·온도·압력 데이터로 고장 예측 정확도 상승 실질적인 CBM+AI 설계, 운용 가이드 제공[5] SMMS 기반 ...

How to Start WSL - Ubuntu apt update 패키지 유효기간 오류 해결

 

 
 


 
WSL사용법- How To Start WSL



 
 

How to Start WSL :  Ubuntu apt update 설치 패키지 유효기간 오류 해결

 

우분투리눅스에서  APT(Advanced Package Tool)명령어는 리눅스 시스템의 패키지 업데이트를 수행하는 명령어입니다.
이 명령어를 실행하면 시스템은 패키지 저장소에서 최신 패키지 목록을 가져와 시스템에 설치된 패키지들을 업데이트할 수 있게 됩니다. 이를 통해 보안 업데이트, 버그 수정 등의 최신 패치를 적용할 수 있습니다.

APT업데이트중 발생하는 Acquire::Check-Valid-Until=false 로 is not valid yet  이라는 패키지 유효기간 오류 해결에 대하여 알아 봅니다.



다음과 같이 새로운 APT 패키지를 설정하여 패키지를 설치할수 있습니다.

echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] \
     http://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" \
     | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

 
 
apt update시 패키지 목록에서 오류가 발생 합니다.
 

sudo apt update -y

Get:1 file:/var/cuda-repo-wsl-ubuntu-12-3-local  InRelease [1572 B]
Get:1 file:/var/cuda-repo-wsl-ubuntu-12-3-local  InRelease [1572 B]
Get:2 https://download.docker.com/linux/ubuntu jammy InRelease [48.8 kB]
Hit:3 http://archive.ubuntu.com/ubuntu jammy InRelease
Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
Get:5 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]
Get:6 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [109 kB]
Reading package lists... Done
E: Release file for http://download.docker.com/linux/ubuntu/dists/jammy/InRelease is not valid yet (invalid for another 1d 17h 52min 14s). Updates for this repository will not be applied.
E: Release file for http://security.ubuntu.com/ubuntu/dists/jammy-security/InRelease is not valid yet (invalid for another 2d 20h 32min 9s). Updates for this repository will not be applied.
E: Release file for http://archive.ubuntu.com/ubuntu/dists/jammy-updates/InRelease is not valid yet (invalid for another 2d 20h 33min 6s). Updates for this repository will not be applied.
E: Release file for http://archive.ubuntu.com/ubuntu/dists/jammy-backports/InRelease is not valid yet (invalid for another 2d 15h 56min 3s). Updates for this repository will not be applied.

 
 
다음 명령으로 업데이트 가능한 패키지를 업데이트 할 수 있도록 설정 합니다.

sudo apt-get -o Acquire::Check-Valid-Until=false update
  •  "-o Acquire::Check-Valid-Until=false"는 패키지 저장소에서 유효 기간을 확인하지 않도록 설정하는 옵션입니다.
  • "update"는 패키지 목록을 최신 상태로 업데이트하는 명령어입니다.



다음과 같이 패키지 목록을 업데이트가 잘 작동합니다.

sudo apt update -y

Get:1 file:/var/cuda-repo-wsl-ubuntu-12-3-local  InRelease [1572 B]
Get:1 file:/var/cuda-repo-wsl-ubuntu-12-3-local  InRelease [1572 B]
Hit:2 https://download.docker.com/linux/ubuntu jammy InRelease
Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease
Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease
Hit:5 http://archive.ubuntu.com/ubuntu jammy-updates InRelease
Hit:6 http://archive.ubuntu.com/ubuntu jammy-backports InRelease
Reading package lists... Done

 
 

sudo apt update -y

Get:1 file:/var/cuda-repo-wsl-ubuntu-12-3-local  InRelease [1572 B]
Get:1 file:/var/cuda-repo-wsl-ubuntu-12-3-local  InRelease [1572 B]
Hit:2 https://download.docker.com/linux/ubuntu jammy InRelease
Hit:3 http://security.ubuntu.com/ubuntu jammy-security InRelease
Hit:4 http://archive.ubuntu.com/ubuntu jammy InRelease
Hit:5 http://archive.ubuntu.com/ubuntu jammy-updates InRelease
Hit:6 http://archive.ubuntu.com/ubuntu jammy-backports InRelease
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
25 packages can be upgraded. Run 'apt list --upgradable' to see them.

 
 
[참고]
https://docs.docker.com/engine/install/ubuntu/



댓글

이 블로그의 인기 게시물

KrakenD API Gateway - krakend.json 파일의 기본 구조

Kraken api - get token with python

( 경영전략,사업전략 ) 마이클 포터의 가치사슬 분석(Value Chain Analysis) 이론