#docker #kubernetes #container #orchestrator #microservice #infrastructure-as-code #devops #ci #cd

제목ubuntu 재설치 과정에서 오류2019-09-24 01:22
작성자

도커를 리눅스로 사용하려고 기존 사용하던 우분투를 확인해봤습니다.


설치되어있는 필요 없는 프로그램들과 설정된 환경들이 많아서 재설치하여 사용하고자 초기화를 하려는 과정에서 CLI에


dpkg: error processing package install-info (--configure):

 installed install-info package post-installation script subprocess returned error exit status 127

처리하는데 오류가 발생했습니다:

 install-info


라는 오류가 발생하였습니다.


저는 sudo apt-get full-upgrade 명령어를 실행하는 과정에서 화면이 꺼져 다시 켰더니 저렇게 오류가 발생하였습니다.

찾아보니 etc/environment 파일의 LC-ALL="en_US. UTF-8" 명령어를 LC_ALL="en_US. UTF-8" 로 수정하면 된다고 하는데 저는 해당 파일을 찾을 수 없어서 질문드립니다.



사용한 명령어는 다음과 같습니다.(출처 : https://askubuntu.com/questions/859448/is-there-a-command-to-factory-reset-ubuntu)

Try configuring unconfigured packages:

sudo dpkg --configure -a

Update the contents of the repositories

sudo apt-get update

Try to fix missing dependencies:

sudo apt-get -f install

Update all packages with new versions available:

sudo apt-get full-upgrade

Reinstall Ubuntu desktop:

sudo apt-get install --reinstall ubuntu-desktop

Remove unnecessary packages:

sudo apt-get autoremove

Delete downloaded packages already installed:

sudo apt-get clean

Reboot the system to see if the issue was resolved:

sudo reboot

댓글