Feb 21, 2017

Chromium OS の起動時の画面サイズ設定

Chromium OSの起動後、
[alt] + [ctrl] + [f2] でCUIモードに

rootでlogin

mount -o remount, rw /

cp /etc/X11/xorg.conf /etc/X11/xorg.conf.old

vi /etc/X11/xorg.conf

Screenのセクションを以下のように編集
Section "Screen"
  Identifier "Default Screen"
  Monitor "Monitor"
  Device "Default Device"
  Subsection "Display"
    Depth 24
    Modes "1680x1050"
    # Modes "1920x1080" <- 動作せず
  EndSubSection
EndSection

init 6


・参考にしたところ
 [Chrome OS] How to adjust the screen resolution?
 https://www.asus.com/support/faq/1006387/
 手元の環境では、ここで認識される解像度でしか表示できないようだった

 How to change chromeos screen resolution (2009/12/18)
 http://change-chromeos-screen-resolution.blogspot.jp/

 Can't change the screen resolution in Chrome OS (2014/04/24)
 https://forum.parallels.com/threads/cant-change-the-screen-resolution-in-chrome-os.301824/

---> 2017.02.21 追記

こちらも試してみたが、手元の環境では、1920x1080は動かなかった
  ↓
Windows ゲスト OS へのビデオ解像度モードの追加 (2078472)
1.仮想マシンをパワーオフします。
2.テキスト エディタで .vmx ファイルを開きます。
3.ESX を使用している場合は、手順 4 へ進みます。
4..vmxの編集
 svga.autodetect = "FALSE"

 (2560 * 2048 * 4  20971520 に基づいて)
 svga.vramSize = 20971520

5.
 svga.maxWidth = 2560
 svga.maxHeight = 2048

6.仮想マシンで複数の表示モニタを使用している場合...
  svga.numDisplays = "number_of_displays"
  を追加
7.ファイルを保存し、仮想マシンを開きます

・仮想マシンの画面の解像度を Microsoft Windows で表示される設定可能上限より上げる方法(2082176)
 「 VMwareResolutionSet.exe 

以上

No comments: