[linux]패키지 설치 하기(rpm) Installing the package (rpm)

♦ 패키지 설치 하기 : rpm
-qa | grep [패키지 명]                            : [패키지]를 가지고 있나 확인
-ivh (--nodeps(의존성 무시)) [패키지.rpm] : [패키지] 설치
-Uvh [패키지.rpm]                                : [패키지] 업그레이드
-e (--nodeps(의존성 무시))[패키지 명]       : [패키지] 삭제

※패키지 명이 MariaDB-client-5.2.5-99.el5.x86_64.rpm 이라면 MariaDB-client까지가 이름 이고 그 다음은 버전 그리고 x86_64는 64bit라는 뜻
※메이저 : 프로그램 완전히 변경 ex)window7,8,9,10
  마이너 : 기능에 추가 있을 때
  패치 : 패치
  릴리즈 : 배포를 몇 번 했나

※유의사항
1.모든 작업은 동일한 버전이어야 한다.
2. 의존성 오류를 무시하면 안된다.
3. 의존성을 제기한 패키지를 먼저 작업한다.
4. 가급적 의존성 무시를 사용하지 말아야 한다.
5. 'lib'으로 시작하고 중간에 '.so'가 있을 경우 무시 가능
6. 디렉토리로 시작하는 것들은 패키지가 아니므로 무시해도 된다.
7. 대표 패키지부터 작업한다. (이름이 가장 짧은 것)
8. 나머지는 화면에 보이는 순서대로 한다.
TIP)'tab'은 경로 자동완성을 해준다.

♦ Installing the package: rpm
-qa | Grep [package name]: Check if you have [package]
-ivh (--nodeps (ignore dependencies)) [Package.rpm]: Installs [package]
-Uvh [package.rpm]: Upgrading [package]
-e (--nodeps (ignore dependencies)) [Package name]: Delete [package]

※ If the package name is MariaDB-client-5.2.5-99.el5.x86_64.rpm, then MariaDB-client is the name, then the version, and x86_64 is 64bit
※ Major: Program completely changed ex) window7,8,9,10
  Minor: When there is an addition to the function
  Patch: Patch
  Release: How many times have you deployed

※Notice
1. All work must be the same version.
2. Do not ignore dependency errors.
3. Work with the package that raised the dependency first.
4. Dependency neglect should not be used whenever possible.
5. Can be ignored if it starts with 'lib' and has '.so' in the middle
6. Beginning with a directory is not a package and can be ignored.
7. Work from the representative package. (The shortest name)
8. Do the rest in the order shown on the screen.

TIP) 'tab' gives path autocompletion.

♦ įdiegti paketą: rpm
-qa | grep [paketo pavadinimas]: Gerai Ar turite [package]
-ivh (--nodeps (atšaukties priklausomybių)) [paketas .rpm]: [paketas] įdiegti
Uvh [paketas .rpm]: [paketas] Atnaujinti
-e (--nodeps (nepaisyti priklausomybių)) [paketo pavadinimas]: [paketas] ištrinti

※ Jei paketo pavadinimas ir MariaDB-client-5.2.5-99.el5.x86_64.rpm į MariaDB-kliento versija ir kitą pavadinimas yra x86_64 reiškia 64bit
※ Specialybė: Programa visiškai pasikeitė ex) window7,8,9,10
  Mažosios: Jei norite pridėti funkciją
  Pataisa: pleistras
  Leidiniai: Kiek kartų platinimą

※ Pranešimas
1. Visi darbai turi būti tos pačios versija.
2. neturėtų ignoruoti priklausomybės nesėkmes.
3. Darbo paketai pirmasis iškėlė priklausomybes.
4. Nenaudokite galimą priklausomybę ignoruojami.
5. Galima prasidedantis raide 'lib "ir ignoruojami jei yra" .Taigi "per vidurį
6. Dalykų, kurie pradėti su katalogą galima ignoruoti, nes tai nėra paketą.
7. Darbas iš atstovą paketus. (Vardas yra trumpiausias)
8. Likusi nes ji pasirodo tokia tvarka ekrane.

PATARIMAS) "lentelėje" leidžia automatinį kelią į užbaigimą.



패키지 설치하는 방법
How to Install Packages
Kaip įdiegti paketus
https://www.youtube.com/watch?v=goLc4-9qxQE

Comments