다음을 통해 공유


Linux용 Microsoft Intune 앱 가져오기

이 문서에서는 개인 디바이스에서 Linux용 Microsoft Intune 앱을 설치, 업데이트 및 제거하는 방법을 설명합니다.

Microsoft Intune 앱 패키지는 에서 https://packages.microsoft.com/사용할 수 있습니다. Microsoft 제품에 대한 Linux 소프트웨어 패키지를 사용, 설치 및 구성하는 방법에 대한 자세한 내용은 Microsoft 제품용 Linux 소프트웨어 리포지토리를 참조하세요.

요구 사항

Microsoft Intune 앱은 다음 운영 체제에서 지원됩니다.

  • Ubuntu Desktop 22.04 또는 20.04 LTS(x86/64 CPU가 있는 물리적 또는 Hyper-V 컴퓨터)
  • RedHat Enterprise Linux 8
  • RedHat Enterprise Linux 9

Intune 앱 설치

명령줄에서 다음 명령을 실행하여 디바이스에 Intune 앱 및 해당 종속성을 수동으로 설치합니다.

  1. Curl 설치:

    sudo apt install curl gpg
    
  2. Microsoft 패키지 서명 키를 설치합니다.

    Ubuntu 20.04의 경우:

    curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
    sudo install -o root -g root -m 644 microsoft.gpg /usr/share/keyrings/
    sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/ubuntu/20.04/prod focal main" > /etc/apt/sources.list.d/microsoft-ubuntu-focal-prod.list'
    sudo rm microsoft.gpg
    

    Ubuntu 22.04의 경우:

    curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
    sudo install -o root -g root -m 644 microsoft.gpg /usr/share/keyrings/ 
    sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/ubuntu/22.04/prod jammy main" > /etc/apt/sources.list.d/microsoft-ubuntu-jammy-prod.list' 
    sudo rm microsoft.gpg
    
  3. Microsoft Intune 앱을 설치합니다.

    sudo apt update
    sudo apt install intune-portal
    
  4. 디바이스를 다시 부팅합니다.

Intune 앱 업데이트

소프트웨어 업데이트에서 업데이트를 사용할 수 있게 되면 Microsoft Intune 앱이 자동으로 업데이트됩니다.

다음 명령을 실행하여 Microsoft Intune 앱을 수동으로 업데이트합니다.

  1. intune-portal, msft-broker 및 msft edge를 포함하는 패키지 리포지토리 및 메타데이터를 업데이트합니다.

    sudo apt update
    
  2. 패키지를 업그레이드하고 종속성을 정리합니다.

    sudo apt-get dist-upgrade
    

Intune 앱 제거

  1. 시스템에서 Intune 앱을 제거합니다.

    sudo apt remove intune-portal
    
  2. 로컬 등록 데이터를 제거합니다. 이 명령은 디바이스 등록을 포함하는 로컬 구성 데이터를 제거합니다.

    sudo apt purge intune-portal