web-dev-qa-db-ja.com

Unity 3Dの代わりにUnity Lowグラフィックモードを使用できますか?

ChromebookでUnity 3Dを実行することはできませんが、Ubuntu 12.04のUnity 2Dは正常に動作します。代替としてUbuntu 14.04でUnity Lowグラフィックモードを実行することは可能ですか?代替として低グラフィックモードを実行できる場合、どうすればよいでしょうか?私ができない場合、Ubuntu 14.04の代替のような良い一体性は何ですか?

ChromebookのUbuntu 14.04でこれらのDEをテストしました。

  • LXDE:正常に動作します
  • XFCE:正常に動作します
  • Gnome:まったく機能しません
  • Unity:まったく機能しません
  • KDE:このDEはまだテストしていません

私はクルトンを使用してユニティをインストールしていますが、このスクリプトのメーカーによれば、Chromebookが提供しないハードウェアアクセラレーションが必要なため、ユニティ3dは機能しません。

Unity 3dを実行するとどうなるかは、黒/グレーの画面に続いてcrosh(Ubuntuが実行されているChromebook開発者コンソール)から終了する必要があるUbuntuの完全なロックアップです。

これは、 crouton を使用してsamsungアームchromebookにUnity 3Dをインストールするために使用する修正済みのターゲットスクリプトです(まだ完全に機能していないことに注意してください)。

#!/bin/sh -e
# Copyright (c) 2014 The crouton Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
REQUIRES='gtk-extra'
DESCRIPTION='Installs the Unity desktop environment. (Approx. 700MB)'
HOSTBIN='startunity'
CHROOTBIN='startunity gnome-session-wrapper crouton-unity-autostart'
CHROOTETC='unity-autostart.desktop unity-profiled'
. "${TARGETSDIR:="$PWD"}/common"

### Append to prepare.sh:
install ubuntu-desktop ubuntu-artwork gnome-session nautilus \
        ubuntu-settings,ubuntu~precise= \
        ubuntu-session,ubuntu~precise+ubuntu~quantal+ubuntu~raring+ubuntu~saucy+ubuntu~trusty= \
        -- network-manager

# XDG autostart/profile.d additions only needed in saucy and later
if release -ge saucy; then
    autostartdir='/etc/xdg/autostart'
    # Remove previous indicator-only desktop file
    rm -f "$autostartdir"/crouton-unity-indicator.desktop

    # Set up global autostart script
    mkdir -p "$autostartdir"
    ln -sfT /etc/crouton/unity-autostart.desktop \
        "$autostartdir"/crouton-unity-autostart.desktop

    # Set up profile.d
    chmod 755 /etc/crouton/unity-profiled
    ln -sfT /etc/crouton/unity-profiled /etc/profile.d/crouton-unity-profiled.sh
fi

if release -ge trusty; then
    autostartdir='/etc/xdg/autostart'
    # Remove previous indicator-only desktop file
    rm -f "$autostartdir"/crouton-unity-indicator.desktop

    # Set up global autostart script
    mkdir -p "$autostartdir"
    ln -sfT /etc/crouton/unity-autostart.desktop \
        "$autostartdir"/crouton-unity-autostart.desktop

    # Set up profile.d
    chmod 755 /etc/crouton/unity-profiled
    ln -sfT /etc/crouton/unity-profiled /etc/profile.d/crouton-unity-profiled.sh
fi

TIPS="$TIPS
You can start Unity via the startunity Host command: Sudo startunity
"

このスクリプトの現在の問題は、インストール時に単一の低グラフィックスモードを実装する必要があり、その方法がわからないことです。

Croutonを使用してスクリプトをテストする場合は、次の手順を実行します。

最初に、chrome osのダウンロードディレクトリに「unitylowg」という名前で拡張子のないファイルとしてスクリプトを保存します。

次に、これらのスクリプトを1つずつ実行して依存関係を満たします。

Sudo sh -e ~/Downloads/crouton -t core -r trusty
Sudo sh -e ~/Downloads/crouton -t audio -r trusty -u
Sudo sh -e ~/Downloads/crouton -t xephyr -r trusty -u
Sudo sh -e ~/Downloads/crouton -t x11 -r trusty -u
Sudo sh -e ~/Downloads/crouton -t gtk-extra -r trusty -u

最後に、次を使用してスクリプトを実行します。

Sudo sh -e ~/Downloads/crouton -T ~/Downloads/unitylowg -r trusty -u
5
dragonloverlord

Unity 2Dは単調に見えます。 GNOME 2デスクトップ代替MATEを試してください。 MATEは、Xfceよりも軽く、LXDEよりも少し重い、軽量のデスクトップ環境です。 Ubuntu 14.04でMATEデスクトップ環境をインストールする方法についての完全なチュートリアルが この回答 にあります。

MATEの外観を確認するには、 buntu MATE_スクリーンショットツアー にアクセスしてください。

2
karel