apt-get 출력이 갑자기 색상이 변하는 이유는 무엇입니까?

apt-get 출력이 갑자기 색상이 변하는 이유는 무엇입니까?

음료수 사는 방법을 알아보려고 했는데요. 나는 지시를 해왔다.https://wiki.winehq.org/Ubuntusudo apt update빨간색 "E"가 있는 "E: Repository 'cdrom..."이 표시됩니다 . 불과 몇 분 전만 해도 sudo apt update다른 제품과 마찬가지로 출력물이 흰색이었습니다. "일반"과 빨간색 사이에서 내가 실행한 유일한 명령은 설치되지 않은 다운로드 sudo apt-get install -d somepackage와 와인 페이지에서 다운로드한 것뿐이었습니다.

내가 한 일을 다시 방문/다시 확인하고 싶습니다. 이제 내보낸 후에야 history다시 전체 흰색으로 이동합니다.cat /etc/apt/sources.list.d/winehq-jammy.sourcessudo apt update

무슨 일이 일어났는지 아세요? 컬러 출력의 원인은 무엇입니까? 나는 내가 사용하고 있는 시스템이 실패하는 것을 경계하고 있으며 그 이유를 알고 싶습니다. 웹에서 apt의 컬러 출력을 검색하면 스크립트 등과 관련된 일부 솔루션이 나타났습니다. 소스와 키를 추가하면 어떻게 일시적인 컬러가 발생합니까?

긴 이야기 짧게

찾은 링크:

https://askubuntu.com/questions/445245/how-do-i-enable-fancy-apt-colours-and-progress-bars

apt-get 업그레이드 오류를 빨간색으로 표시하도록 터미널 출력 형식 설정

터미널 내용(실제로 이전에 언급한 것보다 더 많은 명령이 있지만 여전히 색상을 생성하는 방법을 모릅니다):

   35  sudo apt-get update
   36  sudo apt-get install -d somepackage
   37  eval $(apt-config shell CACHE Dir::Cache)
   38  eval $(apt-config shell ARCHIVES Dir::Cache::archives)
   39  # from man bash:
   40  # brace { after $ "serve to protect the variable to be expanded from characters immediately following it which could be interpreted as part of the name."
   41  debs_cache_folder=/${CACHE}/${ARCHIVES}
   42  echo $debs_cache_folder
   43  ls `echo $debs_cache_folder`
   44  ls `echo $debs_cache_folder` | wc
   45  sudo apt-get clean
... same  install -d  / ls wc / clean for several other packages 
   54  sudo dpkg --add-architecture i386
   55  sudo mkdir -pm755 /etc/apt/keyrings
   56  sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
   57  sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
   58  sudo apt update
   59  history
~/Downloads$ cat /etc/apt/sources.list.d/
cat: /etc/apt/sources.list.d/: Is a directory
~/Downloads$ cat /etc/apt/sources.list.d/
official-package-repositories.list  winehq-jammy.sources                
~/Downloads$ cat /etc/apt/sources.list.d/winehq-jammy.sources 
Types: deb
URIs: https://dl.winehq.org/wine-builds/ubuntu
Suites: jammy
Components: main
Architectures: amd64 i386
Signed-By: /etc/apt/keyrings/winehq-archive.key

관련 정보