반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 이클립스
- 웹개발
- 스프링
- 쿠키런킹덤
- HTML
- 오블완
- programmers
- 홀리데이익스프레스
- CSS
- 쿠킹덤
- SQL
- 스프링퀵스타트
- 프로그래밍
- MySQL
- 티스토리챌린지
- 프로그래머스
- Spring
- 쿠키런킹덤크리스마스
- 쿠키런킹덤공략
- 딥러닝
- edwith
- Eclipse
- GIT
- 크리스마스
- Java
- 자바
- dart
- 개발자
- 쿠킹덤공략
- oracle
Archives
- Today
- Total
Dev study and notes
[linux] [Ubuntu] Sub-process /usr/bin/dpkg returned an error code (1) 에러 해결 오류 해결 본문
studyLog
[linux] [Ubuntu] Sub-process /usr/bin/dpkg returned an error code (1) 에러 해결 오류 해결
devlunch4 2022. 5. 13. 09:27반응형
Sub-process /usr/bin/dpkg returned an error code (1)
윈도우내 우분투에 redis 설치중 명령어 실행을 해보았습니다.
관련 링크:
https://redis.io/docs/getting-started/installation/install-redis-on-windows/
*명령어 실행
$ sudo apt-get upgrade
$ sudo apt-get upgrade
...
...
...
/usr/lib/x86_64-linux-gnu/libfakeroot:
libfakeroot-0.so -> libfakeroot-tcp.so
/usr/lib/wsl/lib:
/usr/local/lib:
/lib/x86_64-linux-gnu:
Aborted (core dumped)
dpkg: error processing package libc-bin (--configure):
installed libc-bin package post-installation script subprocess returned error exit status 134
Errors were encountered while processing:
libc-bin
E: Sub-process /usr/bin/dpkg returned an error code (1)
이후 에러 문구를 확인할수 있었습니다.
"E: Sub-process /usr/bin/dpkg returned an error code (1)"
위 문장에 따라 해결을 해보았습니다.
* 해결 명령어
$ sudo rm /var/lib/dpkg/info/*
$ sudo dpkg --configure -a
$ sudo apt update -y
$ sudo rm /var/lib/dpkg/info/*
$ sudo dpkg --configure -a
$ sudo apt update -y
그리고 다시 명령어 재실행
$ sudo apt-get upgrade
$ sudo apt-get upgrade
중간에 잘 수행되다가 다른 문제로 또 생성이 되었습니다.
다시 위와 같이 명령어 실행후 진행하니 정상 해결 되었습니다.
반응형
'studyLog' 카테고리의 다른 글
[neo4j] neo4j 다운로드 및 설치 NoSQL local (0) | 2022.05.13 |
---|---|
[neo4j] neo4j Aura DB 사용 시작해보기 NoSQL 연결 (0) | 2022.05.13 |
[Windows] AMD 라데온 그래픽 카드 성능 로깅 시작/중지 단축키 미사용 설정 비활성 RADOEN (1) | 2022.05.03 |
[java] Intellij Error: A JNI error has occurred, please check your installation (0) | 2022.03.19 |
[java][eclipse] 이클립스 STS 스프링 텔넷 TELNET 접속 오류 접속 불가 해결 (0) | 2022.02.15 |
Comments