rpm 명령 이해(-ivh 및 -uvh) [닫기]

rpm 명령 이해(-ivh 및 -uvh) [닫기]

rpm -ivh <packagename>차이점이 무엇인지 궁금합니다 rpm -uvh <packagename>.

답변1

매뉴얼 페이지에서:

   The general form of an rpm install command is

   rpm {-i|--install} [install-options] PACKAGE_FILE ...

   This installs a new package.

   The general form of an rpm upgrade command is

   rpm {-U|--upgrade} [install-options] PACKAGE_FILE ...

   This  upgrades  or  installs the package currently installed to a newer
   version.  This is the same as install, except all other  version(s)  of
   the package are removed after the new package is installed.

답변2

  • --forceRPM은 또는 와 같은 플래그를 사용하여 종속성을 확인하지 않도록 지시하지 않는 한 작업 전에 항상 종속성을 확인합니다 --nodeps.

  • 가지다아니요 -u호출(대문자 -U.

  • -i시스템에 아직 설치되지 않은 패키지를 설치하도록 RPM에 지시합니다. 동일한 이름의 패키지가 이미 설치된 경우 실패합니다.

  • -U시스템에 이미 설치된 패키지를 업데이트하도록 RPM에 지시합니다. 동일한 이름의 이전 패키지가 아직 설치되어 있지 않으면 실패합니다.

와 함께 --nodeps.--forcedpkg

관련 정보