VirtualBox ゲスト追加機能なしで VirtualBox ゲストの画面解像度を上げることはできますか?

VirtualBox ゲスト追加機能なしで VirtualBox ゲストの画面解像度を上げることはできますか?

VirtualBox ゲスト追加機能がインストールされていない場合、画面解像度は 640x480 のみになります。

$ xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480
default connected primary 640x480+0+0 0mm x 0mm
   640x480       73.00* 

たとえば、解像度を 1280x1024 に設定するにはどうすればよいでしょうか? VirtualBox ゲストの追加は必要ありません。

ゲストは Fedora システムです。

私は追加してみましたこのWhonixの記事で説明されているXorg設定ファイル、まったく何もしませんでした。

cvt を使用して xrandr の新しいモードラインを取得しても機能しないようです。

$ cvt 1280 1024
# 1280x1024 59.89 Hz (CVT 1.31M4) hsync: 63.67 kHz; pclk: 109.00 MHz
Modeline "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync
$ xrandr --newmode "1280x1024_60.00"  109.00  1280 1368 1496 1712  1024 1027 1034 1063 -hsync +vsync
xrandr: Failed to get size of gamma for output default
$ xrandr
xrandr: Failed to get size of gamma for output default
Screen 0: minimum 640 x 480, current 640 x 480, maximum 640 x 480
default connected primary 640x480+0+0 0mm x 0mm
   640x480       73.00* 
  1280x1024_60.00 (0x1bd) 109.000MHz
        h: width  1280 start 1368 end 1496 total 1712 skew    0 clock  63.67KHz
        v: height 1024 start 1027 end 1034 total 1063           clock  59.89Hz
$ xrandr --addmode default 1280x1024_60.00
xrandr: Failed to get size of gamma for output default
$ xrandr --output default --mode 1280x1024_60.00
xrandr: Failed to get size of gamma for output default
xrandr: Configure crtc 0 failed

答え1

1) XOrgを停止する

 stop REPLACEWITHNAMEOFXORGSERVICE

2) コンソールを開く

CTRL-ALT-F1

3) デフォルトのxorg.confを作成します。これは存在しません。

X -configure

4) xorg.conf.new を移動してシステムが設定ファイルを使用するようにします。

mv xorg.conf.new /etc/X11/xorg.conf

5) 再起動

reboot

6) xorg.confを修正し、

Section "Monitor"
...
 HorizSync 1.0 - 1000.0
 VertRefresh 1.0 - 1000.0
 Option "MinClock" "1.0"
 Option "MaxClock" "10000.0"
 Option "Primary" "True"
 Option "PreferredMode" "1920x1080"
...
EndSection

7) 再起動

reboot

8) システム設定 > ディスプレイ > 「任意の -4:3- 解像度を選択」

9) ワイドスクリーンを有効にする

Host:VBoxManage setextradata "YOURGUEST" "CustomVideoMode1" "1920x1080x32"

関連情報