nginx를 설치하려고 할 때 dpkg 오류가 발생했습니다.

nginx를 설치하려고 할 때 dpkg 오류가 발생했습니다.

nginx를 설치해 보세요:

  1. 첫 번째:

    sudo curl -sL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
    

    결과:

    모든 것이 괜찮아 보입니다.

    > ## Run `sudo apt-get install -y nodejs` to install Node.js 16.x and npm
    > ## You may also need development tools to build native addons:
    >      sudo apt-get install gcc g++ make
    > ## To install the Yarn package manager, run:
    >      curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
    >      echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee
    > /etc/apt/sources.list.d/yarn.list
    >      sudo apt-get update && sudo apt-get install yarn
    
  2. 그 다음에:

    sudo apt install -y nodejs nano nginx
    

    좋아 보이지만 실행을 요청함apt --fix-broken install

    You might want to run 'apt --fix-broken install' to correct these.
    The following packages have unmet dependencies:
     nginx : Depends: nginx-core (< 1.18.0-6ubuntu11.1~) but it is not going to be installed or
                      nginx-full (< 1.18.0-6ubuntu11.1~) but it is not going to be installed or
                      nginx-light (< 1.18.0-6ubuntu11.1~) but it is not going to be installed or
                      nginx-extras (< 1.18.0-6ubuntu11.1~) but it is not going to be installed
             Depends: nginx-core (>= 1.18.0-6ubuntu11) but it is not going to be installed or
                      nginx-full (>= 1.18.0-6ubuntu11) but it is not going to be installed or
                      nginx-light (>= 1.18.0-6ubuntu11) but it is not going to be installed or
                      nginx-extras (>= 1.18.0-6ubuntu11) but it is not going to be installed
    E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
    
  3. 달리기:

    apt --fix-broken install`
    

    잘못된:

    dpkg: error processing archive /var/cache/apt/archives/nodejs_16.13.0-deb-1nodesource1_amd64.deb (--unpack):
     trying to overwrite '/usr/share/doc/nodejs/api/fs.html', which is also in package nodejs-doc 12.22.5~dfsg-5ubuntu1
    dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
    Errors were encountered while processing:
     /var/cache/apt/archives/nodejs_16.13.0-deb-1nodesource1_amd64.deb
    needrestart is being skipped since dpkg has failed
    E: Sub-process /usr/bin/dpkg returned an error code (1)
    

다음에 무엇을 해야할지 모르겠지만 nginx가 설치되지 않은 것 같습니다

답변1

당신은 그것조차 할 수 없다고 말했다 apt-get install nginx. 나에게도 이 문제가 있었습니다. 제 경우에는 기존 nginx 인스턴스를 모두 수동으로 삭제할 때까지 제거할 수도 없었습니다. 하루 전에 nginx를 설치(시도)했던 것 같은데 기억이 나지 않고 설치가 상당히 혼란스러웠습니다. 노력하다

$ whereis nginx
nginx: /usr/sbin/nginx /usr/lib/nginx /usr/share/nginx /usr/share/man/man8/nginx.8.gz

내가 한 일은 모든 rm -rf심볼릭 링크를 강제로 삭제한 다음 찾은 기존 심볼릭 링크를 삭제하는 것이었습니다. 그 후 마침내 언급하신 모든 nginx 관련 패키지를 제거하고 실제로 nginx를 다시 설치할 수 있었습니다.

wget https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/nginx/1.18.0-6ubuntu11/nginx_1.18.0.orig.tar.gz
# extract
cd nginx_1.18.0.orig/nginx-1.18.0/
./configure
make

소스에서 설치했지만(이전 항목을 모두 제거하지 않고는 그렇게 할 수 없었습니다) 작동할 것입니다 apt-get install nginx.

관련 정보