Linux
2024. 5. 31.
Ubuntu apt 패키지 초기화
apt 명령어 정리# 설치 가능한 패키지 검색apt install 패키지명# apt install openjdk*# 설치 된 패키지 검색apt --installed list 패키지명# 패키지 삭제apt remove 패키지명# 환경 구성 파일 및 종속 패키지 제거sudo apt remove --purge 패키지명sudo apt remove --auto-remove 패키지명 # 삭제 후 잔여 파일 확인sudo find / -name '파일명*'# apt 저장소 업데이트apt updateapt 설치시 에러The following packages have unmet dependencies:mariadb-server : Depends: 패키지명 (>= 특정 버전 이상 요구) but it is not going t..