명령어 등등

리눅스 /우분투 gcc 설치 오류 해결 sudo apt-get install gcc

mcdn 2020. 7. 3. 18:27
반응형

 

컴퓨터에 깔려진 우분투에 gcc를 실행하려고 했지만 

command 'gcc' not found

에러가 떴습니다. 

 

sudo apt install gcc 

하려 해도 

E: Could not get lock /var/lib/dpkg/lockfrontend. It is held by process 17330 (unattended-upgr)
N: Be aware that removing the lock file is not a solution and may break your system.
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

 

에러가 떠서.. 

 

해결하려 찾아보니 몇 파일 지우고 실행할 수 있습니다. 

 

 

 

 

위 에러를 아래와 같이 해결했습니다

우선 터미널 여시고 모든 프로세스를 죽여줍니다 1) sudo killall apt aptget

 

만일 진행중인 프로세스가 없다라고 뜨면 아래와 같이 하나하나씩 디렉토리를 삭제 해주세요

- sudo rm /var/lib/apt/lists/lock

- sudo rm /var/cache/apt/archives/lock

- sudo rm /var/lib/dpkg/lock*

 

 

sudo dpkg configure a 를 하시고 sudo apt update

 

하면 

주루룩 내용이 많이 나옴

한 2분 기다리니까 끝남

 

다시 sudo apt-get install gcc 하기 

 

그러면 더 많은 내용들이 등장 

다시 3~5분 기다리면 

 

gcc 설치 완료 

 

gcc라고만 쳤을 때 no input files가 뜨면 성공적으로 설치 된 것

 

https://kgu0724.tistory.com/71 

 

리눅스 에러 Could not get lock /var/lib/dpkg/lock-frontend

이 글은 nodejs 설치시에 발생된 에러들입니다. E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) E: Unable to acquire the dpkg frontend ..

kgu0724.tistory.com

 

반응형