SteamOS 2.0でDebianリポジトリ設定

SteamOS 2.0 brewmasterにて、Debianのリポジトリからアプリケーションをインストールするには。

こちらを参考に設定を行いました。

  1. Steamの設定→インターフェースから、デスクトップモードを有効にします。
  2. Steamの終了→デスクトップモードに切り替えるを選びます。
  3. 画面の左上端へマウスを移動し、アクティビティ→ターミナルを開きます。
  4. sudoが使えるように、passwdを設定しておきます。
    passwd
    
  5. エディタで/etc/apt/sources.listを開きます。
    sudo nano /etc/apt/sources.list
    
  6. ファイルの最後に2行追加します。
    
    deb ftp://mirror.nl.leaseweb.net/debian/ jessie main contrib non-free
    deb-src ftp://mirror.nl.leaseweb.net/debian/ jessie main contrib non-free
    
  7. エディタを終了し、ファイルを保存します。
  8. エディタで/etc/apt/preferencesを開きます。
    sudo nano /etc/apt/preferences
    
  9. ファイルの最後に、以下を追加します。
    
    Package: *
    Pin: release o=Valve Software LLC
    Pin-Priority: 900
    
    Package: *
    Pin: release l=Debian
    Pin-Priority: 110
    
  10. 次のコマンドを実行し、新しいリポジトリを使用可能にします。
    sudo apt-get update
    
  11. apt-getに-t jessieオプションをつけることで、debianリポジトリからインストールが可能です。
    sudo apt-get install -t jessie xmbc
    

    アプリーションを検索する場合。

    apt-cache search -t jessie application | more
    
スポンサーリンク

フォローする

スポンサーリンク