develog

[ubuntu] apt 패키지 오프라인으로 설치하기 본문

카테고리 없음

[ubuntu] apt 패키지 오프라인으로 설치하기

냐옴 2024. 3. 11. 15:59

 

아래 명령으로 패키지만 다운로드한다

# reinstall 로 이미 설치된 패키지도 다시 다운로드 받는다
# --download-only 옵션으로 설치는 하지 않고 다운로드만 받는다
# /var/cache/apt/archives 경로에 *.deb 파일이 다운로드 받아진다
$ sudo apt reinstall --download-only -y curl

 

인터넷 안되는 서버에 파일을 옮긴 후 설치를 진행한다

# *.deb 파일명 앞에 경로(./)를 적어서 리포지토리를 검색하지 않도록 한다
$ sudo apt install ./curl_7.68.0-1ubuntu2.21_amd64.deb

 

https://mathoverflow.net/questions/466703/categories-that-admit-all-products-but-not-all-coproducts?_gl=1*bv5xtv*_ga*MTUwNDE0ODE2NC4xNzEwMTQwMjY3*_ga_S812YQPLT2*MTcxMDE0MDI2Ny4xLjAuMTcxMDE0MDI2Ny4wLjAuMA..

 

Categories that admit all products but not all coproducts

What are examples for categories that admit all products but not all coproducts.

mathoverflow.net

 

Comments